From c613ebd905644d9dc0f2ea81347263d2ec74f854 Mon Sep 17 00:00:00 2001
From: reallybeard <89934888+reallybeard@users.noreply.github.com>
Date: Tue, 9 Jan 2024 14:21:37 -0600
Subject: [PATCH 1/6] add modal stuff

---
 package.json                                  |      7 +-
 src/components/AssetSelectModal/AssetList.tsx |     34 +
 src/components/AssetSelectModal/AssetRow.tsx  |     69 +
 .../AssetSelectModal/AssetSelectModal.tsx     |    145 +
 .../AssetSelectModal/ChainButton.tsx          |     40 +
 .../helpers/filterAssetsBySearchTerm.ts       |     21 +
 src/components/SelectPair.tsx                 |     12 +-
 src/lib/generatedAssetData.json               | 120623 +++++++++++++++
 src/lib/utils.ts                              |     11 +
 src/theme/components/Modal.tsx                |     70 +
 src/theme/theme.tsx                           |      2 +
 src/types/Asset.ts                            |     21 +
 yarn.lock                                     |     85 +
 13 files changed, 121135 insertions(+), 5 deletions(-)
 create mode 100644 src/components/AssetSelectModal/AssetList.tsx
 create mode 100644 src/components/AssetSelectModal/AssetRow.tsx
 create mode 100644 src/components/AssetSelectModal/AssetSelectModal.tsx
 create mode 100644 src/components/AssetSelectModal/ChainButton.tsx
 create mode 100644 src/components/AssetSelectModal/helpers/filterAssetsBySearchTerm.ts
 create mode 100644 src/lib/generatedAssetData.json
 create mode 100644 src/theme/components/Modal.tsx
 create mode 100644 src/types/Asset.ts

diff --git a/package.json b/package.json
index a2f033e..968b846 100644
--- a/package.json
+++ b/package.json
@@ -16,12 +16,17 @@
     "@chakra-ui/react": "^2.8.2",
     "@emotion/react": "^11.11.3",
     "@emotion/styled": "^11.11.0",
+    "@shapeshiftoss/caip": "^8.15.0",
+    "@shapeshiftoss/types": "^8.6.0",
+    "axios": "^1.6.5",
     "framer-motion": "^10.17.9",
+    "match-sorter": "^6.3.1",
     "mixpanel-browser": "^2.48.1",
     "react": "^18.2.0",
     "react-dom": "^18.2.0",
     "react-icons": "^4.12.0",
-    "react-router-dom": "^6.21.1"
+    "react-router-dom": "^6.21.1",
+    "react-virtuoso": "^4.6.2"
   },
   "devDependencies": {
     "@types/inquirer": "^9.0.7",
diff --git a/src/components/AssetSelectModal/AssetList.tsx b/src/components/AssetSelectModal/AssetList.tsx
new file mode 100644
index 0000000..f3ab77e
--- /dev/null
+++ b/src/components/AssetSelectModal/AssetList.tsx
@@ -0,0 +1,34 @@
+import type { ListProps } from '@chakra-ui/react'
+import type { FC } from 'react'
+import { useCallback } from 'react'
+import { Virtuoso } from 'react-virtuoso'
+import type { Asset } from 'types/Asset'
+
+import { AssetRow } from './AssetRow'
+
+const style = { height: '400px' }
+
+export type AssetData = {
+  assets: Asset[]
+  handleClick: (asset: Asset) => void
+}
+
+type AssetListProps = AssetData & ListProps
+
+export const AssetList: FC<AssetListProps> = ({ assets, handleClick }) => {
+  const renderItemContent = useCallback(
+    (index: number, asset: Asset) => {
+      return <AssetRow {...asset} key={index} onClick={handleClick} />
+    },
+    [handleClick],
+  )
+
+  return (
+    <Virtuoso
+      style={style}
+      data={assets}
+      totalCount={assets.length}
+      itemContent={renderItemContent}
+    />
+  )
+}
diff --git a/src/components/AssetSelectModal/AssetRow.tsx b/src/components/AssetSelectModal/AssetRow.tsx
new file mode 100644
index 0000000..99544d6
--- /dev/null
+++ b/src/components/AssetSelectModal/AssetRow.tsx
@@ -0,0 +1,69 @@
+import { Avatar, Box, Button, Flex, SkeletonCircle, Text } from '@chakra-ui/react'
+import type { FC } from 'react'
+import { memo, useCallback, useState } from 'react'
+import { middleEllipsis } from 'lib/utils'
+import type { Asset } from 'types/Asset'
+
+const focus = {
+  shadow: 'outline-inset',
+}
+
+type AssetRowProps = {
+  onClick: (asset: Asset) => void
+} & Asset
+
+export const AssetRow: FC<AssetRowProps> = memo(({ onClick, ...asset }) => {
+  const [imgLoaded, setImgLoaded] = useState(false)
+  const { name, icon, symbol, id } = asset
+  const handleOnClick = useCallback(() => {
+    onClick(asset)
+  }, [asset, onClick])
+
+  const handleImgLoad = useCallback(() => {
+    setImgLoaded(true)
+  }, [])
+
+  if (!asset) return null
+
+  return (
+    <Button
+      width='full'
+      variant='ghost'
+      onClick={handleOnClick}
+      justifyContent='space-between'
+      _focus={focus}
+      height='auto'
+      py={4}
+    >
+      <Flex gap={4} alignItems='center'>
+        <SkeletonCircle isLoaded={imgLoaded}>
+          <Avatar src={icon} size='sm' onLoad={handleImgLoad} />
+        </SkeletonCircle>
+        <Box textAlign='left'>
+          <Text
+            lineHeight={1}
+            textOverflow='ellipsis'
+            whiteSpace='nowrap'
+            maxWidth='200px'
+            overflow='hidden'
+            color='text.base'
+            fontSize='sm'
+            mb={1}
+          >
+            {name}
+          </Text>
+          <Flex alignItems='center' gap={2}>
+            <Text fontWeight='normal' fontSize='xs' color='text.subtle'>
+              {symbol}
+            </Text>
+            {id && (
+              <Text fontWeight='normal' fontSize='xs' color='text.subtle'>
+                {middleEllipsis(id)}
+              </Text>
+            )}
+          </Flex>
+        </Box>
+      </Flex>
+    </Button>
+  )
+})
diff --git a/src/components/AssetSelectModal/AssetSelectModal.tsx b/src/components/AssetSelectModal/AssetSelectModal.tsx
new file mode 100644
index 0000000..c4fdb80
--- /dev/null
+++ b/src/components/AssetSelectModal/AssetSelectModal.tsx
@@ -0,0 +1,145 @@
+import {
+  Button,
+  CloseButton,
+  Flex,
+  Input,
+  Modal,
+  ModalBody,
+  ModalContent,
+  ModalHeader,
+  ModalOverlay,
+  Text,
+} from '@chakra-ui/react'
+import type { ChainId } from '@shapeshiftoss/caip'
+import type { ChangeEvent } from 'react'
+import { useCallback, useEffect, useMemo, useState } from 'react'
+import AssetData from 'lib/generatedAssetData.json'
+import { isNft } from 'lib/utils'
+import type { Asset } from 'types/Asset'
+
+import { AssetList } from './AssetList'
+import type { ChainRow } from './ChainButton'
+import { ChainButton } from './ChainButton'
+import { filterAssetsBySearchTerm } from './helpers/filterAssetsBySearchTerm'
+
+type AssetSelectModalProps = {
+  isOpen: boolean
+  onClose: () => void
+}
+
+export const AssetSelectModal: React.FC<AssetSelectModalProps> = ({ isOpen, onClose }) => {
+  const [searchQuery, setSearchQuery] = useState('')
+  const assets = Object.values(AssetData)
+  const [activeChain, setActiveChain] = useState<ChainId | 'All'>('All')
+  const [searchTermAssets, setSearchTermAssets] = useState<Asset[]>([])
+
+  const filteredAssets = useMemo(
+    () =>
+      activeChain === 'All'
+        ? assets.filter(a => !isNft(a.assetId))
+        : assets.filter(a => a.chainId === activeChain && !isNft(a.assetId)),
+    [activeChain, assets],
+  )
+
+  const searching = useMemo(() => searchQuery.length > 0, [searchQuery])
+
+  const handleClick = useCallback((asset: Asset) => {
+    console.info(asset.assetId)
+  }, [])
+
+  const handleSearchQuery = useCallback((value: ChangeEvent<HTMLInputElement>) => {
+    setSearchQuery(value.target.value)
+  }, [])
+
+  const handleChainClick = useCallback((chainId: ChainId | 'All') => {
+    setActiveChain(chainId)
+  }, [])
+
+  const handleAllChain = useCallback(() => {
+    setActiveChain('All')
+  }, [])
+
+  useEffect(() => {
+    if (filteredAssets) {
+      setSearchTermAssets(
+        searching ? filterAssetsBySearchTerm(searchQuery, filteredAssets) : filteredAssets,
+      )
+    }
+  }, [searchQuery, searching, filteredAssets])
+
+  const listAssets = searching ? searchTermAssets : filteredAssets
+
+  const uniqueChainIds: ChainRow[] = assets.reduce((accumulator, currentAsset: Asset) => {
+    const existingEntry = accumulator.find(
+      (entry: ChainRow) => entry.chainId === currentAsset.chainId,
+    )
+
+    if (!existingEntry) {
+      accumulator.push({
+        chainId: currentAsset.chainId,
+        icon: currentAsset.icon,
+        name: currentAsset.networkName ?? currentAsset.name,
+      })
+    }
+
+    return accumulator
+  }, [])
+
+  const renderRows = useMemo(() => {
+    return <AssetList assets={listAssets} handleClick={handleClick} />
+  }, [handleClick, listAssets])
+
+  const renderChains = useMemo(() => {
+    return uniqueChainIds.map(chain => (
+      <ChainButton
+        key={chain.chainId}
+        isActive={chain.chainId === activeChain}
+        onClick={handleChainClick}
+        {...chain}
+      />
+    ))
+  }, [activeChain, handleChainClick, uniqueChainIds])
+
+  return (
+    <Modal isOpen={isOpen} onClose={onClose} isCentered>
+      <ModalOverlay />
+      <ModalContent>
+        <ModalHeader
+          display='flex'
+          flexDir='column'
+          gap={2}
+          borderBottomWidth={1}
+          borderColor='border.base'
+        >
+          <Flex alignItems='center' justifyContent='space-between'>
+            <Text fontWeight='bold' fontSize='md'>
+              Select asset
+            </Text>
+            <CloseButton position='relative' />
+          </Flex>
+          <Input
+            size='lg'
+            placeholder='Search name or paste address'
+            onChange={handleSearchQuery}
+          />
+          <Flex mt={4} flexWrap='wrap' gap={2} justifyContent='space-between'>
+            <Button
+              size='lg'
+              isActive={activeChain === 'All'}
+              variant='outline'
+              fontSize='sm'
+              px={2}
+              onClick={handleAllChain}
+            >
+              All
+            </Button>
+            {renderChains}
+          </Flex>
+        </ModalHeader>
+        <ModalBody px={2} py={0}>
+          {renderRows}
+        </ModalBody>
+      </ModalContent>
+    </Modal>
+  )
+}
diff --git a/src/components/AssetSelectModal/ChainButton.tsx b/src/components/AssetSelectModal/ChainButton.tsx
new file mode 100644
index 0000000..e559ecb
--- /dev/null
+++ b/src/components/AssetSelectModal/ChainButton.tsx
@@ -0,0 +1,40 @@
+import { Avatar, IconButton } from '@chakra-ui/react'
+import type { ChainId } from '@shapeshiftoss/caip'
+import { useCallback, useMemo } from 'react'
+export type ChainRow = {
+  chainId: ChainId
+  icon: string
+  name: string
+}
+
+type ChainButtonProps = {
+  onClick: (chainId: ChainId) => void
+  isActive?: boolean
+} & ChainRow
+
+export const ChainButton: React.FC<ChainButtonProps> = ({
+  name,
+  chainId,
+  icon,
+  onClick,
+  isActive,
+}) => {
+  const chainIcon = useMemo(() => {
+    return <Avatar size='sm' src={icon} />
+  }, [icon])
+
+  const handleClick = useCallback(() => {
+    onClick(chainId)
+  }, [chainId, onClick])
+
+  return (
+    <IconButton
+      isActive={isActive}
+      variant='outline'
+      size='lg'
+      aria-label={name}
+      icon={chainIcon}
+      onClick={handleClick}
+    />
+  )
+}
diff --git a/src/components/AssetSelectModal/helpers/filterAssetsBySearchTerm.ts b/src/components/AssetSelectModal/helpers/filterAssetsBySearchTerm.ts
new file mode 100644
index 0000000..901b7cc
--- /dev/null
+++ b/src/components/AssetSelectModal/helpers/filterAssetsBySearchTerm.ts
@@ -0,0 +1,21 @@
+import { fromAssetId } from '@shapeshiftoss/caip'
+import { matchSorter } from 'match-sorter'
+import { isEthAddress } from 'lib/utils'
+import type { Asset } from 'types/Asset'
+
+export const filterAssetsBySearchTerm = (search: string, assets: Asset[]) => {
+  if (!assets) return []
+
+  const searchLower = search.toLowerCase()
+
+  if (isEthAddress(search)) {
+    return assets.filter(
+      asset => fromAssetId(asset?.assetId).assetReference.toLowerCase() === searchLower,
+    )
+  }
+
+  return matchSorter(assets, search, {
+    keys: ['name', 'symbol'],
+    threshold: matchSorter.rankings.CONTAINS,
+  })
+}
diff --git a/src/components/SelectPair.tsx b/src/components/SelectPair.tsx
index dd49994..59d10b9 100644
--- a/src/components/SelectPair.tsx
+++ b/src/components/SelectPair.tsx
@@ -1,4 +1,4 @@
-import { Button, Card, CardBody, Flex, Heading, IconButton } from '@chakra-ui/react'
+import { Button, Card, CardBody, Flex, Heading, IconButton, useDisclosure } from '@chakra-ui/react'
 import { useCallback, useMemo } from 'react'
 import { FaArrowRightArrowLeft } from 'react-icons/fa6'
 import { useNavigate } from 'react-router-dom'
@@ -6,8 +6,10 @@ import { BTCImage, ETHImage } from 'lib/const'
 import { mixpanel, MixPanelEvent } from 'lib/mixpanel'
 
 import { AssetSelection } from './AssetSelection'
+import { AssetSelectModal } from './AssetSelectModal/AssetSelectModal'
 
 export const SelectPair = () => {
+  const { isOpen, onClose, onOpen } = useDisclosure()
   const navigate = useNavigate()
   const switchIcon = useMemo(() => <FaArrowRightArrowLeft />, [])
   const handleSubmit = useCallback(() => {
@@ -19,11 +21,12 @@ export const SelectPair = () => {
   }, [navigate])
 
   const handleFromAssetClick = useCallback(() => {
+    onOpen()
     console.info('asset click')
-  }, [])
+  }, [onOpen])
   const handleToAssetClick = useCallback(() => {
-    console.info('to asset click')
-  }, [])
+    onOpen()
+  }, [onOpen])
 
   return (
     <Card width='full' maxWidth='450px'>
@@ -50,6 +53,7 @@ export const SelectPair = () => {
           Continue
         </Button>
       </CardBody>
+      <AssetSelectModal isOpen={isOpen} onClose={onClose} />
     </Card>
   )
 }
diff --git a/src/lib/generatedAssetData.json b/src/lib/generatedAssetData.json
new file mode 100644
index 0000000..47feace
--- /dev/null
+++ b/src/lib/generatedAssetData.json
@@ -0,0 +1,120623 @@
+{
+  "bip122:000000000000000000651ef99cb9fcbe/slip44:145": {
+    "assetId": "bip122:000000000000000000651ef99cb9fcbe/slip44:145",
+    "chainId": "bip122:000000000000000000651ef99cb9fcbe",
+    "symbol": "BCH",
+    "name": "Bitcoin Cash",
+    "networkName": "Bitcoin Cash",
+    "precision": 8,
+    "color": "#8BC34A",
+    "icon": "https://assets.coincap.io/assets/icons/256/bch.png",
+    "explorer": "https://blockchair.com",
+    "explorerAddressLink": "https://blockchair.com/bitcoin-cash/address/",
+    "explorerTxLink": "https://blockchair.com/bitcoin-cash/transaction/"
+  },
+  "bip122:000000000019d6689c085ae165831e93/slip44:0": {
+    "assetId": "bip122:000000000019d6689c085ae165831e93/slip44:0",
+    "chainId": "bip122:000000000019d6689c085ae165831e93",
+    "symbol": "BTC",
+    "name": "Bitcoin",
+    "networkName": "Bitcoin",
+    "precision": 8,
+    "color": "#FF9800",
+    "icon": "https://assets.coincap.io/assets/icons/256/btc.png",
+    "explorer": "https://live.blockcypher.com",
+    "explorerAddressLink": "https://live.blockcypher.com/btc/address/",
+    "explorerTxLink": "https://live.blockcypher.com/btc/tx/"
+  },
+  "bip122:00000000001a91e3dace36e2be3bf030/slip44:3": {
+    "assetId": "bip122:00000000001a91e3dace36e2be3bf030/slip44:3",
+    "chainId": "bip122:00000000001a91e3dace36e2be3bf030",
+    "symbol": "DOGE",
+    "name": "Dogecoin",
+    "networkName": "Dogecoin",
+    "precision": 8,
+    "color": "#FFC107",
+    "icon": "https://assets.coincap.io/assets/icons/256/doge.png",
+    "explorer": "https://live.blockcypher.com",
+    "explorerAddressLink": "https://live.blockcypher.com/doge/address/",
+    "explorerTxLink": "https://live.blockcypher.com/doge/tx/"
+  },
+  "bip122:12a765e31ffd4059bada1e25190f6e98/slip44:2": {
+    "assetId": "bip122:12a765e31ffd4059bada1e25190f6e98/slip44:2",
+    "chainId": "bip122:12a765e31ffd4059bada1e25190f6e98",
+    "symbol": "LTC",
+    "name": "Litecoin",
+    "networkName": "Litecoin",
+    "precision": 8,
+    "color": "#B8B8B8",
+    "icon": "https://assets.coincap.io/assets/icons/256/ltc.png",
+    "explorer": "https://live.blockcypher.com",
+    "explorerAddressLink": "https://live.blockcypher.com/ltc/address/",
+    "explorerTxLink": "https://live.blockcypher.com/ltc/tx/"
+  },
+  "cosmos:cosmoshub-4/ibc:0025F8A87464A471E66B234C4F93AEC5B4DA3D42D7986451A059273426290DD5": {
+    "assetId": "cosmos:cosmoshub-4/ibc:0025F8A87464A471E66B234C4F93AEC5B4DA3D42D7986451A059273426290DD5",
+    "chainId": "cosmos:cosmoshub-4",
+    "symbol": "NTRN",
+    "name": "NTRN on Cosmos",
+    "precision": 6,
+    "color": "#2B2D40",
+    "icon": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/neutron/asset/ntrn.png",
+    "explorer": "https://www.mintscan.io/cosmos",
+    "explorerAddressLink": "https://www.mintscan.io/cosmos/account/",
+    "explorerTxLink": "https://www.mintscan.io/cosmos/txs/"
+  },
+  "cosmos:cosmoshub-4/ibc:054892D6BB43AF8B93AAC28AA5FD7019D2C59A15DAFD6F45C1FA2BF9BDA22454": {
+    "assetId": "cosmos:cosmoshub-4/ibc:054892D6BB43AF8B93AAC28AA5FD7019D2C59A15DAFD6F45C1FA2BF9BDA22454",
+    "chainId": "cosmos:cosmoshub-4",
+    "symbol": "stOSMO",
+    "name": "stOSMO on Cosmos",
+    "precision": 6,
+    "color": "#D31570",
+    "icon": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/stride/asset/stosmo.png",
+    "explorer": "https://www.mintscan.io/cosmos",
+    "explorerAddressLink": "https://www.mintscan.io/cosmos/account/",
+    "explorerTxLink": "https://www.mintscan.io/cosmos/txs/"
+  },
+  "cosmos:cosmoshub-4/ibc:12DA42304EE1CE96071F712AA4D58186AD11C3165C0DCDA71E017A54F3935E66": {
+    "assetId": "cosmos:cosmoshub-4/ibc:12DA42304EE1CE96071F712AA4D58186AD11C3165C0DCDA71E017A54F3935E66",
+    "chainId": "cosmos:cosmoshub-4",
+    "symbol": "IRIS",
+    "name": "IRIS on Cosmos",
+    "precision": 6,
+    "color": "#047DC4",
+    "icon": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/iris/asset/iris.png",
+    "explorer": "https://www.mintscan.io/cosmos",
+    "explorerAddressLink": "https://www.mintscan.io/cosmos/account/",
+    "explorerTxLink": "https://www.mintscan.io/cosmos/txs/"
+  },
+  "cosmos:cosmoshub-4/ibc:14F9BC3E44B8A9C1BE1FB08980FAB87034C9905EF17CF2F5008FC085218811CC": {
+    "assetId": "cosmos:cosmoshub-4/ibc:14F9BC3E44B8A9C1BE1FB08980FAB87034C9905EF17CF2F5008FC085218811CC",
+    "chainId": "cosmos:cosmoshub-4",
+    "symbol": "OSMO",
+    "name": "OSMO on Cosmos",
+    "precision": 6,
+    "color": "#370A7E",
+    "icon": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/osmosis/asset/osmo.png",
+    "explorer": "https://www.mintscan.io/cosmos",
+    "explorerAddressLink": "https://www.mintscan.io/cosmos/account/",
+    "explorerTxLink": "https://www.mintscan.io/cosmos/txs/"
+  },
+  "cosmos:cosmoshub-4/ibc:1542F8DC70E7999691E991E1EDEB1B47E65E3A217B1649D347098EE48ACB580F": {
+    "assetId": "cosmos:cosmoshub-4/ibc:1542F8DC70E7999691E991E1EDEB1B47E65E3A217B1649D347098EE48ACB580F",
+    "chainId": "cosmos:cosmoshub-4",
+    "symbol": "SCRT",
+    "name": "SCRT on Cosmos",
+    "precision": 6,
+    "color": "#1D1D1D",
+    "icon": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/secret/asset/scrt.png",
+    "explorer": "https://www.mintscan.io/cosmos",
+    "explorerAddressLink": "https://www.mintscan.io/cosmos/account/",
+    "explorerTxLink": "https://www.mintscan.io/cosmos/txs/"
+  },
+  "cosmos:cosmoshub-4/ibc:19DD710119533524061885A6F190B18AF28D9537E2BAE37F32A62C1A25979287": {
+    "assetId": "cosmos:cosmoshub-4/ibc:19DD710119533524061885A6F190B18AF28D9537E2BAE37F32A62C1A25979287",
+    "chainId": "cosmos:cosmoshub-4",
+    "symbol": "EVMOS",
+    "name": "EVMOS on Cosmos",
+    "precision": 18,
+    "color": "#DE4337",
+    "icon": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/evmos/asset/evmos.png",
+    "explorer": "https://www.mintscan.io/cosmos",
+    "explorerAddressLink": "https://www.mintscan.io/cosmos/account/",
+    "explorerTxLink": "https://www.mintscan.io/cosmos/txs/"
+  },
+  "cosmos:cosmoshub-4/ibc:1D5826F7EDE6E3B13009FEF994DC9CAAF15CC24CA7A9FF436FFB2E56FD72F54F": {
+    "assetId": "cosmos:cosmoshub-4/ibc:1D5826F7EDE6E3B13009FEF994DC9CAAF15CC24CA7A9FF436FFB2E56FD72F54F",
+    "chainId": "cosmos:cosmoshub-4",
+    "symbol": "LIKE",
+    "name": "LIKE on Cosmos",
+    "precision": 9,
+    "color": "#336970",
+    "icon": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/likecoin/asset/like.png",
+    "explorer": "https://www.mintscan.io/cosmos",
+    "explorerAddressLink": "https://www.mintscan.io/cosmos/account/",
+    "explorerTxLink": "https://www.mintscan.io/cosmos/txs/"
+  },
+  "cosmos:cosmoshub-4/ibc:1FBDD58D438B4D04D26CBFB2E722C18984A0F1A52468C4F42F37D102F3D3F399": {
+    "assetId": "cosmos:cosmoshub-4/ibc:1FBDD58D438B4D04D26CBFB2E722C18984A0F1A52468C4F42F37D102F3D3F399",
+    "chainId": "cosmos:cosmoshub-4",
+    "symbol": "REGEN",
+    "name": "REGEN on Cosmos",
+    "precision": 6,
+    "color": "#38A05F",
+    "icon": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/regen/asset/regen.png",
+    "explorer": "https://www.mintscan.io/cosmos",
+    "explorerAddressLink": "https://www.mintscan.io/cosmos/account/",
+    "explorerTxLink": "https://www.mintscan.io/cosmos/txs/"
+  },
+  "cosmos:cosmoshub-4/ibc:20A7DC8E24709E6F1EE0F4E832C2ED345ADD77425890482A349AE3C43CAC6B2C": {
+    "assetId": "cosmos:cosmoshub-4/ibc:20A7DC8E24709E6F1EE0F4E832C2ED345ADD77425890482A349AE3C43CAC6B2C",
+    "chainId": "cosmos:cosmoshub-4",
+    "symbol": "ATOLO",
+    "name": "ATOLO on Cosmos",
+    "precision": 6,
+    "color": "#3A355E",
+    "icon": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/rizon/asset/atolo.png",
+    "explorer": "https://www.mintscan.io/cosmos",
+    "explorerAddressLink": "https://www.mintscan.io/cosmos/account/",
+    "explorerTxLink": "https://www.mintscan.io/cosmos/txs/"
+  },
+  "cosmos:cosmoshub-4/ibc:2181AAB0218EAC24BC9F86BD1364FBBFA3E6E3FCC25E88E3E68C15DC6E752D86": {
+    "assetId": "cosmos:cosmoshub-4/ibc:2181AAB0218EAC24BC9F86BD1364FBBFA3E6E3FCC25E88E3E68C15DC6E752D86",
+    "chainId": "cosmos:cosmoshub-4",
+    "symbol": "AKT",
+    "name": "AKT on Cosmos",
+    "precision": 6,
+    "color": "#CD2A24",
+    "icon": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/akash/asset/akt.png",
+    "explorer": "https://www.mintscan.io/cosmos",
+    "explorerAddressLink": "https://www.mintscan.io/cosmos/account/",
+    "explorerTxLink": "https://www.mintscan.io/cosmos/txs/"
+  },
+  "cosmos:cosmoshub-4/ibc:3F18D520CE791A40357D061FAD657CED6B21D023F229EAF131D7FE7CE6F488BD": {
+    "assetId": "cosmos:cosmoshub-4/ibc:3F18D520CE791A40357D061FAD657CED6B21D023F229EAF131D7FE7CE6F488BD",
+    "chainId": "cosmos:cosmoshub-4",
+    "symbol": "CRE",
+    "name": "CRE on Cosmos",
+    "precision": 6,
+    "color": "#EDB37A",
+    "icon": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/crescent/asset/cre.png",
+    "explorer": "https://www.mintscan.io/cosmos",
+    "explorerAddressLink": "https://www.mintscan.io/cosmos/account/",
+    "explorerTxLink": "https://www.mintscan.io/cosmos/txs/"
+  },
+  "cosmos:cosmoshub-4/ibc:42E47A5BA708EBE6E0C227006254F2784E209F4DBD3C6BB77EDC4B29EF875E8E": {
+    "assetId": "cosmos:cosmoshub-4/ibc:42E47A5BA708EBE6E0C227006254F2784E209F4DBD3C6BB77EDC4B29EF875E8E",
+    "chainId": "cosmos:cosmoshub-4",
+    "symbol": "DVPN",
+    "name": "DVPN on Cosmos",
+    "precision": 6,
+    "color": "#193763",
+    "icon": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/sentinel/asset/dvpn.png",
+    "explorer": "https://www.mintscan.io/cosmos",
+    "explorerAddressLink": "https://www.mintscan.io/cosmos/account/",
+    "explorerTxLink": "https://www.mintscan.io/cosmos/txs/"
+  },
+  "cosmos:cosmoshub-4/ibc:533E5FFC606FD11B8DCA309C66AFD6A1F046EF784A73F323A332CF6823F0EA87": {
+    "assetId": "cosmos:cosmoshub-4/ibc:533E5FFC606FD11B8DCA309C66AFD6A1F046EF784A73F323A332CF6823F0EA87",
+    "chainId": "cosmos:cosmoshub-4",
+    "symbol": "XKI",
+    "name": "XKI on Cosmos",
+    "precision": 6,
+    "color": "#1E41FC",
+    "icon": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ki-chain/asset/xki.png",
+    "explorer": "https://www.mintscan.io/cosmos",
+    "explorerAddressLink": "https://www.mintscan.io/cosmos/account/",
+    "explorerTxLink": "https://www.mintscan.io/cosmos/txs/"
+  },
+  "cosmos:cosmoshub-4/ibc:5BB694D466CCF099EF73F165F88472AF51D9C4991EAA42BD1168C5304712CC0D": {
+    "assetId": "cosmos:cosmoshub-4/ibc:5BB694D466CCF099EF73F165F88472AF51D9C4991EAA42BD1168C5304712CC0D",
+    "chainId": "cosmos:cosmoshub-4",
+    "symbol": "ION",
+    "name": "ION on Cosmos",
+    "precision": 6,
+    "color": "#394EC3",
+    "icon": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/osmosis/asset/ion.png",
+    "explorer": "https://www.mintscan.io/cosmos",
+    "explorerAddressLink": "https://www.mintscan.io/cosmos/account/",
+    "explorerTxLink": "https://www.mintscan.io/cosmos/txs/"
+  },
+  "cosmos:cosmoshub-4/ibc:5CAE744C89BC70AE7B38019A1EDF83199B7E10F00F160E7F4F12BCA7A32A7EE5": {
+    "assetId": "cosmos:cosmoshub-4/ibc:5CAE744C89BC70AE7B38019A1EDF83199B7E10F00F160E7F4F12BCA7A32A7EE5",
+    "chainId": "cosmos:cosmoshub-4",
+    "symbol": "stLUNA",
+    "name": "stLUNA on Cosmos",
+    "precision": 6,
+    "color": "#D0146E",
+    "icon": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/stride/asset/stluna.png",
+    "explorer": "https://www.mintscan.io/cosmos",
+    "explorerAddressLink": "https://www.mintscan.io/cosmos/account/",
+    "explorerTxLink": "https://www.mintscan.io/cosmos/txs/"
+  },
+  "cosmos:cosmoshub-4/ibc:6469BDA6F62C4F4B8F76629FA1E72A02A3D1DD9E2B22DDB3C3B2296DEAD29AB8": {
+    "assetId": "cosmos:cosmoshub-4/ibc:6469BDA6F62C4F4B8F76629FA1E72A02A3D1DD9E2B22DDB3C3B2296DEAD29AB8",
+    "chainId": "cosmos:cosmoshub-4",
+    "symbol": "INJ",
+    "name": "INJ on Cosmos",
+    "precision": 18,
+    "color": "#112F42",
+    "icon": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/injective/asset/inj.png",
+    "explorer": "https://www.mintscan.io/cosmos",
+    "explorerAddressLink": "https://www.mintscan.io/cosmos/account/",
+    "explorerTxLink": "https://www.mintscan.io/cosmos/txs/"
+  },
+  "cosmos:cosmoshub-4/ibc:68A333688E5B07451F95555F8FE510E43EF9D3D44DF0909964F92081EF9BE5A7": {
+    "assetId": "cosmos:cosmoshub-4/ibc:68A333688E5B07451F95555F8FE510E43EF9D3D44DF0909964F92081EF9BE5A7",
+    "chainId": "cosmos:cosmoshub-4",
+    "symbol": "IOV",
+    "name": "IOV on Cosmos",
+    "precision": 6,
+    "color": "#6572CD",
+    "icon": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/starname/asset/iov.png",
+    "explorer": "https://www.mintscan.io/cosmos",
+    "explorerAddressLink": "https://www.mintscan.io/cosmos/account/",
+    "explorerTxLink": "https://www.mintscan.io/cosmos/txs/"
+  },
+  "cosmos:cosmoshub-4/ibc:6B8A3F5C2AD51CD6171FA41A7E8C35AD594AB69226438DB94450436EA57B3A89": {
+    "assetId": "cosmos:cosmoshub-4/ibc:6B8A3F5C2AD51CD6171FA41A7E8C35AD594AB69226438DB94450436EA57B3A89",
+    "chainId": "cosmos:cosmoshub-4",
+    "symbol": "STRD",
+    "name": "STRD on Cosmos",
+    "precision": 6,
+    "color": "#F3328F",
+    "icon": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/stride/asset/strd.png",
+    "explorer": "https://www.mintscan.io/cosmos",
+    "explorerAddressLink": "https://www.mintscan.io/cosmos/account/",
+    "explorerTxLink": "https://www.mintscan.io/cosmos/txs/"
+  },
+  "cosmos:cosmoshub-4/ibc:715BD634CF4D914C3EE93B0F8A9D2514B743F6FE36BC80263D1BC5EE4B3C5D40": {
+    "assetId": "cosmos:cosmoshub-4/ibc:715BD634CF4D914C3EE93B0F8A9D2514B743F6FE36BC80263D1BC5EE4B3C5D40",
+    "chainId": "cosmos:cosmoshub-4",
+    "symbol": "stSTARS",
+    "name": "stSTARS on Cosmos",
+    "precision": 6,
+    "color": "#D1156F",
+    "icon": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/stride/asset/ststars.png",
+    "explorer": "https://www.mintscan.io/cosmos",
+    "explorerAddressLink": "https://www.mintscan.io/cosmos/account/",
+    "explorerTxLink": "https://www.mintscan.io/cosmos/txs/"
+  },
+  "cosmos:cosmoshub-4/ibc:81D08BC39FB520EBD948CF017910DD69702D34BF5AC160F76D3B5CFC444EBCE0": {
+    "assetId": "cosmos:cosmoshub-4/ibc:81D08BC39FB520EBD948CF017910DD69702D34BF5AC160F76D3B5CFC444EBCE0",
+    "chainId": "cosmos:cosmoshub-4",
+    "symbol": "XPRT",
+    "name": "XPRT on Cosmos",
+    "precision": 6,
+    "color": "#212121",
+    "icon": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/persistence/asset/xprt.png",
+    "explorer": "https://www.mintscan.io/cosmos",
+    "explorerAddressLink": "https://www.mintscan.io/cosmos/account/",
+    "explorerTxLink": "https://www.mintscan.io/cosmos/txs/"
+  },
+  "cosmos:cosmoshub-4/ibc:835EE9D00C35D72128F195B50F8A89EB83E5011C43EA0AA00D16348E2208FEBB": {
+    "assetId": "cosmos:cosmoshub-4/ibc:835EE9D00C35D72128F195B50F8A89EB83E5011C43EA0AA00D16348E2208FEBB",
+    "chainId": "cosmos:cosmoshub-4",
+    "symbol": "bCRE",
+    "name": "bCRE on Cosmos",
+    "precision": 6,
+    "color": "#DF959E",
+    "icon": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/crescent/asset/bcre.png",
+    "explorer": "https://www.mintscan.io/cosmos",
+    "explorerAddressLink": "https://www.mintscan.io/cosmos/account/",
+    "explorerTxLink": "https://www.mintscan.io/cosmos/txs/"
+  },
+  "cosmos:cosmoshub-4/ibc:8870C4203CEBF2279BA065E3DE95FC3F8E05A4A93424E7DC707A21514BE353A0": {
+    "assetId": "cosmos:cosmoshub-4/ibc:8870C4203CEBF2279BA065E3DE95FC3F8E05A4A93424E7DC707A21514BE353A0",
+    "chainId": "cosmos:cosmoshub-4",
+    "symbol": "KAVA",
+    "name": "KAVA on Cosmos",
+    "precision": 6,
+    "color": "#ED4C46",
+    "icon": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/kava/asset/kava.png",
+    "explorer": "https://www.mintscan.io/cosmos",
+    "explorerAddressLink": "https://www.mintscan.io/cosmos/account/",
+    "explorerTxLink": "https://www.mintscan.io/cosmos/txs/"
+  },
+  "cosmos:cosmoshub-4/ibc:88DCAA43A9CD099E1F9BBB80B9A90F64782EBA115A84B2CD8398757ADA4F4B40": {
+    "assetId": "cosmos:cosmoshub-4/ibc:88DCAA43A9CD099E1F9BBB80B9A90F64782EBA115A84B2CD8398757ADA4F4B40",
+    "chainId": "cosmos:cosmoshub-4",
+    "symbol": "stJUNO",
+    "name": "stJUNO on Cosmos",
+    "precision": 6,
+    "color": "#D0146E",
+    "icon": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/stride/asset/stjuno.png",
+    "explorer": "https://www.mintscan.io/cosmos",
+    "explorerAddressLink": "https://www.mintscan.io/cosmos/account/",
+    "explorerTxLink": "https://www.mintscan.io/cosmos/txs/"
+  },
+  "cosmos:cosmoshub-4/ibc:9DFC3B38276E617E802EC8E05C85368D36836368795CE16A2A37B9942E29573C": {
+    "assetId": "cosmos:cosmoshub-4/ibc:9DFC3B38276E617E802EC8E05C85368D36836368795CE16A2A37B9942E29573C",
+    "chainId": "cosmos:cosmoshub-4",
+    "symbol": "AIOZ",
+    "name": "AIOZ on Cosmos",
+    "precision": 18,
+    "color": "#24241C",
+    "icon": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/aioz/asset/aioz.png",
+    "explorer": "https://www.mintscan.io/cosmos",
+    "explorerAddressLink": "https://www.mintscan.io/cosmos/account/",
+    "explorerTxLink": "https://www.mintscan.io/cosmos/txs/"
+  },
+  "cosmos:cosmoshub-4/ibc:ADBEC1A7AC2FEF73E06B066A1C94DAB6C27924EF7EA3F5A43378150009620284": {
+    "assetId": "cosmos:cosmoshub-4/ibc:ADBEC1A7AC2FEF73E06B066A1C94DAB6C27924EF7EA3F5A43378150009620284",
+    "chainId": "cosmos:cosmoshub-4",
+    "symbol": "BCNA",
+    "name": "BCNA on Cosmos",
+    "precision": 6,
+    "color": "#04B383",
+    "icon": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/bitcanna/asset/bcna.png",
+    "explorer": "https://www.mintscan.io/cosmos",
+    "explorerAddressLink": "https://www.mintscan.io/cosmos/account/",
+    "explorerTxLink": "https://www.mintscan.io/cosmos/txs/"
+  },
+  "cosmos:cosmoshub-4/ibc:B011C1A0AD5E717F674BA59FD8E05B2F946E4FD41C9CB3311C95F7ED4B815620": {
+    "assetId": "cosmos:cosmoshub-4/ibc:B011C1A0AD5E717F674BA59FD8E05B2F946E4FD41C9CB3311C95F7ED4B815620",
+    "chainId": "cosmos:cosmoshub-4",
+    "symbol": "stINJ",
+    "name": "stINJ on Cosmos",
+    "precision": 18,
+    "color": "#E40474",
+    "icon": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/stride/asset/stinj.png",
+    "explorer": "https://www.mintscan.io/cosmos",
+    "explorerAddressLink": "https://www.mintscan.io/cosmos/account/",
+    "explorerTxLink": "https://www.mintscan.io/cosmos/txs/"
+  },
+  "cosmos:cosmoshub-4/ibc:B05539B66B72E2739B986B86391E5D08F12B8D5D2C2A7F8F8CF9ADF674DFA231": {
+    "assetId": "cosmos:cosmoshub-4/ibc:B05539B66B72E2739B986B86391E5D08F12B8D5D2C2A7F8F8CF9ADF674DFA231",
+    "chainId": "cosmos:cosmoshub-4",
+    "symbol": "stATOM",
+    "name": "stATOM on Cosmos",
+    "precision": 6,
+    "color": "#D1146F",
+    "icon": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/stride/asset/statom.png",
+    "explorer": "https://www.mintscan.io/cosmos",
+    "explorerAddressLink": "https://www.mintscan.io/cosmos/account/",
+    "explorerTxLink": "https://www.mintscan.io/cosmos/txs/"
+  },
+  "cosmos:cosmoshub-4/ibc:B38AAA0F7A3EC4D7C8E12DFA33FF93205FE7A42738A4B0590E2FF15BC60A612B": {
+    "assetId": "cosmos:cosmoshub-4/ibc:B38AAA0F7A3EC4D7C8E12DFA33FF93205FE7A42738A4B0590E2FF15BC60A612B",
+    "chainId": "cosmos:cosmoshub-4",
+    "symbol": "stEVMOS",
+    "name": "stEVMOS on Cosmos",
+    "precision": 18,
+    "color": "#D1146F",
+    "icon": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/stride/asset/stevmos.png",
+    "explorer": "https://www.mintscan.io/cosmos",
+    "explorerAddressLink": "https://www.mintscan.io/cosmos/account/",
+    "explorerTxLink": "https://www.mintscan.io/cosmos/txs/"
+  },
+  "cosmos:cosmoshub-4/ibc:B93F321238F7BB15AB5B882660AAE72286C8E9035DE34E2B30F60E54C623C63C": {
+    "assetId": "cosmos:cosmoshub-4/ibc:B93F321238F7BB15AB5B882660AAE72286C8E9035DE34E2B30F60E54C623C63C",
+    "chainId": "cosmos:cosmoshub-4",
+    "symbol": "EEUR",
+    "name": "EEUR on Cosmos",
+    "precision": 6,
+    "color": "#05349A",
+    "icon": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/emoney/asset/eeur.png",
+    "explorer": "https://www.mintscan.io/cosmos",
+    "explorerAddressLink": "https://www.mintscan.io/cosmos/account/",
+    "explorerTxLink": "https://www.mintscan.io/cosmos/txs/"
+  },
+  "cosmos:cosmoshub-4/ibc:C932ADFE2B4216397A4F17458B6E4468499B86C3BC8116180F85D799D6F5CC1B": {
+    "assetId": "cosmos:cosmoshub-4/ibc:C932ADFE2B4216397A4F17458B6E4468499B86C3BC8116180F85D799D6F5CC1B",
+    "chainId": "cosmos:cosmoshub-4",
+    "symbol": "CRO",
+    "name": "CRO on Cosmos",
+    "precision": 8,
+    "color": "#043488",
+    "icon": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/crypto-org/asset/cro.png",
+    "explorer": "https://www.mintscan.io/cosmos",
+    "explorerAddressLink": "https://www.mintscan.io/cosmos/account/",
+    "explorerTxLink": "https://www.mintscan.io/cosmos/txs/"
+  },
+  "cosmos:cosmoshub-4/ibc:CDAB23DA5495290063363BD1C3499E26189036302DC689985A7E23F8DF8D8DB0": {
+    "assetId": "cosmos:cosmoshub-4/ibc:CDAB23DA5495290063363BD1C3499E26189036302DC689985A7E23F8DF8D8DB0",
+    "chainId": "cosmos:cosmoshub-4",
+    "symbol": "JUNO",
+    "name": "JUNO on Cosmos",
+    "precision": 6,
+    "color": "#F97A7A",
+    "icon": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/juno/asset/juno.png",
+    "explorer": "https://www.mintscan.io/cosmos",
+    "explorerAddressLink": "https://www.mintscan.io/cosmos/account/",
+    "explorerTxLink": "https://www.mintscan.io/cosmos/txs/"
+  },
+  "cosmos:cosmoshub-4/ibc:D41ECC8FEF1B7E9C4BCC58B1362588420853A9D0B898EDD513D9B79AFFA195C8": {
+    "assetId": "cosmos:cosmoshub-4/ibc:D41ECC8FEF1B7E9C4BCC58B1362588420853A9D0B898EDD513D9B79AFFA195C8",
+    "chainId": "cosmos:cosmoshub-4",
+    "symbol": "stUMEE",
+    "name": "stUMEE on Cosmos",
+    "precision": 6,
+    "color": "#FBD8E9",
+    "icon": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/stride/asset/stumee.png",
+    "explorer": "https://www.mintscan.io/cosmos",
+    "explorerAddressLink": "https://www.mintscan.io/cosmos/account/",
+    "explorerTxLink": "https://www.mintscan.io/cosmos/txs/"
+  },
+  "cosmos:cosmoshub-4/ibc:DB9AAADFBE21E014373EF97141D451F453B9B9A2C8B65F5CF8E7CE57531B6850": {
+    "assetId": "cosmos:cosmoshub-4/ibc:DB9AAADFBE21E014373EF97141D451F453B9B9A2C8B65F5CF8E7CE57531B6850",
+    "chainId": "cosmos:cosmoshub-4",
+    "symbol": "CRO",
+    "name": "CRO on Cosmos",
+    "precision": 8,
+    "color": "#043488",
+    "icon": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/crypto-org/asset/cro.png",
+    "explorer": "https://www.mintscan.io/cosmos",
+    "explorerAddressLink": "https://www.mintscan.io/cosmos/account/",
+    "explorerTxLink": "https://www.mintscan.io/cosmos/txs/"
+  },
+  "cosmos:cosmoshub-4/ibc:DEC41A02E47658D40FC71E5A35A9C807111F5A6662A3FB5DA84C4E6F53E616B3": {
+    "assetId": "cosmos:cosmoshub-4/ibc:DEC41A02E47658D40FC71E5A35A9C807111F5A6662A3FB5DA84C4E6F53E616B3",
+    "chainId": "cosmos:cosmoshub-4",
+    "symbol": "UMEE",
+    "name": "UMEE on Cosmos",
+    "precision": 6,
+    "color": "#1F2151",
+    "icon": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/umee/asset/umee.png",
+    "explorer": "https://www.mintscan.io/cosmos",
+    "explorerAddressLink": "https://www.mintscan.io/cosmos/account/",
+    "explorerTxLink": "https://www.mintscan.io/cosmos/txs/"
+  },
+  "cosmos:cosmoshub-4/ibc:E070CE91CC4BD15AEC9B5788C0826755AAD35052A3037E9AC62BE70B4C9A7DBB": {
+    "assetId": "cosmos:cosmoshub-4/ibc:E070CE91CC4BD15AEC9B5788C0826755AAD35052A3037E9AC62BE70B4C9A7DBB",
+    "chainId": "cosmos:cosmoshub-4",
+    "symbol": "NGM",
+    "name": "NGM on Cosmos",
+    "precision": 6,
+    "color": "#044149",
+    "icon": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/emoney/asset/ngm.png",
+    "explorer": "https://www.mintscan.io/cosmos",
+    "explorerAddressLink": "https://www.mintscan.io/cosmos/account/",
+    "explorerTxLink": "https://www.mintscan.io/cosmos/txs/"
+  },
+  "cosmos:cosmoshub-4/ibc:E7D5E9D0E9BF8B7354929A817DD28D4D017E745F638954764AA88522A7A409EC": {
+    "assetId": "cosmos:cosmoshub-4/ibc:E7D5E9D0E9BF8B7354929A817DD28D4D017E745F638954764AA88522A7A409EC",
+    "chainId": "cosmos:cosmoshub-4",
+    "symbol": "BTSG",
+    "name": "BTSG on Cosmos",
+    "precision": 6,
+    "color": "#E20553",
+    "icon": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/bitsong/asset/btsg.png",
+    "explorer": "https://www.mintscan.io/cosmos",
+    "explorerAddressLink": "https://www.mintscan.io/cosmos/account/",
+    "explorerTxLink": "https://www.mintscan.io/cosmos/txs/"
+  },
+  "cosmos:cosmoshub-4/ibc:E92E07E68705FAD13305EE9C73684B30A7B66A52F54C9890327E0A4C0F1D22E3": {
+    "assetId": "cosmos:cosmoshub-4/ibc:E92E07E68705FAD13305EE9C73684B30A7B66A52F54C9890327E0A4C0F1D22E3",
+    "chainId": "cosmos:cosmoshub-4",
+    "symbol": "stCMDX",
+    "name": "stCMDX on Cosmos",
+    "precision": 6,
+    "color": "#E40474",
+    "icon": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/stride/asset/stcmdx.png",
+    "explorer": "https://www.mintscan.io/cosmos",
+    "explorerAddressLink": "https://www.mintscan.io/cosmos/account/",
+    "explorerTxLink": "https://www.mintscan.io/cosmos/txs/"
+  },
+  "cosmos:cosmoshub-4/ibc:F5ED5F3DC6F0EF73FA455337C027FE91ABCB375116BF51A228E44C493E020A09": {
+    "assetId": "cosmos:cosmoshub-4/ibc:F5ED5F3DC6F0EF73FA455337C027FE91ABCB375116BF51A228E44C493E020A09",
+    "chainId": "cosmos:cosmoshub-4",
+    "symbol": "ROWAN",
+    "name": "ROWAN on Cosmos",
+    "precision": 18,
+    "color": "#AD8E27",
+    "icon": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/sifchain/asset/rowan.png",
+    "explorer": "https://www.mintscan.io/cosmos",
+    "explorerAddressLink": "https://www.mintscan.io/cosmos/account/",
+    "explorerTxLink": "https://www.mintscan.io/cosmos/txs/"
+  },
+  "cosmos:cosmoshub-4/ibc:F663521BF1836B00F5F177680F74BFB9A8B5654A694D0D2BC249E03CF2509013": {
+    "assetId": "cosmos:cosmoshub-4/ibc:F663521BF1836B00F5F177680F74BFB9A8B5654A694D0D2BC249E03CF2509013",
+    "chainId": "cosmos:cosmoshub-4",
+    "symbol": "USDC",
+    "name": "USDC on Cosmos",
+    "precision": 6,
+    "color": "#2373CB",
+    "icon": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/noble/asset/usdc.png",
+    "explorer": "https://www.mintscan.io/cosmos",
+    "explorerAddressLink": "https://www.mintscan.io/cosmos/account/",
+    "explorerTxLink": "https://www.mintscan.io/cosmos/txs/"
+  },
+  "cosmos:cosmoshub-4/slip44:118": {
+    "assetId": "cosmos:cosmoshub-4/slip44:118",
+    "chainId": "cosmos:cosmoshub-4",
+    "symbol": "ATOM",
+    "name": "Cosmos",
+    "networkName": "Cosmos",
+    "precision": 6,
+    "color": "#303F9F",
+    "icon": "https://assets.coincap.io/assets/icons/256/atom.png",
+    "explorer": "https://www.mintscan.io/cosmos",
+    "explorerAddressLink": "https://www.mintscan.io/cosmos/account/",
+    "explorerTxLink": "https://www.mintscan.io/cosmos/txs/"
+  },
+  "cosmos:thorchain-mainnet-v1/slip44:931": {
+    "assetId": "cosmos:thorchain-mainnet-v1/slip44:931",
+    "chainId": "cosmos:thorchain-mainnet-v1",
+    "name": "THORChain",
+    "networkName": "THORChain",
+    "symbol": "RUNE",
+    "precision": 8,
+    "color": "#33FF99",
+    "icon": "https://assets.coincap.io/assets/icons/rune@2x.png",
+    "explorer": "https://viewblock.io/thorchain",
+    "explorerAddressLink": "https://viewblock.io/thorchain/address/",
+    "explorerTxLink": "https://viewblock.io/thorchain/tx/"
+  },
+  "eip155:1/erc20:0x000000000000d0151e748d25b766e77efe2a6c83": {
+    "assetId": "eip155:1/erc20:0x000000000000d0151e748d25b766e77efe2a6c83",
+    "chainId": "eip155:1",
+    "name": "XDEFI Governance",
+    "precision": 18,
+    "color": "#201B8E",
+    "icon": "https://assets.coingecko.com/coins/images/14485/thumb/logo.png?1696514171",
+    "symbol": "XDEX",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x0000000000085d4780b73119b644ae5ecd22b376": {
+    "assetId": "eip155:1/erc20:0x0000000000085d4780b73119b644ae5ecd22b376",
+    "chainId": "eip155:1",
+    "name": "TrueUSD on Ethereum",
+    "precision": 18,
+    "color": "#1B5BFC",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x0000000000085d4780B73119b644AE5ecd22b376/logo.png",
+    "symbol": "TUSD",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x0000000000095413afc295d19edeb1ad7b71c952": {
+    "assetId": "eip155:1/erc20:0x0000000000095413afc295d19edeb1ad7b71c952",
+    "chainId": "eip155:1",
+    "name": "Tokenlon on Ethereum",
+    "precision": 18,
+    "color": "#272744",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x0000000000095413afC295d19EDeb1Ad7B71c952/logo.png",
+    "symbol": "LON",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x00000000051b48047be6dc0ada6de5c3de86a588": {
+    "assetId": "eip155:1/erc20:0x00000000051b48047be6dc0ada6de5c3de86a588",
+    "chainId": "eip155:1",
+    "name": "Baby Shiba Inu on Ethereum",
+    "precision": 18,
+    "color": "#CD3618",
+    "icon": "https://assets.coingecko.com/coins/images/31350/thumb/100x100_%287%29_%282%29.png?1696530167",
+    "symbol": "BABYSHIB",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x0000000005c6b7c1fd10915a05f034f90d524d6e": {
+    "assetId": "eip155:1/erc20:0x0000000005c6b7c1fd10915a05f034f90d524d6e",
+    "chainId": "eip155:1",
+    "name": "TRYC",
+    "precision": 6,
+    "color": "#BCCC04",
+    "icon": "https://assets.coingecko.com/coins/images/21985/thumb/16357.png?1696521333",
+    "symbol": "TRYC",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x000000007a58f5f58e697e51ab0357bc9e260a04": {
+    "assetId": "eip155:1/erc20:0x000000007a58f5f58e697e51ab0357bc9e260a04",
+    "chainId": "eip155:1",
+    "name": "Concave",
+    "precision": 18,
+    "color": "#0D1238",
+    "icon": "https://assets.coingecko.com/coins/images/24492/thumb/concave.jpg?1696523672",
+    "symbol": "CNV",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x00000000a82b4758df44fcb124e26a9b441e59a0": {
+    "assetId": "eip155:1/erc20:0x00000000a82b4758df44fcb124e26a9b441e59a0",
+    "chainId": "eip155:1",
+    "name": "Zenith Token",
+    "precision": 18,
+    "color": "#D4D4EC",
+    "icon": "https://assets.coingecko.com/coins/images/30221/thumb/Zenith_logo_%281%29.png?1696529131",
+    "symbol": "ZTH",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x00000000ba2ca30042001abc545871380f570b1f": {
+    "assetId": "eip155:1/erc20:0x00000000ba2ca30042001abc545871380f570b1f",
+    "chainId": "eip155:1",
+    "name": "ArithFi on Ethereum",
+    "precision": 18,
+    "color": "#161D1D",
+    "icon": "https://assets.coingecko.com/coins/images/32122/thumb/2.Profile.png?1696586855",
+    "symbol": "ATF",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x00000000bd56856065c00b1ad1b5cdefbf32ba22": {
+    "assetId": "eip155:1/erc20:0x00000000bd56856065c00b1ad1b5cdefbf32ba22",
+    "chainId": "eip155:1",
+    "name": "Ham the Astrochimp",
+    "precision": 18,
+    "color": "#4A5B6D",
+    "icon": "https://assets.coingecko.com/coins/images/30808/thumb/astromonkey_%28200%29.png?1696529665",
+    "symbol": "HAM",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x0000000de40dfa9b17854cbc7869d80f9f98d823": {
+    "assetId": "eip155:1/erc20:0x0000000de40dfa9b17854cbc7869d80f9f98d823",
+    "chainId": "eip155:1",
+    "name": "delta theta on Ethereum",
+    "precision": 18,
+    "color": "#147CF4",
+    "icon": "https://assets.coingecko.com/coins/images/15697/thumb/logo-DT-square.png?1696515325",
+    "symbol": "DLTA",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x000000e29fa2bd3e5c215ffc71aa66b29c9769a2": {
+    "assetId": "eip155:1/erc20:0x000000e29fa2bd3e5c215ffc71aa66b29c9769a2",
+    "chainId": "eip155:1",
+    "name": "Ethereum Express",
+    "precision": 18,
+    "color": "#748790",
+    "icon": "https://assets.coingecko.com/coins/images/31600/thumb/200X200.png?1696530416",
+    "symbol": "ETE",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x0001a500a6b18995b03f44bb040a5ffc28e45cb0": {
+    "assetId": "eip155:1/erc20:0x0001a500a6b18995b03f44bb040a5ffc28e45cb0",
+    "chainId": "eip155:1",
+    "name": "Autonolas on Ethereum",
+    "precision": 18,
+    "color": "#AEAEAE",
+    "icon": "https://assets.coingecko.com/coins/images/31099/thumb/OLAS-token.png?1696529930",
+    "symbol": "OLAS",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x00059ae69c1622a7542edc15e8d17b060fe307b6": {
+    "assetId": "eip155:1/erc20:0x00059ae69c1622a7542edc15e8d17b060fe307b6",
+    "chainId": "eip155:1",
+    "name": "AmonD",
+    "precision": 18,
+    "color": "#DFC799",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x00059AE69c1622A7542EdC15E8d17b060fE307b6/logo.png",
+    "symbol": "AMON",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x0018d5e01e53878f90feab02f1b2019a21adf8b1": {
+    "assetId": "eip155:1/erc20:0x0018d5e01e53878f90feab02f1b2019a21adf8b1",
+    "chainId": "eip155:1",
+    "name": "Shadowcats",
+    "precision": 18,
+    "color": "#272523",
+    "icon": "https://assets.coingecko.com/coins/images/29140/thumb/Shadowcats.png?1696528101",
+    "symbol": "SHADOWCATS",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x00281dfce4cfd72c0b6fda2aaaf077258743f9e8": {
+    "assetId": "eip155:1/erc20:0x00281dfce4cfd72c0b6fda2aaaf077258743f9e8",
+    "chainId": "eip155:1",
+    "name": "NuriFootBall",
+    "precision": 0,
+    "color": "#629464",
+    "icon": "https://assets.coingecko.com/coins/images/23360/thumb/pcMlP25e_400x400.jpg?1696522575",
+    "symbol": "NRFB",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x00282fd551d03dc033256c4bf119532e8c735d8a": {
+    "assetId": "eip155:1/erc20:0x00282fd551d03dc033256c4bf119532e8c735d8a",
+    "chainId": "eip155:1",
+    "name": "Biaocoin",
+    "precision": 2,
+    "color": "#D6D7D8",
+    "icon": "https://assets.coingecko.com/coins/images/30602/thumb/biao_cmc.png?1696529472",
+    "symbol": "BIAO",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x0038e74ff4dad34404e74b0cb96db8ca26efc24d": {
+    "assetId": "eip155:1/erc20:0x0038e74ff4dad34404e74b0cb96db8ca26efc24d",
+    "chainId": "eip155:1",
+    "name": "Scooby Doo",
+    "precision": 18,
+    "color": "#E1C612",
+    "icon": "https://assets.coingecko.com/coins/images/30440/thumb/scooby.png?1696529328",
+    "symbol": "SODO",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x003fe85895030ce120e954b98dc1d96a262a9e89": {
+    "assetId": "eip155:1/erc20:0x003fe85895030ce120e954b98dc1d96a262a9e89",
+    "chainId": "eip155:1",
+    "name": "De Genius Casino",
+    "precision": 18,
+    "color": "#1A1627",
+    "icon": "https://assets.coingecko.com/coins/images/31534/thumb/0xd060e09cbc5de2c474499a0bd5323508f57f1ae6_3_200x204.png?1696530343",
+    "symbol": "DEGEN",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x004626a008b1acdc4c74ab51644093b155e59a23": {
+    "assetId": "eip155:1/erc20:0x004626a008b1acdc4c74ab51644093b155e59a23",
+    "chainId": "eip155:1",
+    "name": "Staked agEUR",
+    "precision": 18,
+    "color": "#84A8F6",
+    "icon": "https://assets.coingecko.com/coins/images/32036/thumb/stEUR-x4.png?1696530832",
+    "symbol": "STEUR",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x0058c8581b9fed6864faa654505bc89890cdb2dd": {
+    "assetId": "eip155:1/erc20:0x0058c8581b9fed6864faa654505bc89890cdb2dd",
+    "chainId": "eip155:1",
+    "name": "BabySmurf9000",
+    "precision": 9,
+    "color": "#C2C6CA",
+    "icon": "https://assets.coingecko.com/coins/images/32088/thumb/651b1d9e97a1e5d967e6eb3a_2023-10-02_12.38.30_%281%29.jpg?1696530886",
+    "symbol": "BS9000",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x005d1123878fc55fbd56b54c73963b234a64af3c": {
+    "assetId": "eip155:1/erc20:0x005d1123878fc55fbd56b54c73963b234a64af3c",
+    "chainId": "eip155:1",
+    "name": "Kiba Inu on Ethereum",
+    "precision": 18,
+    "color": "#E6B1A3",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x005D1123878Fc55fbd56b54C73963b234a64af3c/logo.png",
+    "symbol": "KIBA",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x006bea43baa3f7a6f765f14f10a1a1b08334ef45": {
+    "assetId": "eip155:1/erc20:0x006bea43baa3f7a6f765f14f10a1a1b08334ef45",
+    "chainId": "eip155:1",
+    "name": "Stox",
+    "precision": 18,
+    "color": "#7323F3",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x006BeA43Baa3f7A6f765F14f10A1a1b08334EF45/logo.png",
+    "symbol": "STX",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x0080428794a79a40ae03cf6e6c1d56bd5467a4a2": {
+    "assetId": "eip155:1/erc20:0x0080428794a79a40ae03cf6e6c1d56bd5467a4a2",
+    "chainId": "eip155:1",
+    "name": "LONG  ETH ",
+    "precision": 18,
+    "color": "#8FD0D2",
+    "icon": "https://assets.coingecko.com/coins/images/32559/thumb/IMG_20231005_122433_189.jpg?1698544869",
+    "symbol": "LONG",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x009178997aff09a67d4caccfeb897fb79d036214": {
+    "assetId": "eip155:1/erc20:0x009178997aff09a67d4caccfeb897fb79d036214",
+    "chainId": "eip155:1",
+    "name": "1Sol",
+    "precision": 18,
+    "color": "#0C0912",
+    "icon": "https://assets.coingecko.com/coins/images/21615/thumb/YyGDie9f_400x400.jpg?1696520976",
+    "symbol": "1SOL",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x009668a9691e456972c8ec4cc84e99486308b84d": {
+    "assetId": "eip155:1/erc20:0x009668a9691e456972c8ec4cc84e99486308b84d",
+    "chainId": "eip155:1",
+    "name": "Terareum  OLD ",
+    "precision": 18,
+    "color": "#A9A9A8",
+    "icon": "https://assets.coingecko.com/coins/images/23880/thumb/Tera-200x200-1.png?1696523080",
+    "symbol": "TERA",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x009c43b42aefac590c719e971020575974122803": {
+    "assetId": "eip155:1/erc20:0x009c43b42aefac590c719e971020575974122803",
+    "chainId": "eip155:1",
+    "name": "Bibox",
+    "precision": 18,
+    "color": "#1C242C",
+    "icon": "https://assets.coingecko.com/coins/images/1441/thumb/bibox-token.png?1696502491",
+    "symbol": "BIX",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x00a7ec2f2b451cb0233e8adbf4c9a951027c2b02": {
+    "assetId": "eip155:1/erc20:0x00a7ec2f2b451cb0233e8adbf4c9a951027c2b02",
+    "chainId": "eip155:1",
+    "name": "hiENS4",
+    "precision": 18,
+    "color": "#5C8EFC",
+    "icon": "https://assets.coingecko.com/coins/images/26921/thumb/62f9ec6fd1c44e000102051d_MicrosoftTeams-image.png?1696525978",
+    "symbol": "HIENS4",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x00aba6fe5557de1a1d565658cbddddf7c710a1eb": {
+    "assetId": "eip155:1/erc20:0x00aba6fe5557de1a1d565658cbddddf7c710a1eb",
+    "chainId": "eip155:1",
+    "name": "EasyFi V2 on Ethereum",
+    "precision": 18,
+    "color": "#624A69",
+    "icon": "https://assets.coingecko.com/coins/images/12742/thumb/Logo_Icon.png?1696512540",
+    "symbol": "EZ",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x00b51fc6384a120eac68bea38b889ea92524ab93": {
+    "color": "#FFFFFF",
+    "icon": "https://raw.githubusercontent.com/Idle-Labs/idle-dashboard/master/public/images/tokens/USDC.svg",
+    "name": "Clearpool USDC Senior Tranche",
+    "precision": 18,
+    "symbol": "AA_idle_cpWINC-USDC",
+    "chainId": "eip155:1",
+    "assetId": "eip155:1/erc20:0x00b51fc6384a120eac68bea38b889ea92524ab93",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x00b7db6b4431e345eee5cc23d21e8dbc1d5cada3": {
+    "assetId": "eip155:1/erc20:0x00b7db6b4431e345eee5cc23d21e8dbc1d5cada3",
+    "chainId": "eip155:1",
+    "name": "CyberTronchain",
+    "precision": 18,
+    "color": "#848C8C",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x00B7db6B4431e345eee5cc23D21E8dbC1d5cADA3/logo.png",
+    "symbol": "CTC",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x00b80fcca0fe4fdc3940295aa213738435b0f94e": {
+    "color": "#FFFFFF",
+    "icon": "https://raw.githubusercontent.com/Idle-Labs/idle-dashboard/master/public/images/tokens/USDT.svg",
+    "name": "EulerStaking USDT Junior Tranche",
+    "precision": 18,
+    "symbol": "BB_idleEulStk_eUSDT",
+    "chainId": "eip155:1",
+    "assetId": "eip155:1/erc20:0x00b80fcca0fe4fdc3940295aa213738435b0f94e",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x00c2999c8b2adf4abc835cc63209533973718eb1": {
+    "assetId": "eip155:1/erc20:0x00c2999c8b2adf4abc835cc63209533973718eb1",
+    "chainId": "eip155:1",
+    "name": "New World Order",
+    "precision": 18,
+    "color": "#070707",
+    "icon": "https://assets.coingecko.com/coins/images/27387/thumb/icon.png?1696526428",
+    "symbol": "STATE",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x00c5ca160a968f47e7272a0cfcda36428f386cb6": {
+    "assetId": "eip155:1/erc20:0x00c5ca160a968f47e7272a0cfcda36428f386cb6",
+    "chainId": "eip155:1",
+    "name": "USDEBT",
+    "precision": 18,
+    "color": "#365587",
+    "icon": "https://assets.coingecko.com/coins/images/31448/thumb/9Fba1z-c_400x400.jpg?1696530262",
+    "symbol": "USDEBT",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x00c83aecc790e8a4453e5dd3b0b4b3680501a7a7": {
+    "assetId": "eip155:1/erc20:0x00c83aecc790e8a4453e5dd3b0b4b3680501a7a7",
+    "chainId": "eip155:1",
+    "name": "SKALE",
+    "precision": 18,
+    "color": "#040404",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x00c83aeCC790e8a4453e5dD3B0B4b3680501a7A7/logo.png",
+    "symbol": "SKL",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x00c8555542158fff0feb892c8e000a8d1831762c": {
+    "assetId": "eip155:1/erc20:0x00c8555542158fff0feb892c8e000a8d1831762c",
+    "chainId": "eip155:1",
+    "name": "Mori Finance",
+    "precision": 18,
+    "color": "#ADC9BB",
+    "icon": "https://assets.coingecko.com/coins/images/31885/thumb/MORI.jpg?1696530696",
+    "symbol": "MORI",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x00d8318e44780edeefcf3020a5448f636788883c": {
+    "assetId": "eip155:1/erc20:0x00d8318e44780edeefcf3020a5448f636788883c",
+    "chainId": "eip155:1",
+    "name": "dAppstore",
+    "precision": 18,
+    "color": "#E01F34",
+    "icon": "https://assets.coingecko.com/coins/images/15780/thumb/large-logo.png?1696515404",
+    "symbol": "DAPPX",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x00e679ba63b509182c349f5614f0a07cdd0ce0c5": {
+    "assetId": "eip155:1/erc20:0x00e679ba63b509182c349f5614f0a07cdd0ce0c5",
+    "chainId": "eip155:1",
+    "name": "Damex Token",
+    "precision": 18,
+    "color": "#1F924E",
+    "icon": "https://assets.coingecko.com/coins/images/30053/thumb/damex.jpg?1696528975",
+    "symbol": "DAMEX",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x00fc270c9cc13e878ab5363d00354bebf6f05c15": {
+    "assetId": "eip155:1/erc20:0x00fc270c9cc13e878ab5363d00354bebf6f05c15",
+    "chainId": "eip155:1",
+    "name": "VNX Exchange",
+    "precision": 18,
+    "color": "#04BCFC",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x00fC270C9cc13e878Ab5363D00354bebF6f05C15/logo.png",
+    "symbol": "VNXLU",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x0100546f2cd4c9d97f798ffc9755e47865ff7ee6": {
+    "assetId": "eip155:1/erc20:0x0100546f2cd4c9d97f798ffc9755e47865ff7ee6",
+    "chainId": "eip155:1",
+    "name": "Alchemix ETH on Ethereum",
+    "precision": 18,
+    "color": "#242434",
+    "icon": "https://assets.coingecko.com/coins/images/16271/thumb/aleth.png?1696515869",
+    "symbol": "ALETH",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x0106a1122fe94a9cf151097c1fe17229ec78ffad": {
+    "assetId": "eip155:1/erc20:0x0106a1122fe94a9cf151097c1fe17229ec78ffad",
+    "chainId": "eip155:1",
+    "name": "Eco DeFi on Ethereum",
+    "precision": 18,
+    "color": "#D7F4E0",
+    "icon": "https://assets.coingecko.com/coins/images/19535/thumb/eco_global.PNG?1696518968",
+    "symbol": "ECOP",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x0107c4aaa31940ef88760acb1f32424ca8d8bd80": {
+    "assetId": "eip155:1/erc20:0x0107c4aaa31940ef88760acb1f32424ca8d8bd80",
+    "chainId": "eip155:1",
+    "name": "Authencity",
+    "precision": 8,
+    "color": "#189DD2",
+    "icon": "https://assets.coingecko.com/coins/images/26960/thumb/1.png?1696526015",
+    "symbol": "AUTH",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x010d14d36c3ea6570d240ae3ac9d660398f7c48e": {
+    "assetId": "eip155:1/erc20:0x010d14d36c3ea6570d240ae3ac9d660398f7c48e",
+    "chainId": "eip155:1",
+    "name": "XCF Token",
+    "precision": 18,
+    "color": "#EDF5FA",
+    "icon": "https://assets.coingecko.com/coins/images/10987/thumb/xcf-icon-01-1-flat.png?1696510936",
+    "symbol": "XCF",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x012e0e6342308b247f36ee500ecb14dc77a7a8c1": {
+    "assetId": "eip155:1/erc20:0x012e0e6342308b247f36ee500ecb14dc77a7a8c1",
+    "chainId": "eip155:1",
+    "name": "Sukhavati Network",
+    "precision": 8,
+    "color": "#E5ECF8",
+    "icon": "https://assets.coingecko.com/coins/images/17674/thumb/logo2.png?1696517204",
+    "symbol": "SKT",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x013062189dc3dcc99e9cee714c513033b8d99e3c": {
+    "assetId": "eip155:1/erc20:0x013062189dc3dcc99e9cee714c513033b8d99e3c",
+    "chainId": "eip155:1",
+    "name": "Bware on Ethereum",
+    "precision": 18,
+    "color": "#8D650C",
+    "icon": "https://assets.coingecko.com/coins/images/30546/thumb/infra-token-square.png?1696529418",
+    "symbol": "INFRA",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x015628ce9150db1bce2fbb717a09e846f8a32436": {
+    "assetId": "eip155:1/erc20:0x015628ce9150db1bce2fbb717a09e846f8a32436",
+    "chainId": "eip155:1",
+    "name": "Big Bonus Coin  ETH ",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/32660/thumb/BBC-ETH-logo.png?1698900727",
+    "symbol": "BBC",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x01597e397605bf280674bf292623460b4204c375": {
+    "assetId": "eip155:1/erc20:0x01597e397605bf280674bf292623460b4204c375",
+    "chainId": "eip155:1",
+    "name": "Bent Finance",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/21274/thumb/bent-logo-200x200.png?1696520645",
+    "symbol": "BENT",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x0173661769325565d4f011b2e5cda688689cc87c": {
+    "assetId": "eip155:1/erc20:0x0173661769325565d4f011b2e5cda688689cc87c",
+    "chainId": "eip155:1",
+    "name": "Quantland",
+    "precision": 9,
+    "color": "#0A0608",
+    "icon": "https://assets.coingecko.com/coins/images/24536/thumb/8jYfKBTk_400x400.jpg?1696523713",
+    "symbol": "QLT",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x0176b898e92e814c06cc379e508ceb571f70bd40": {
+    "assetId": "eip155:1/erc20:0x0176b898e92e814c06cc379e508ceb571f70bd40",
+    "chainId": "eip155:1",
+    "name": "Tipcoin",
+    "precision": 18,
+    "color": "#080808",
+    "icon": "https://assets.coingecko.com/coins/images/31845/thumb/tip.png?1696530659",
+    "symbol": "TIP",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x01792e1548dc317bde6123fe92da1fe6d7311c3c": {
+    "assetId": "eip155:1/erc20:0x01792e1548dc317bde6123fe92da1fe6d7311c3c",
+    "chainId": "eip155:1",
+    "name": "Spiral",
+    "precision": 9,
+    "color": "#798CA9",
+    "icon": "https://assets.coingecko.com/coins/images/26615/thumb/200logo.png?1696525689",
+    "symbol": "SPIRAL",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x017e9db34fc69af0dc7c7b4b33511226971cddc7": {
+    "assetId": "eip155:1/erc20:0x017e9db34fc69af0dc7c7b4b33511226971cddc7",
+    "chainId": "eip155:1",
+    "name": "On Chain Dynamics",
+    "precision": 18,
+    "color": "#E180F1",
+    "icon": "https://assets.coingecko.com/coins/images/31639/thumb/Screenshot_2023-09-01_010740.png?1696530455",
+    "symbol": "OCD",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x018008bfb33d285247a21d44e50697654f754e63": {
+    "assetId": "eip155:1/erc20:0x018008bfb33d285247a21d44e50697654f754e63",
+    "chainId": "eip155:1",
+    "name": "Aave v3 DAI on Ethereum",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/32886/thumb/dai.png?1699769446",
+    "symbol": "ADAI",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x018fb5af9d015af25592a014c4266a84143de7a0": {
+    "assetId": "eip155:1/erc20:0x018fb5af9d015af25592a014c4266a84143de7a0",
+    "chainId": "eip155:1",
+    "name": "MP3",
+    "precision": 18,
+    "color": "#1C1C44",
+    "icon": "https://assets.coingecko.com/coins/images/13897/thumb/1_sq13-ssNvv2APEFcy8dWJg.png?1696513640",
+    "symbol": "MP3",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x0198f46f520f33cd4329bd4be380a25a90536cd5": {
+    "assetId": "eip155:1/erc20:0x0198f46f520f33cd4329bd4be380a25a90536cd5",
+    "chainId": "eip155:1",
+    "name": "PlayChip",
+    "precision": 18,
+    "color": "#23BC78",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x0198f46f520F33cd4329bd4bE380a25a90536CD5/logo.png",
+    "symbol": "PLA",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x01b23286ff60a543ec29366ae8d6b6274ca20541": {
+    "assetId": "eip155:1/erc20:0x01b23286ff60a543ec29366ae8d6b6274ca20541",
+    "chainId": "eip155:1",
+    "name": "Brother Music Platform",
+    "precision": 18,
+    "color": "#F6CE1E",
+    "icon": "https://assets.coingecko.com/coins/images/13207/thumb/BMP_logo.png?1696512987",
+    "symbol": "BMP",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x01ba67aac7f75f647d94220cc98fb30fcc5105bf": {
+    "assetId": "eip155:1/erc20:0x01ba67aac7f75f647d94220cc98fb30fcc5105bf",
+    "chainId": "eip155:1",
+    "name": "Lyra Finance on Ethereum",
+    "precision": 18,
+    "color": "#3BD299",
+    "icon": "https://assets.coingecko.com/coins/images/21490/thumb/Add-a-heading-26.png?1696520850",
+    "symbol": "LYRA",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x01d33fd36ec67c6ada32cf36b31e88ee190b1839": {
+    "assetId": "eip155:1/erc20:0x01d33fd36ec67c6ada32cf36b31e88ee190b1839",
+    "chainId": "eip155:1",
+    "name": "Brazilian Digital on Ethereum",
+    "precision": 18,
+    "color": "#160633",
+    "icon": "https://assets.coingecko.com/coins/images/8472/thumb/MicrosoftTeams-image_%286%29.png?1696508657",
+    "symbol": "BRZ",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x01e87d74b11f656a673a3e7c441425816213eb0c": {
+    "assetId": "eip155:1/erc20:0x01e87d74b11f656a673a3e7c441425816213eb0c",
+    "chainId": "eip155:1",
+    "name": "Sonic",
+    "precision": 18,
+    "color": "#CEA163",
+    "icon": "https://assets.coingecko.com/coins/images/31480/thumb/Sonic-The-Hot-Dog-NO-BG-NO-TEXT-1.png?1696530292",
+    "symbol": "HOTDOG",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x01eeffcd9a10266ed00946121df097eed173b43d": {
+    "assetId": "eip155:1/erc20:0x01eeffcd9a10266ed00946121df097eed173b43d",
+    "chainId": "eip155:1",
+    "name": "XDoge",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/32734/thumb/5365F431-9922-4CC4-BE80-FDB7A86E3764.png?1699219089",
+    "symbol": "XD",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x01ff50f8b7f74e4f00580d9596cd3d0d6d6e326f": {
+    "assetId": "eip155:1/erc20:0x01ff50f8b7f74e4f00580d9596cd3d0d6d6e326f",
+    "chainId": "eip155:1",
+    "name": "BnkToTheFuture",
+    "precision": 18,
+    "color": "#14145D",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x01fF50f8b7f74E4f00580d9596cd3D0d6d6E326f/logo.png",
+    "symbol": "BFT",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x0202be363b8a4820f3f4de7faf5224ff05943ab1": {
+    "assetId": "eip155:1/erc20:0x0202be363b8a4820f3f4de7faf5224ff05943ab1",
+    "chainId": "eip155:1",
+    "name": "UniLend Finance on Ethereum",
+    "precision": 18,
+    "color": "#2B6CEB",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x0202Be363B8a4820f3F4DE7FaF5224fF05943AB1/logo.png",
+    "symbol": "UFT",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x024b6e7dc26f4d5579bdd936f8d7bc31f2339999": {
+    "assetId": "eip155:1/erc20:0x024b6e7dc26f4d5579bdd936f8d7bc31f2339999",
+    "chainId": "eip155:1",
+    "name": "Mithril Share",
+    "precision": 18,
+    "color": "#DFC696",
+    "icon": "https://assets.coingecko.com/coins/images/13516/thumb/MIS.png?1696513277",
+    "symbol": "MIS",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x0257ffd7ea2ebba4aaa090c7adbdd032a08c1f74": {
+    "assetId": "eip155:1/erc20:0x0257ffd7ea2ebba4aaa090c7adbdd032a08c1f74",
+    "chainId": "eip155:1",
+    "name": "ZELIX",
+    "precision": 18,
+    "color": "#25344D",
+    "icon": "https://assets.coingecko.com/coins/images/32453/thumb/ZELIX.jpg?1698240797",
+    "symbol": "ZELIX",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x0258f474786ddfd37abce6df6bbb1dd5dfc4434a": {
+    "assetId": "eip155:1/erc20:0x0258f474786ddfd37abce6df6bbb1dd5dfc4434a",
+    "chainId": "eip155:1",
+    "name": "Orion",
+    "precision": 8,
+    "color": "#61AFD1",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x0258F474786DdFd37ABCE6df6BBb1Dd5dfC4434a/logo.png",
+    "symbol": "ORN",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x0262e9374e95b9667b78136c3897cb4e4ef7f0c2": {
+    "assetId": "eip155:1/erc20:0x0262e9374e95b9667b78136c3897cb4e4ef7f0c2",
+    "chainId": "eip155:1",
+    "name": "Medifakt on Ethereum",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/25248/thumb/fxOi9ZYI_400x400.png?1696524389",
+    "symbol": "FAKT",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x0275e1001e293c46cfe158b3702aade0b99f88a5": {
+    "assetId": "eip155:1/erc20:0x0275e1001e293c46cfe158b3702aade0b99f88a5",
+    "chainId": "eip155:1",
+    "name": "Oiler",
+    "precision": 18,
+    "color": "#DBD19A",
+    "icon": "https://assets.coingecko.com/coins/images/15249/thumb/oiler.png?1696514902",
+    "symbol": "OIL",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x027bf54126482b66b0f26a680f03029db3de37aa": {
+    "assetId": "eip155:1/erc20:0x027bf54126482b66b0f26a680f03029db3de37aa",
+    "chainId": "eip155:1",
+    "name": "DiviDoge",
+    "precision": 18,
+    "color": "#E1C2A4",
+    "icon": "https://assets.coingecko.com/coins/images/31325/thumb/DiviDoge_Isolated_200.png?1696530144",
+    "symbol": "DVDOGE",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x028171bca77440897b824ca71d1c56cac55b68a3": {
+    "assetId": "eip155:1/erc20:0x028171bca77440897b824ca71d1c56cac55b68a3",
+    "chainId": "eip155:1",
+    "name": "Aave DAI",
+    "precision": 18,
+    "color": "#FCBA36",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x028171bCA77440897B824Ca71D1c56caC55b68A3/logo.png",
+    "symbol": "ADAI",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x02a739710d5e469ffca483f898ee9aea27b8bb8f": {
+    "assetId": "eip155:1/erc20:0x02a739710d5e469ffca483f898ee9aea27b8bb8f",
+    "chainId": "eip155:1",
+    "name": "BasedPepe",
+    "precision": 18,
+    "color": "#67A058",
+    "icon": "https://assets.coingecko.com/coins/images/30220/thumb/Based_Pepe.png?1696529130",
+    "symbol": "BPEPE",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x02ad335dd3ca11c18cebbbb583b9613b6289d75f": {
+    "assetId": "eip155:1/erc20:0x02ad335dd3ca11c18cebbbb583b9613b6289d75f",
+    "chainId": "eip155:1",
+    "name": "BPEGd",
+    "precision": 18,
+    "color": "#772413",
+    "icon": "https://assets.coingecko.com/coins/images/29310/thumb/BPEGd_Governance_Token.png?1696528261",
+    "symbol": "BPEG",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x02b87cde9932ef36df3607ac1a8c24bdf23d988c": {
+    "assetId": "eip155:1/erc20:0x02b87cde9932ef36df3607ac1a8c24bdf23d988c",
+    "chainId": "eip155:1",
+    "name": "Stonks Bot",
+    "precision": 18,
+    "color": "#ACBFFC",
+    "icon": "https://assets.coingecko.com/coins/images/31917/thumb/STONKS_LOGO_2.png?1696530725",
+    "symbol": "STONKS",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x02c3296c6eb50249f290ae596f2be9454bffadab": {
+    "assetId": "eip155:1/erc20:0x02c3296c6eb50249f290ae596f2be9454bffadab",
+    "chainId": "eip155:1",
+    "name": "Rejuve AI on Ethereum",
+    "precision": 6,
+    "color": "#74C8C6",
+    "icon": "https://assets.coingecko.com/coins/images/29366/thumb/2023_Rejuve_Logo_-_Square_-_Teal.jpg?1696528314",
+    "symbol": "RJV",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x02d3a27ac3f55d5d91fb0f52759842696a864217": {
+    "assetId": "eip155:1/erc20:0x02d3a27ac3f55d5d91fb0f52759842696a864217",
+    "chainId": "eip155:1",
+    "name": "Charged Particles",
+    "precision": 18,
+    "color": "#5B3864",
+    "icon": "https://assets.coingecko.com/coins/images/15836/thumb/DrKjSQMH_400x400.png?1696515454",
+    "symbol": "IONX",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x02d7a93829b365b7ad4c582dace1493aac50a290": {
+    "assetId": "eip155:1/erc20:0x02d7a93829b365b7ad4c582dace1493aac50a290",
+    "chainId": "eip155:1",
+    "name": "Scat",
+    "precision": 18,
+    "color": "#F8C332",
+    "icon": "https://assets.coingecko.com/coins/images/30429/thumb/output-onlinepngtools.png?1696529317",
+    "symbol": "CAT",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x02de007d412266a2e0fa9287c103474170f06560": {
+    "assetId": "eip155:1/erc20:0x02de007d412266a2e0fa9287c103474170f06560",
+    "chainId": "eip155:1",
+    "name": "Exorde",
+    "precision": 18,
+    "color": "#EC742C",
+    "icon": "https://assets.coingecko.com/coins/images/28684/thumb/logo-exorde.png?1696527668",
+    "symbol": "EXD",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x02e7ac540409d32c90bfb51114003a9e1ff0249c": {
+    "assetId": "eip155:1/erc20:0x02e7ac540409d32c90bfb51114003a9e1ff0249c",
+    "chainId": "eip155:1",
+    "name": "JPG NFT Index on Ethereum",
+    "precision": 18,
+    "color": "#12EBDC",
+    "icon": "https://assets.coingecko.com/coins/images/25071/thumb/JPG-token-logo-01.png?1696524219",
+    "symbol": "JPG",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x02e7f808990638e9e67e1f00313037ede2362361": {
+    "assetId": "eip155:1/erc20:0x02e7f808990638e9e67e1f00313037ede2362361",
+    "chainId": "eip155:1",
+    "name": "KiboShib",
+    "precision": 18,
+    "color": "#C69150",
+    "icon": "https://assets.coingecko.com/coins/images/29335/thumb/foto_no_exif_%2811%29%282%29_%281%29.png?1696528285",
+    "symbol": "KIBSHI",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x03042482d64577a7bdb282260e2ea4c8a89c064b": {
+    "assetId": "eip155:1/erc20:0x03042482d64577a7bdb282260e2ea4c8a89c064b",
+    "chainId": "eip155:1",
+    "name": "Centaur on Ethereum",
+    "precision": 18,
+    "color": "#34CC34",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x03042482d64577A7bdb282260e2eA4c8a89C064B/logo.png",
+    "symbol": "CNTR",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x03042ae6fcfd53e3a0baa1fab5ce70e0cb74e6fb": {
+    "assetId": "eip155:1/erc20:0x03042ae6fcfd53e3a0baa1fab5ce70e0cb74e6fb",
+    "chainId": "eip155:1",
+    "name": "Ten Best Coins",
+    "precision": 18,
+    "color": "#C9A33E",
+    "icon": "https://assets.coingecko.com/coins/images/27312/thumb/tbc.png?1696526362",
+    "symbol": "TBC",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x03049b395147713ae53c0617093675b4b86dde78": {
+    "assetId": "eip155:1/erc20:0x03049b395147713ae53c0617093675b4b86dde78",
+    "chainId": "eip155:1",
+    "name": "BobaCat",
+    "precision": 18,
+    "color": "#C3BFBF",
+    "icon": "https://assets.coingecko.com/coins/images/31777/thumb/cg.png?1696530595",
+    "symbol": "PSPS",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x030ba81f1c18d280636f32af80b9aad02cf0854e": {
+    "assetId": "eip155:1/erc20:0x030ba81f1c18d280636f32af80b9aad02cf0854e",
+    "chainId": "eip155:1",
+    "name": "Aave WETH",
+    "precision": 18,
+    "color": "#7187B1",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x030bA81f1c18d280636F32af80b9AAd02Cf0854e/logo.png",
+    "symbol": "AWETH",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x0316eb71485b0ab14103307bf65a021042c6d380": {
+    "assetId": "eip155:1/erc20:0x0316eb71485b0ab14103307bf65a021042c6d380",
+    "chainId": "eip155:1",
+    "name": "Huobi BTC",
+    "precision": 18,
+    "color": "#FB9C2C",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x0316EB71485b0Ab14103307bf65a021042c6d380/logo.png",
+    "symbol": "HBTC",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x0335a7610d817aeca1bebbefbd392ecc2ed587b8": {
+    "assetId": "eip155:1/erc20:0x0335a7610d817aeca1bebbefbd392ecc2ed587b8",
+    "chainId": "eip155:1",
+    "name": "Nitro League on Ethereum",
+    "precision": 18,
+    "color": "#F01645",
+    "icon": "https://assets.coingecko.com/coins/images/21668/thumb/_X6vYBDM_400x400.jpg?1696521025",
+    "symbol": "NITRO",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x033e223870f766644f7f7a4b7dc2e91573707d06": {
+    "assetId": "eip155:1/erc20:0x033e223870f766644f7f7a4b7dc2e91573707d06",
+    "chainId": "eip155:1",
+    "name": "Zin",
+    "precision": 18,
+    "color": "#149C94",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x033e223870f766644f7f7a4B7dc2E91573707d06/logo.png",
+    "symbol": "ZIN",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x0343131c0257ac21ea5a8dc83841f071efd9285c": {
+    "assetId": "eip155:1/erc20:0x0343131c0257ac21ea5a8dc83841f071efd9285c",
+    "chainId": "eip155:1",
+    "name": "Zenith Chain on Ethereum",
+    "precision": 18,
+    "color": "#3C84DC",
+    "icon": "https://assets.coingecko.com/coins/images/21266/thumb/Jqtp-OVG_400x400.png?1696520637",
+    "symbol": "ZENITH",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x03475e14de25908ed484eb99ad38d68cb6399807": {
+    "assetId": "eip155:1/erc20:0x03475e14de25908ed484eb99ad38d68cb6399807",
+    "chainId": "eip155:1",
+    "name": "Blue Team",
+    "precision": 9,
+    "color": "#3C82F4",
+    "icon": "https://assets.coingecko.com/coins/images/31443/thumb/blueteam.jpeg?1696530257",
+    "symbol": "BLUE",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x0352557b007a4aae1511c114409b932f06f9e2f4": {
+    "assetId": "eip155:1/erc20:0x0352557b007a4aae1511c114409b932f06f9e2f4",
+    "chainId": "eip155:1",
+    "name": "sRUNE",
+    "precision": 18,
+    "color": "#35D2A7",
+    "icon": "https://assets.coingecko.com/coins/images/14953/thumb/sRUNE.png?1696514611",
+    "symbol": "SRUNE",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x035bfe6057e15ea692c0dfdcab3bb41a64dd2ad4": {
+    "assetId": "eip155:1/erc20:0x035bfe6057e15ea692c0dfdcab3bb41a64dd2ad4",
+    "chainId": "eip155:1",
+    "name": "Universal Liquidity Union",
+    "precision": 18,
+    "color": "#24B4E3",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x035bfe6057E15Ea692c0DfdcaB3BB41a64Dd2aD4/logo.png",
+    "symbol": "ULU",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x035df12e0f3ac6671126525f1015e47d79dfeddf": {
+    "assetId": "eip155:1/erc20:0x035df12e0f3ac6671126525f1015e47d79dfeddf",
+    "chainId": "eip155:1",
+    "name": "0xMonero on Ethereum",
+    "precision": 18,
+    "color": "#54FCDC",
+    "icon": "https://assets.coingecko.com/coins/images/11035/thumb/0xmnr.PNG?1696510979",
+    "symbol": "0XMR",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x037a54aab062628c9bbae1fdb1583c195585fe41": {
+    "assetId": "eip155:1/erc20:0x037a54aab062628c9bbae1fdb1583c195585fe41",
+    "chainId": "eip155:1",
+    "name": "LCX",
+    "precision": 18,
+    "color": "#6C6C6C",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x037A54AaB062628C9Bbae1FDB1583c195585fe41/logo.png",
+    "symbol": "LCX",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x03806ce5ef69bd9780edfb04c29da1f23db96294": {
+    "assetId": "eip155:1/erc20:0x03806ce5ef69bd9780edfb04c29da1f23db96294",
+    "chainId": "eip155:1",
+    "name": "Tesla TSL",
+    "precision": 18,
+    "color": "#5AAB85",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x03806Ce5ef69Bd9780EDFb04c29da1F23Db96294/logo.png",
+    "symbol": "TSL",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x0383e1c4af6fed9f127e901ca982fa61333e932c": {
+    "assetId": "eip155:1/erc20:0x0383e1c4af6fed9f127e901ca982fa61333e932c",
+    "chainId": "eip155:1",
+    "name": "Mr  Hankey",
+    "precision": 18,
+    "color": "#A07054",
+    "icon": "https://assets.coingecko.com/coins/images/30999/thumb/IMG_6836.jpeg?1696529837",
+    "symbol": "HANKEY",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x038a68ff68c393373ec894015816e33ad41bd564": {
+    "assetId": "eip155:1/erc20:0x038a68ff68c393373ec894015816e33ad41bd564",
+    "chainId": "eip155:1",
+    "name": "Glitch Protocol on Ethereum",
+    "precision": 18,
+    "color": "#EAF6FA",
+    "icon": "https://assets.coingecko.com/coins/images/13712/thumb/glitch_logo.jpeg?1696513457",
+    "symbol": "GLCH",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x0391d2021f89dc339f60fff84546ea23e337750f": {
+    "assetId": "eip155:1/erc20:0x0391d2021f89dc339f60fff84546ea23e337750f",
+    "chainId": "eip155:1",
+    "name": "BarnBridge on Ethereum",
+    "precision": 18,
+    "color": "#FC443C",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x0391D2021f89DC339F60Fff84546EA23E337750f/logo.png",
+    "symbol": "BOND",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x03ab458634910aad20ef5f1c8ee96f1d6ac54919": {
+    "assetId": "eip155:1/erc20:0x03ab458634910aad20ef5f1c8ee96f1d6ac54919",
+    "chainId": "eip155:1",
+    "name": "Rai Reflex Index on Ethereum",
+    "precision": 18,
+    "color": "#1F2C2C",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x03ab458634910AaD20eF5f1C8ee96F1D6ac54919/logo.png",
+    "symbol": "RAI",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x03be5c903c727ee2c8c4e9bc0acc860cca4715e2": {
+    "assetId": "eip155:1/erc20:0x03be5c903c727ee2c8c4e9bc0acc860cca4715e2",
+    "chainId": "eip155:1",
+    "name": "Ternoa on Ethereum",
+    "precision": 18,
+    "color": "#050505",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x03Be5C903c727Ee2C8C4e9bc0AcC860Cca4715e2/logo.png",
+    "symbol": "CAPS",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x03d1e72765545729a035e909edd9371a405f77fb": {
+    "assetId": "eip155:1/erc20:0x03d1e72765545729a035e909edd9371a405f77fb",
+    "chainId": "eip155:1",
+    "name": "Nabox on Ethereum",
+    "precision": 18,
+    "color": "#2CCC8C",
+    "icon": "https://assets.coingecko.com/coins/images/16445/thumb/NyemjVRA_400x400.png?1696516042",
+    "symbol": "NABOX",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x03dde9e5bb31ee40a471476e2fccf75c67921062": {
+    "assetId": "eip155:1/erc20:0x03dde9e5bb31ee40a471476e2fccf75c67921062",
+    "chainId": "eip155:1",
+    "name": "EML Protocol",
+    "precision": 18,
+    "color": "#AECD0F",
+    "icon": "https://assets.coingecko.com/coins/images/30950/thumb/EML_LOGO.png?1696529788",
+    "symbol": "EML",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x03ee5026c07d85ff8ae791370dd0f4c1ae6c97fc": {
+    "assetId": "eip155:1/erc20:0x03ee5026c07d85ff8ae791370dd0f4c1ae6c97fc",
+    "chainId": "eip155:1",
+    "name": "0x Leverage",
+    "precision": 18,
+    "color": "#050705",
+    "icon": "https://assets.coingecko.com/coins/images/31977/thumb/Ox.jpeg?1696530780",
+    "symbol": "OXL",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x03f813f7d066c55e3512985186df3b4e6a08e0d6": {
+    "assetId": "eip155:1/erc20:0x03f813f7d066c55e3512985186df3b4e6a08e0d6",
+    "chainId": "eip155:1",
+    "name": "Shepherd Inu",
+    "precision": 9,
+    "color": "#C6302D",
+    "icon": "https://assets.coingecko.com/coins/images/30366/thumb/SINU.jpg?1696529263",
+    "symbol": "SINU",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x0414d8c87b271266a5864329fb4932bbe19c0c49": {
+    "assetId": "eip155:1/erc20:0x0414d8c87b271266a5864329fb4932bbe19c0c49",
+    "chainId": "eip155:1",
+    "name": "WSB Coin",
+    "precision": 18,
+    "color": "#F8C10E",
+    "icon": "https://assets.coingecko.com/coins/images/30060/thumb/wsb_pfp.png?1696528981",
+    "symbol": "WSB",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x044d078f1c86508e13328842cc75ac021b272958": {
+    "assetId": "eip155:1/erc20:0x044d078f1c86508e13328842cc75ac021b272958",
+    "chainId": "eip155:1",
+    "name": "Peercoin on Ethereum",
+    "precision": 6,
+    "color": "#E8F4E8",
+    "icon": "https://assets.coingecko.com/coins/images/4/thumb/peercoin-icon-green-transparent_6x.png?1696501402",
+    "symbol": "PPC",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x04506dddbf689714487f91ae1397047169afcf34": {
+    "assetId": "eip155:1/erc20:0x04506dddbf689714487f91ae1397047169afcf34",
+    "chainId": "eip155:1",
+    "name": "Unlock Maverick on Ethereum",
+    "precision": 18,
+    "color": "#E4DDD7",
+    "icon": "https://assets.coingecko.com/coins/images/31264/thumb/clean.jpg?1696530088",
+    "symbol": "UNKMAV",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x045109cf1be9edec048aa0b3d7a323154a1aea65": {
+    "assetId": "eip155:1/erc20:0x045109cf1be9edec048aa0b3d7a323154a1aea65",
+    "chainId": "eip155:1",
+    "name": "Elevate Token",
+    "precision": 18,
+    "color": "#492089",
+    "icon": "https://assets.coingecko.com/coins/images/30085/thumb/elevate.jpeg?1696529009",
+    "symbol": "ELEV",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x045da4bfe02b320f4403674b3b7d121737727a36": {
+    "assetId": "eip155:1/erc20:0x045da4bfe02b320f4403674b3b7d121737727a36",
+    "chainId": "eip155:1",
+    "name": "DeFi Franc",
+    "precision": 18,
+    "color": "#BC1007",
+    "icon": "https://assets.coingecko.com/coins/images/28108/thumb/22249.png?1696527116",
+    "symbol": "DCHF",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x0463af01962893f585f2326057af48e53d4dd7ed": {
+    "assetId": "eip155:1/erc20:0x0463af01962893f585f2326057af48e53d4dd7ed",
+    "chainId": "eip155:1",
+    "name": "HAPPYCAT",
+    "precision": 18,
+    "color": "#E7E5E2",
+    "icon": "https://assets.coingecko.com/coins/images/32163/thumb/HAPPYCAT.jpg?1696722576",
+    "symbol": "HAPPYCAT",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x046eee2cc3188071c02bfc1745a6b17c656e3f3d": {
+    "assetId": "eip155:1/erc20:0x046eee2cc3188071c02bfc1745a6b17c656e3f3d",
+    "chainId": "eip155:1",
+    "name": "Rollbit Coin",
+    "precision": 18,
+    "color": "#2E2A2A",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x046EeE2cc3188071C02BfC1745A6b17c656e3f3d/logo.png",
+    "symbol": "RLB",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x0478aa9246eb94c87fddb470d53330a8f8b0c65e": {
+    "assetId": "eip155:1/erc20:0x0478aa9246eb94c87fddb470d53330a8f8b0c65e",
+    "chainId": "eip155:1",
+    "name": "Antis Inu",
+    "precision": 18,
+    "color": "#A69576",
+    "icon": "https://assets.coingecko.com/coins/images/22157/thumb/K9zKFb8G_400x400.jpg?1696521501",
+    "symbol": "ANTIS",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x0488401c3f535193fa8df029d9ffe615a06e74e6": {
+    "assetId": "eip155:1/erc20:0x0488401c3f535193fa8df029d9ffe615a06e74e6",
+    "chainId": "eip155:1",
+    "name": "SparkPoint",
+    "precision": 18,
+    "color": "#F07736",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x0488401c3F535193Fa8Df029d9fFe615A06E74E6/logo.png",
+    "symbol": "SRK",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x048aa6e69d5117bd665af4128383a6982b8367b3": {
+    "assetId": "eip155:1/erc20:0x048aa6e69d5117bd665af4128383a6982b8367b3",
+    "chainId": "eip155:1",
+    "name": "VoxNET",
+    "precision": 4,
+    "color": "#4C564C",
+    "icon": "https://assets.coingecko.com/coins/images/28369/thumb/VoxNETlogo.png?1696527372",
+    "symbol": "VXON",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x048fe49be32adfc9ed68c37d32b5ec9df17b3603": {
+    "assetId": "eip155:1/erc20:0x048fe49be32adfc9ed68c37d32b5ec9df17b3603",
+    "chainId": "eip155:1",
+    "name": "Skrumble Network",
+    "precision": 18,
+    "color": "#040404",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x048Fe49BE32adfC9ED68C37D32B5ec9Df17b3603/logo.png",
+    "symbol": "SKM",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x04969cd041c0cafb6ac462bd65b536a5bdb3a670": {
+    "assetId": "eip155:1/erc20:0x04969cd041c0cafb6ac462bd65b536a5bdb3a670",
+    "chainId": "eip155:1",
+    "name": "Wrapped ECOMI",
+    "precision": 18,
+    "color": "#3C3C3C",
+    "icon": "https://assets.coingecko.com/coins/images/14675/thumb/ecomi.jpg?1696514349",
+    "symbol": "WOMI",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x049715c70fdbdd2be4814f76a53dc3d6f4367756": {
+    "assetId": "eip155:1/erc20:0x049715c70fdbdd2be4814f76a53dc3d6f4367756",
+    "chainId": "eip155:1",
+    "name": "Nezuko",
+    "precision": 18,
+    "color": "#E9CEC5",
+    "icon": "https://assets.coingecko.com/coins/images/30014/thumb/Nezuko_Logo.png?1696528938",
+    "symbol": "NEZUKO",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x049e9f5369358786a1ce6483d668d062cfe547ec": {
+    "assetId": "eip155:1/erc20:0x049e9f5369358786a1ce6483d668d062cfe547ec",
+    "chainId": "eip155:1",
+    "name": "Checks Token",
+    "precision": 18,
+    "color": "#DFCB84",
+    "icon": "https://assets.coingecko.com/coins/images/30367/thumb/checkstoken-200x200.png?1696529264",
+    "symbol": "CHECKS",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x04a020325024f130988782bd5276e53595e8d16e": {
+    "assetId": "eip155:1/erc20:0x04a020325024f130988782bd5276e53595e8d16e",
+    "chainId": "eip155:1",
+    "name": "Herbalist",
+    "precision": 8,
+    "color": "#63B204",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x04A020325024F130988782bd5276e53595e8d16E/logo.png",
+    "symbol": "HERB",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x04b77a1be2981c1ca353aaf251b0f11398413bfa": {
+    "assetId": "eip155:1/erc20:0x04b77a1be2981c1ca353aaf251b0f11398413bfa",
+    "chainId": "eip155:1",
+    "name": "Doomer AI",
+    "precision": 18,
+    "color": "#1D1621",
+    "icon": "https://assets.coingecko.com/coins/images/29918/thumb/doomer200x200.png?1696528846",
+    "symbol": "DOOMER",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x04c17b9d3b29a78f7bd062a57cf44fc633e71f85": {
+    "assetId": "eip155:1/erc20:0x04c17b9d3b29a78f7bd062a57cf44fc633e71f85",
+    "chainId": "eip155:1",
+    "name": "IMPT",
+    "precision": 18,
+    "color": "#4CC50B",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x04C17b9D3b29A78F7Bd062a57CF44FC633e71f85/logo.png",
+    "symbol": "IMPT",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x04c618cdbc1d59142dfeb4b9864835a06983ec2d": {
+    "assetId": "eip155:1/erc20:0x04c618cdbc1d59142dfeb4b9864835a06983ec2d",
+    "chainId": "eip155:1",
+    "name": "Joseon Mun",
+    "precision": 18,
+    "color": "#E1E8EC",
+    "icon": "https://assets.coingecko.com/coins/images/30387/thumb/IMG_20230511_130419_023.jpg?1696529276",
+    "symbol": "JSM",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x04cb855a5e5c4e92dd90bce82548669b4fe88702": {
+    "assetId": "eip155:1/erc20:0x04cb855a5e5c4e92dd90bce82548669b4fe88702",
+    "chainId": "eip155:1",
+    "name": "BOOK",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/33034/thumb/book_%281%29.jpg?1700403065",
+    "symbol": "BOOK",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x04e0af0af1b7f0023c6b12af5a94df59b0e8cf59": {
+    "assetId": "eip155:1/erc20:0x04e0af0af1b7f0023c6b12af5a94df59b0e8cf59",
+    "chainId": "eip155:1",
+    "name": "Sensitrust on Ethereum",
+    "precision": 18,
+    "color": "#218DB1",
+    "icon": "https://assets.coingecko.com/coins/images/15035/thumb/SETS-token-logo-200.png?1696514695",
+    "symbol": "SETS",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x04e3a2932bfe7b669c9f18df44b2b0a0ee681c19": {
+    "assetId": "eip155:1/erc20:0x04e3a2932bfe7b669c9f18df44b2b0a0ee681c19",
+    "chainId": "eip155:1",
+    "name": "Pastafarian",
+    "precision": 18,
+    "color": "#915B41",
+    "icon": "https://assets.coingecko.com/coins/images/32170/thumb/IMG_20231005_124620_212.jpg?1696741798",
+    "symbol": "PASTA",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x04fa0d235c4abf4bcf4787af4cf447de572ef828": {
+    "assetId": "eip155:1/erc20:0x04fa0d235c4abf4bcf4787af4cf447de572ef828",
+    "chainId": "eip155:1",
+    "name": "UMA on Ethereum",
+    "precision": 18,
+    "color": "#FC4B4B",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x04Fa0d235C4abf4BcF4787aF4CF447DE572eF828/logo.png",
+    "symbol": "UMA",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x05030203674173fa6df6f9f7e34d6e70e9a761d7": {
+    "assetId": "eip155:1/erc20:0x05030203674173fa6df6f9f7e34d6e70e9a761d7",
+    "chainId": "eip155:1",
+    "name": "Muverse",
+    "precision": 18,
+    "color": "#D4BB4E",
+    "icon": "https://assets.coingecko.com/coins/images/28857/thumb/20230130_100626.jpg?1696527831",
+    "symbol": "MU",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x05079687d35b93538cbd59fe5596380cae9054a9": {
+    "assetId": "eip155:1/erc20:0x05079687d35b93538cbd59fe5596380cae9054a9",
+    "chainId": "eip155:1",
+    "name": "BitSong",
+    "precision": 18,
+    "color": "#E41C24",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x05079687D35b93538cbd59fe5596380cae9054A9/logo.png",
+    "symbol": "BTSG",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x050d94685c6b0477e1fc555888af6e2bb8dfbda5": {
+    "assetId": "eip155:1/erc20:0x050d94685c6b0477e1fc555888af6e2bb8dfbda5",
+    "chainId": "eip155:1",
+    "name": "Inu ",
+    "precision": 18,
+    "color": "#C4C4C4",
+    "icon": "https://assets.coingecko.com/coins/images/26259/thumb/inulogo_200x200.png?1696525344",
+    "symbol": "INU",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x051d7e5609917bd9b73f04bac0ded8dd46a74301": {
+    "assetId": "eip155:1/erc20:0x051d7e5609917bd9b73f04bac0ded8dd46a74301",
+    "chainId": "eip155:1",
+    "name": "Curve fi wBTC sBTC",
+    "precision": 18,
+    "color": "#FCF2D0",
+    "icon": "https://assets.coingecko.com/coins/images/31213/thumb/default-crypto-7dcd8c50f7bec059b3a0a9531aff580d.png?1696530040",
+    "symbol": "CRVWSBTC",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x054d64b73d3d8a21af3d764efd76bcaa774f3bb2": {
+    "assetId": "eip155:1/erc20:0x054d64b73d3d8a21af3d764efd76bcaa774f3bb2",
+    "chainId": "eip155:1",
+    "name": "Plasma Finance on Ethereum",
+    "precision": 18,
+    "color": "#C63697",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x054D64b73d3D8A21Af3D764eFd76bCaA774f3Bb2/logo.png",
+    "symbol": "PPAY",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x054f76beed60ab6dbeb23502178c52d6c5debe40": {
+    "assetId": "eip155:1/erc20:0x054f76beed60ab6dbeb23502178c52d6c5debe40",
+    "chainId": "eip155:1",
+    "name": "DeFiner",
+    "precision": 18,
+    "color": "#0A64B4",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x054f76beED60AB6dBEb23502178C52d6C5dEbE40/logo.png",
+    "symbol": "FIN",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x0557e0d15aec0b9026dd17aa874fdf7d182a2ceb": {
+    "assetId": "eip155:1/erc20:0x0557e0d15aec0b9026dd17aa874fdf7d182a2ceb",
+    "chainId": "eip155:1",
+    "name": "CFX Quantum",
+    "precision": 6,
+    "color": "#1C74B4",
+    "icon": "https://assets.coingecko.com/coins/images/15031/thumb/CFXQ_TOKEN_LOGO_200x200.png?1696514691",
+    "symbol": "CFXQ",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x056354f3ff20743aa4c0da365603871c7000b081": {
+    "assetId": "eip155:1/erc20:0x056354f3ff20743aa4c0da365603871c7000b081",
+    "chainId": "eip155:1",
+    "name": "TriumphX",
+    "precision": 18,
+    "color": "#040404",
+    "icon": "https://assets.coingecko.com/coins/images/12270/thumb/TRIX_Logo_transparent.png?1696512100",
+    "symbol": "TRIX",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x0563dce613d559a47877ffd1593549fb9d3510d6": {
+    "assetId": "eip155:1/erc20:0x0563dce613d559a47877ffd1593549fb9d3510d6",
+    "chainId": "eip155:1",
+    "name": "SuperBid",
+    "precision": 18,
+    "color": "#4D9ACC",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x0563DCe613D559a47877fFD1593549fb9d3510D6/logo.png",
+    "symbol": "SUPERBID",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x056c1d42fb1326f57da7f19ebb7dda4673f1ff55": {
+    "assetId": "eip155:1/erc20:0x056c1d42fb1326f57da7f19ebb7dda4673f1ff55",
+    "chainId": "eip155:1",
+    "name": "Gains on Ethereum",
+    "precision": 18,
+    "color": "#527AEF",
+    "icon": "https://assets.coingecko.com/coins/images/14681/thumb/200x200.png?1696514354",
+    "symbol": "GAINS",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x056fd409e1d7a124bd7017459dfea2f387b6d5cd": {
+    "assetId": "eip155:1/erc20:0x056fd409e1d7a124bd7017459dfea2f387b6d5cd",
+    "chainId": "eip155:1",
+    "name": "Gemini Dollar",
+    "precision": 2,
+    "color": "#04DCFC",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x056Fd409E1d7A124BD7017459dFEa2F387b6d5Cd/logo.png",
+    "symbol": "GUSD",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x0590cc9232ebf68d81f6707a119898219342ecb9": {
+    "assetId": "eip155:1/erc20:0x0590cc9232ebf68d81f6707a119898219342ecb9",
+    "chainId": "eip155:1",
+    "name": "BananaCat",
+    "precision": 9,
+    "color": "#82771D",
+    "icon": "https://assets.coingecko.com/coins/images/32557/thumb/imresizer-1698351889115.jpg?1698503559",
+    "symbol": "BCAT",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x05bbe7240de66f6480c9aeda77c1376b13393f83": {
+    "assetId": "eip155:1/erc20:0x05bbe7240de66f6480c9aeda77c1376b13393f83",
+    "chainId": "eip155:1",
+    "name": "Xeno",
+    "precision": 18,
+    "color": "#0D254A",
+    "icon": "https://assets.coingecko.com/coins/images/13830/thumb/XNO_logo_200x200.png?1696513573",
+    "symbol": "XNO",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x05d3606d5c81eb9b7b18530995ec9b29da05faba": {
+    "assetId": "eip155:1/erc20:0x05d3606d5c81eb9b7b18530995ec9b29da05faba",
+    "chainId": "eip155:1",
+    "name": "TomoChain ERC 20",
+    "precision": 18,
+    "color": "#242C2C",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x05D3606d5c81EB9b7B18530995eC9B29da05FaBa/logo.png",
+    "symbol": "TOMOE",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x05ec93c0365baaeabf7aeffb0972ea7ecdd39cf1": {
+    "assetId": "eip155:1/erc20:0x05ec93c0365baaeabf7aeffb0972ea7ecdd39cf1",
+    "chainId": "eip155:1",
+    "name": "Aave BAT",
+    "precision": 18,
+    "color": "#815699",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x05Ec93c0365baAeAbF7AefFb0972ea7ECdD39CF1/logo.png",
+    "symbol": "ABAT",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x05fb86775fd5c16290f1e838f5caaa7342bd9a63": {
+    "assetId": "eip155:1/erc20:0x05fb86775fd5c16290f1e838f5caaa7342bd9a63",
+    "chainId": "eip155:1",
+    "name": "Hacken on Ethereum",
+    "precision": 8,
+    "color": "#2CE4B4",
+    "icon": "https://assets.coingecko.com/coins/images/11081/thumb/hacken-symbol-with-bg.png?1696511022",
+    "symbol": "HAI",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x05fe069626543842439ef90d9fa1633640c50cf1": {
+    "assetId": "eip155:1/erc20:0x05fe069626543842439ef90d9fa1633640c50cf1",
+    "chainId": "eip155:1",
+    "name": "Eve AI",
+    "precision": 18,
+    "color": "#525252",
+    "icon": "https://assets.coingecko.com/coins/images/29830/thumb/200-X-200.png?1696528758",
+    "symbol": "EVEAI",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x0642026e7f0b6ccac5925b4e7fa61384250e1701": {
+    "assetId": "eip155:1/erc20:0x0642026e7f0b6ccac5925b4e7fa61384250e1701",
+    "chainId": "eip155:1",
+    "name": "H2O",
+    "precision": 18,
+    "color": "#23C6EC",
+    "icon": "https://assets.coingecko.com/coins/images/25315/thumb/h2o_32.png?1696524451",
+    "symbol": "H2O",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x06450dee7fd2fb8e39061434babcfc05599a6fb8": {
+    "assetId": "eip155:1/erc20:0x06450dee7fd2fb8e39061434babcfc05599a6fb8",
+    "chainId": "eip155:1",
+    "name": "XEN Crypto on Ethereum",
+    "precision": 18,
+    "color": "#C4C4C4",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x06450dEe7FD2Fb8E39061434BAbCFC05599a6Fb8/logo.png",
+    "symbol": "XEN",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x06576eb3b212d605b797dc15523d9dc9f4f66db4": {
+    "assetId": "eip155:1/erc20:0x06576eb3b212d605b797dc15523d9dc9f4f66db4",
+    "chainId": "eip155:1",
+    "name": "The Crypto Prophecies",
+    "precision": 18,
+    "color": "#C3AEC5",
+    "icon": "https://assets.coingecko.com/coins/images/15054/thumb/tcp.PNG?1696514713",
+    "symbol": "TCP",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x06677dc4fe12d3ba3c7ccfd0df8cd45e4d4095bf": {
+    "assetId": "eip155:1/erc20:0x06677dc4fe12d3ba3c7ccfd0df8cd45e4d4095bf",
+    "chainId": "eip155:1",
+    "name": "Work Quest on Ethereum",
+    "precision": 18,
+    "color": "#0F67A6",
+    "icon": "https://assets.coingecko.com/coins/images/30040/thumb/WQT-1_%281%29.png?1696528963",
+    "symbol": "WQT",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x066798d9ef0833ccc719076dab77199ecbd178b0": {
+    "assetId": "eip155:1/erc20:0x066798d9ef0833ccc719076dab77199ecbd178b0",
+    "chainId": "eip155:1",
+    "name": "SakeSwap on Ethereum",
+    "precision": 18,
+    "color": "#38BAD7",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x066798d9ef0833ccc719076Dab77199eCbd178b0/logo.png",
+    "symbol": "SAKE",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x06874f973dc3c96dc22a10ef0d0609f877f335ea": {
+    "assetId": "eip155:1/erc20:0x06874f973dc3c96dc22a10ef0d0609f877f335ea",
+    "chainId": "eip155:1",
+    "name": "STOA Network",
+    "precision": 18,
+    "color": "#CB4454",
+    "icon": "https://assets.coingecko.com/coins/images/16710/thumb/RSloE6X1_400x400.jpeg?1696516284",
+    "symbol": "STA",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x068e3563b1c19590f822c0e13445c4fa1b9eefa5": {
+    "assetId": "eip155:1/erc20:0x068e3563b1c19590f822c0e13445c4fa1b9eefa5",
+    "chainId": "eip155:1",
+    "name": "Wrapped USD",
+    "precision": 18,
+    "color": "#2CBC74",
+    "icon": "https://assets.coingecko.com/coins/images/28854/thumb/wusd.png?1696527828",
+    "symbol": "WUSD",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x069f967be0ca21c7d793d8c343f71e597d9a49b3": {
+    "assetId": "eip155:1/erc20:0x069f967be0ca21c7d793d8c343f71e597d9a49b3",
+    "chainId": "eip155:1",
+    "name": "HZM Coin",
+    "precision": 8,
+    "color": "#977643",
+    "icon": "https://assets.coingecko.com/coins/images/18032/thumb/HZM_new_Logo_PNG_CoinGecko.png?1696517548",
+    "symbol": "HZM",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x06a00715e6f92210af9d7680b584931faf71a833": {
+    "assetId": "eip155:1/erc20:0x06a00715e6f92210af9d7680b584931faf71a833",
+    "chainId": "eip155:1",
+    "name": "Chronicle on Ethereum",
+    "precision": 18,
+    "color": "#04E4CB",
+    "icon": "https://assets.coingecko.com/coins/images/18413/thumb/xnl_logo.png?1696517903",
+    "symbol": "XNL",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x06a01a4d579479dd5d884ebf61a31727a3d8d442": {
+    "assetId": "eip155:1/erc20:0x06a01a4d579479dd5d884ebf61a31727a3d8d442",
+    "chainId": "eip155:1",
+    "name": "Skey Network",
+    "precision": 8,
+    "color": "#4D73BA",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x06A01a4d579479Dd5D884EBf61A31727A3d8D442/logo.png",
+    "symbol": "SKEY",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x06af07097c9eeb7fd685c692751d5c66db49c215": {
+    "assetId": "eip155:1/erc20:0x06af07097c9eeb7fd685c692751d5c66db49c215",
+    "chainId": "eip155:1",
+    "name": "Chai",
+    "precision": 18,
+    "color": "#C12C3F",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x06AF07097C9Eeb7fD685c692751D5C66dB49c215/logo.png",
+    "symbol": "CHAI",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x06b884e60794ce02aafab13791b59a2e6a07442f": {
+    "assetId": "eip155:1/erc20:0x06b884e60794ce02aafab13791b59a2e6a07442f",
+    "chainId": "eip155:1",
+    "name": "Unbanked",
+    "precision": 18,
+    "color": "#BBE6A2",
+    "icon": "https://assets.coingecko.com/coins/images/20171/thumb/logo_-_2021-11-11T115427.135.png?1696519584",
+    "symbol": "UNBNK",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x06ddb3a8bc0abc14f85e974cf1a93a6f8d4909d9": {
+    "assetId": "eip155:1/erc20:0x06ddb3a8bc0abc14f85e974cf1a93a6f8d4909d9",
+    "chainId": "eip155:1",
+    "name": "8Pay on Ethereum",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/14667/thumb/8pay.jpeg?1696514342",
+    "symbol": "8PAY",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x06e0feb0d74106c7ada8497754074d222ec6bcdf": {
+    "assetId": "eip155:1/erc20:0x06e0feb0d74106c7ada8497754074d222ec6bcdf",
+    "chainId": "eip155:1",
+    "name": "Bitball",
+    "precision": 18,
+    "color": "#10EAD7",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x06e0feB0D74106c7adA8497754074D222Ec6BCDf/logo.png",
+    "symbol": "BTB",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x06f3c323f0238c72bf35011071f2b5b7f43a054c": {
+    "assetId": "eip155:1/erc20:0x06f3c323f0238c72bf35011071f2b5b7f43a054c",
+    "chainId": "eip155:1",
+    "name": "MASQ on Ethereum",
+    "precision": 18,
+    "color": "#049EF7",
+    "icon": "https://assets.coingecko.com/coins/images/13699/thumb/masq.png?1696513446",
+    "symbol": "MASQ",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x06f3cdabae564b0546529b4dd8fef1bcd4235753": {
+    "assetId": "eip155:1/erc20:0x06f3cdabae564b0546529b4dd8fef1bcd4235753",
+    "chainId": "eip155:1",
+    "name": "TilWiki",
+    "precision": 8,
+    "color": "#D43404",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x06f3CDabae564B0546529b4DD8FeF1bcD4235753/logo.png",
+    "symbol": "TLW",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x070e984fda37dd942f5c953f6b2375339adac308": {
+    "assetId": "eip155:1/erc20:0x070e984fda37dd942f5c953f6b2375339adac308",
+    "chainId": "eip155:1",
+    "name": "Axe Cap",
+    "precision": 18,
+    "color": "#B7B7B7",
+    "icon": "https://assets.coingecko.com/coins/images/31339/thumb/axe_cap_icon_200x200.png?1696530157",
+    "symbol": "AXE",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x07150e919b4de5fd6a63de1f9384828396f25fdc": {
+    "assetId": "eip155:1/erc20:0x07150e919b4de5fd6a63de1f9384828396f25fdc",
+    "chainId": "eip155:1",
+    "name": "Base Protocol",
+    "precision": 9,
+    "color": "#E4CCB8",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x07150e919B4De5fD6a63DE1F9384828396f25fDC/logo.png",
+    "symbol": "BASE",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x075067a4b236f68f123fc0553f4560311937491d": {
+    "assetId": "eip155:1/erc20:0x075067a4b236f68f123fc0553f4560311937491d",
+    "chainId": "eip155:1",
+    "name": "CATpay on Ethereum",
+    "precision": 9,
+    "color": "#62CCF4",
+    "icon": "https://assets.coingecko.com/coins/images/24731/thumb/catpay.png?1696523894",
+    "symbol": "CATPAY",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x075b1bb99792c9e1041ba13afef80c91a1e70fb3": {
+    "assetId": "eip155:1/erc20:0x075b1bb99792c9e1041ba13afef80c91a1e70fb3",
+    "chainId": "eip155:1",
+    "name": "Curve fi renBTC wBTC sBTC",
+    "precision": 18,
+    "color": "#F19E1F",
+    "icon": "https://assets.coingecko.com/coins/images/11958/thumb/Curvefi_sbtcCrv_32.png?1696511818",
+    "symbol": "CRVRENWSBTC",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x0763fdccf1ae541a5961815c0872a8c5bc6de4d7": {
+    "assetId": "eip155:1/erc20:0x0763fdccf1ae541a5961815c0872a8c5bc6de4d7",
+    "chainId": "eip155:1",
+    "name": "SUKU",
+    "precision": 18,
+    "color": "#1B1C1C",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x0763fdCCF1aE541A5961815C0872A8c5Bc6DE4d7/logo.png",
+    "symbol": "SUKU",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x076641af1b8f06b7f8c92587156143c109002cbe": {
+    "assetId": "eip155:1/erc20:0x076641af1b8f06b7f8c92587156143c109002cbe",
+    "chainId": "eip155:1",
+    "name": "SoPay",
+    "precision": 18,
+    "color": "#E9E5DF",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x076641aF1B8f06B7f8C92587156143C109002cbe/logo.png",
+    "symbol": "SOP",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x0789dbae94fb18e5789b8e4489bcb7a1adb58622": {
+    "assetId": "eip155:1/erc20:0x0789dbae94fb18e5789b8e4489bcb7a1adb58622",
+    "chainId": "eip155:1",
+    "name": "FISCO Coin",
+    "precision": 8,
+    "color": "#0434A4",
+    "icon": "https://assets.coingecko.com/coins/images/6507/thumb/AnyConv.com__fscc_icon_fin.png?1696506865",
+    "symbol": "FSCC",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x0799de3f4e111b70e845edb7a8646d934a51e210": {
+    "assetId": "eip155:1/erc20:0x0799de3f4e111b70e845edb7a8646d934a51e210",
+    "chainId": "eip155:1",
+    "name": "50cal",
+    "precision": 9,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/33047/thumb/photo_2023-11-15_01-09-57_%281%29.jpg?1700472328",
+    "symbol": "50CAL",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x07ac55797d4f43f57ca92a49e65ca582cc287c27": {
+    "assetId": "eip155:1/erc20:0x07ac55797d4f43f57ca92a49e65ca582cc287c27",
+    "chainId": "eip155:1",
+    "name": "Rebasing TBT",
+    "precision": 18,
+    "color": "#090909",
+    "icon": "https://assets.coingecko.com/coins/images/29792/thumb/TBT.png?1696528722",
+    "symbol": "TBT",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x07bac35846e5ed502aa91adf6a9e7aa210f2dcbe": {
+    "assetId": "eip155:1/erc20:0x07bac35846e5ed502aa91adf6a9e7aa210f2dcbe",
+    "chainId": "eip155:1",
+    "name": "Sifchain on Ethereum",
+    "precision": 18,
+    "color": "#F2C719",
+    "icon": "https://assets.coingecko.com/coins/images/14044/thumb/EROWAN.png?1696513770",
+    "symbol": "EROWAN",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x07c904d8c04323ef9fe6bf13aaeba05b62c54825": {
+    "assetId": "eip155:1/erc20:0x07c904d8c04323ef9fe6bf13aaeba05b62c54825",
+    "chainId": "eip155:1",
+    "name": "Eeyor",
+    "precision": 18,
+    "color": "#A4A7C6",
+    "icon": "https://assets.coingecko.com/coins/images/31565/thumb/200eeyor.png?1696530378",
+    "symbol": "EEYOR",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x07e0edf8ce600fb51d44f51e3348d77d67f298ae": {
+    "assetId": "eip155:1/erc20:0x07e0edf8ce600fb51d44f51e3348d77d67f298ae",
+    "chainId": "eip155:1",
+    "name": "HarryPotterObamaPacMan8Inu",
+    "precision": 8,
+    "color": "#852263",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x07E0EDf8ce600FB51d44F51E3348D77D67F298ae/logo.png",
+    "symbol": "XRP",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x07e3c70653548b04f0a75970c1f81b4cbbfb606f": {
+    "assetId": "eip155:1/erc20:0x07e3c70653548b04f0a75970c1f81b4cbbfb606f",
+    "chainId": "eip155:1",
+    "name": "Agrello",
+    "precision": 18,
+    "color": "#45246B",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x07e3c70653548B04f0A75970C1F81B4CBbFB606f/logo.png",
+    "symbol": "DLT",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x07ef9e82721ac16809d24dafbe1792ce01654db4": {
+    "assetId": "eip155:1/erc20:0x07ef9e82721ac16809d24dafbe1792ce01654db4",
+    "chainId": "eip155:1",
+    "name": "Chimpion",
+    "precision": 18,
+    "color": "#0E44B1",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x07eF9E82721AC16809D24DAfBE1792Ce01654DB4/logo.png",
+    "symbol": "BNANA",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x07f9702ce093db82dfdc92c2c6e578d6ea8d5e22": {
+    "assetId": "eip155:1/erc20:0x07f9702ce093db82dfdc92c2c6e578d6ea8d5e22",
+    "chainId": "eip155:1",
+    "name": "Oobit on Ethereum",
+    "precision": 18,
+    "color": "#D8D6F4",
+    "icon": "https://assets.coingecko.com/coins/images/19855/thumb/obt.png?1696519278",
+    "symbol": "OBT",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x08037036451c768465369431da5c671ad9b37dbc": {
+    "assetId": "eip155:1/erc20:0x08037036451c768465369431da5c671ad9b37dbc",
+    "chainId": "eip155:1",
+    "name": "NFT Stars on Ethereum",
+    "precision": 18,
+    "color": "#272726",
+    "icon": "https://assets.coingecko.com/coins/images/16141/thumb/j2KHi8zR_400x400.png?1696515746",
+    "symbol": "NFTS",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x081131434f93063751813c619ecca9c4dc7862a3": {
+    "assetId": "eip155:1/erc20:0x081131434f93063751813c619ecca9c4dc7862a3",
+    "chainId": "eip155:1",
+    "name": "Mines of Dalarnia on Ethereum",
+    "precision": 6,
+    "color": "#4C1F58",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x081131434f93063751813C619Ecca9C4dC7862a3/logo.png",
+    "symbol": "DAR",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x081a4c60fbc381dc861bae6629c93d835d5f9a89": {
+    "assetId": "eip155:1/erc20:0x081a4c60fbc381dc861bae6629c93d835d5f9a89",
+    "chainId": "eip155:1",
+    "name": "Modulus Domain Service",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/29844/thumb/_MODS.png?1696528771",
+    "symbol": "MODS",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x081f67afa0ccf8c7b17540767bbe95df2ba8d97f": {
+    "assetId": "eip155:1/erc20:0x081f67afa0ccf8c7b17540767bbe95df2ba8d97f",
+    "chainId": "eip155:1",
+    "name": "CoinEx",
+    "precision": 18,
+    "color": "#11D3C4",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x081F67aFA0cCF8c7B17540767BBe95DF2bA8D97F/logo.png",
+    "symbol": "CET",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x082646b22a3960da69ef7a778c16dd6fb85dd999": {
+    "assetId": "eip155:1/erc20:0x082646b22a3960da69ef7a778c16dd6fb85dd999",
+    "chainId": "eip155:1",
+    "name": "Fuck Pepe",
+    "precision": 18,
+    "color": "#5E7C44",
+    "icon": "https://assets.coingecko.com/coins/images/29894/thumb/Screenshot_7.png?1696528818",
+    "symbol": "FKPEPE",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x082716b6734b31791407d7dd0e2a2c41260029b2": {
+    "assetId": "eip155:1/erc20:0x082716b6734b31791407d7dd0e2a2c41260029b2",
+    "chainId": "eip155:1",
+    "name": "hiCOOLCATS",
+    "precision": 18,
+    "color": "#FB9CCC",
+    "icon": "https://assets.coingecko.com/coins/images/28603/thumb/hicoolcats.png?1696527589",
+    "symbol": "HICOOLCATS",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x08389495d7456e1951ddf7c3a1314a4bfb646d8b": {
+    "assetId": "eip155:1/erc20:0x08389495d7456e1951ddf7c3a1314a4bfb646d8b",
+    "chainId": "eip155:1",
+    "name": "Crypterium",
+    "precision": 18,
+    "color": "#05248A",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x08389495D7456E1951ddF7c3a1314A4bfb646d8B/logo.png",
+    "symbol": "CRPT",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x083d41d6dd21ee938f0c055ca4fb12268df0efac": {
+    "assetId": "eip155:1/erc20:0x083d41d6dd21ee938f0c055ca4fb12268df0efac",
+    "chainId": "eip155:1",
+    "name": "GogolCoin",
+    "precision": 4,
+    "color": "#DCA46C",
+    "icon": "https://assets.coingecko.com/coins/images/14824/thumb/GOL.png?1696514492",
+    "symbol": "GOL",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x08711d3b02c8758f2fb3ab4e80228418a7f8e39c": {
+    "assetId": "eip155:1/erc20:0x08711d3b02c8758f2fb3ab4e80228418a7f8e39c",
+    "chainId": "eip155:1",
+    "name": "Edgeless",
+    "precision": 0,
+    "color": "#040404",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x08711D3B02C8758F2FB3ab4e80228418a7F8e39c/logo.png",
+    "symbol": "EDG",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x0888fd2960ddf57cfb561b59d73dd2b9524f6a26": {
+    "assetId": "eip155:1/erc20:0x0888fd2960ddf57cfb561b59d73dd2b9524f6a26",
+    "chainId": "eip155:1",
+    "name": "Mikawa Inu",
+    "precision": 9,
+    "color": "#DC5C5A",
+    "icon": "https://assets.coingecko.com/coins/images/29168/thumb/IMG_20230215_172257_635.png?1696528126",
+    "symbol": "MIKAWA",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x089453742936dd35134383aee9d78bee63a69b01": {
+    "assetId": "eip155:1/erc20:0x089453742936dd35134383aee9d78bee63a69b01",
+    "chainId": "eip155:1",
+    "name": "Gold",
+    "precision": 18,
+    "color": "#F6BE12",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x089453742936dd35134383aee9d78bEe63A69b01/logo.png",
+    "symbol": "GOLD",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x089729b0786c8803cff972c16e402f3344d079ea": {
+    "assetId": "eip155:1/erc20:0x089729b0786c8803cff972c16e402f3344d079ea",
+    "chainId": "eip155:1",
+    "name": "BlockGPT",
+    "precision": 18,
+    "color": "#3A2448",
+    "icon": "https://assets.coingecko.com/coins/images/30872/thumb/BLOCKGPT_ASSET_MEDIA_Plan_de_travail_1_copie_4.png?1696529719",
+    "symbol": "BGPT",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x08ba718f288c3b12b01146816bef9fa03cc635bc": {
+    "assetId": "eip155:1/erc20:0x08ba718f288c3b12b01146816bef9fa03cc635bc",
+    "chainId": "eip155:1",
+    "name": "Centaurify on Ethereum",
+    "precision": 18,
+    "color": "#336144",
+    "icon": "https://assets.coingecko.com/coins/images/20512/thumb/Centaurify_Symbol_Black-01.png?1696519918",
+    "symbol": "CENT",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x08c32b0726c5684024ea6e141c50ade9690bbdcc": {
+    "assetId": "eip155:1/erc20:0x08c32b0726c5684024ea6e141c50ade9690bbdcc",
+    "chainId": "eip155:1",
+    "name": "Stratos",
+    "precision": 18,
+    "color": "#05847C",
+    "icon": "https://assets.coingecko.com/coins/images/16213/thumb/token_512x512.png?1696515814",
+    "symbol": "STOS",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x08d0222a206d1aee59a9b66969c04fd1e8a0f864": {
+    "assetId": "eip155:1/erc20:0x08d0222a206d1aee59a9b66969c04fd1e8a0f864",
+    "chainId": "eip155:1",
+    "name": "Momo v2",
+    "precision": 18,
+    "color": "#5B6964",
+    "icon": "https://assets.coingecko.com/coins/images/31515/thumb/momo.jpg?1696530325",
+    "symbol": "MOMOV2",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x08d32b0da63e2c3bcf8019c9c5d849d7a9d791e6": {
+    "assetId": "eip155:1/erc20:0x08d32b0da63e2c3bcf8019c9c5d849d7a9d791e6",
+    "chainId": "eip155:1",
+    "name": "Dentacoin on Ethereum",
+    "precision": 0,
+    "color": "#040404",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x08d32b0da63e2C3bcF8019c9c5d849d7a9d791e6/logo.png",
+    "symbol": "DCN",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x08d967bb0134f2d07f7cfb6e246680c53927dd30": {
+    "assetId": "eip155:1/erc20:0x08d967bb0134f2d07f7cfb6e246680c53927dd30",
+    "chainId": "eip155:1",
+    "name": "MATH on Ethereum",
+    "precision": 18,
+    "color": "#31383E",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x08d967bb0134F2d07f7cfb6E246680c53927DD30/logo.png",
+    "symbol": "MATH",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x08f40811c7d6c013744166f3d4cb1a9a92d3d54e": {
+    "assetId": "eip155:1/erc20:0x08f40811c7d6c013744166f3d4cb1a9a92d3d54e",
+    "chainId": "eip155:1",
+    "name": "NightVerse Game",
+    "precision": 18,
+    "color": "#99B1C1",
+    "icon": "https://assets.coingecko.com/coins/images/29059/thumb/nvg.png?1696528026",
+    "symbol": "NVG",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8": {
+    "assetId": "eip155:1/erc20:0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8",
+    "chainId": "eip155:1",
+    "name": "Tierion",
+    "precision": 8,
+    "color": "#FFFFFF",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x08f5a9235B08173b7569F83645d2c7fB55e8cCD8/logo.png",
+    "symbol": "TNT",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x08f7be99ed83369541501d60f4e66f8e34c3f736": {
+    "assetId": "eip155:1/erc20:0x08f7be99ed83369541501d60f4e66f8e34c3f736",
+    "chainId": "eip155:1",
+    "name": "Cryptoku",
+    "precision": 18,
+    "color": "#343C94",
+    "icon": "https://assets.coingecko.com/coins/images/25813/thumb/Cryptoku.png?1696524898",
+    "symbol": "CKU",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x090185f2135308bad17527004364ebcc2d37e5f6": {
+    "assetId": "eip155:1/erc20:0x090185f2135308bad17527004364ebcc2d37e5f6",
+    "chainId": "eip155:1",
+    "name": "Spell on Ethereum",
+    "precision": 18,
+    "color": "#241C47",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x090185f2135308BaD17527004364eBcC2D37e5F6/logo.png",
+    "symbol": "SPELL",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x090fc4d5436d98e13473c4d6109de6a18bcfb0d4": {
+    "assetId": "eip155:1/erc20:0x090fc4d5436d98e13473c4d6109de6a18bcfb0d4",
+    "chainId": "eip155:1",
+    "name": "SkyToken",
+    "precision": 18,
+    "color": "#596468",
+    "icon": "https://assets.coingecko.com/coins/images/28037/thumb/sky.png?1696527052",
+    "symbol": "SKY",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x0944d5848bd9f60a34ba92aea300d4286696eb76": {
+    "assetId": "eip155:1/erc20:0x0944d5848bd9f60a34ba92aea300d4286696eb76",
+    "chainId": "eip155:1",
+    "name": "Palette",
+    "precision": 18,
+    "color": "#257184",
+    "icon": "https://assets.coingecko.com/coins/images/22153/thumb/262aoVTp_400x400.jpg?1696521498",
+    "symbol": "PLT",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x0954906da0bf32d5479e25f46056d22f08464cab": {
+    "assetId": "eip155:1/erc20:0x0954906da0bf32d5479e25f46056d22f08464cab",
+    "chainId": "eip155:1",
+    "name": "Index Cooperative on Ethereum",
+    "precision": 18,
+    "color": "#795E4A",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x0954906da0Bf32d5479e25f46056d22f08464cab/logo.png",
+    "symbol": "INDEX",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x095797fd4297fb79883cc912a5ba6313b15c445d": {
+    "assetId": "eip155:1/erc20:0x095797fd4297fb79883cc912a5ba6313b15c445d",
+    "chainId": "eip155:1",
+    "name": "GOLCOIN on Ethereum",
+    "precision": 18,
+    "color": "#D00696",
+    "icon": "https://assets.coingecko.com/coins/images/27341/thumb/logo_in_the_middle_.png?1696526388",
+    "symbol": "GOLC",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x09617f6fd6cf8a71278ec86e23bbab29c04353a7": {
+    "assetId": "eip155:1/erc20:0x09617f6fd6cf8a71278ec86e23bbab29c04353a7",
+    "chainId": "eip155:1",
+    "name": "Shardus on Ethereum",
+    "precision": 18,
+    "color": "#EC2324",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x09617F6fD6cF8A71278ec86e23bBab29C04353a7/logo.png",
+    "symbol": "ULT",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x09637e374ec5bab8c9e9654a97c9593e3038c5b3": {
+    "assetId": "eip155:1/erc20:0x09637e374ec5bab8c9e9654a97c9593e3038c5b3",
+    "chainId": "eip155:1",
+    "name": "zkProof",
+    "precision": 9,
+    "color": "#241E22",
+    "icon": "https://assets.coingecko.com/coins/images/29592/thumb/200.png?1696528531",
+    "symbol": "ZKP",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x0981d9774a59a703db85f5eaa23672283ea31106": {
+    "assetId": "eip155:1/erc20:0x0981d9774a59a703db85f5eaa23672283ea31106",
+    "chainId": "eip155:1",
+    "name": "Pepe Inu",
+    "precision": 18,
+    "color": "#3A6F2E",
+    "icon": "https://assets.coingecko.com/coins/images/30941/thumb/Pepe_Inu.png?1696529780",
+    "symbol": "PEPINU",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x09970aec766b6f3223aca9111555e99dc50ff13a": {
+    "assetId": "eip155:1/erc20:0x09970aec766b6f3223aca9111555e99dc50ff13a",
+    "chainId": "eip155:1",
+    "name": "Levolution on Ethereum",
+    "precision": 18,
+    "color": "#AEA8AE",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x09970aec766b6f3223aCA9111555E99DC50Ff13a/logo.png",
+    "symbol": "LEVL",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x099f8d9e004ce139c6f46572ea99c0db71889a78": {
+    "assetId": "eip155:1/erc20:0x099f8d9e004ce139c6f46572ea99c0db71889a78",
+    "chainId": "eip155:1",
+    "name": "Unichad",
+    "precision": 18,
+    "color": "#543555",
+    "icon": "https://assets.coingecko.com/coins/images/31383/thumb/Logo_on_black_%281%29.png?1696530200",
+    "symbol": "UNICHAD",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x09a3ecafa817268f77be1283176b946c4ff2e608": {
+    "assetId": "eip155:1/erc20:0x09a3ecafa817268f77be1283176b946c4ff2e608",
+    "chainId": "eip155:1",
+    "name": "Mirror Protocol on Ethereum",
+    "precision": 18,
+    "color": "#040C3C",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x09a3EcAFa817268f77BE1283176B946C4ff2E608/logo.png",
+    "symbol": "MIR",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x09ce2b746c32528b7d864a1e3979bd97d2f095ab": {
+    "assetId": "eip155:1/erc20:0x09ce2b746c32528b7d864a1e3979bd97d2f095ab",
+    "chainId": "eip155:1",
+    "name": "DeFIL",
+    "precision": 18,
+    "color": "#84CCFC",
+    "icon": "https://assets.coingecko.com/coins/images/17708/thumb/defillogo200200.png?1696517235",
+    "symbol": "DFL",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x09f098b155d561fc9f7bccc97038b7e3d20baf74": {
+    "assetId": "eip155:1/erc20:0x09f098b155d561fc9f7bccc97038b7e3d20baf74",
+    "chainId": "eip155:1",
+    "name": "ZooDAO on Ethereum",
+    "precision": 18,
+    "color": "#151326",
+    "icon": "https://assets.coingecko.com/coins/images/24305/thumb/Zt2BM_8D_400x400.jpg?1696523486",
+    "symbol": "ZOO",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x0a13a5929e5f0ff0eaba4bd9e9512c91fce40280": {
+    "assetId": "eip155:1/erc20:0x0a13a5929e5f0ff0eaba4bd9e9512c91fce40280",
+    "chainId": "eip155:1",
+    "name": "XAI Corp",
+    "precision": 9,
+    "color": "#185578",
+    "icon": "https://assets.coingecko.com/coins/images/30992/thumb/XAI.png?1700491072",
+    "symbol": "XAI",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x0a3bb08b3a15a19b4de82f8acfc862606fb69a2d": {
+    "assetId": "eip155:1/erc20:0x0a3bb08b3a15a19b4de82f8acfc862606fb69a2d",
+    "chainId": "eip155:1",
+    "name": "iZUMi Bond USD on Ethereum",
+    "precision": 18,
+    "color": "#844CFC",
+    "icon": "https://assets.coingecko.com/coins/images/25388/thumb/iusd-logo-symbol-10k%E5%A4%A7%E5%B0%8F.png?1696524521",
+    "symbol": "IUSD",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x0a44a7ccea34a7563ba1d45a5f757d0b02281124": {
+    "assetId": "eip155:1/erc20:0x0a44a7ccea34a7563ba1d45a5f757d0b02281124",
+    "chainId": "eip155:1",
+    "name": "BlockBlend",
+    "precision": 18,
+    "color": "#060606",
+    "icon": "https://assets.coingecko.com/coins/images/30680/thumb/mdWl1HlW_400x400.jpg?1696529549",
+    "symbol": "BBL",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x0a58153a0cd1cfaea94ce1f7fdc5d7e679eca936": {
+    "assetId": "eip155:1/erc20:0x0a58153a0cd1cfaea94ce1f7fdc5d7e679eca936",
+    "chainId": "eip155:1",
+    "name": "Internet Money  ETH ",
+    "precision": 18,
+    "color": "#FBCC15",
+    "icon": "https://assets.coingecko.com/coins/images/28930/thumb/IM_Circle_200.png?1696527905",
+    "symbol": "IM",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x0a5e677a6a24b2f1a2bf4f3bffc443231d2fdec8": {
+    "assetId": "eip155:1/erc20:0x0a5e677a6a24b2f1a2bf4f3bffc443231d2fdec8",
+    "chainId": "eip155:1",
+    "name": "dForce USD on Ethereum",
+    "precision": 18,
+    "color": "#FC9C04",
+    "icon": "https://assets.coingecko.com/coins/images/17422/thumb/usx_32.png?1696516969",
+    "symbol": "USX",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x0a638f07acc6969abf392bb009f216d22adea36d": {
+    "assetId": "eip155:1/erc20:0x0a638f07acc6969abf392bb009f216d22adea36d",
+    "chainId": "eip155:1",
+    "name": "Brickken on Ethereum",
+    "precision": 18,
+    "color": "#145398",
+    "icon": "https://assets.coingecko.com/coins/images/18474/thumb/brickken-coin.png?1696517960",
+    "symbol": "BKN",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x0a63afff33b1ed0d209762578d328b90ea1e7a78": {
+    "assetId": "eip155:1/erc20:0x0a63afff33b1ed0d209762578d328b90ea1e7a78",
+    "chainId": "eip155:1",
+    "name": "The Real Calcium",
+    "precision": 9,
+    "color": "#244CDC",
+    "icon": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAIAAAACACAMAAAD04JH5AAADAFBMVEUtN0gmStj///8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACdzUd+AAABAHRSTlP/////AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAf6K/dgAAQItJREFUeNoBgEB/vwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgICAgICAgICAgICAgICAQEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgICAgICAgICAgICAgICAQEBAQEBAQEBAQEBAQECAgICAgICAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAQMDAwMDAwMDAwMDAwMDAwMDAwMDAgICAgICAgEBAQEBAQECAgICAgICAAMDAwMDAwMDAwMDAwMDAwMDAwMDAgICAgICAgEBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAQMDAwMDAwMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAwMDAwMDAwMDAwMDAwMDAwMDAwMDAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAwMDAwMDAgICAgICAgICAgICAgICAgICAgICAQMDAwMDAwMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMAAAAAAAAAAAAAAAAAAAEBAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMAAAAAAAAAAAAAAAAAAAEBAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMAAAAAAAAAAAAAAAAAAAEBAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMAAAAAAAAAAAAAAAAAAAEBAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMAAAAAAAAAAAAAAAAAAAEBAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMAAAAAAAAAAAAAAAAAAAEBAQMDAwMDAwMDAwMDAwMDAwMDAwMDAwEBAQEBAQEBAQEBAQEBAwMDAwMDAwAAAAAAAAAAAAAAAAAAAAAAAAEBAQMDAwMDAwMBAQEBAQEBAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFS8L8how+GSAAAAAElFTkSuQmCC",
+    "symbol": "CAL",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x0a693a301215aad39d83a32a5b5279f2d238851b": {
+    "assetId": "eip155:1/erc20:0x0a693a301215aad39d83a32a5b5279f2d238851b",
+    "chainId": "eip155:1",
+    "name": "Pepe OG",
+    "precision": 18,
+    "color": "#43593B",
+    "icon": "https://assets.coingecko.com/coins/images/31597/thumb/photo_2023-09-04_17.43.39.jpeg?1696530414",
+    "symbol": "POG",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x0a6c7d5b442ddf53d963581d87932f25743dd3a0": {
+    "assetId": "eip155:1/erc20:0x0a6c7d5b442ddf53d963581d87932f25743dd3a0",
+    "chainId": "eip155:1",
+    "name": "SimpleHub",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/33024/thumb/imgonline-com-ua-Resize-1akYG0UVinM7FOR4.png?1700317445",
+    "symbol": "SHUB",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x0a6e18fb2842855c3af925310b0f50a4bfa17909": {
+    "assetId": "eip155:1/erc20:0x0a6e18fb2842855c3af925310b0f50a4bfa17909",
+    "chainId": "eip155:1",
+    "name": "CoinPoker on Ethereum",
+    "precision": 18,
+    "color": "#B64B60",
+    "icon": "https://assets.coingecko.com/coins/images/1808/thumb/coinpoker.jpg?1696502810",
+    "symbol": "CHP",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x0a6f2449c09769950cfb76f905ad11c341541f70": {
+    "color": "#FFFFFF",
+    "icon": "https://raw.githubusercontent.com/Idle-Labs/idle-dashboard/master/public/images/tokens/USDT.svg",
+    "name": "Clearpool USDT Senior Tranche",
+    "precision": 18,
+    "symbol": "AA_idle_cpFAS-USDT",
+    "chainId": "eip155:1",
+    "assetId": "eip155:1/erc20:0x0a6f2449c09769950cfb76f905ad11c341541f70",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x0a77ef9bf662d62fbf9ba4cf861eaa83f9cc4fec": {
+    "assetId": "eip155:1/erc20:0x0a77ef9bf662d62fbf9ba4cf861eaa83f9cc4fec",
+    "chainId": "eip155:1",
+    "name": "X World Games on Ethereum",
+    "precision": 18,
+    "color": "#C7A5B0",
+    "icon": "https://assets.coingecko.com/coins/images/17847/thumb/200_200_%281%29_%281%29.png?1696790226",
+    "symbol": "XWG",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x0a7b89e66a1dc16633abdfd132bae05827d3bfa5": {
+    "assetId": "eip155:1/erc20:0x0a7b89e66a1dc16633abdfd132bae05827d3bfa5",
+    "chainId": "eip155:1",
+    "name": "hiMOONBIRDS",
+    "precision": 18,
+    "color": "#1E173B",
+    "icon": "https://assets.coingecko.com/coins/images/28663/thumb/himoonbirds.png?1696527648",
+    "symbol": "HIMOONBIRDS",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x0a913bead80f321e7ac35285ee10d9d922659cb7": {
+    "assetId": "eip155:1/erc20:0x0a913bead80f321e7ac35285ee10d9d922659cb7",
+    "chainId": "eip155:1",
+    "name": "DOS Network",
+    "precision": 18,
+    "color": "#615E59",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x0A913beaD80F321E7Ac35285Ee10d9d922659cB7/logo.png",
+    "symbol": "DOS",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x0aa7efe4945db24d95ca6e117bba65ed326e291a": {
+    "assetId": "eip155:1/erc20:0x0aa7efe4945db24d95ca6e117bba65ed326e291a",
+    "chainId": "eip155:1",
+    "name": "Ojamu on Ethereum",
+    "precision": 18,
+    "color": "#E40C7C",
+    "icon": "https://assets.coingecko.com/coins/images/18947/thumb/ojamu-icon-PNK.png?1696518402",
+    "symbol": "OJA",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x0aa8a7d1fb4c64b3b1dcea9a7ade81c59c25b95b": {
+    "assetId": "eip155:1/erc20:0x0aa8a7d1fb4c64b3b1dcea9a7ade81c59c25b95b",
+    "chainId": "eip155:1",
+    "name": "AstraAI",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/33138/thumb/CG_200x200.png?1700810557",
+    "symbol": "ASTRA",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x0aacfbec6a24756c20d41914f2caba817c0d8521": {
+    "assetId": "eip155:1/erc20:0x0aacfbec6a24756c20d41914f2caba817c0d8521",
+    "chainId": "eip155:1",
+    "name": "YAM",
+    "precision": 18,
+    "color": "#A13144",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x0AaCfbeC6a24756c20D41914F2caba817C0d8521/logo.png",
+    "symbol": "YAM",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x0ab39ac604f992aaec3c36de337c3cd3917a7d26": {
+    "assetId": "eip155:1/erc20:0x0ab39ac604f992aaec3c36de337c3cd3917a7d26",
+    "chainId": "eip155:1",
+    "name": "KEEPs Coin on Ethereum",
+    "precision": 18,
+    "color": "#E0EDEF",
+    "icon": "https://assets.coingecko.com/coins/images/19622/thumb/keeps.PNG?1696519051",
+    "symbol": "KVERSE",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x0ab87046fbb341d058f17cbc4c1133f25a20a52f": {
+    "assetId": "eip155:1/erc20:0x0ab87046fbb341d058f17cbc4c1133f25a20a52f",
+    "chainId": "eip155:1",
+    "name": "Governance OHM on Ethereum",
+    "precision": 18,
+    "color": "#859CA3",
+    "icon": "https://assets.coingecko.com/coins/images/21129/thumb/token_wsOHM_logo.png?1696520508",
+    "symbol": "GOHM",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x0abd596070be270f04eb446128b3dc04969e7d29": {
+    "assetId": "eip155:1/erc20:0x0abd596070be270f04eb446128b3dc04969e7d29",
+    "chainId": "eip155:1",
+    "name": "Nexus Pro",
+    "precision": 18,
+    "color": "#66B6F8",
+    "icon": "https://assets.coingecko.com/coins/images/31510/thumb/IMG_2395.png?1696530320",
+    "symbol": "NEXUS",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x0abdace70d3790235af448c88547603b945604ea": {
+    "assetId": "eip155:1/erc20:0x0abdace70d3790235af448c88547603b945604ea",
+    "chainId": "eip155:1",
+    "name": "district0x",
+    "precision": 18,
+    "color": "#2C3C8B",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x0AbdAce70D3790235af448C88547603b945604ea/logo.png",
+    "symbol": "DNT",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x0ad896863ce4cd84f10a9d30d4f509ceffd53c84": {
+    "assetId": "eip155:1/erc20:0x0ad896863ce4cd84f10a9d30d4f509ceffd53c84",
+    "chainId": "eip155:1",
+    "name": "Chocolate Like Butterfly",
+    "precision": 18,
+    "color": "#DDC1BB",
+    "icon": "https://assets.coingecko.com/coins/images/28859/thumb/clb.png?1696527833",
+    "symbol": "CLB",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x0adcfdfe9e88d28cc4c1daac9cc021067aff9b0c": {
+    "assetId": "eip155:1/erc20:0x0adcfdfe9e88d28cc4c1daac9cc021067aff9b0c",
+    "chainId": "eip155:1",
+    "name": "AnimalFam",
+    "precision": 18,
+    "color": "#7F2735",
+    "icon": "https://assets.coingecko.com/coins/images/29959/thumb/logo2_%283%29.png?1696528885",
+    "symbol": "TOTOFO",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x0ae055097c6d159879521c384f1d2123d1f195e6": {
+    "assetId": "eip155:1/erc20:0x0ae055097c6d159879521c384f1d2123d1f195e6",
+    "chainId": "eip155:1",
+    "name": "STAKE on Ethereum",
+    "precision": 18,
+    "color": "#4CACA4",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x0Ae055097C6d159879521C384F1D2123D1f195e6/logo.png",
+    "symbol": "STAKE",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x0ae38f7e10a43b5b2fb064b42a2f4514cba909ef": {
+    "assetId": "eip155:1/erc20:0x0ae38f7e10a43b5b2fb064b42a2f4514cba909ef",
+    "chainId": "eip155:1",
+    "name": "unshETH Ether on Ethereum",
+    "precision": 18,
+    "color": "#04D7F6",
+    "icon": "https://assets.coingecko.com/coins/images/30365/thumb/ush.png?1696529262",
+    "symbol": "UNSHETH",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x0aee8703d34dd9ae107386d3eff22ae75dd616d1": {
+    "assetId": "eip155:1/erc20:0x0aee8703d34dd9ae107386d3eff22ae75dd616d1",
+    "chainId": "eip155:1",
+    "name": "Tranche Finance",
+    "precision": 18,
+    "color": "#5C5CDB",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x0AeE8703D34DD9aE107386d3eFF22AE75Dd616D1/logo.png",
+    "symbol": "SLICE",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x0af55d5ff28a3269d69b98680fd034f115dd53ac": {
+    "assetId": "eip155:1/erc20:0x0af55d5ff28a3269d69b98680fd034f115dd53ac",
+    "chainId": "eip155:1",
+    "name": "BankSocial on Ethereum",
+    "precision": 8,
+    "color": "#14243C",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x0AF55d5fF28A3269d69B98680Fd034f115dd53Ac/logo.png",
+    "symbol": "BSL",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x0af5855a348c58a8bbf65bcc7b9bbacd0e7e2238": {
+    "assetId": "eip155:1/erc20:0x0af5855a348c58a8bbf65bcc7b9bbacd0e7e2238",
+    "chainId": "eip155:1",
+    "name": "Ulanco",
+    "precision": 18,
+    "color": "#E9F7FC",
+    "icon": "https://assets.coingecko.com/coins/images/20662/thumb/udacity_logo_icon_169367.png?1696520064",
+    "symbol": "UAC",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x0b0a8c7c34374c1d0c649917a97eee6c6c929b1b": {
+    "assetId": "eip155:1/erc20:0x0b0a8c7c34374c1d0c649917a97eee6c6c929b1b",
+    "chainId": "eip155:1",
+    "name": "Shiba V Pepe",
+    "precision": 9,
+    "color": "#0D0806",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x0b0a8c7C34374C1d0C649917a97EeE6c6c929B1b/logo.png",
+    "symbol": "SHEPE",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x0b319db00d07c8fadfaaef13c910141a5da0aa8f": {
+    "assetId": "eip155:1/erc20:0x0b319db00d07c8fadfaaef13c910141a5da0aa8f",
+    "chainId": "eip155:1",
+    "name": "Fluid TUSD",
+    "precision": 18,
+    "color": "#095DF4",
+    "icon": "https://assets.coingecko.com/coins/images/28474/thumb/fTUSD-200x200.png?1696527468",
+    "symbol": "FTUSD",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x0b38210ea11411557c13457d4da7dc6ea731b88a": {
+    "assetId": "eip155:1/erc20:0x0b38210ea11411557c13457d4da7dc6ea731b88a",
+    "chainId": "eip155:1",
+    "name": "API3",
+    "precision": 18,
+    "color": "#C8C8C8",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x0b38210ea11411557c13457D4dA7dC6ea731B88a/logo.png",
+    "symbol": "API3",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x0b452278223d3954f4ac050949d7998e373e7e43": {
+    "assetId": "eip155:1/erc20:0x0b452278223d3954f4ac050949d7998e373e7e43",
+    "chainId": "eip155:1",
+    "name": "Shita kiri Suzume",
+    "precision": 18,
+    "color": "#85847E",
+    "icon": "https://assets.coingecko.com/coins/images/26813/thumb/shitakiri_cmc.png?1696525873",
+    "symbol": "SUZUME",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x0b4663216b812e4a2f0fc2029ff1232958f4bf8c": {
+    "assetId": "eip155:1/erc20:0x0b4663216b812e4a2f0fc2029ff1232958f4bf8c",
+    "chainId": "eip155:1",
+    "name": "IUCN Coin",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/32984/thumb/RiCiW7D.png?1700092792",
+    "symbol": "IUCN",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x0b498ff89709d3838a063f1dfa463091f9801c2b": {
+    "assetId": "eip155:1/erc20:0x0b498ff89709d3838a063f1dfa463091f9801c2b",
+    "chainId": "eip155:1",
+    "name": "BTC 2x Flexible Leverage Index",
+    "precision": 18,
+    "color": "#450580",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x0B498ff89709d3838a063f1dFA463091F9801c2b/logo.png",
+    "symbol": "BTC2X-FLI",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x0b4bdc478791897274652dc15ef5c135cae61e60": {
+    "assetId": "eip155:1/erc20:0x0b4bdc478791897274652dc15ef5c135cae61e60",
+    "chainId": "eip155:1",
+    "name": "DAEX",
+    "precision": 18,
+    "color": "#7B56F2",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x0B4BdC478791897274652DC15eF5C135cae61E60/logo.png",
+    "symbol": "DAX",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x0b4c2708f052dca413600e237675e4d6778a9375": {
+    "assetId": "eip155:1/erc20:0x0b4c2708f052dca413600e237675e4d6778a9375",
+    "chainId": "eip155:1",
+    "name": "CoinClaim",
+    "precision": 16,
+    "color": "#6F6E90",
+    "icon": "https://assets.coingecko.com/coins/images/6687/thumb/coinclaim.jpg?1696507028",
+    "symbol": "CLM",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x0b5326da634f9270fb84481dd6f94d3dc2ca7096": {
+    "assetId": "eip155:1/erc20:0x0b5326da634f9270fb84481dd6f94d3dc2ca7096",
+    "chainId": "eip155:1",
+    "name": "Etho Protocol on Ethereum",
+    "precision": 18,
+    "color": "#941C44",
+    "icon": "https://assets.coingecko.com/coins/images/5194/thumb/ether1new-transparent.png?1696505708",
+    "symbol": "ETHO",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x0b61c4f33bcdef83359ab97673cb5961c6435f4e": {
+    "assetId": "eip155:1/erc20:0x0b61c4f33bcdef83359ab97673cb5961c6435f4e",
+    "chainId": "eip155:1",
+    "name": "HOLD",
+    "precision": 18,
+    "color": "#A8A8A8",
+    "icon": "https://assets.coingecko.com/coins/images/32575/thumb/200.png?1698554742",
+    "symbol": "EARN",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x0b63128c40737b13647552e0c926bcfeccc35f93": {
+    "assetId": "eip155:1/erc20:0x0b63128c40737b13647552e0c926bcfeccc35f93",
+    "chainId": "eip155:1",
+    "name": "wLITI",
+    "precision": 18,
+    "color": "#2464B4",
+    "icon": "https://assets.coingecko.com/coins/images/16810/thumb/liticapital_real.png?1696516380",
+    "symbol": "WLITI",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x0b7f0e51cd1739d6c96982d55ad8fa634dd43a9c": {
+    "assetId": "eip155:1/erc20:0x0b7f0e51cd1739d6c96982d55ad8fa634dd43a9c",
+    "chainId": "eip155:1",
+    "name": "Dream Machine Token on Ethereum",
+    "precision": 18,
+    "color": "#C4BBCD",
+    "icon": "https://assets.coingecko.com/coins/images/30505/thumb/dmt.png?1696529391",
+    "symbol": "DMT",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x0b925ed163218f6662a35e0f0371ac234f9e9371": {
+    "assetId": "eip155:1/erc20:0x0b925ed163218f6662a35e0f0371ac234f9e9371",
+    "chainId": "eip155:1",
+    "name": "Aave v3 wstETH on Ethereum",
+    "precision": 18,
+    "color": "#DC243C",
+    "icon": "https://assets.coingecko.com/coins/images/32890/thumb/WSTETH.png?1699776336",
+    "symbol": "AWSTETH",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x0b9570a0194ffb8bf9e60a95e8d905bf2358abcc": {
+    "assetId": "eip155:1/erc20:0x0b9570a0194ffb8bf9e60a95e8d905bf2358abcc",
+    "chainId": "eip155:1",
+    "name": "Rat Roulette",
+    "precision": 18,
+    "color": "#E2E2E2",
+    "icon": "https://assets.coingecko.com/coins/images/31065/thumb/Screen_Shot_2023-07-21_at_9.10.56_am.png?1696529899",
+    "symbol": "RAT",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x0b9ae6b1d4f0eeed904d1cef68b9bd47499f3fff": {
+    "assetId": "eip155:1/erc20:0x0b9ae6b1d4f0eeed904d1cef68b9bd47499f3fff",
+    "chainId": "eip155:1",
+    "name": "IlluminatiCoin",
+    "precision": 18,
+    "color": "#B28E57",
+    "icon": "https://assets.coingecko.com/coins/images/32399/thumb/CMCIcon.png?1698055172",
+    "symbol": "NATI",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x0ba74fb26ca523f2dc22fa4318581cc2452eaba1": {
+    "assetId": "eip155:1/erc20:0x0ba74fb26ca523f2dc22fa4318581cc2452eaba1",
+    "chainId": "eip155:1",
+    "name": "Bogdanoff",
+    "precision": 18,
+    "color": "#382622",
+    "icon": "https://assets.coingecko.com/coins/images/30026/thumb/telegram-cloud-document-1-1809833204887060537_copia_2.png?1696528949",
+    "symbol": "BOG",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x0bb217e40f8a5cb79adf04e1aab60e5abd0dfc1e": {
+    "assetId": "eip155:1/erc20:0x0bb217e40f8a5cb79adf04e1aab60e5abd0dfc1e",
+    "chainId": "eip155:1",
+    "name": "SWFTCOIN on Ethereum",
+    "precision": 8,
+    "color": "#F2E7D5",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x0bb217E40F8a5Cb79Adf04E1aAb60E5abd0dfC1e/logo.png",
+    "symbol": "SWFTC",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x0bc529c00c6401aef6d220be8c6ea1667f6ad93e": {
+    "assetId": "eip155:1/erc20:0x0bc529c00c6401aef6d220be8c6ea1667f6ad93e",
+    "chainId": "eip155:1",
+    "name": "yearn finance on Ethereum",
+    "precision": 18,
+    "color": "#0469DB",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x0bc529c00C6401aEF6D220BE8C6Ea1667F6Ad93e/logo.png",
+    "symbol": "YFI",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x0bf43350076f95e0d16120b4d6bdfa1c9d50bdbd": {
+    "assetId": "eip155:1/erc20:0x0bf43350076f95e0d16120b4d6bdfa1c9d50bdbd",
+    "chainId": "eip155:1",
+    "name": "Antfarm Governance Token",
+    "precision": 18,
+    "color": "#047C94",
+    "icon": "https://assets.coingecko.com/coins/images/28822/thumb/AGT.png?1696527798",
+    "symbol": "AGT",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x0c0725282cbf037e6781fe84e0361b01daa88ddf": {
+    "assetId": "eip155:1/erc20:0x0c0725282cbf037e6781fe84e0361b01daa88ddf",
+    "chainId": "eip155:1",
+    "name": "HiPvPGame",
+    "precision": 16,
+    "color": "#F0EAE8",
+    "icon": "https://assets.coingecko.com/coins/images/31501/thumb/200x200.jpg?1696530312",
+    "symbol": "HIPVP",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x0c08638473cafbca3beb113616a1871f4bfad4f9": {
+    "assetId": "eip155:1/erc20:0x0c08638473cafbca3beb113616a1871f4bfad4f9",
+    "chainId": "eip155:1",
+    "name": "ZooCoin on Ethereum",
+    "precision": 18,
+    "color": "#70C5AE",
+    "icon": "https://assets.coingecko.com/coins/images/31230/thumb/ZOO.png?1696530056",
+    "symbol": "ZOO",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x0c10bf8fcb7bf5412187a595ab97a3609160b5c6": {
+    "assetId": "eip155:1/erc20:0x0c10bf8fcb7bf5412187a595ab97a3609160b5c6",
+    "chainId": "eip155:1",
+    "name": "USDD on Ethereum",
+    "precision": 18,
+    "color": "#246C5C",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x0C10bF8FcB7Bf5412187A595ab97a3609160b5c6/logo.png",
+    "symbol": "USDD",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x0c21638d4bcb88568f88bc84a50e317715f8de8a": {
+    "assetId": "eip155:1/erc20:0x0c21638d4bcb88568f88bc84a50e317715f8de8a",
+    "chainId": "eip155:1",
+    "name": "GrokDogeX",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/32756/thumb/GDX.jpg?1699280011",
+    "symbol": "GDX",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x0c29ff5e5f27ed032eab2a97aa489e9c6da5a4a8": {
+    "assetId": "eip155:1/erc20:0x0c29ff5e5f27ed032eab2a97aa489e9c6da5a4a8",
+    "chainId": "eip155:1",
+    "name": "RouletteBot",
+    "precision": 18,
+    "color": "#52559D",
+    "icon": "https://assets.coingecko.com/coins/images/31622/thumb/IMG_20230904_233829_839.png?1696530438",
+    "symbol": "ROULETTEBO",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x0c37bcf456bc661c14d596683325623076d7e283": {
+    "assetId": "eip155:1/erc20:0x0c37bcf456bc661c14d596683325623076d7e283",
+    "chainId": "eip155:1",
+    "name": "Aeron",
+    "precision": 18,
+    "color": "#4280A5",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x0C37Bcf456bC661C14D596683325623076D7e283/logo.png",
+    "symbol": "ARNX",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x0c48250eb1f29491f1efbeec0261eb556f0973c7": {
+    "assetId": "eip155:1/erc20:0x0c48250eb1f29491f1efbeec0261eb556f0973c7",
+    "chainId": "eip155:1",
+    "name": "AimBot",
+    "precision": 18,
+    "color": "#D9D9D9",
+    "icon": "https://assets.coingecko.com/coins/images/31200/thumb/200x200.jpg?1696530027",
+    "symbol": "AIMBOT",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x0c572544a4ee47904d54aaa6a970af96b6f00e1b": {
+    "assetId": "eip155:1/erc20:0x0c572544a4ee47904d54aaa6a970af96b6f00e1b",
+    "chainId": "eip155:1",
+    "name": "Wasder",
+    "precision": 18,
+    "color": "#04D494",
+    "icon": "https://assets.coingecko.com/coins/images/15374/thumb/wasderBoxedLogoWhite-200x200.png?1696515022",
+    "symbol": "WAS",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x0c7d5ae016f806603cb1782bea29ac69471cab9c": {
+    "assetId": "eip155:1/erc20:0x0c7d5ae016f806603cb1782bea29ac69471cab9c",
+    "chainId": "eip155:1",
+    "name": "Bifrost",
+    "precision": 18,
+    "color": "#0CA9F8",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x0c7D5ae016f806603CB1782bEa29AC69471CAb9c/logo.png",
+    "symbol": "BFC",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x0c90c57aaf95a3a87eadda6ec3974c99d786511f": {
+    "assetId": "eip155:1/erc20:0x0c90c57aaf95a3a87eadda6ec3974c99d786511f",
+    "chainId": "eip155:1",
+    "name": "HanChain on Ethereum",
+    "precision": 18,
+    "color": "#0C1534",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x0c90C57aaf95A3A87eadda6ec3974c99D786511F/logo.png",
+    "symbol": "HAN",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x0c93b616933b0cd03b201b29cd8a22681dd9e0d9": {
+    "assetId": "eip155:1/erc20:0x0c93b616933b0cd03b201b29cd8a22681dd9e0d9",
+    "chainId": "eip155:1",
+    "name": "HollyGold",
+    "precision": 8,
+    "color": "#7C7470",
+    "icon": "https://assets.coingecko.com/coins/images/13652/thumb/QnfGCea3aO_Qb-Gd9n6MSFE_eBVAr87WPoxAzf0gKdcGOEL4K5J6A5cpGinzLvHclj_UHkCnw9XTlGoNYd0H8T_Ebe8voLS49MAZO2NIknCxytaYFtt5_u12RQg-kpmWHcETzAFlDgk9iNXAL-88fB_l-DRi8WEsgSJzXXjztKzQlpXuET6d4_98pykED6uyq1-4PMVg05P7tUN.jpg?1696513401",
+    "symbol": "HGOLD",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x0c943300d604c732117db2755873a0a0683ee7a9": {
+    "assetId": "eip155:1/erc20:0x0c943300d604c732117db2755873a0a0683ee7a9",
+    "chainId": "eip155:1",
+    "name": "Paradise Defi",
+    "precision": 18,
+    "color": "#2B093A",
+    "icon": "https://assets.coingecko.com/coins/images/28827/thumb/photo_2023-01-16_15.08.09.jpeg?1696527803",
+    "symbol": "PDF",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x0c9c7712c83b3c70e7c5e11100d33d9401bdf9dd": {
+    "assetId": "eip155:1/erc20:0x0c9c7712c83b3c70e7c5e11100d33d9401bdf9dd",
+    "chainId": "eip155:1",
+    "name": "Wombat on Ethereum",
+    "precision": 18,
+    "color": "#F84C24",
+    "icon": "https://assets.coingecko.com/coins/images/26430/thumb/Project_Page_Icon.png?1696525504",
+    "symbol": "WOMBAT",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x0cb7d2677277b18f080fc2ad97f5fa9f3d7a3232": {
+    "assetId": "eip155:1/erc20:0x0cb7d2677277b18f080fc2ad97f5fa9f3d7a3232",
+    "chainId": "eip155:1",
+    "name": "Betted",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/29287/thumb/ficha_icon_CG.png?1696528239",
+    "symbol": "BETS",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x0cba60ca5ef4d42f92a5070a8fedd13be93e2861": {
+    "assetId": "eip155:1/erc20:0x0cba60ca5ef4d42f92a5070a8fedd13be93e2861",
+    "chainId": "eip155:1",
+    "name": "The Protocol",
+    "precision": 18,
+    "color": "#141414",
+    "icon": "https://assets.coingecko.com/coins/images/27849/thumb/cSar5sDM_400x400.jpg?1696526868",
+    "symbol": "THE",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x0cdf9acd87e940837ff21bb40c9fd55f68bba059": {
+    "assetId": "eip155:1/erc20:0x0cdf9acd87e940837ff21bb40c9fd55f68bba059",
+    "chainId": "eip155:1",
+    "name": "Public Mint",
+    "precision": 18,
+    "color": "#04ECC4",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x0CDF9acd87E940837ff21BB40c9fd55F68bba059/logo.png",
+    "symbol": "MINT",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x0cec1a9154ff802e7934fc916ed7ca50bde6844e": {
+    "assetId": "eip155:1/erc20:0x0cec1a9154ff802e7934fc916ed7ca50bde6844e",
+    "chainId": "eip155:1",
+    "name": "PoolTogether on Ethereum",
+    "precision": 18,
+    "color": "#6136C5",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x0cEC1A9154Ff802e7934Fc916Ed7Ca50bDE6844e/logo.png",
+    "symbol": "POOL",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x0ceccd54323b953a5464fddefc47171c397043f7": {
+    "assetId": "eip155:1/erc20:0x0ceccd54323b953a5464fddefc47171c397043f7",
+    "chainId": "eip155:1",
+    "name": "Lumina Bot",
+    "precision": 18,
+    "color": "#BBB3F5",
+    "icon": "https://assets.coingecko.com/coins/images/31421/thumb/Group_10.png?1696530236",
+    "symbol": "LBOT",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x0cf0ee63788a0849fe5297f3407f701e122cc023": {
+    "assetId": "eip155:1/erc20:0x0cf0ee63788a0849fe5297f3407f701e122cc023",
+    "chainId": "eip155:1",
+    "name": "Streamr XDATA",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x0Cf0Ee63788A0849fE5297F3407f701E122cC023/logo.png",
+    "symbol": "XDATA",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x0cf75471b0fbf76a315a75ebda6600ab92fdc924": {
+    "assetId": "eip155:1/erc20:0x0cf75471b0fbf76a315a75ebda6600ab92fdc924",
+    "chainId": "eip155:1",
+    "name": "DeathWolf",
+    "precision": 18,
+    "color": "#D3D3D4",
+    "icon": "https://assets.coingecko.com/coins/images/29405/thumb/DeathWolf.png?1696528355",
+    "symbol": "DTH",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x0d02755a5700414b26ff040e1de35d337df56218": {
+    "assetId": "eip155:1/erc20:0x0d02755a5700414b26ff040e1de35d337df56218",
+    "chainId": "eip155:1",
+    "name": "BendDAO",
+    "precision": 18,
+    "color": "#6E6E6E",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x0d02755a5700414B26FF040e1dE35D337DF56218/logo.png",
+    "symbol": "BEND",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x0d15009896efe9972f8e086bdd3bcba5c1f74bf3": {
+    "assetId": "eip155:1/erc20:0x0d15009896efe9972f8e086bdd3bcba5c1f74bf3",
+    "chainId": "eip155:1",
+    "name": "SonoCoin",
+    "precision": 8,
+    "color": "#2E3C78",
+    "icon": "https://assets.coingecko.com/coins/images/7230/thumb/MeWTs09-_400x400.jpg?1696507526",
+    "symbol": "SONO",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x0d229c3ff2d76e4b88ca4f9d3d3353f4545ec53f": {
+    "assetId": "eip155:1/erc20:0x0d229c3ff2d76e4b88ca4f9d3d3353f4545ec53f",
+    "chainId": "eip155:1",
+    "name": "Sheikh Inu on Ethereum",
+    "precision": 18,
+    "color": "#F2B311",
+    "icon": "https://assets.coingecko.com/coins/images/28948/thumb/photo_2023-02-04_17-32-00_prev_ui_%282%29.png?1696527922",
+    "symbol": "SHINU",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x0d248ce39e26fb00f911fb1e7a45a00d8c94341c": {
+    "assetId": "eip155:1/erc20:0x0d248ce39e26fb00f911fb1e7a45a00d8c94341c",
+    "chainId": "eip155:1",
+    "name": "Butter",
+    "precision": 18,
+    "color": "#E0AD4C",
+    "icon": "https://assets.coingecko.com/coins/images/30252/thumb/butterlogotrans.png?1696529161",
+    "symbol": "BUTTER",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x0d438f3b5175bebc262bf23753c1e53d03432bde": {
+    "assetId": "eip155:1/erc20:0x0d438f3b5175bebc262bf23753c1e53d03432bde",
+    "chainId": "eip155:1",
+    "name": "Wrapped NXM",
+    "precision": 18,
+    "color": "#2C2C2C",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x0d438F3b5175Bebc262bF23753C1E53d03432bDE/logo.png",
+    "symbol": "WNXM",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x0d505c03d30e65f6e9b4ef88855a47a89e4b7676": {
+    "assetId": "eip155:1/erc20:0x0d505c03d30e65f6e9b4ef88855a47a89e4b7676",
+    "chainId": "eip155:1",
+    "name": "Zoomer",
+    "precision": 18,
+    "color": "#DBD9D7",
+    "icon": "https://assets.coingecko.com/coins/images/30894/thumb/zoooooooooomer.jpg?1696529740",
+    "symbol": "ZOOMER",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x0d86eb9f43c57f6ff3bc9e23d8f9d82503f0e84b": {
+    "assetId": "eip155:1/erc20:0x0d86eb9f43c57f6ff3bc9e23d8f9d82503f0e84b",
+    "chainId": "eip155:1",
+    "name": "Maximus DAO",
+    "precision": 8,
+    "color": "#1107A8",
+    "icon": "https://assets.coingecko.com/coins/images/25126/thumb/maxilogo200.png?1696524276",
+    "symbol": "MAXI",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x0d8775f648430679a709e98d2b0cb6250d2887ef": {
+    "assetId": "eip155:1/erc20:0x0d8775f648430679a709e98d2b0cb6250d2887ef",
+    "chainId": "eip155:1",
+    "name": "Basic Attention on Ethereum",
+    "precision": 18,
+    "color": "#FC5404",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x0D8775F648430679A709E98d2b0Cb6250d2887EF/logo.png",
+    "symbol": "BAT",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x0d88ed6e74bbfd96b831231638b66c05571e824f": {
+    "assetId": "eip155:1/erc20:0x0d88ed6e74bbfd96b831231638b66c05571e824f",
+    "chainId": "eip155:1",
+    "name": "Aventus",
+    "precision": 18,
+    "color": "#0C0C14",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x0d88eD6E74bbFD96B831231638b66C05571e824F/logo.png",
+    "symbol": "AVT",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x0d8ca4b20b115d4da5c13dc45dd582a5de3e78bf": {
+    "assetId": "eip155:1/erc20:0x0d8ca4b20b115d4da5c13dc45dd582a5de3e78bf",
+    "chainId": "eip155:1",
+    "name": "Generaitiv",
+    "precision": 18,
+    "color": "#F8C6E0",
+    "icon": "https://assets.coingecko.com/coins/images/29158/thumb/logo-200x200.png?1696528117",
+    "symbol": "GAI",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x0d99482bb2c436b7183e7bd474cd65fa8711c8ec": {
+    "assetId": "eip155:1/erc20:0x0d99482bb2c436b7183e7bd474cd65fa8711c8ec",
+    "chainId": "eip155:1",
+    "name": "NEO PEPE",
+    "precision": 18,
+    "color": "#1D4024",
+    "icon": "https://assets.coingecko.com/coins/images/31733/thumb/NEPE.png?1696530553",
+    "symbol": "NEPE",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x0db8d8b76bc361bacbb72e2c491e06085a97ab31": {
+    "assetId": "eip155:1/erc20:0x0db8d8b76bc361bacbb72e2c491e06085a97ab31",
+    "chainId": "eip155:1",
+    "name": "IQeon",
+    "precision": 18,
+    "color": "#04CAE9",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x0DB8D8b76BC361bAcbB72E2C491E06085A97Ab31/logo.png",
+    "symbol": "IQN",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x0de05f6447ab4d22c8827449ee4ba2d5c288379b": {
+    "assetId": "eip155:1/erc20:0x0de05f6447ab4d22c8827449ee4ba2d5c288379b",
+    "chainId": "eip155:1",
+    "name": "Ooki",
+    "precision": 18,
+    "color": "#4D9EF9",
+    "icon": "https://assets.coingecko.com/coins/images/21719/thumb/Ooki_Token.png?1696521074",
+    "symbol": "OOKI",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x0e0989b1f9b8a38983c2ba8053269ca62ec9b195": {
+    "assetId": "eip155:1/erc20:0x0e0989b1f9b8a38983c2ba8053269ca62ec9b195",
+    "chainId": "eip155:1",
+    "name": "Po et",
+    "precision": 8,
+    "color": "#E8E4E1",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x0e0989b1f9B8A38983c2BA8053269Ca62Ec9B195/logo.png",
+    "symbol": "POE",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x0e192d382a36de7011f795acc4391cd302003606": {
+    "assetId": "eip155:1/erc20:0x0e192d382a36de7011f795acc4391cd302003606",
+    "chainId": "eip155:1",
+    "name": "Futureswap on Ethereum",
+    "precision": 18,
+    "color": "#6173EE",
+    "icon": "https://assets.coingecko.com/coins/images/14520/thumb/futureswap_logo.png?1696514206",
+    "symbol": "FST",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x0e29e5abbb5fd88e28b2d355774e73bd47de3bcd": {
+    "assetId": "eip155:1/erc20:0x0e29e5abbb5fd88e28b2d355774e73bd47de3bcd",
+    "chainId": "eip155:1",
+    "name": "Hakka Finance",
+    "precision": 18,
+    "color": "#045C2C",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x0E29e5AbbB5FD88e28b2d355774e73BD47dE3bcd/logo.png",
+    "symbol": "HAKKA",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x0e2ef8aecb3c01ad5d596f1b67134e178199984d": {
+    "assetId": "eip155:1/erc20:0x0e2ef8aecb3c01ad5d596f1b67134e178199984d",
+    "chainId": "eip155:1",
+    "name": "LandBox on Ethereum",
+    "precision": 18,
+    "color": "#2255C4",
+    "icon": "https://assets.coingecko.com/coins/images/14875/thumb/jmKvZDn7_400x400.jpg?1696514539",
+    "symbol": "LAND",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x0e573ce2736dd9637a0b21058352e1667925c7a8": {
+    "assetId": "eip155:1/erc20:0x0e573ce2736dd9637a0b21058352e1667925c7a8",
+    "chainId": "eip155:1",
+    "name": "Verified USD on Ethereum",
+    "precision": 6,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/32948/thumb/usdv_%281%29.png?1699933314",
+    "symbol": "USDV",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x0e5f00da8aaef196a719d045db89b5da8f371b32": {
+    "assetId": "eip155:1/erc20:0x0e5f00da8aaef196a719d045db89b5da8f371b32",
+    "chainId": "eip155:1",
+    "name": "Connectome",
+    "precision": 18,
+    "color": "#43B1DE",
+    "icon": "https://assets.coingecko.com/coins/images/8528/thumb/200_200_CNTM-LOGO-07.png?1696508705",
+    "symbol": "CNTM",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x0e6fa9c050c8a707e7f56a2b3695665e4f9eac9b": {
+    "assetId": "eip155:1/erc20:0x0e6fa9c050c8a707e7f56a2b3695665e4f9eac9b",
+    "chainId": "eip155:1",
+    "name": "Robo Inu Finance",
+    "precision": 9,
+    "color": "#2685C3",
+    "icon": "https://assets.coingecko.com/coins/images/20821/thumb/O68Gs5SE_400x400.jpg?1696520214",
+    "symbol": "RBIF",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x0e74a58557555cb44415df5a960d9eb14e96142a": {
+    "assetId": "eip155:1/erc20:0x0e74a58557555cb44415df5a960d9eb14e96142a",
+    "chainId": "eip155:1",
+    "name": "VegasBot",
+    "precision": 18,
+    "color": "#D4CCCB",
+    "icon": "https://assets.coingecko.com/coins/images/31983/thumb/logoblk.jpg?1696530786",
+    "symbol": "VEGAS",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x0e8d2eb7d6bdf28393c25a1966385ad32ff0259a": {
+    "assetId": "eip155:1/erc20:0x0e8d2eb7d6bdf28393c25a1966385ad32ff0259a",
+    "chainId": "eip155:1",
+    "name": "Streamer Inu",
+    "precision": 18,
+    "color": "#7F50C0",
+    "icon": "https://assets.coingecko.com/coins/images/27994/thumb/logo.png?1696527011",
+    "symbol": "STREAMERINU",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x0e8d6b471e332f140e7d9dbb99e5e3822f728da6": {
+    "assetId": "eip155:1/erc20:0x0e8d6b471e332f140e7d9dbb99e5e3822f728da6",
+    "chainId": "eip155:1",
+    "name": "Abyss",
+    "precision": 18,
+    "color": "#083FC3",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x0E8d6b471e332F140e7d9dbB99E5E3822F728DA6/logo.png",
+    "symbol": "ABYSS",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x0e9cc0f7e550bd43bd2af2214563c47699f96479": {
+    "assetId": "eip155:1/erc20:0x0e9cc0f7e550bd43bd2af2214563c47699f96479",
+    "chainId": "eip155:1",
+    "name": "UnleashClub",
+    "precision": 18,
+    "color": "#F09F17",
+    "icon": "https://assets.coingecko.com/coins/images/30804/thumb/UnleashClub.png?1696529662",
+    "symbol": "UNLEASH",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x0ea20e7ffb006d4cfe84df2f72d8c7bd89247db0": {
+    "assetId": "eip155:1/erc20:0x0ea20e7ffb006d4cfe84df2f72d8c7bd89247db0",
+    "chainId": "eip155:1",
+    "name": "Aave AMM UniCRVWETH",
+    "precision": 18,
+    "color": "#EEEFF1",
+    "icon": "https://assets.coingecko.com/coins/images/17220/thumb/aAmmUniCRVWETH.png?1696516775",
+    "symbol": "AAMMUNICRVWETH",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x0eb3032bcac2be1fa95e296442f225edb80fc3cd": {
+    "assetId": "eip155:1/erc20:0x0eb3032bcac2be1fa95e296442f225edb80fc3cd",
+    "chainId": "eip155:1",
+    "name": "Aster",
+    "precision": 18,
+    "color": "#0771C1",
+    "icon": "https://assets.coingecko.com/coins/images/17325/thumb/atc.png?1696516878",
+    "symbol": "ATC",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x0ebb614204e47c09b6c3feb9aaecad8ee060e23e": {
+    "assetId": "eip155:1/erc20:0x0ebb614204e47c09b6c3feb9aaecad8ee060e23e",
+    "chainId": "eip155:1",
+    "name": "Cryptopay",
+    "precision": 0,
+    "color": "#E3F3F6",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x0Ebb614204E47c09B6C3FeB9AAeCad8EE060E23E/logo.png",
+    "symbol": "CPAY",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x0ebe30595a44e5288c24161ddfc1e9fa08e33a0c": {
+    "assetId": "eip155:1/erc20:0x0ebe30595a44e5288c24161ddfc1e9fa08e33a0c",
+    "chainId": "eip155:1",
+    "name": "Nyan Meme Coin",
+    "precision": 18,
+    "color": "#818069",
+    "icon": "https://assets.coingecko.com/coins/images/30197/thumb/n0z-571z_400x400.png?1696529112",
+    "symbol": "NYAN",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x0ec72cd6690db40b16be166858299f19d4f8e5b0": {
+    "assetId": "eip155:1/erc20:0x0ec72cd6690db40b16be166858299f19d4f8e5b0",
+    "chainId": "eip155:1",
+    "name": "Teh Golden One",
+    "precision": 9,
+    "color": "#3F3728",
+    "icon": "https://assets.coingecko.com/coins/images/27290/thumb/teh_golden_one_200x200.png?1696526342",
+    "symbol": "GOLD1",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x0ec78ed49c2d27b315d462d43b5bab94d2c79bf8": {
+    "assetId": "eip155:1/erc20:0x0ec78ed49c2d27b315d462d43b5bab94d2c79bf8",
+    "chainId": "eip155:1",
+    "name": "ZERO",
+    "precision": 18,
+    "color": "#B8B8B8",
+    "icon": "https://assets.coingecko.com/coins/images/21530/thumb/UlyJW87D_400x400.jpg?1696520889",
+    "symbol": "MEOW",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x0ec9f76202a7061eb9b3a7d6b59d36215a7e37da": {
+    "assetId": "eip155:1/erc20:0x0ec9f76202a7061eb9b3a7d6b59d36215a7e37da",
+    "chainId": "eip155:1",
+    "name": "BlackPool on Ethereum",
+    "precision": 18,
+    "color": "#050505",
+    "icon": "https://assets.coingecko.com/coins/images/15887/thumb/uyO7dQzR_400x400.jpg?1696515502",
+    "symbol": "BPT",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x0ede75b5f548e0d37f494368f4fa4982b6d0630a": {
+    "assetId": "eip155:1/erc20:0x0ede75b5f548e0d37f494368f4fa4982b6d0630a",
+    "chainId": "eip155:1",
+    "name": "Meg4mint",
+    "precision": 18,
+    "color": "#1A2022",
+    "icon": "https://assets.coingecko.com/coins/images/31714/thumb/MEG_200px.png?1696530536",
+    "symbol": "MEG",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x0edf9bc41bbc1354c70e2107f80c42cae7fbbca8": {
+    "assetId": "eip155:1/erc20:0x0edf9bc41bbc1354c70e2107f80c42cae7fbbca8",
+    "chainId": "eip155:1",
+    "name": "Instrumental Finance",
+    "precision": 18,
+    "color": "#151114",
+    "icon": "https://assets.coingecko.com/coins/images/21407/thumb/HRZ0RUOh_400x400.jpg?1696520770",
+    "symbol": "STRM",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x0ee27a1f959ea7ea2aa171a7e2e48fd9f17bb8eb": {
+    "assetId": "eip155:1/erc20:0x0ee27a1f959ea7ea2aa171a7e2e48fd9f17bb8eb",
+    "chainId": "eip155:1",
+    "name": "First GROK AI",
+    "precision": 9,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/33005/thumb/Untitled_design_%2829%29.png?1700122635",
+    "symbol": "GROK",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x0f17bc9a994b87b5225cfb6a2cd4d667adb4f20b": {
+    "assetId": "eip155:1/erc20:0x0f17bc9a994b87b5225cfb6a2cd4d667adb4f20b",
+    "chainId": "eip155:1",
+    "name": "Jarvis Synthetic Euro on Ethereum",
+    "precision": 18,
+    "color": "#093796",
+    "icon": "https://assets.coingecko.com/coins/images/15725/thumb/jEUR.png?1696515352",
+    "symbol": "JEUR",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x0f17eeccc84739b9450c88de0429020e2dec05eb": {
+    "assetId": "eip155:1/erc20:0x0f17eeccc84739b9450c88de0429020e2dec05eb",
+    "chainId": "eip155:1",
+    "name": "Otacon AI",
+    "precision": 18,
+    "color": "#040A0D",
+    "icon": "https://assets.coingecko.com/coins/images/32475/thumb/otacon_logo-square_200x200.png?1698285813",
+    "symbol": "OTACON",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x0f1e49d6dcfc9eefcce9d5ae3c660f8ead75061a": {
+    "assetId": "eip155:1/erc20:0x0f1e49d6dcfc9eefcce9d5ae3c660f8ead75061a",
+    "chainId": "eip155:1",
+    "name": "Vinlink",
+    "precision": 9,
+    "color": "#EBC9D9",
+    "icon": "https://assets.coingecko.com/coins/images/30139/thumb/VNLNK_Logo.png?1696529060",
+    "symbol": "VNLNK",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x0f2d719407fdbeff09d87557abb7232601fd9f29": {
+    "assetId": "eip155:1/erc20:0x0f2d719407fdbeff09d87557abb7232601fd9f29",
+    "chainId": "eip155:1",
+    "name": "Synapse on Ethereum",
+    "precision": 18,
+    "color": "#19152F",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x0f2D719407FdBeFF09D87557AbB7232601FD9F29/logo.png",
+    "symbol": "SYN",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x0f3adc247e91c3c50bc08721355a41037e89bc20": {
+    "assetId": "eip155:1/erc20:0x0f3adc247e91c3c50bc08721355a41037e89bc20",
+    "chainId": "eip155:1",
+    "name": "Anchor Protocol",
+    "precision": 18,
+    "color": "#1C201C",
+    "icon": "https://assets.coingecko.com/coins/images/14420/thumb/anchor_protocol_logo.jpg?1696514111",
+    "symbol": "ANC",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x0f3b904172f937748af7f09353b016219a14562c": {
+    "assetId": "eip155:1/erc20:0x0f3b904172f937748af7f09353b016219a14562c",
+    "chainId": "eip155:1",
+    "name": "Polygon Star",
+    "precision": 18,
+    "color": "#1CBF8E",
+    "icon": "https://assets.coingecko.com/coins/images/31947/thumb/logo.png?1696530753",
+    "symbol": "POS",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x0f51bb10119727a7e5ea3538074fb341f56b09ad": {
+    "assetId": "eip155:1/erc20:0x0f51bb10119727a7e5ea3538074fb341f56b09ad",
+    "chainId": "eip155:1",
+    "name": "DAO Maker on Ethereum",
+    "precision": 18,
+    "color": "#43AFFA",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x0f51bb10119727a7e5eA3538074fb341F56B09Ad/logo.png",
+    "symbol": "DAO",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x0f5d2fb29fb7d3cfee444a200298f468908cc942": {
+    "assetId": "eip155:1/erc20:0x0f5d2fb29fb7d3cfee444a200298f468908cc942",
+    "chainId": "eip155:1",
+    "name": "Decentraland on Ethereum",
+    "precision": 18,
+    "color": "#FB334E",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x0F5D2fB29fb7d3CFeE444a200298f468908cC942/logo.png",
+    "symbol": "MANA",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x0f5def84ced3e9e295dae28df96d0b846de92c1a": {
+    "assetId": "eip155:1/erc20:0x0f5def84ced3e9e295dae28df96d0b846de92c1a",
+    "chainId": "eip155:1",
+    "name": "Crypto SDG",
+    "precision": 18,
+    "color": "#51A244",
+    "icon": "https://assets.coingecko.com/coins/images/29816/thumb/SDG_token_Logo_200.png?1696528745",
+    "symbol": "SDG",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x0f71b8de197a1c84d31de0f1fa7926c365f052b3": {
+    "assetId": "eip155:1/erc20:0x0f71b8de197a1c84d31de0f1fa7926c365f052b3",
+    "chainId": "eip155:1",
+    "name": "Arcona on Ethereum",
+    "precision": 18,
+    "color": "#0525AB",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x0f71B8De197A1C84d31de0F1fA7926c365F052B3/logo.png",
+    "symbol": "ARCONA",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x0f7b3f5a8fed821c5eb60049538a548db2d479ce": {
+    "assetId": "eip155:1/erc20:0x0f7b3f5a8fed821c5eb60049538a548db2d479ce",
+    "chainId": "eip155:1",
+    "name": "AirTor Protocol",
+    "precision": 18,
+    "color": "#046476",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x0F7B3F5a8FeD821c5eb60049538a548dB2D479ce/logo.png",
+    "symbol": "ATOR",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x0f7f961648ae6db43c75663ac7e5414eb79b5704": {
+    "assetId": "eip155:1/erc20:0x0f7f961648ae6db43c75663ac7e5414eb79b5704",
+    "chainId": "eip155:1",
+    "name": "Blockzero Labs on Ethereum",
+    "precision": 18,
+    "color": "#83FAB3",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x0f7F961648aE6Db43C75663aC7E5414Eb79b5704/logo.png",
+    "symbol": "XIO",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x0f8c45b896784a1e408526b9300519ef8660209c": {
+    "assetId": "eip155:1/erc20:0x0f8c45b896784a1e408526b9300519ef8660209c",
+    "chainId": "eip155:1",
+    "name": "XMax",
+    "precision": 8,
+    "color": "#8C84FB",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x0f8c45B896784A1E408526B9300519ef8660209c/logo.png",
+    "symbol": "XMX",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x0f9f1044d1a30d08fb90c4ec0d3a066c8a8f7b20": {
+    "assetId": "eip155:1/erc20:0x0f9f1044d1a30d08fb90c4ec0d3a066c8a8f7b20",
+    "chainId": "eip155:1",
+    "name": "Chibi Inu",
+    "precision": 8,
+    "color": "#F49B17",
+    "icon": "https://assets.coingecko.com/coins/images/32159/thumb/chibi_inu.png?1696610362",
+    "symbol": "CHIBI",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x0fcbc31c503b4a9ed90e87f8ff46c318a4a14260": {
+    "assetId": "eip155:1/erc20:0x0fcbc31c503b4a9ed90e87f8ff46c318a4a14260",
+    "chainId": "eip155:1",
+    "name": "Quantfury",
+    "precision": 8,
+    "color": "#64C8BE",
+    "icon": "https://assets.coingecko.com/coins/images/14033/thumb/FtSOX9Vy_400x400.jpg?1696513760",
+    "symbol": "QTF",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x0fd10b9899882a6f2fcb5c371e17e70fdee00c38": {
+    "assetId": "eip155:1/erc20:0x0fd10b9899882a6f2fcb5c371e17e70fdee00c38",
+    "chainId": "eip155:1",
+    "name": "Pundi X",
+    "precision": 18,
+    "color": "#1C1C1C",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x0FD10b9899882a6f2fcb5c371E17e70FdEe00C38/logo.png",
+    "symbol": "PUNDIX",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x0fd3822072ad001aac1c90a09d9506f097f24458": {
+    "assetId": "eip155:1/erc20:0x0fd3822072ad001aac1c90a09d9506f097f24458",
+    "chainId": "eip155:1",
+    "name": "NOA PLAY",
+    "precision": 9,
+    "color": "#A2B0D7",
+    "icon": "https://assets.coingecko.com/coins/images/15723/thumb/XHFjmBTx_400x400.png?1696515350",
+    "symbol": "NOA",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x0fd67b4ceb9b607ef206904ec73459c4880132c9": {
+    "assetId": "eip155:1/erc20:0x0fd67b4ceb9b607ef206904ec73459c4880132c9",
+    "chainId": "eip155:1",
+    "name": "ShoeFy on Ethereum",
+    "precision": 18,
+    "color": "#261A4F",
+    "icon": "https://assets.coingecko.com/coins/images/19082/thumb/SHOEFY.jpg?1696518532",
+    "symbol": "SHOE",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x0fe0ed7f146cb12e4b9759aff4fa8d34571802ca": {
+    "assetId": "eip155:1/erc20:0x0fe0ed7f146cb12e4b9759aff4fa8d34571802ca",
+    "chainId": "eip155:1",
+    "name": "Pool Partyyy",
+    "precision": 18,
+    "color": "#2C2B3D",
+    "icon": "https://assets.coingecko.com/coins/images/29832/thumb/dioiHjS2_400x400.jpg?1696528760",
+    "symbol": "PARTY",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x0ff534801e98a4976246d1f418e441783fc9aa15": {
+    "assetId": "eip155:1/erc20:0x0ff534801e98a4976246d1f418e441783fc9aa15",
+    "chainId": "eip155:1",
+    "name": "Future AI on Ethereum",
+    "precision": 18,
+    "color": "#307CF3",
+    "icon": "https://assets.coingecko.com/coins/images/28841/thumb/200x200.png?1696527817",
+    "symbol": "FUTURE-AI",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x0ff5a8451a839f5f0bb3562689d9a44089738d11": {
+    "assetId": "eip155:1/erc20:0x0ff5a8451a839f5f0bb3562689d9a44089738d11",
+    "chainId": "eip155:1",
+    "name": "Dopex Rebate on Ethereum",
+    "precision": 18,
+    "color": "#042CFB",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x0ff5A8451A839f5F0BB3562689D9A44089738D11/logo.png",
+    "symbol": "RDPX",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x0ff6ffcfda92c53f615a4a75d982f399c989366b": {
+    "assetId": "eip155:1/erc20:0x0ff6ffcfda92c53f615a4a75d982f399c989366b",
+    "chainId": "eip155:1",
+    "name": "UniLayer on Ethereum",
+    "precision": 18,
+    "color": "#E97CA7",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x0fF6ffcFDa92c53F615a4A75D982f399C989366b/logo.png",
+    "symbol": "LAYER",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x10010078a54396f62c96df8532dc2b4847d47ed3": {
+    "assetId": "eip155:1/erc20:0x10010078a54396f62c96df8532dc2b4847d47ed3",
+    "chainId": "eip155:1",
+    "name": "Hundred Finance on Ethereum",
+    "precision": 18,
+    "color": "#8A8E90",
+    "icon": "https://assets.coingecko.com/coins/images/18445/thumb/hnd.PNG?1696517933",
+    "symbol": "HND",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x101cc05f4a51c0319f570d5e146a8c625198e636": {
+    "assetId": "eip155:1/erc20:0x101cc05f4a51c0319f570d5e146a8c625198e636",
+    "chainId": "eip155:1",
+    "name": "Aave TUSD",
+    "precision": 18,
+    "color": "#AB7FB5",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x101cc05f4A51C0319f570d5E146a8C625198e636/logo.png",
+    "symbol": "ATUSD",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x102203517ce35ac5cab9a2cda80df03f26c7419b": {
+    "assetId": "eip155:1/erc20:0x102203517ce35ac5cab9a2cda80df03f26c7419b",
+    "chainId": "eip155:1",
+    "name": "SUMOTEX",
+    "precision": 18,
+    "color": "#E0EFE1",
+    "icon": "https://assets.coingecko.com/coins/images/27478/thumb/Sumotex_telegram_image_PNG.jpg?1696526517",
+    "symbol": "SMTX",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x1028083026fe1e8e1e79170ceae0edbad07b052d": {
+    "assetId": "eip155:1/erc20:0x1028083026fe1e8e1e79170ceae0edbad07b052d",
+    "chainId": "eip155:1",
+    "name": "MonkCoin",
+    "precision": 18,
+    "color": "#789392",
+    "icon": "https://assets.coingecko.com/coins/images/31725/thumb/MonkCoin.jpg?1696530546",
+    "symbol": "MONK",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x102c776ddb30c754ded4fdcc77a19230a60d4e4f": {
+    "assetId": "eip155:1/erc20:0x102c776ddb30c754ded4fdcc77a19230a60d4e4f",
+    "chainId": "eip155:1",
+    "name": "Flooring Lab Credit",
+    "precision": 18,
+    "color": "#CC3C8C",
+    "icon": "https://assets.coingecko.com/coins/images/32433/thumb/color.png?1698157468",
+    "symbol": "FLC",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x1032abe2902a23ddcbab085c20e0e69c33ceb8fa": {
+    "assetId": "eip155:1/erc20:0x1032abe2902a23ddcbab085c20e0e69c33ceb8fa",
+    "chainId": "eip155:1",
+    "name": "Pepe Predator",
+    "precision": 18,
+    "color": "#940409",
+    "icon": "https://assets.coingecko.com/coins/images/30205/thumb/Logo_FOR_CG.png?1696529116",
+    "symbol": "SNAKE",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x103bb3ebc6f61b3db2d6e01e54ef7d9899a2e16b": {
+    "assetId": "eip155:1/erc20:0x103bb3ebc6f61b3db2d6e01e54ef7d9899a2e16b",
+    "chainId": "eip155:1",
+    "name": "Arch Ethereum Div  Yield on Ethereum",
+    "precision": 18,
+    "color": "#1D4694",
+    "icon": "https://assets.coingecko.com/coins/images/30483/thumb/AEDY-512x512.png?1696529369",
+    "symbol": "AEDY",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x1045f5ccb01daea4f8eab055f5fcbb7c0e7c89f0": {
+    "assetId": "eip155:1/erc20:0x1045f5ccb01daea4f8eab055f5fcbb7c0e7c89f0",
+    "chainId": "eip155:1",
+    "name": "DeFiato on Ethereum",
+    "precision": 18,
+    "color": "#043DFC",
+    "icon": "https://assets.coingecko.com/coins/images/13386/thumb/Defiato.png?1696513149",
+    "symbol": "DFIAT",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x104f3152d8ebfc3f679392977356962ff36566ac": {
+    "assetId": "eip155:1/erc20:0x104f3152d8ebfc3f679392977356962ff36566ac",
+    "chainId": "eip155:1",
+    "name": "ChainPort on Ethereum",
+    "precision": 18,
+    "color": "#041A43",
+    "icon": "https://assets.coingecko.com/coins/images/24490/thumb/VE-tUL-q_400x400.png?1696523670",
+    "symbol": "PORTX",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x1063181dc986f76f7ea2dd109e16fc596d0f522a": {
+    "assetId": "eip155:1/erc20:0x1063181dc986f76f7ea2dd109e16fc596d0f522a",
+    "chainId": "eip155:1",
+    "name": "Cybria",
+    "precision": 9,
+    "color": "#D6D6D6",
+    "icon": "https://assets.coingecko.com/coins/images/31694/thumb/Cybria_Logo_200x200.png?1696530512",
+    "symbol": "CYBA",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x10633216e7e8281e33c86f02bf8e565a635d9770": {
+    "assetId": "eip155:1/erc20:0x10633216e7e8281e33c86f02bf8e565a635d9770",
+    "chainId": "eip155:1",
+    "name": "Dvision Network",
+    "precision": 18,
+    "color": "#36253D",
+    "icon": "https://assets.coingecko.com/coins/images/13020/thumb/WGAhHOLv_400x400.png?1696512809",
+    "symbol": "DVI",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x106538cc16f938776c7c180186975bca23875287": {
+    "assetId": "eip155:1/erc20:0x106538cc16f938776c7c180186975bca23875287",
+    "chainId": "eip155:1",
+    "name": "Basis Share on Ethereum",
+    "precision": 18,
+    "color": "#FCBC04",
+    "icon": "https://assets.coingecko.com/coins/images/13251/thumb/BAS.png?1696513026",
+    "symbol": "BAS",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x107c4504cd79c5d2696ea0030a8dd4e92601b82e": {
+    "assetId": "eip155:1/erc20:0x107c4504cd79c5d2696ea0030a8dd4e92601b82e",
+    "chainId": "eip155:1",
+    "name": "Bloom",
+    "precision": 18,
+    "color": "#657CEA",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x107c4504cd79C5d2696Ea0030a8dD4e92601B82e/logo.png",
+    "symbol": "BLT",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x108a850856db3f85d0269a2693d896b394c80325": {
+    "assetId": "eip155:1/erc20:0x108a850856db3f85d0269a2693d896b394c80325",
+    "chainId": "eip155:1",
+    "name": "THORWallet DEX",
+    "precision": 18,
+    "color": "#040707",
+    "icon": "https://assets.coingecko.com/coins/images/21843/thumb/tgt_logo.png?1696521198",
+    "symbol": "TGT",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x10bc518c32fbae5e38ecb50a612160571bd81e44": {
+    "assetId": "eip155:1/erc20:0x10bc518c32fbae5e38ecb50a612160571bd81e44",
+    "chainId": "eip155:1",
+    "name": "VeraOne",
+    "precision": 8,
+    "color": "#BC4474",
+    "icon": "https://assets.coingecko.com/coins/images/11112/thumb/wsBaVF.png?1696511051",
+    "symbol": "VRO",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x10d07423fde4747542e76b7199b98a0d03cf465b": {
+    "assetId": "eip155:1/erc20:0x10d07423fde4747542e76b7199b98a0d03cf465b",
+    "chainId": "eip155:1",
+    "name": "Shrooms",
+    "precision": 18,
+    "color": "#F3A048",
+    "icon": "https://assets.coingecko.com/coins/images/30372/thumb/Untitled_design_%285%29_%282%29.png?1696529267",
+    "symbol": "SHROOMS",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x10f2cf6ef155460c5b716080eb57928652867f2e": {
+    "assetId": "eip155:1/erc20:0x10f2cf6ef155460c5b716080eb57928652867f2e",
+    "chainId": "eip155:1",
+    "name": "Alan Musk",
+    "precision": 18,
+    "color": "#DEBF99",
+    "icon": "https://assets.coingecko.com/coins/images/32262/thumb/alan_logo.png?1697029538",
+    "symbol": "MUSK",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x111111111117dc0aa78b770fa6a738034120c302": {
+    "assetId": "eip155:1/erc20:0x111111111117dc0aa78b770fa6a738034120c302",
+    "chainId": "eip155:1",
+    "name": "1inch on Ethereum",
+    "precision": 18,
+    "color": "#101A26",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x111111111117dC0aa78b770fA6A738034120C302/logo.png",
+    "symbol": "1INCH",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x111111517e4929d3dcbdfa7cce55d30d4b6bc4d6": {
+    "assetId": "eip155:1/erc20:0x111111517e4929d3dcbdfa7cce55d30d4b6bc4d6",
+    "chainId": "eip155:1",
+    "name": "ICHI on Ethereum",
+    "precision": 18,
+    "color": "#0468E8",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x111111517e4929D3dcbdfa7CCe55d30d4B6BC4d6/logo.png",
+    "symbol": "ICHI",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x1117ac6ad6cdf1a3bc543bad3b133724620522d5": {
+    "assetId": "eip155:1/erc20:0x1117ac6ad6cdf1a3bc543bad3b133724620522d5",
+    "chainId": "eip155:1",
+    "name": "MODA DAO on Ethereum",
+    "precision": 18,
+    "color": "#99BDDB",
+    "icon": "https://assets.coingecko.com/coins/images/20870/thumb/ModaDAO__logomark-primary_3x.png?1696520264",
+    "symbol": "MODA",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x1122b6a0e00dce0563082b6e2953f3a943855c1f": {
+    "assetId": "eip155:1/erc20:0x1122b6a0e00dce0563082b6e2953f3a943855c1f",
+    "chainId": "eip155:1",
+    "name": "CENNZnet",
+    "precision": 18,
+    "color": "#0C84FC",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x1122B6a0E00DCe0563082b6e2953f3A943855c1F/logo.png",
+    "symbol": "CENNZ",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x1123d17fcf93ed2b41440317503346a0fdfe3ed7": {
+    "assetId": "eip155:1/erc20:0x1123d17fcf93ed2b41440317503346a0fdfe3ed7",
+    "chainId": "eip155:1",
+    "name": "Prometheum Prodigy",
+    "precision": 18,
+    "color": "#DC24AC",
+    "icon": "https://assets.coingecko.com/coins/images/32522/thumb/5FeDqy-Z_400x400.jpg?1700669161",
+    "symbol": "PMPY",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x112b08621e27e10773ec95d250604a041f36c582": {
+    "assetId": "eip155:1/erc20:0x112b08621e27e10773ec95d250604a041f36c582",
+    "chainId": "eip155:1",
+    "name": "Wrapped Kaspa on Ethereum",
+    "precision": 8,
+    "color": "#E5E5E5",
+    "icon": "https://assets.coingecko.com/coins/images/31037/thumb/WKAS-256-black-ETH-3.png?1696529872",
+    "symbol": "KAS",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x1142866f451d9d5281c5c8349a332bd338e552a1": {
+    "assetId": "eip155:1/erc20:0x1142866f451d9d5281c5c8349a332bd338e552a1",
+    "chainId": "eip155:1",
+    "name": "SuperMarioPorsche911Inu",
+    "precision": 18,
+    "color": "#222D20",
+    "icon": "https://assets.coingecko.com/coins/images/31649/thumb/smp911i_logo400x400_%283%29.jpg?1696530464",
+    "symbol": "SILKROAD",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x1151cb3d861920e07a38e03eead12c32178567f6": {
+    "assetId": "eip155:1/erc20:0x1151cb3d861920e07a38e03eead12c32178567f6",
+    "chainId": "eip155:1",
+    "name": "Bonk on Ethereum",
+    "precision": 5,
+    "color": "#ED960F",
+    "icon": "https://assets.coingecko.com/coins/images/28600/thumb/bonk.jpg?1696527587",
+    "symbol": "BONK",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x115ec79f1de567ec68b7ae7eda501b406626478e": {
+    "assetId": "eip155:1/erc20:0x115ec79f1de567ec68b7ae7eda501b406626478e",
+    "chainId": "eip155:1",
+    "name": "Carry",
+    "precision": 18,
+    "color": "#34C47D",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x115eC79F1de567eC68B7AE7eDA501b406626478e/logo.png",
+    "symbol": "CRE",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x11613b1f840bb5a40f8866d857e24da126b79d73": {
+    "assetId": "eip155:1/erc20:0x11613b1f840bb5a40f8866d857e24da126b79d73",
+    "chainId": "eip155:1",
+    "name": "Cappasity",
+    "precision": 2,
+    "color": "#E23189",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x11613b1f840bb5A40F8866d857e24DA126B79D73/logo.png",
+    "symbol": "CAPP",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x116c4b65e14449947bc6fa1bbe844cb16a162d53": {
+    "assetId": "eip155:1/erc20:0x116c4b65e14449947bc6fa1bbe844cb16a162d53",
+    "chainId": "eip155:1",
+    "name": "BMAX",
+    "precision": 18,
+    "color": "#FCCDC6",
+    "icon": "https://assets.coingecko.com/coins/images/26427/thumb/BMAX_logo.png?1696525501",
+    "symbol": "BMAX",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x11ebe21e9d7bf541a18e1e3ac94939018ce88f0b": {
+    "assetId": "eip155:1/erc20:0x11ebe21e9d7bf541a18e1e3ac94939018ce88f0b",
+    "chainId": "eip155:1",
+    "name": "Pitch FXS",
+    "precision": 18,
+    "color": "#5C5CEC",
+    "icon": "https://assets.coingecko.com/coins/images/28414/thumb/pitch.png?1696527412",
+    "symbol": "PITCHFXS",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x11eef04c884e24d9b7b4760e7476d06ddf797f36": {
+    "assetId": "eip155:1/erc20:0x11eef04c884e24d9b7b4760e7476d06ddf797f36",
+    "chainId": "eip155:1",
+    "name": "MX",
+    "precision": 18,
+    "color": "#42C5A5",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x11eeF04c884E24d9B7B4760e7476D06ddF797f36/logo.png",
+    "symbol": "MX",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x1204f5309d746e914c67b4142a347066210c1ac6": {
+    "assetId": "eip155:1/erc20:0x1204f5309d746e914c67b4142a347066210c1ac6",
+    "chainId": "eip155:1",
+    "name": "EYE EARN",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/32631/thumb/200x200.png?1698825652",
+    "symbol": "EYE",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x120a3879da835a5af037bb2d1456bebd6b54d4ba": {
+    "assetId": "eip155:1/erc20:0x120a3879da835a5af037bb2d1456bebd6b54d4ba",
+    "chainId": "eip155:1",
+    "name": "Revest Finance",
+    "precision": 18,
+    "color": "#040404",
+    "icon": "https://assets.coingecko.com/coins/images/18622/thumb/Qma94n6waADECpde1ukBBS8iNiECcdVcxjfgubnWPE9ZT7.png?1696518094",
+    "symbol": "RVST",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x1234567461d3f8db7496581774bd869c83d51c93": {
+    "assetId": "eip155:1/erc20:0x1234567461d3f8db7496581774bd869c83d51c93",
+    "chainId": "eip155:1",
+    "name": "BitClave",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x1234567461d3f8Db7496581774Bd869C83D51c93/logo.png",
+    "symbol": "CAT",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x1236ea13c7339287cd00ab196aaa8217006b04dc": {
+    "assetId": "eip155:1/erc20:0x1236ea13c7339287cd00ab196aaa8217006b04dc",
+    "chainId": "eip155:1",
+    "name": "Epic League on Ethereum",
+    "precision": 18,
+    "color": "#C8518C",
+    "icon": "https://assets.coingecko.com/coins/images/32139/thumb/epl_symbol_200.png?1696591947",
+    "symbol": "EPL",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x1250b98cbde9f99f4c42dcdacee193221f17eb50": {
+    "assetId": "eip155:1/erc20:0x1250b98cbde9f99f4c42dcdacee193221f17eb50",
+    "chainId": "eip155:1",
+    "name": "ArtCoin",
+    "precision": 18,
+    "color": "#058DAC",
+    "icon": "https://assets.coingecko.com/coins/images/26127/thumb/ngiBSUT7_400x400.png?1696525216",
+    "symbol": "AC",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x128ad1ad707c3b36e6f2ac9739f9df7516fdb592": {
+    "assetId": "eip155:1/erc20:0x128ad1ad707c3b36e6f2ac9739f9df7516fdb592",
+    "chainId": "eip155:1",
+    "name": "alfa society",
+    "precision": 18,
+    "color": "#A886FC",
+    "icon": "https://assets.coingecko.com/coins/images/31017/thumb/token_logo_listing.png?1696529853",
+    "symbol": "ALFA",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x12970e6868f88f6557b76120662c1b3e50a646bf": {
+    "assetId": "eip155:1/erc20:0x12970e6868f88f6557b76120662c1b3e50a646bf",
+    "chainId": "eip155:1",
+    "name": "Milady Meme Coin on Ethereum",
+    "precision": 18,
+    "color": "#7D5A4D",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x12970E6868f88f6557B76120662c1B3E50A646bf/logo.png",
+    "symbol": "LADYS",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x12aef5c60c2c86c8ecd3079f22f285f326371340": {
+    "assetId": "eip155:1/erc20:0x12aef5c60c2c86c8ecd3079f22f285f326371340",
+    "chainId": "eip155:1",
+    "name": "hiSAND33",
+    "precision": 18,
+    "color": "#BABABA",
+    "icon": "https://assets.coingecko.com/coins/images/27006/thumb/logo.ab86781.png?1696526059",
+    "symbol": "HISAND33",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x12b6893ce26ea6341919fe289212ef77e51688c8": {
+    "assetId": "eip155:1/erc20:0x12b6893ce26ea6341919fe289212ef77e51688c8",
+    "chainId": "eip155:1",
+    "name": "Tamadoge",
+    "precision": 18,
+    "color": "#FAF9E7",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x12b6893cE26Ea6341919FE289212ef77e51688c8/logo.png",
+    "symbol": "TAMA",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x12bb890508c125661e03b09ec06e404bc9289040": {
+    "assetId": "eip155:1/erc20:0x12bb890508c125661e03b09ec06e404bc9289040",
+    "chainId": "eip155:1",
+    "name": "Radio Caca on Ethereum",
+    "precision": 18,
+    "color": "#DCD1B3",
+    "icon": "https://assets.coingecko.com/coins/images/17841/thumb/ez44_BSs_400x400.jpg?1696517365",
+    "symbol": "RACA",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x12e2b8033420270db2f3b328e32370cb5b2ca134": {
+    "assetId": "eip155:1/erc20:0x12e2b8033420270db2f3b328e32370cb5b2ca134",
+    "chainId": "eip155:1",
+    "name": "SafePal on Ethereum",
+    "precision": 18,
+    "color": "#D0C7FA",
+    "icon": "https://assets.coingecko.com/coins/images/13905/thumb/sfp.png?1696513647",
+    "symbol": "SFP",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x130914e1b240a7f4c5d460b7d3a2fd3846b576fa": {
+    "assetId": "eip155:1/erc20:0x130914e1b240a7f4c5d460b7d3a2fd3846b576fa",
+    "chainId": "eip155:1",
+    "name": "Aureus Nummus Gold",
+    "precision": 18,
+    "color": "#9E8A5C",
+    "icon": "https://assets.coingecko.com/coins/images/12134/thumb/AureusNummusGold-logo.png?1696511976",
+    "symbol": "ANG",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x131157c6760f78f7ddf877c0019eba175ba4b6f6": {
+    "assetId": "eip155:1/erc20:0x131157c6760f78f7ddf877c0019eba175ba4b6f6",
+    "chainId": "eip155:1",
+    "name": "BigShortBets",
+    "precision": 18,
+    "color": "#0606FC",
+    "icon": "https://assets.coingecko.com/coins/images/18235/thumb/bigsb-token-logo.png?1696517731",
+    "symbol": "BIGSB",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x1337def16f9b486faed0293eb623dc8395dfe46a": {
+    "assetId": "eip155:1/erc20:0x1337def16f9b486faed0293eb623dc8395dfe46a",
+    "chainId": "eip155:1",
+    "name": "ARMOR",
+    "precision": 18,
+    "color": "#1B93FC",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x1337DEF16F9B486fAEd0293eb623Dc8395dFE46a/logo.png",
+    "symbol": "ARMOR",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x1341a2257fa7b770420ef70616f888056f90926c": {
+    "assetId": "eip155:1/erc20:0x1341a2257fa7b770420ef70616f888056f90926c",
+    "chainId": "eip155:1",
+    "name": "Zoo on Ethereum",
+    "precision": 9,
+    "color": "#11C45F",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x1341A2257fa7b770420Ef70616f888056f90926c/logo.png",
+    "symbol": "ZOOT",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x1353575d76444a11730d2f286e6303990eb1e357": {
+    "assetId": "eip155:1/erc20:0x1353575d76444a11730d2f286e6303990eb1e357",
+    "chainId": "eip155:1",
+    "name": "Kek Guru",
+    "precision": 18,
+    "color": "#327838",
+    "icon": "https://assets.coingecko.com/coins/images/30213/thumb/Kek-The-Prophecy-2.jpg?1696529124",
+    "symbol": "KEK",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x1376a81fe3ee7d0e431f1ac24286b00f3ccf44e7": {
+    "assetId": "eip155:1/erc20:0x1376a81fe3ee7d0e431f1ac24286b00f3ccf44e7",
+    "chainId": "eip155:1",
+    "name": "Welle on Ethereum",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/32715/thumb/WELLE-TKN-1.png?1699000890",
+    "symbol": "WELLE",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x137ddb47ee24eaa998a535ab00378d6bfa84f893": {
+    "assetId": "eip155:1/erc20:0x137ddb47ee24eaa998a535ab00378d6bfa84f893",
+    "chainId": "eip155:1",
+    "name": "Radiant Capital on Ethereum",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/26536/thumb/Radiant-Logo-200x200.png?1696525610",
+    "symbol": "RDNT",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x13832bec9b7029a82988017a7f6095bdf0207d62": {
+    "assetId": "eip155:1/erc20:0x13832bec9b7029a82988017a7f6095bdf0207d62",
+    "chainId": "eip155:1",
+    "name": "Milk",
+    "precision": 9,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/32681/thumb/output-onlinepngtools-2.png?1698934572",
+    "symbol": "MILK",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x138c2f1123cf3f82e4596d097c118eac6684940b": {
+    "assetId": "eip155:1/erc20:0x138c2f1123cf3f82e4596d097c118eac6684940b",
+    "chainId": "eip155:1",
+    "name": "Alpha Coin",
+    "precision": 18,
+    "color": "#06162E",
+    "icon": "https://assets.coingecko.com/coins/images/22199/thumb/logo2023.png?1696521542",
+    "symbol": "ALPHA",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x13a0599c493cc502ed8c4dd26f22f5cedc248fc4": {
+    "assetId": "eip155:1/erc20:0x13a0599c493cc502ed8c4dd26f22f5cedc248fc4",
+    "chainId": "eip155:1",
+    "name": "Export Motors Platform",
+    "precision": 18,
+    "color": "#04B2F7",
+    "icon": "https://assets.coingecko.com/coins/images/24422/thumb/emp_logo_200.png?1696523603",
+    "symbol": "EMP",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x13b2f6928d7204328b0e8e4bcd0379aa06ea21fa": {
+    "assetId": "eip155:1/erc20:0x13b2f6928d7204328b0e8e4bcd0379aa06ea21fa",
+    "chainId": "eip155:1",
+    "name": "Aave AMM WBTC",
+    "precision": 8,
+    "color": "#F7B93C",
+    "icon": "https://assets.coingecko.com/coins/images/17215/thumb/aAMMWBTC_2x.png?1696516771",
+    "symbol": "AAMMWBTC",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x13c4aa5c3f5bb1109c267e520a87c89684d3e73c": {
+    "assetId": "eip155:1/erc20:0x13c4aa5c3f5bb1109c267e520a87c89684d3e73c",
+    "chainId": "eip155:1",
+    "name": "Verify Authentificator Bot",
+    "precision": 9,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/32845/thumb/logo.png?1699589566",
+    "symbol": "VERIFY",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x13dbd5394c2c7e4bdb85b1838286faa66532a262": {
+    "assetId": "eip155:1/erc20:0x13dbd5394c2c7e4bdb85b1838286faa66532a262",
+    "chainId": "eip155:1",
+    "name": "Sun Tzu",
+    "precision": 18,
+    "color": "#DB7015",
+    "icon": "https://assets.coingecko.com/coins/images/30689/thumb/TZU_CG.png?1696529558",
+    "symbol": "TZU",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x1410434b0346f5be678d0fb554e5c7ab620f8f4a": {
+    "assetId": "eip155:1/erc20:0x1410434b0346f5be678d0fb554e5c7ab620f8f4a",
+    "chainId": "eip155:1",
+    "name": "BitKan",
+    "precision": 18,
+    "color": "#36BDED",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x1410434b0346f5bE678d0FB554E5c7ab620f8f4a/logo.png",
+    "symbol": "KAN",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x1416946162b1c2c871a73b07e932d2fb6c932069": {
+    "assetId": "eip155:1/erc20:0x1416946162b1c2c871a73b07e932d2fb6c932069",
+    "chainId": "eip155:1",
+    "name": "Energi",
+    "precision": 18,
+    "color": "#04E474",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x1416946162B1C2c871A73B07E932D2fB6C932069/logo.png",
+    "symbol": "NRG",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x142a774e8b52550e88e196cedd7a5835acb646d0": {
+    "assetId": "eip155:1/erc20:0x142a774e8b52550e88e196cedd7a5835acb646d0",
+    "chainId": "eip155:1",
+    "name": "SaitaRealty",
+    "precision": 9,
+    "color": "#348084",
+    "icon": "https://assets.coingecko.com/coins/images/27289/thumb/s_mksCdB_400x400.jpeg?1696526341",
+    "symbol": "SRLTY",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x144805be43c48ef85435c94e0da4cb4efb1ab4f3": {
+    "assetId": "eip155:1/erc20:0x144805be43c48ef85435c94e0da4cb4efb1ab4f3",
+    "chainId": "eip155:1",
+    "name": "MetaBlox",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/32988/thumb/Artboard_1_copy_4.png?1700099624",
+    "symbol": "MBX",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x1456688345527be1f37e9e627da0837d6f08c925": {
+    "assetId": "eip155:1/erc20:0x1456688345527be1f37e9e627da0837d6f08c925",
+    "chainId": "eip155:1",
+    "name": "USDP Stablecoin",
+    "precision": 18,
+    "color": "#546CF4",
+    "icon": "https://assets.coingecko.com/coins/images/13234/thumb/USDP.png?1696513012",
+    "symbol": "USDP",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x146d8d942048ad517479c9bab1788712af180fde": {
+    "assetId": "eip155:1/erc20:0x146d8d942048ad517479c9bab1788712af180fde",
+    "chainId": "eip155:1",
+    "name": "MIB Coin",
+    "precision": 18,
+    "color": "#22448F",
+    "icon": "https://assets.coingecko.com/coins/images/5691/thumb/mibcoin.png?1696506149",
+    "symbol": "MIB",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x14778860e937f509e651192a90589de711fb88a9": {
+    "assetId": "eip155:1/erc20:0x14778860e937f509e651192a90589de711fb88a9",
+    "chainId": "eip155:1",
+    "name": "CyberConnect on Ethereum",
+    "precision": 18,
+    "color": "#A5A5A5",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x14778860E937f509e651192a90589dE711Fb88a9/logo.png",
+    "symbol": "CYBER",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x147faf8de9d8d8daae129b187f0d02d819126750": {
+    "assetId": "eip155:1/erc20:0x147faf8de9d8d8daae129b187f0d02d819126750",
+    "chainId": "eip155:1",
+    "name": "GeoDB",
+    "precision": 18,
+    "color": "#CBEBEC",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x147faF8De9d8D8DAAE129B187F0D02D819126750/logo.png",
+    "symbol": "GEO",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x1494951b4656075e473843161c4ff0201a235cec": {
+    "assetId": "eip155:1/erc20:0x1494951b4656075e473843161c4ff0201a235cec",
+    "chainId": "eip155:1",
+    "name": "soooooooooooooooooooooooooooooooooooooo",
+    "precision": 9,
+    "color": "#F0D4D7",
+    "icon": "https://assets.coingecko.com/coins/images/31420/thumb/SOOOOOOOOOOOo.png?1696530235",
+    "symbol": "SOOOOOOOOO",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x1494ca1f11d487c2bbe4543e90080aeba4ba3c2b": {
+    "assetId": "eip155:1/erc20:0x1494ca1f11d487c2bbe4543e90080aeba4ba3c2b",
+    "chainId": "eip155:1",
+    "name": "DeFi Pulse Index on Ethereum",
+    "precision": 18,
+    "color": "#8456E2",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x1494CA1F11D487c2bBe4543E90080AeBa4BA3C2b/logo.png",
+    "symbol": "DPI",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x149cac67f1cd5d80651e7c9bb359ec285d821a05": {
+    "assetId": "eip155:1/erc20:0x149cac67f1cd5d80651e7c9bb359ec285d821a05",
+    "chainId": "eip155:1",
+    "name": "Minterest",
+    "precision": 18,
+    "color": "#1F3946",
+    "icon": "https://assets.coingecko.com/coins/images/29455/thumb/Minterest.png?1696528402",
+    "symbol": "MNT",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x149d8290f653deb8e34c037d239d3d8eee9de5ad": {
+    "assetId": "eip155:1/erc20:0x149d8290f653deb8e34c037d239d3d8eee9de5ad",
+    "chainId": "eip155:1",
+    "name": "Kingdomverse",
+    "precision": 18,
+    "color": "#6434F4",
+    "icon": "https://assets.coingecko.com/coins/images/28607/thumb/_King_logo_%28Color%29.png?1696527593",
+    "symbol": "KING",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x14a32f050facf226ec60882398a9bf36d91dbac2": {
+    "assetId": "eip155:1/erc20:0x14a32f050facf226ec60882398a9bf36d91dbac2",
+    "chainId": "eip155:1",
+    "name": "Kyoko",
+    "precision": 18,
+    "color": "#953AE9",
+    "icon": "https://assets.coingecko.com/coins/images/24454/thumb/kyoko.png?1696523634",
+    "symbol": "KYOKO",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x14cc8dfaf2258e1b8b2869300dba1b734dc0fe43": {
+    "assetId": "eip155:1/erc20:0x14cc8dfaf2258e1b8b2869300dba1b734dc0fe43",
+    "chainId": "eip155:1",
+    "name": "K Tune",
+    "precision": 18,
+    "color": "#F4FAF0",
+    "icon": "https://assets.coingecko.com/coins/images/13939/thumb/KakaoTalk_20220928_162525453.png?1696513677",
+    "symbol": "KTT",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x14d4c7a788908fbbbd3c1a4bac4aff86fe1573eb": {
+    "assetId": "eip155:1/erc20:0x14d4c7a788908fbbbd3c1a4bac4aff86fe1573eb",
+    "chainId": "eip155:1",
+    "name": "Tairyo Inu",
+    "precision": 9,
+    "color": "#0F0E1E",
+    "icon": "https://assets.coingecko.com/coins/images/30090/thumb/IMG_20230429_121425_856.jpg?1696529014",
+    "symbol": "TAIRYO",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x14da230d6726c50f759bc1838717f8ce6373509c": {
+    "assetId": "eip155:1/erc20:0x14da230d6726c50f759bc1838717f8ce6373509c",
+    "chainId": "eip155:1",
+    "name": "Kambria on Ethereum",
+    "precision": 18,
+    "color": "#1CF4C4",
+    "icon": "https://assets.coingecko.com/coins/images/4784/thumb/kambria.png?1696505340",
+    "symbol": "KAT",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x14da7b27b2e0fedefe0a664118b0c9bc68e2e9af": {
+    "assetId": "eip155:1/erc20:0x14da7b27b2e0fedefe0a664118b0c9bc68e2e9af",
+    "chainId": "eip155:1",
+    "name": "Blockchain Cuties Universe Governance",
+    "precision": 18,
+    "color": "#0573DC",
+    "icon": "https://assets.coingecko.com/coins/images/14425/thumb/bcug_logo.png?1696514115",
+    "symbol": "BCUG",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x14fee680690900ba0cccfc76ad70fd1b95d10e16": {
+    "assetId": "eip155:1/erc20:0x14fee680690900ba0cccfc76ad70fd1b95d10e16",
+    "chainId": "eip155:1",
+    "name": "PAAL AI",
+    "precision": 9,
+    "color": "#4B3E99",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x14feE680690900BA0ccCfC76AD70Fd1b95D10e16/logo.png",
+    "symbol": "PAAL",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x1500205f50bf3fd976466d0662905c9ff254fc9c": {
+    "assetId": "eip155:1/erc20:0x1500205f50bf3fd976466d0662905c9ff254fc9c",
+    "chainId": "eip155:1",
+    "name": "BitBoost",
+    "precision": 4,
+    "color": "#F2BE58",
+    "icon": "https://assets.coingecko.com/coins/images/1194/thumb/bitboost.jpg?1696502276",
+    "symbol": "BBT",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x152649ea73beab28c5b49b26eb48f7ead6d4c898": {
+    "assetId": "eip155:1/erc20:0x152649ea73beab28c5b49b26eb48f7ead6d4c898",
+    "chainId": "eip155:1",
+    "name": "PancakeSwap on Ethereum",
+    "precision": 18,
+    "color": "#D38C4E",
+    "icon": "https://assets.coingecko.com/coins/images/12632/thumb/pancakeswap-cake-logo_%281%29.png?1696512440",
+    "symbol": "CAKE",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x154e35c2b0024b3e079c5c5e4fc31c979c189ccb": {
+    "assetId": "eip155:1/erc20:0x154e35c2b0024b3e079c5c5e4fc31c979c189ccb",
+    "chainId": "eip155:1",
+    "name": "Raid on Ethereum",
+    "precision": 18,
+    "color": "#2A0C11",
+    "icon": "https://assets.coingecko.com/coins/images/18133/thumb/raid_200_oswlvz.png?1696517636",
+    "symbol": "RAID",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x1559fa1b8f28238fd5d76d9f434ad86fd20d1559": {
+    "assetId": "eip155:1/erc20:0x1559fa1b8f28238fd5d76d9f434ad86fd20d1559",
+    "chainId": "eip155:1",
+    "name": "EDEN",
+    "precision": 18,
+    "color": "#14213F",
+    "icon": "https://assets.coingecko.com/coins/images/17470/thumb/Iyc0XM5-_400x400.jpg?1696517012",
+    "symbol": "EDEN",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x155ff1a85f440ee0a382ea949f24ce4e0b751c65": {
+    "assetId": "eip155:1/erc20:0x155ff1a85f440ee0a382ea949f24ce4e0b751c65",
+    "chainId": "eip155:1",
+    "name": "Behodler",
+    "precision": 18,
+    "color": "#832419",
+    "icon": "https://assets.coingecko.com/coins/images/12804/thumb/etherscan-eye-2-1.png?1696512597",
+    "symbol": "EYE",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x1571ed0bed4d987fe2b498ddbae7dfa19519f651": {
+    "assetId": "eip155:1/erc20:0x1571ed0bed4d987fe2b498ddbae7dfa19519f651",
+    "chainId": "eip155:1",
+    "name": "iFARM on Ethereum",
+    "precision": 18,
+    "color": "#D9F1F0",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x1571eD0bed4D987fe2b498DdBaE7DFA19519F651/logo.png",
+    "symbol": "IFARM",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x15874d65e649880c2614e7a480cb7c9a55787ff6": {
+    "assetId": "eip155:1/erc20:0x15874d65e649880c2614e7a480cb7c9a55787ff6",
+    "chainId": "eip155:1",
+    "name": "EthereumMax on Ethereum",
+    "precision": 18,
+    "color": "#1C2454",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x15874d65e649880c2614e7a480cb7c9A55787FF6/logo.png",
+    "symbol": "EMAX",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x15927156df05361ccf0fc9561cc2f60fac319e14": {
+    "assetId": "eip155:1/erc20:0x15927156df05361ccf0fc9561cc2f60fac319e14",
+    "chainId": "eip155:1",
+    "name": "Chibi Inu  OLD ",
+    "precision": 8,
+    "color": "#F49A17",
+    "icon": "https://assets.coingecko.com/coins/images/31929/thumb/1.png?1696530737",
+    "symbol": "CHIBI",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x159a1dfae19057de57dfffcbb3da1ae784678965": {
+    "assetId": "eip155:1/erc20:0x159a1dfae19057de57dfffcbb3da1ae784678965",
+    "chainId": "eip155:1",
+    "name": "Reflex on Ethereum",
+    "precision": 8,
+    "color": "#208ADA",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x159A1dFAe19057de57dFfFcbB3DA1aE784678965/logo.png",
+    "symbol": "RFX",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x159cdaf78be31e730d9e1330adfcfbb79a5fdb95": {
+    "assetId": "eip155:1/erc20:0x159cdaf78be31e730d9e1330adfcfbb79a5fdb95",
+    "chainId": "eip155:1",
+    "name": "MixToEarn",
+    "precision": 18,
+    "color": "#F0F0F0",
+    "icon": "https://assets.coingecko.com/coins/images/30893/thumb/200x200x.png?1696529739",
+    "symbol": "MTE",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x15a3081b541e8dad25c4a5e0c4c4b4e8d105b2e8": {
+    "assetId": "eip155:1/erc20:0x15a3081b541e8dad25c4a5e0c4c4b4e8d105b2e8",
+    "chainId": "eip155:1",
+    "name": "Pepe Original Version on Ethereum",
+    "precision": 18,
+    "color": "#060906",
+    "icon": "https://assets.coingecko.com/coins/images/30121/thumb/our_logo.png?1696529043",
+    "symbol": "POV",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x15b543e986b8c34074dfc9901136d9355a537e7e": {
+    "assetId": "eip155:1/erc20:0x15b543e986b8c34074dfc9901136d9355a537e7e",
+    "chainId": "eip155:1",
+    "name": "Student Coin",
+    "precision": 18,
+    "color": "#14145C",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x15B543e986b8c34074DFc9901136d9355a537e7E/logo.png",
+    "symbol": "STC",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x15b7c0c907e4c6b9adaaaabc300c08991d6cea05": {
+    "assetId": "eip155:1/erc20:0x15b7c0c907e4c6b9adaaaabc300c08991d6cea05",
+    "chainId": "eip155:1",
+    "name": "Gelato on Ethereum",
+    "precision": 18,
+    "color": "#301618",
+    "icon": "https://assets.coingecko.com/coins/images/15026/thumb/Gelato_Icon_Logo_1024x1024.png?1696514687",
+    "symbol": "GEL",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x15c1cab705b9ddb9ffeeea608ed8bafcdd4c0396": {
+    "assetId": "eip155:1/erc20:0x15c1cab705b9ddb9ffeeea608ed8bafcdd4c0396",
+    "chainId": "eip155:1",
+    "name": "HXAcoin",
+    "precision": 18,
+    "color": "#C0C0BE",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x15C1Cab705B9Ddb9FfeeEa608eD8BaFcdd4c0396/logo.png",
+    "symbol": "HXA",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x15c65da8309153d4d0edb47041555f155d5e4933": {
+    "assetId": "eip155:1/erc20:0x15c65da8309153d4d0edb47041555f155d5e4933",
+    "chainId": "eip155:1",
+    "name": "Proof of Anon",
+    "precision": 18,
+    "color": "#041418",
+    "icon": "https://assets.coingecko.com/coins/images/32102/thumb/IMG_3084.jpeg?1696530899",
+    "symbol": "PRF",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x15e5c6a964219a63e3554f9d3df817b48cf79499": {
+    "assetId": "eip155:1/erc20:0x15e5c6a964219a63e3554f9d3df817b48cf79499",
+    "chainId": "eip155:1",
+    "name": "Stakify Finance",
+    "precision": 18,
+    "color": "#AF90C8",
+    "icon": "https://assets.coingecko.com/coins/images/32549/thumb/200x200_-_Copy.png?1698479643",
+    "symbol": "SIFY",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x15e5d3deff5c3a13adca4f313ff44735881ebd6c": {
+    "assetId": "eip155:1/erc20:0x15e5d3deff5c3a13adca4f313ff44735881ebd6c",
+    "chainId": "eip155:1",
+    "name": "Meta Art Connection",
+    "precision": 18,
+    "color": "#050C0C",
+    "icon": "https://assets.coingecko.com/coins/images/32193/thumb/mac.png?1696745471",
+    "symbol": "MAC",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x15eabb7500e44b7fdb6e4051ca8deca430cf9fb8": {
+    "assetId": "eip155:1/erc20:0x15eabb7500e44b7fdb6e4051ca8deca430cf9fb8",
+    "chainId": "eip155:1",
+    "name": "Dexfin",
+    "precision": 18,
+    "color": "#3C84FC",
+    "icon": "https://assets.coingecko.com/coins/images/13660/thumb/dxf-symbol.png?1696513410",
+    "symbol": "DXF",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x15f0eedf9ce24fc4b6826e590a8292ce5524a1da": {
+    "assetId": "eip155:1/erc20:0x15f0eedf9ce24fc4b6826e590a8292ce5524a1da",
+    "chainId": "eip155:1",
+    "name": "Decentralized Nations",
+    "precision": 18,
+    "color": "#AC7E5A",
+    "icon": "https://assets.coingecko.com/coins/images/22167/thumb/denations.PNG?1696521511",
+    "symbol": "DENA",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x15f20f9dfdf96ccf6ac96653b7c0abfe4a9c9f0f": {
+    "assetId": "eip155:1/erc20:0x15f20f9dfdf96ccf6ac96653b7c0abfe4a9c9f0f",
+    "chainId": "eip155:1",
+    "name": "Wall Street Baby",
+    "precision": 18,
+    "color": "#DADEC8",
+    "icon": "https://assets.coingecko.com/coins/images/15042/thumb/GMih0pSW_400x400.png?1696514701",
+    "symbol": "WSB",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x15f74458ae0bfdaa1a96ca1aa779d715cc1eefe4": {
+    "assetId": "eip155:1/erc20:0x15f74458ae0bfdaa1a96ca1aa779d715cc1eefe4",
+    "chainId": "eip155:1",
+    "name": "Grai",
+    "precision": 18,
+    "color": "#F0D2FC",
+    "icon": "https://assets.coingecko.com/coins/images/30427/thumb/GRAI_Token.png?1696529315",
+    "symbol": "GRAI",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x1614f18fc94f47967a3fbe5ffcd46d4e7da3d787": {
+    "assetId": "eip155:1/erc20:0x1614f18fc94f47967a3fbe5ffcd46d4e7da3d787",
+    "chainId": "eip155:1",
+    "name": "PAID Network on Ethereum",
+    "precision": 18,
+    "color": "#1B235B",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x1614F18Fc94f47967A3Fbe5FfcD46d4e7Da3D787/logo.png",
+    "symbol": "PAID",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x162433c934aa74ba147e05150b1206b2c922f71d": {
+    "assetId": "eip155:1/erc20:0x162433c934aa74ba147e05150b1206b2c922f71d",
+    "chainId": "eip155:1",
+    "name": "Creso  OLD ",
+    "precision": 18,
+    "color": "#D0D0D0",
+    "icon": "https://assets.coingecko.com/coins/images/32541/thumb/CRESO.png?1698473415",
+    "symbol": "CRE",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x162bb2bb5fb03976a69dd25bb9afce6140db1433": {
+    "assetId": "eip155:1/erc20:0x162bb2bb5fb03976a69dd25bb9afce6140db1433",
+    "chainId": "eip155:1",
+    "name": "dog",
+    "precision": 9,
+    "color": "#BCBCBC",
+    "icon": "https://assets.coingecko.com/coins/images/32464/thumb/200.png?1698242675",
+    "symbol": "DOG",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x163f8c2467924be0ae7b5347228cabf260318753": {
+    "assetId": "eip155:1/erc20:0x163f8c2467924be0ae7b5347228cabf260318753",
+    "chainId": "eip155:1",
+    "name": "Worldcoin on Ethereum",
+    "precision": 18,
+    "color": "#DBDBDB",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x163f8C2467924be0ae7B5347228CABF260318753/logo.png",
+    "symbol": "WLD",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x16587cf43f044aba0165ffa00acf412631194e4b": {
+    "assetId": "eip155:1/erc20:0x16587cf43f044aba0165ffa00acf412631194e4b",
+    "chainId": "eip155:1",
+    "name": "Simracer Coin",
+    "precision": 18,
+    "color": "#BB9946",
+    "icon": "https://assets.coingecko.com/coins/images/13027/thumb/SimRacer-500px.png?1696512815",
+    "symbol": "SRC",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x16594930d16f3970e1a4317c6016555cb2e7b7fc": {
+    "assetId": "eip155:1/erc20:0x16594930d16f3970e1a4317c6016555cb2e7b7fc",
+    "chainId": "eip155:1",
+    "name": "TokenBot",
+    "precision": 18,
+    "color": "#FCF082",
+    "icon": "https://assets.coingecko.com/coins/images/27106/thumb/tokenbot-logo-icon.png?1696526155",
+    "symbol": "TKB",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x16756ec1deb89a2106c35e0b586a799d0a61837d": {
+    "assetId": "eip155:1/erc20:0x16756ec1deb89a2106c35e0b586a799d0a61837d",
+    "chainId": "eip155:1",
+    "name": "Chedda",
+    "precision": 18,
+    "color": "#E0AB4C",
+    "icon": "https://assets.coingecko.com/coins/images/22654/thumb/cMckil70_400x400.jpg?1696521967",
+    "symbol": "CHEDDA",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x168e209d7b2f58f1f24b8ae7b7d35e662bbf11cc": {
+    "assetId": "eip155:1/erc20:0x168e209d7b2f58f1f24b8ae7b7d35e662bbf11cc",
+    "chainId": "eip155:1",
+    "name": "LayerAI on Ethereum",
+    "precision": 18,
+    "color": "#CECED0",
+    "icon": "https://assets.coingecko.com/coins/images/29223/thumb/Favicon_200x200px.png?1696528181",
+    "symbol": "LAI",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x16980b3b4a3f9d89e33311b5aa8f80303e5ca4f8": {
+    "assetId": "eip155:1/erc20:0x16980b3b4a3f9d89e33311b5aa8f80303e5ca4f8",
+    "chainId": "eip155:1",
+    "name": "KIRA Network on Ethereum",
+    "precision": 6,
+    "color": "#8A35D1",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x16980b3B4a3f9D89E33311B5aa8f80303E5ca4F8/logo.png",
+    "symbol": "KEX",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x16b0a1a87ae8af5c792fabc429c4fe248834842b": {
+    "assetId": "eip155:1/erc20:0x16b0a1a87ae8af5c792fabc429c4fe248834842b",
+    "chainId": "eip155:1",
+    "name": "Algory",
+    "precision": 18,
+    "color": "#146CFC",
+    "icon": "https://assets.coingecko.com/coins/images/12231/thumb/logo-2.png?1696512064",
+    "symbol": "ALG",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x16b3e050e9e2f0ac4f1bea1b3e4fdc43d7f062dd": {
+    "assetId": "eip155:1/erc20:0x16b3e050e9e2f0ac4f1bea1b3e4fdc43d7f062dd",
+    "chainId": "eip155:1",
+    "name": "Sombra on Ethereum",
+    "precision": 9,
+    "color": "#460482",
+    "icon": "https://assets.coingecko.com/coins/images/17884/thumb/sombra-200.png?1696517405",
+    "symbol": "SMBR",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x16ba8efe847ebdfef99d399902ec29397d403c30": {
+    "assetId": "eip155:1/erc20:0x16ba8efe847ebdfef99d399902ec29397d403c30",
+    "chainId": "eip155:1",
+    "name": "Oh  Finance on Ethereum",
+    "precision": 18,
+    "color": "#DAF2FA",
+    "icon": "https://assets.coingecko.com/coins/images/19493/thumb/oh-token-logo-200.png?1696518929",
+    "symbol": "OH",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x16cc8367055ae7e9157dbcb9d86fd6ce82522b31": {
+    "assetId": "eip155:1/erc20:0x16cc8367055ae7e9157dbcb9d86fd6ce82522b31",
+    "chainId": "eip155:1",
+    "name": "Voxel X Network",
+    "precision": 18,
+    "color": "#6D04FC",
+    "icon": "https://assets.coingecko.com/coins/images/21419/thumb/Voxel-Logo-200x200-Transparent.png?1696520783",
+    "symbol": "VXL",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x16cda4028e9e872a38acb903176719299beaed87": {
+    "assetId": "eip155:1/erc20:0x16cda4028e9e872a38acb903176719299beaed87",
+    "chainId": "eip155:1",
+    "name": "MARS4 on Ethereum",
+    "precision": 18,
+    "color": "#C82133",
+    "icon": "https://assets.coingecko.com/coins/images/18709/thumb/mars4_logo.jpg?1696518177",
+    "symbol": "MARS4",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x16eccfdbb4ee1a85a33f3a9b21175cd7ae753db4": {
+    "assetId": "eip155:1/erc20:0x16eccfdbb4ee1a85a33f3a9b21175cd7ae753db4",
+    "chainId": "eip155:1",
+    "name": "Router Protocol on Ethereum",
+    "precision": 18,
+    "color": "#363555",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x16ECCfDbb4eE1A85A33f3A9B21175Cd7Ae753dB4/logo.png",
+    "symbol": "ROUTE",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x16f78145ad0b9af58747e9a97ebd99175378bd3d": {
+    "assetId": "eip155:1/erc20:0x16f78145ad0b9af58747e9a97ebd99175378bd3d",
+    "chainId": "eip155:1",
+    "name": "GroupDao",
+    "precision": 18,
+    "color": "#1D91F1",
+    "icon": "https://assets.coingecko.com/coins/images/22204/thumb/logo.png?1696521547",
+    "symbol": "GDO",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x170dec83c7753aaad20c01a0016b5a2e143990d4": {
+    "assetId": "eip155:1/erc20:0x170dec83c7753aaad20c01a0016b5a2e143990d4",
+    "chainId": "eip155:1",
+    "name": "Wigger",
+    "precision": 18,
+    "color": "#3E5A3E",
+    "icon": "https://assets.coingecko.com/coins/images/32128/thumb/SmartSelect_20231003_234100_Telegram.jpg?1696588180",
+    "symbol": "WIGGER",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x171d76d931529384639bc9aad5b77b77041ed604": {
+    "assetId": "eip155:1/erc20:0x171d76d931529384639bc9aad5b77b77041ed604",
+    "chainId": "eip155:1",
+    "name": "MetaOctagon",
+    "precision": 18,
+    "color": "#EEBA25",
+    "icon": "https://assets.coingecko.com/coins/images/26496/thumb/iJoylNuO_400x400.jpeg?1696525570",
+    "symbol": "MOTG",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x1735db6ab5baa19ea55d0adceed7bcdc008b3136": {
+    "assetId": "eip155:1/erc20:0x1735db6ab5baa19ea55d0adceed7bcdc008b3136",
+    "chainId": "eip155:1",
+    "name": "UREEQA on Ethereum",
+    "precision": 18,
+    "color": "#94ACDC",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x1735Db6AB5BAa19eA55d0AdcEeD7bcDc008B3136/logo.png",
+    "symbol": "URQA",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x176bc22e1855cd5cf5a840081c6c5b92b55e2210": {
+    "assetId": "eip155:1/erc20:0x176bc22e1855cd5cf5a840081c6c5b92b55e2210",
+    "chainId": "eip155:1",
+    "name": "Gambex",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/32745/thumb/gbe_cg.png?1699262150",
+    "symbol": "GBE",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x1776e1f26f98b1a5df9cd347953a26dd3cb46671": {
+    "assetId": "eip155:1/erc20:0x1776e1f26f98b1a5df9cd347953a26dd3cb46671",
+    "chainId": "eip155:1",
+    "name": "Numeraire",
+    "precision": 18,
+    "color": "#05050C",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x1776e1F26f98b1A5dF9cD347953a26dd3Cb46671/logo.png",
+    "symbol": "NMR",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x177ba0cac51bfc7ea24bad39d81dcefd59d74faa": {
+    "assetId": "eip155:1/erc20:0x177ba0cac51bfc7ea24bad39d81dcefd59d74faa",
+    "chainId": "eip155:1",
+    "name": "KittenFinance",
+    "precision": 18,
+    "color": "#DDDBD7",
+    "icon": "https://assets.coingecko.com/coins/images/12340/thumb/SnQPkABT_400x400.png?1696512167",
+    "symbol": "KIF",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x177d39ac676ed1c67a2b268ad7f1e58826e5b0af": {
+    "assetId": "eip155:1/erc20:0x177d39ac676ed1c67a2b268ad7f1e58826e5b0af",
+    "chainId": "eip155:1",
+    "name": "Blox",
+    "precision": 18,
+    "color": "#0C7DF7",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x177d39AC676ED1C67A2b268AD7F1E58826E5B0af/logo.png",
+    "symbol": "CDT",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x1782bb88ae0aa07031bc05bbe2bd4150c9da223a": {
+    "assetId": "eip155:1/erc20:0x1782bb88ae0aa07031bc05bbe2bd4150c9da223a",
+    "chainId": "eip155:1",
+    "name": "Clickart ai",
+    "precision": 9,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/32985/thumb/2_%282%29.png?1700093960",
+    "symbol": "CLICKART",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x17837004ea685690b32dbead02a274ec4333a26a": {
+    "assetId": "eip155:1/erc20:0x17837004ea685690b32dbead02a274ec4333a26a",
+    "chainId": "eip155:1",
+    "name": "Bear Inu",
+    "precision": 18,
+    "color": "#F3E3D3",
+    "icon": "https://assets.coingecko.com/coins/images/29517/thumb/bear.png?1696528460",
+    "symbol": "BEAR",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x1783d3979038d986f3959adf7dbfc527f42c4269": {
+    "assetId": "eip155:1/erc20:0x1783d3979038d986f3959adf7dbfc527f42c4269",
+    "chainId": "eip155:1",
+    "name": "Utopia Bot",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/32718/thumb/CG_Transparent_Logo_200x200.png?1699001180",
+    "symbol": "UB",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x1788430620960f9a70e3dc14202a3a35dde1a316": {
+    "assetId": "eip155:1/erc20:0x1788430620960f9a70e3dc14202a3a35dde1a316",
+    "chainId": "eip155:1",
+    "name": "OpenAlexa Protocol",
+    "precision": 18,
+    "color": "#A4E0E1",
+    "icon": "https://assets.coingecko.com/coins/images/12400/thumb/256x256-OAP.png?1696512222",
+    "symbol": "OAP",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x178bf8fd04b47d2de3ef3f6b3d112106375ad584": {
+    "assetId": "eip155:1/erc20:0x178bf8fd04b47d2de3ef3f6b3d112106375ad584",
+    "chainId": "eip155:1",
+    "name": "Unagii Tether USD",
+    "precision": 6,
+    "color": "#54AC94",
+    "icon": "https://assets.coingecko.com/coins/images/13778/thumb/uUSDT.png?1696513519",
+    "symbol": "UUSDT",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x1796ae0b0fa4862485106a0de9b654efe301d0b2": {
+    "assetId": "eip155:1/erc20:0x1796ae0b0fa4862485106a0de9b654efe301d0b2",
+    "chainId": "eip155:1",
+    "name": "Polychain Monsters on Ethereum",
+    "precision": 18,
+    "color": "#FB4C81",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x1796ae0b0fa4862485106a0de9b654eFE301D0b2/logo.png",
+    "symbol": "PMON",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x179cd91631d96e8fafee6a744eac6ffdbb923520": {
+    "assetId": "eip155:1/erc20:0x179cd91631d96e8fafee6a744eac6ffdbb923520",
+    "chainId": "eip155:1",
+    "name": "IxiCash",
+    "precision": 8,
+    "color": "#4CC424",
+    "icon": "https://assets.coingecko.com/coins/images/8368/thumb/ixi.png?1696508561",
+    "symbol": "IXI",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x17a79792fe6fe5c95dfe95fe3fcee3caf4fe4cb7": {
+    "assetId": "eip155:1/erc20:0x17a79792fe6fe5c95dfe95fe3fcee3caf4fe4cb7",
+    "chainId": "eip155:1",
+    "name": "Aave AMM USDT",
+    "precision": 6,
+    "color": "#54AA98",
+    "icon": "https://assets.coingecko.com/coins/images/17200/thumb/aAMMUSDT_2x.png?1696516757",
+    "symbol": "AAMMUSDT",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x17b61131183d29782239c831d7e8ef2dc9f2855d": {
+    "assetId": "eip155:1/erc20:0x17b61131183d29782239c831d7e8ef2dc9f2855d",
+    "chainId": "eip155:1",
+    "name": "Unibets AI",
+    "precision": 9,
+    "color": "#F0EDF0",
+    "icon": "https://assets.coingecko.com/coins/images/31771/thumb/Unibets.jpeg?1696530589",
+    "symbol": "BETS",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x17bb9f3572d0c69e017dcd048ec7304eecc981c8": {
+    "assetId": "eip155:1/erc20:0x17bb9f3572d0c69e017dcd048ec7304eecc981c8",
+    "chainId": "eip155:1",
+    "name": "Mr Potato Token",
+    "precision": 18,
+    "color": "#50A84D",
+    "icon": "https://assets.coingecko.com/coins/images/30716/thumb/7WqzCpjQ_400x400.jpg?1696529587",
+    "symbol": "MRPOTATO",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x17d2628d30f8e9e966c9ba831c9b9b01ea8ea75c": {
+    "assetId": "eip155:1/erc20:0x17d2628d30f8e9e966c9ba831c9b9b01ea8ea75c",
+    "chainId": "eip155:1",
+    "name": "ISKRA Token",
+    "precision": 18,
+    "color": "#5CA9DC",
+    "icon": "https://assets.coingecko.com/coins/images/27428/thumb/ISKRA_logo.png?1696526469",
+    "symbol": "ISK",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x17ef75aa22dd5f6c2763b8304ab24f40ee54d48a": {
+    "assetId": "eip155:1/erc20:0x17ef75aa22dd5f6c2763b8304ab24f40ee54d48a",
+    "chainId": "eip155:1",
+    "name": "Revolution Populi",
+    "precision": 18,
+    "color": "#040404",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x17EF75AA22dD5f6C2763b8304Ab24f40eE54D48a/logo.png",
+    "symbol": "RVP",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x17f8e6694080c07d7414c918dd9b9c32a2981ea1": {
+    "assetId": "eip155:1/erc20:0x17f8e6694080c07d7414c918dd9b9c32a2981ea1",
+    "chainId": "eip155:1",
+    "name": "Ascend",
+    "precision": 18,
+    "color": "#070509",
+    "icon": "https://assets.coingecko.com/coins/images/31110/thumb/acdw2000.png?1696529940",
+    "symbol": "ASC",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x18084fba666a33d37592fa2633fd49a74dd93a88": {
+    "assetId": "eip155:1/erc20:0x18084fba666a33d37592fa2633fd49a74dd93a88",
+    "chainId": "eip155:1",
+    "name": "tBTC on Ethereum",
+    "precision": 18,
+    "color": "#A9A9AA",
+    "icon": "https://assets.coingecko.com/coins/images/11224/thumb/0x18084fba666a33d37592fa2633fd49a74dd93a88.png?1696511155",
+    "symbol": "TBTC",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x180dae91d6d56235453a892d2e56a3e40ba81df8": {
+    "assetId": "eip155:1/erc20:0x180dae91d6d56235453a892d2e56a3e40ba81df8",
+    "chainId": "eip155:1",
+    "name": "DOJO on Ethereum",
+    "precision": 18,
+    "color": "#F2C204",
+    "icon": "https://assets.coingecko.com/coins/images/16396/thumb/074606deafab3872.png?1696515994",
+    "symbol": "DOJO",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x182c00807f2d4904d02d5e0d179600ff6a3ae67c": {
+    "assetId": "eip155:1/erc20:0x182c00807f2d4904d02d5e0d179600ff6a3ae67c",
+    "chainId": "eip155:1",
+    "name": "BTEX",
+    "precision": 18,
+    "color": "#243C84",
+    "icon": "https://assets.coingecko.com/coins/images/31884/thumb/BTEX_200x200.png?1696530695",
+    "symbol": "BTEX",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x183395dbd0b5e93323a7286d1973150697fffcb3": {
+    "assetId": "eip155:1/erc20:0x183395dbd0b5e93323a7286d1973150697fffcb3",
+    "chainId": "eip155:1",
+    "name": "Convex FXN",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/32962/thumb/cvxfxn.png?1700026163",
+    "symbol": "CVXFXN",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x1864ce27e9f7517047933caae530674e8c70b8a7": {
+    "assetId": "eip155:1/erc20:0x1864ce27e9f7517047933caae530674e8c70b8a7",
+    "chainId": "eip155:1",
+    "name": "Pibble",
+    "precision": 18,
+    "color": "#5CA6C5",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x1864cE27E9F7517047933CaAE530674e8C70b8A7/logo.png",
+    "symbol": "PIB",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x186d0ba3dfc3386c464eecd96a61fbb1e2da00bf": {
+    "assetId": "eip155:1/erc20:0x186d0ba3dfc3386c464eecd96a61fbb1e2da00bf",
+    "chainId": "eip155:1",
+    "name": "Trava Finance on Ethereum",
+    "precision": 18,
+    "color": "#1C8CF4",
+    "icon": "https://assets.coingecko.com/coins/images/17553/thumb/TRAVA_OFFICIAL_LOGO.png?1696517089",
+    "symbol": "TRAVA",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x187d1018e8ef879be4194d6ed7590987463ead85": {
+    "assetId": "eip155:1/erc20:0x187d1018e8ef879be4194d6ed7590987463ead85",
+    "chainId": "eip155:1",
+    "name": "FUZE",
+    "precision": 18,
+    "color": "#F65905",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x187D1018E8ef879BE4194d6eD7590987463eAD85/logo.png",
+    "symbol": "FUZE",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x188e817b02e635d482ae4d81e25dda98a97c4a42": {
+    "assetId": "eip155:1/erc20:0x188e817b02e635d482ae4d81e25dda98a97c4a42",
+    "chainId": "eip155:1",
+    "name": "Lithium Finance",
+    "precision": 18,
+    "color": "#EC6434",
+    "icon": "https://assets.coingecko.com/coins/images/17278/thumb/Lithium_Logo-03200x200.png?1696516832",
+    "symbol": "LITH",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x188fb5f5ae5bbe4154d5778f2bbb2fb985c94d25": {
+    "assetId": "eip155:1/erc20:0x188fb5f5ae5bbe4154d5778f2bbb2fb985c94d25",
+    "chainId": "eip155:1",
+    "name": "OpenBlox on Ethereum",
+    "precision": 18,
+    "color": "#070707",
+    "icon": "https://assets.coingecko.com/coins/images/26150/thumb/OBX_token-black_background_preview.png?1696525239",
+    "symbol": "OBX",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x1892f6ff5fbe11c31158f8c6f6f6e33106c5b10e": {
+    "assetId": "eip155:1/erc20:0x1892f6ff5fbe11c31158f8c6f6f6e33106c5b10e",
+    "chainId": "eip155:1",
+    "name": "MegaWorld",
+    "precision": 18,
+    "color": "#506276",
+    "icon": "https://assets.coingecko.com/coins/images/28456/thumb/Twitter_AVA1.jpg?1696527451",
+    "symbol": "MEGA",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x189fc141854bfc6146777406d53fbc89f4e70407": {
+    "assetId": "eip155:1/erc20:0x189fc141854bfc6146777406d53fbc89f4e70407",
+    "chainId": "eip155:1",
+    "name": "Ceji",
+    "precision": 18,
+    "color": "#6CBC44",
+    "icon": "https://assets.coingecko.com/coins/images/26458/thumb/CEJI.png?1696525531",
+    "symbol": "CEJI",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x18a1ea69a50a85752b7bc204a2c45a95ce6e429d": {
+    "assetId": "eip155:1/erc20:0x18a1ea69a50a85752b7bc204a2c45a95ce6e429d",
+    "chainId": "eip155:1",
+    "name": "Spice Trade on Ethereum",
+    "precision": 18,
+    "color": "#250E45",
+    "icon": "https://assets.coingecko.com/coins/images/25770/thumb/SPICE.png?1696524857",
+    "symbol": "SPICE",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x18a3563c21062897950bb09339c82b9686a35667": {
+    "assetId": "eip155:1/erc20:0x18a3563c21062897950bb09339c82b9686a35667",
+    "chainId": "eip155:1",
+    "name": "EtherNexus",
+    "precision": 9,
+    "color": "#F8F574",
+    "icon": "https://assets.coingecko.com/coins/images/29855/thumb/logo-circle.png?1696528781",
+    "symbol": "ENXS",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x18aaa7115705e8be94bffebde57af9bfc265b998": {
+    "assetId": "eip155:1/erc20:0x18aaa7115705e8be94bffebde57af9bfc265b998",
+    "chainId": "eip155:1",
+    "name": "Audius",
+    "precision": 18,
+    "color": "#7F1AC4",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x18aAA7115705e8be94bfFEBDE57Af9BFc265B998/logo.png",
+    "symbol": "AUDIO",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x18b7f4d5d8d1e36af2975be978fbb5438fd3c2a5": {
+    "assetId": "eip155:1/erc20:0x18b7f4d5d8d1e36af2975be978fbb5438fd3c2a5",
+    "chainId": "eip155:1",
+    "name": "Betrock",
+    "precision": 18,
+    "color": "#B51416",
+    "icon": "https://assets.coingecko.com/coins/images/31617/thumb/200x200.png?1696530434",
+    "symbol": "BETROCK",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x18c1074845c389907762a71242bfe271c9da2d9c": {
+    "assetId": "eip155:1/erc20:0x18c1074845c389907762a71242bfe271c9da2d9c",
+    "chainId": "eip155:1",
+    "name": "BULL Token",
+    "precision": 18,
+    "color": "#101210",
+    "icon": "https://assets.coingecko.com/coins/images/30785/thumb/BULL200x200.jpg?1696529652",
+    "symbol": "BULL",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x18cc2ba8995c6307e355726244adb023cf00522f": {
+    "assetId": "eip155:1/erc20:0x18cc2ba8995c6307e355726244adb023cf00522f",
+    "chainId": "eip155:1",
+    "name": "Monke",
+    "precision": 9,
+    "color": "#F7F8EF",
+    "icon": "https://assets.coingecko.com/coins/images/30192/thumb/MonkeCG.png?1698675883",
+    "symbol": "MONKE",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x18e2190303d6454deaa5ba5529ea0100f99723a3": {
+    "assetId": "eip155:1/erc20:0x18e2190303d6454deaa5ba5529ea0100f99723a3",
+    "chainId": "eip155:1",
+    "name": "Trifecta TRIBOT",
+    "precision": 18,
+    "color": "#04FA04",
+    "icon": "https://assets.coingecko.com/coins/images/31732/thumb/tribot.png?1696530552",
+    "symbol": "TRIBOT",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x1900e8b5619a3596745f715d0427fe617c729ba9": {
+    "assetId": "eip155:1/erc20:0x1900e8b5619a3596745f715d0427fe617c729ba9",
+    "chainId": "eip155:1",
+    "name": "Chainbing",
+    "precision": 18,
+    "color": "#4A60F2",
+    "icon": "https://assets.coingecko.com/coins/images/18052/thumb/j3saoPU.png?1696517564",
+    "symbol": "CBG",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x1903be033d3e436dd79a8cf9030675bcf97ab589": {
+    "assetId": "eip155:1/erc20:0x1903be033d3e436dd79a8cf9030675bcf97ab589",
+    "chainId": "eip155:1",
+    "name": "Be ikta ",
+    "precision": 6,
+    "color": "#ED6D76",
+    "icon": "https://assets.coingecko.com/coins/images/32038/thumb/BJK_200x200_2.png?1696530835",
+    "symbol": "BJK",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x19062190b1925b5b6689d7073fdfc8c2976ef8cb": {
+    "assetId": "eip155:1/erc20:0x19062190b1925b5b6689d7073fdfc8c2976ef8cb",
+    "chainId": "eip155:1",
+    "name": "Swarm on Ethereum",
+    "precision": 16,
+    "color": "#FBFAF9",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x19062190B1925b5b6689D7073fDfC8c2976EF8Cb/logo.png",
+    "symbol": "BZZ",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x191557728e4d8caa4ac94f86af842148c0fa8f7e": {
+    "assetId": "eip155:1/erc20:0x191557728e4d8caa4ac94f86af842148c0fa8f7e",
+    "chainId": "eip155:1",
+    "name": "Ormeus Ecosystem on Ethereum",
+    "precision": 8,
+    "color": "#049C9C",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x191557728e4d8CAa4Ac94f86af842148c0FA8F7E/logo.png",
+    "symbol": "ECO",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x19193f450086d0442157b852081976d41657ad56": {
+    "assetId": "eip155:1/erc20:0x19193f450086d0442157b852081976d41657ad56",
+    "chainId": "eip155:1",
+    "name": "Nunu Spirits on Ethereum",
+    "precision": 18,
+    "color": "#A0CF41",
+    "icon": "https://assets.coingecko.com/coins/images/24378/thumb/NNT_99cc33.png?1696523561",
+    "symbol": "NNT",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x1936ae42b59876192a2e263b3807343c448e3c85": {
+    "assetId": "eip155:1/erc20:0x1936ae42b59876192a2e263b3807343c448e3c85",
+    "chainId": "eip155:1",
+    "name": "Ember on Ethereum",
+    "precision": 18,
+    "color": "#1D1C1C",
+    "icon": "https://assets.coingecko.com/coins/images/31186/thumb/gitbookpfp.png?1696530013",
+    "symbol": "EMBR",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x1936c91190e901b7dd55229a574ae22b58ff498a": {
+    "assetId": "eip155:1/erc20:0x1936c91190e901b7dd55229a574ae22b58ff498a",
+    "chainId": "eip155:1",
+    "name": "MEVFree",
+    "precision": 18,
+    "color": "#545454",
+    "icon": "https://assets.coingecko.com/coins/images/29510/thumb/mevfree200.png?1696528454",
+    "symbol": "MEVFREE",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x196c81385bc536467433014042788eb707703934": {
+    "assetId": "eip155:1/erc20:0x196c81385bc536467433014042788eb707703934",
+    "chainId": "eip155:1",
+    "name": "CryptoTask",
+    "precision": 18,
+    "color": "#5CD474",
+    "icon": "https://assets.coingecko.com/coins/images/13965/thumb/cryptotask_logo.png?1696513700",
+    "symbol": "CTASK",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x1977be49c33dfacf6590c16ca9a9cfa0463f663c": {
+    "assetId": "eip155:1/erc20:0x1977be49c33dfacf6590c16ca9a9cfa0463f663c",
+    "chainId": "eip155:1",
+    "name": "DoRen",
+    "precision": 18,
+    "color": "#418DBD",
+    "icon": "https://assets.coingecko.com/coins/images/16901/thumb/DoRen_project_whitepaper_v1_1_EN_pdf.png?1696516472",
+    "symbol": "DRE",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x198065e69a86cb8a9154b333aad8efe7a3c256f8": {
+    "assetId": "eip155:1/erc20:0x198065e69a86cb8a9154b333aad8efe7a3c256f8",
+    "chainId": "eip155:1",
+    "name": "Koyo",
+    "precision": 18,
+    "color": "#EC343C",
+    "icon": "https://assets.coingecko.com/coins/images/29484/thumb/koyo200x200.png?1696528428",
+    "symbol": "KOY",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x1982b2f5814301d4e9a8b0201555376e62f82428": {
+    "assetId": "eip155:1/erc20:0x1982b2f5814301d4e9a8b0201555376e62f82428",
+    "chainId": "eip155:1",
+    "name": "Aave Interest Bearing STETH",
+    "precision": 18,
+    "color": "#F5F9F7",
+    "icon": "https://assets.coingecko.com/coins/images/24163/thumb/steth.jpg?1696523352",
+    "symbol": "ASTETH",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x198d14f2ad9ce69e76ea330b374de4957c3f850a": {
+    "assetId": "eip155:1/erc20:0x198d14f2ad9ce69e76ea330b374de4957c3f850a",
+    "chainId": "eip155:1",
+    "name": "APENFT on Ethereum",
+    "precision": 6,
+    "color": "#050505",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x198d14F2Ad9CE69E76ea330B374DE4957C3F850a/logo.png",
+    "symbol": "NFT",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x198d7387fa97a73f05b8578cdeff8f2a1f34cd1f": {
+    "assetId": "eip155:1/erc20:0x198d7387fa97a73f05b8578cdeff8f2a1f34cd1f",
+    "chainId": "eip155:1",
+    "name": "Wrapped Jones AURA",
+    "precision": 18,
+    "color": "#311F43",
+    "icon": "https://assets.coingecko.com/coins/images/30103/thumb/geckoAura.png?1696529025",
+    "symbol": "WJAURA",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x19a71179fd41c19f8dfb1f38343482bec0271e3c": {
+    "assetId": "eip155:1/erc20:0x19a71179fd41c19f8dfb1f38343482bec0271e3c",
+    "chainId": "eip155:1",
+    "name": "Spectrum Marketplace",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/32820/thumb/download.png?1699582062",
+    "symbol": "SPEC",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x19ac2659599fd01c853de846919544276ad26f50": {
+    "assetId": "eip155:1/erc20:0x19ac2659599fd01c853de846919544276ad26f50",
+    "chainId": "eip155:1",
+    "name": "Covenant",
+    "precision": 18,
+    "color": "#4CA1D5",
+    "icon": "https://assets.coingecko.com/coins/images/22280/thumb/16837.png?1696521627",
+    "symbol": "COVN",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x19b22dbadc298c359a1d1b59e35f352a2b40e33c": {
+    "assetId": "eip155:1/erc20:0x19b22dbadc298c359a1d1b59e35f352a2b40e33c",
+    "chainId": "eip155:1",
+    "name": "tPLATINUM on Ethereum",
+    "precision": 18,
+    "color": "#525353",
+    "icon": "https://assets.coingecko.com/coins/images/27830/thumb/tPLATINUM_%28TXPT%29_Token.png?1696526849",
+    "symbol": "TXPT",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x19be3a0f1a6cccc99b3cdc13475613e559be551c": {
+    "assetId": "eip155:1/erc20:0x19be3a0f1a6cccc99b3cdc13475613e559be551c",
+    "chainId": "eip155:1",
+    "name": "FrenBot",
+    "precision": 18,
+    "color": "#82AFCD",
+    "icon": "https://assets.coingecko.com/coins/images/31573/thumb/frenbot_logo.png?1697699412",
+    "symbol": "MEF",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x19cc7acbe3365e5597d5cb411623112fa70050f3": {
+    "assetId": "eip155:1/erc20:0x19cc7acbe3365e5597d5cb411623112fa70050f3",
+    "chainId": "eip155:1",
+    "name": "WASH",
+    "precision": 18,
+    "color": "#04041B",
+    "icon": "https://assets.coingecko.com/coins/images/31981/thumb/Wash_3.png?1696530784",
+    "symbol": "WASH",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x19d97d8fa813ee2f51ad4b4e04ea08baf4dffc28": {
+    "assetId": "eip155:1/erc20:0x19d97d8fa813ee2f51ad4b4e04ea08baf4dffc28",
+    "chainId": "eip155:1",
+    "name": "Badger Sett Badger",
+    "precision": 18,
+    "color": "#242328",
+    "icon": "https://assets.coingecko.com/coins/images/14502/thumb/BADGER_DAO.png?1696514188",
+    "symbol": "BBADGER",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x19dd1cc08a8bdb124a3f57a364f1d72b7a19c3ef": {
+    "assetId": "eip155:1/erc20:0x19dd1cc08a8bdb124a3f57a364f1d72b7a19c3ef",
+    "chainId": "eip155:1",
+    "name": "Rasta Kitty",
+    "precision": 18,
+    "color": "#917939",
+    "icon": "https://assets.coingecko.com/coins/images/31470/thumb/Token-1-PNG-1.png?1696530283",
+    "symbol": "RAS",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x19de6b897ed14a376dda0fe53a5420d2ac828a28": {
+    "assetId": "eip155:1/erc20:0x19de6b897ed14a376dda0fe53a5420d2ac828a28",
+    "chainId": "eip155:1",
+    "name": "Bitget Token",
+    "precision": 18,
+    "color": "#D8F5F5",
+    "icon": "https://assets.coingecko.com/coins/images/11610/thumb/icon_colour.png?1696511504",
+    "symbol": "BGB",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x19e2a43fbbc643c3b2d9667d858d49cad17bc2b5": {
+    "assetId": "eip155:1/erc20:0x19e2a43fbbc643c3b2d9667d858d49cad17bc2b5",
+    "chainId": "eip155:1",
+    "name": "BNS",
+    "precision": 8,
+    "color": "#EED9F6",
+    "icon": "https://assets.coingecko.com/coins/images/25150/thumb/bitbns_logo.png?1696524299",
+    "symbol": "BNS",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x19f5d973335480d26270dc498459e2f39cf2da53": {
+    "assetId": "eip155:1/erc20:0x19f5d973335480d26270dc498459e2f39cf2da53",
+    "chainId": "eip155:1",
+    "name": "Fomo Inu",
+    "precision": 18,
+    "color": "#B78442",
+    "icon": "https://assets.coingecko.com/coins/images/32377/thumb/FINU-Logo.png?1698035474",
+    "symbol": "FINU",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x1a23a6bfbadb59fa563008c0fb7cf96dfcf34ea1": {
+    "assetId": "eip155:1/erc20:0x1a23a6bfbadb59fa563008c0fb7cf96dfcf34ea1",
+    "chainId": "eip155:1",
+    "name": "CoFiX",
+    "precision": 18,
+    "color": "#2C2424",
+    "icon": "https://assets.coingecko.com/coins/images/12781/thumb/dnPnSkfa_400x400.png?1696512576",
+    "symbol": "COFI",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x1a2eb478fa07125c9935a77b3c03a82470801e30": {
+    "assetId": "eip155:1/erc20:0x1a2eb478fa07125c9935a77b3c03a82470801e30",
+    "chainId": "eip155:1",
+    "name": "Amino",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/32677/thumb/IMG_6956.png?1698920127",
+    "symbol": "AMO",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x1a3496c18d558bd9c6c8f609e1b129f67ab08163": {
+    "assetId": "eip155:1/erc20:0x1a3496c18d558bd9c6c8f609e1b129f67ab08163",
+    "chainId": "eip155:1",
+    "name": "DEAPCOIN on Ethereum",
+    "precision": 18,
+    "color": "#E5A81C",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x1A3496C18d558bd9C6C8f609E1B129f67AB08163/logo.png",
+    "symbol": "DEP",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x1a3cbda3853494acab67648ee59afeb7ec3e9334": {
+    "assetId": "eip155:1/erc20:0x1a3cbda3853494acab67648ee59afeb7ec3e9334",
+    "chainId": "eip155:1",
+    "name": "Collateral Network",
+    "precision": 18,
+    "color": "#0A0A0A",
+    "icon": "https://assets.coingecko.com/coins/images/29770/thumb/IMG_20230407_101929_020.png?1696528701",
+    "symbol": "COLT",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x1a403e1c96792dfedb8232cf56400eb72ab95acb": {
+    "assetId": "eip155:1/erc20:0x1a403e1c96792dfedb8232cf56400eb72ab95acb",
+    "chainId": "eip155:1",
+    "name": "Saltmarble",
+    "precision": 18,
+    "color": "#2A1164",
+    "icon": "https://assets.coingecko.com/coins/images/27504/thumb/SML_200px.png?1696526543",
+    "symbol": "SML",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x1a44e35d5451e0b78621a1b3e7a53dfaa306b1d0": {
+    "assetId": "eip155:1/erc20:0x1a44e35d5451e0b78621a1b3e7a53dfaa306b1d0",
+    "chainId": "eip155:1",
+    "name": "baoETH ETH StablePool",
+    "precision": 18,
+    "color": "#C4DC24",
+    "icon": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAIAAAACACAMAAAD04JH5AAADAFBMVEUtN0jA2Cb///8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADoAzjtAAABAHRSTlP/////AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAf6K/dgAAQItJREFUeNoBgEB/vwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgICAgICAgICAgICAgICAgICAgICAgEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgICAgICAgICAgICAgICAgICAgICAgIBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgICAgICAgICAgICAgICAgICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgICAgICAgICAgICAgICAgICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgICAgICAgICAgICAgICAgICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgICAgICAgICAgICAgICAgICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgICAgICAgICAgICAgICAgICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgICAgICAgICAgICAgICAgICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMDAwMDAwMDAwMDAwMDAwMDAwMDAwICAgICAgIBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgIDAwMDAwMDAwMDAwMDAwMDAwMDAwMCAgICAgICAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgIDAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgIDAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgIDAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgIDAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgIDAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgIDAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgIDAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgIDAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgIDAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgIDAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgIDAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgIDAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgIDAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgICAgICAgICAgICAgICAgICAgICAgEDAwMDAwMDAQEBAQAAAgICAgICAgICAgICAgICAgICAgICAQEBAQEBAQICAgICAgICAgICAgICAgICAgICAgICAgICAgIBAwMDAwMDAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMBAQEBAQEBAQEBAQAAAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQICAgICAgICAgICAgICAgICAgICAgICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMBAQEBAQEBAQEBAQAAAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQICAgICAgICAgICAgICAgICAgICAgICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMBAQEBAQEBAQEBAQAAAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQICAgICAgICAgICAgICAgICAgICAgICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMBAQEBAQEBAQEBAQAAAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQICAgICAgICAgICAgICAgICAgICAgICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMBAQEBAQEBAQEBAQAAAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQICAgICAgICAgICAgICAgICAgICAgICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMBAQEBAQEBAQEBAQAAAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQICAgICAgICAgICAgICAgICAgICAgICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMDAwMDAwMDAwMDAwMDAwMDAwMDAwICAgICAgIBAQEBAQAAAAMDAwMDAwMDAwMDAwMDAwMDAwMDAwEBAQEBAQICAgICAgIDAwMDAwMDAwMDAwMDAwMDAwMDAwMCAgICAgICAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgIDAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgIDAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgIDAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgIDAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgIDAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgIDAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgIDAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgIDAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgIDAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgIDAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgIDAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgIDAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgIDAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgICAgICAgICAgICAgICAgICAgICAgEDAwMDAwMDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgICAgICAgICAgICAgICAgICAgICAgIBAwMDAwMDAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgICAgICAgICAgICAgICAgICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgICAgICAgICAgICAgICAgICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgICAgICAgICAgICAgICAgICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgICAgICAgICAgICAgICAgICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgICAgICAgICAgICAgICAgICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgICAgICAgICAgICAgICAgICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFNXLj3X/MtwAAAAAElFTkSuQmCC",
+    "symbol": "B-BAOETH-ETH-BPT",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x1a4b46696b2bb4794eb3d4c26f1c55f9170fa4c5": {
+    "assetId": "eip155:1/erc20:0x1a4b46696b2bb4794eb3d4c26f1c55f9170fa4c5",
+    "chainId": "eip155:1",
+    "name": "BitDAO",
+    "precision": 18,
+    "color": "#A7F504",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x1A4b46696b2bB4794Eb3D4c26f1c55F9170fa4C5/logo.png",
+    "symbol": "BIT",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x1a57367c6194199e5d9aea1ce027431682dfb411": {
+    "assetId": "eip155:1/erc20:0x1a57367c6194199e5d9aea1ce027431682dfb411",
+    "chainId": "eip155:1",
+    "name": "MatrixETF",
+    "precision": 18,
+    "color": "#0A5009",
+    "icon": "https://assets.coingecko.com/coins/images/18538/thumb/MDF.png?1696518018",
+    "symbol": "MDF",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x1a6658f40e51b372e593b7d2144c1402d5cf33e8": {
+    "assetId": "eip155:1/erc20:0x1a6658f40e51b372e593b7d2144c1402d5cf33e8",
+    "chainId": "eip155:1",
+    "name": "PUBLC",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x1a6658F40e51b372E593B7d2144c1402d5cf33E8/logo.png",
+    "symbol": "PUBLX",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db": {
+    "assetId": "eip155:1/erc20:0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db",
+    "chainId": "eip155:1",
+    "name": "AppCoins",
+    "precision": 18,
+    "color": "#EAF8F9",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x1a7a8BD9106F2B8D977E08582DC7d24c723ab0DB/logo.png",
+    "symbol": "APPC",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x1a7e4e63778b4f12a199c062f3efdd288afcbce8": {
+    "assetId": "eip155:1/erc20:0x1a7e4e63778b4f12a199c062f3efdd288afcbce8",
+    "chainId": "eip155:1",
+    "name": "agEUR on Ethereum",
+    "precision": 18,
+    "color": "#C0B99D",
+    "icon": "https://assets.coingecko.com/coins/images/19479/thumb/agEUR.png?1696518915",
+    "symbol": "AGEUR",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x1a8b8e526d093476ac5c488a3ea057f8de9c0dee": {
+    "assetId": "eip155:1/erc20:0x1a8b8e526d093476ac5c488a3ea057f8de9c0dee",
+    "chainId": "eip155:1",
+    "name": "JEFFWorld Token",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/33188/thumb/output-onlinepngtools_%283%29.png?1700954618",
+    "symbol": "JEFF",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x1a963df363d01eebb2816b366d61c917f20e1ebe": {
+    "assetId": "eip155:1/erc20:0x1a963df363d01eebb2816b366d61c917f20e1ebe",
+    "chainId": "eip155:1",
+    "name": "MEMEME",
+    "precision": 18,
+    "color": "#69603F",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x1A963Df363D01EEBB2816b366d61C917F20e1EbE/logo.png",
+    "symbol": "MEMEME",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x1aa51bc7eb181ce48ce626bf62f8956fa9555136": {
+    "assetId": "eip155:1/erc20:0x1aa51bc7eb181ce48ce626bf62f8956fa9555136",
+    "chainId": "eip155:1",
+    "name": "PAWZONE",
+    "precision": 18,
+    "color": "#CC2818",
+    "icon": "https://assets.coingecko.com/coins/images/29598/thumb/PAW_Token_Logo.png?1696528536",
+    "symbol": "PAW",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x1ab43204a195a0fd37edec621482afd3792ef90b": {
+    "assetId": "eip155:1/erc20:0x1ab43204a195a0fd37edec621482afd3792ef90b",
+    "chainId": "eip155:1",
+    "name": "Aurigami",
+    "precision": 18,
+    "color": "#F6FAF8",
+    "icon": "https://assets.coingecko.com/coins/images/24074/thumb/EbB5N8IN_400x400.jpg?1696523268",
+    "symbol": "PLY",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x1abaea1f7c830bd89acc67ec4af516284b1bc33c": {
+    "assetId": "eip155:1/erc20:0x1abaea1f7c830bd89acc67ec4af516284b1bc33c",
+    "chainId": "eip155:1",
+    "name": "EURC on Ethereum",
+    "precision": 6,
+    "color": "#3097FB",
+    "icon": "https://assets.coingecko.com/coins/images/26045/thumb/euro.png?1696525125",
+    "symbol": "EURC",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x1ac1d4991edf93bd2e5594a9b38a9599071afdae": {
+    "assetId": "eip155:1/erc20:0x1ac1d4991edf93bd2e5594a9b38a9599071afdae",
+    "chainId": "eip155:1",
+    "name": "Just Clone It",
+    "precision": 9,
+    "color": "#7CC6E2",
+    "icon": "https://assets.coingecko.com/coins/images/31224/thumb/logo5.png?1696530050",
+    "symbol": "CLONE",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x1af0294524093bfdf5da5135853dc2fc678c12f7": {
+    "color": "#FFFFFF",
+    "icon": "https://raw.githubusercontent.com/Idle-Labs/idle-dashboard/master/public/images/tokens/USDC.svg",
+    "name": "EulerStaking USDC Senior Tranche",
+    "precision": 18,
+    "symbol": "AA_idleEulStk_eUSDC",
+    "chainId": "eip155:1",
+    "assetId": "eip155:1/erc20:0x1af0294524093bfdf5da5135853dc2fc678c12f7",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x1af2eaeaf2b1d9dda800861268e6bbb3995a6c3b": {
+    "assetId": "eip155:1/erc20:0x1af2eaeaf2b1d9dda800861268e6bbb3995a6c3b",
+    "chainId": "eip155:1",
+    "name": "1eco",
+    "precision": 18,
+    "color": "#D4C8AA",
+    "icon": "https://assets.coingecko.com/coins/images/22118/thumb/mgrOT_dx_400x400.png?1696521459",
+    "symbol": "1ECO",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x1af4f195a8aaa7ffd752c28a13b719b84056f0d6": {
+    "assetId": "eip155:1/erc20:0x1af4f195a8aaa7ffd752c28a13b719b84056f0d6",
+    "chainId": "eip155:1",
+    "name": "NFT Track Protocol",
+    "precision": 18,
+    "color": "#D90D7A",
+    "icon": "https://assets.coingecko.com/coins/images/27108/thumb/NTP_Symbol_CoinGecko.jpg?1696526161",
+    "symbol": "NTP",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x1afb69dbc9f54d08dab1bd3436f8da1af819e647": {
+    "assetId": "eip155:1/erc20:0x1afb69dbc9f54d08dab1bd3436f8da1af819e647",
+    "chainId": "eip155:1",
+    "name": "Melos Studio",
+    "precision": 18,
+    "color": "#040404",
+    "icon": "https://assets.coingecko.com/coins/images/24411/thumb/18551.png?1696523593",
+    "symbol": "MELOS",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x1b073382e63411e3bcffe90ac1b9a43fefa1ec6f": {
+    "assetId": "eip155:1/erc20:0x1b073382e63411e3bcffe90ac1b9a43fefa1ec6f",
+    "chainId": "eip155:1",
+    "name": "Bitpanda Ecosystem",
+    "precision": 8,
+    "color": "#EB3354",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x1B073382E63411E3BcfFE90aC1B9A43feFa1Ec6F/logo.png",
+    "symbol": "BEST",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x1b19c19393e2d034d8ff31ff34c81252fcbbee92": {
+    "assetId": "eip155:1/erc20:0x1b19c19393e2d034d8ff31ff34c81252fcbbee92",
+    "chainId": "eip155:1",
+    "name": "OUSG",
+    "precision": 18,
+    "color": "#4E3CF4",
+    "icon": "https://assets.coingecko.com/coins/images/29023/thumb/OUSG.png?1696527993",
+    "symbol": "OUSG",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x1b3c515f58857e141a966b33182f2f3feecc10e9": {
+    "assetId": "eip155:1/erc20:0x1b3c515f58857e141a966b33182f2f3feecc10e9",
+    "chainId": "eip155:1",
+    "name": "USK",
+    "precision": 6,
+    "color": "#47C6C5",
+    "icon": "https://assets.coingecko.com/coins/images/27274/thumb/usk.png?1696526326",
+    "symbol": "USK",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x1b40183efb4dd766f11bda7a7c3ad8982e998421": {
+    "assetId": "eip155:1/erc20:0x1b40183efb4dd766f11bda7a7c3ad8982e998421",
+    "chainId": "eip155:1",
+    "name": "Vesper Finance on Ethereum",
+    "precision": 18,
+    "color": "#443CAC",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x1b40183EFB4Dd766f11bDa7A7c3AD8982e998421/logo.png",
+    "symbol": "VSP",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x1b5036bec1b82d44d52fa953a370b3c6cd9328b5": {
+    "assetId": "eip155:1/erc20:0x1b5036bec1b82d44d52fa953a370b3c6cd9328b5",
+    "chainId": "eip155:1",
+    "name": "Elan",
+    "precision": 18,
+    "color": "#686566",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x1b5036bEc1B82D44d52Fa953A370b3c6Cd9328B5/logo.png",
+    "symbol": "ELAN",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x1b5e16c5b20fb5ee87c61fe9afe735cca3b21a65": {
+    "assetId": "eip155:1/erc20:0x1b5e16c5b20fb5ee87c61fe9afe735cca3b21a65",
+    "chainId": "eip155:1",
+    "name": "Index Coop Large Cap Index",
+    "precision": 18,
+    "color": "#3A2318",
+    "icon": "https://assets.coingecko.com/coins/images/31698/thumb/ic21_token_logo.png?1696530516",
+    "symbol": "IC21",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x1b8568fbb47708e9e9d31ff303254f748805bf21": {
+    "assetId": "eip155:1/erc20:0x1b8568fbb47708e9e9d31ff303254f748805bf21",
+    "chainId": "eip155:1",
+    "name": "Scarcity",
+    "precision": 18,
+    "color": "#F4B539",
+    "icon": "https://assets.coingecko.com/coins/images/19064/thumb/scx_gecko.png?1696518513",
+    "symbol": "SCX",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x1ba9843bd4327c6c77011406de5fa8749f7e3479": {
+    "assetId": "eip155:1/erc20:0x1ba9843bd4327c6c77011406de5fa8749f7e3479",
+    "chainId": "eip155:1",
+    "name": "Aave v3 STG",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/32905/thumb/ST.png?1699803503",
+    "symbol": "ASTG",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x1bbf25e71ec48b84d773809b4ba55b6f4be946fb": {
+    "assetId": "eip155:1/erc20:0x1bbf25e71ec48b84d773809b4ba55b6f4be946fb",
+    "chainId": "eip155:1",
+    "name": "Vow",
+    "precision": 18,
+    "color": "#7049F3",
+    "icon": "https://assets.coingecko.com/coins/images/18202/thumb/72Nd63R0_400x400.png?1696517701",
+    "symbol": "VOW",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x1bd55090b8878630e57fae6ebd11fd61d16dfc9f": {
+    "assetId": "eip155:1/erc20:0x1bd55090b8878630e57fae6ebd11fd61d16dfc9f",
+    "chainId": "eip155:1",
+    "name": "ArchLoot on Ethereum",
+    "precision": 18,
+    "color": "#60E485",
+    "icon": "https://assets.coingecko.com/coins/images/28919/thumb/7.png?1696527894",
+    "symbol": "ALT",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x1bed97cbc3c24a4fb5c069c6e311a967386131f7": {
+    "assetId": "eip155:1/erc20:0x1bed97cbc3c24a4fb5c069c6e311a967386131f7",
+    "chainId": "eip155:1",
+    "name": "Yearn Ether",
+    "precision": 18,
+    "color": "#D4C1FC",
+    "icon": "https://assets.coingecko.com/coins/images/32220/thumb/yETH-128px.png?1696914909",
+    "symbol": "YETH",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x1beef31946fbbb40b877a72e4ae04a8d1a5cee06": {
+    "assetId": "eip155:1/erc20:0x1beef31946fbbb40b877a72e4ae04a8d1a5cee06",
+    "chainId": "eip155:1",
+    "name": "Parachute on Ethereum",
+    "precision": 18,
+    "color": "#EF5A26",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x1BeEF31946fbbb40B877a72E4ae04a8D1A5Cee06/logo.png",
+    "symbol": "PAR",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x1bf7fd22709733ccd7c45ab27dd02c7ec8e50078": {
+    "assetId": "eip155:1/erc20:0x1bf7fd22709733ccd7c45ab27dd02c7ec8e50078",
+    "chainId": "eip155:1",
+    "name": "Quiztok",
+    "precision": 18,
+    "color": "#348CFC",
+    "icon": "https://assets.coingecko.com/coins/images/8208/thumb/QTCON.png?1696508415",
+    "symbol": "QTCON",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x1c11325ec05500dd587ffe0eeb2d4499b5b91e79": {
+    "assetId": "eip155:1/erc20:0x1c11325ec05500dd587ffe0eeb2d4499b5b91e79",
+    "chainId": "eip155:1",
+    "name": "EcoTool",
+    "precision": 18,
+    "color": "#57248D",
+    "icon": "https://assets.coingecko.com/coins/images/31080/thumb/My_project.png?1696529913",
+    "symbol": "ETO",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x1c3d163219bb74f430411b95d66b72056f366ec1": {
+    "assetId": "eip155:1/erc20:0x1c3d163219bb74f430411b95d66b72056f366ec1",
+    "chainId": "eip155:1",
+    "name": "ENO",
+    "precision": 18,
+    "color": "#5C142C",
+    "icon": "https://assets.coingecko.com/coins/images/26501/thumb/Eno_logo.png?1696525574",
+    "symbol": "ENO",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x1c4853ec0d55e420002c5efabc7ed8e0ba7a4121": {
+    "assetId": "eip155:1/erc20:0x1c4853ec0d55e420002c5efabc7ed8e0ba7a4121",
+    "chainId": "eip155:1",
+    "name": "Kanagawa Nami",
+    "precision": 9,
+    "color": "#5F6C81",
+    "icon": "https://assets.coingecko.com/coins/images/26629/thumb/KANAGAWA_%284%29.png?1696525702",
+    "symbol": "OKINAMI",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x1c48f86ae57291f7686349f12601910bd8d470bb": {
+    "assetId": "eip155:1/erc20:0x1c48f86ae57291f7686349f12601910bd8d470bb",
+    "chainId": "eip155:1",
+    "name": "USDK",
+    "precision": 18,
+    "color": "#0C74F4",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x1c48f86ae57291F7686349F12601910BD8D470bb/logo.png",
+    "symbol": "USDK",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x1c95b093d6c236d3ef7c796fe33f9cc6b8606714": {
+    "assetId": "eip155:1/erc20:0x1c95b093d6c236d3ef7c796fe33f9cc6b8606714",
+    "chainId": "eip155:1",
+    "name": "BOMB",
+    "precision": 0,
+    "color": "#C48A87",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x1C95b093d6C236d3EF7c796fE33f9CC6b8606714/logo.png",
+    "symbol": "BOMB",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x1c98b54d673c026c8286badca3e840aaf72931a3": {
+    "assetId": "eip155:1/erc20:0x1c98b54d673c026c8286badca3e840aaf72931a3",
+    "chainId": "eip155:1",
+    "name": "Stackswap on Ethereum",
+    "precision": 6,
+    "color": "#080808",
+    "icon": "https://assets.coingecko.com/coins/images/29727/thumb/22.png?1696528657",
+    "symbol": "STSW",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x1c9922314ed1415c95b9fd453c3818fd41867d0b": {
+    "assetId": "eip155:1/erc20:0x1c9922314ed1415c95b9fd453c3818fd41867d0b",
+    "chainId": "eip155:1",
+    "name": "Tower on Ethereum",
+    "precision": 18,
+    "color": "#211B21",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x1C9922314ED1415c95b9FD453c3818fd41867d0B/logo.png",
+    "symbol": "TOWER",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x1c9a2d6b33b4826757273d47ebee0e2dddcd978b": {
+    "assetId": "eip155:1/erc20:0x1c9a2d6b33b4826757273d47ebee0e2dddcd978b",
+    "chainId": "eip155:1",
+    "name": "Flux FRAX",
+    "precision": 8,
+    "color": "#070707",
+    "icon": "https://assets.coingecko.com/coins/images/29580/thumb/fFRAX-320.png?1696528519",
+    "symbol": "FFRAX",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x1cc30e2eac975416060ec6fe682041408420d414": {
+    "assetId": "eip155:1/erc20:0x1cc30e2eac975416060ec6fe682041408420d414",
+    "chainId": "eip155:1",
+    "name": "Kollect",
+    "precision": 18,
+    "color": "#AC94E4",
+    "icon": "https://assets.coingecko.com/coins/images/18664/thumb/kol.png?1696518134",
+    "symbol": "KOL",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x1ccf27211e8bf052f6255329ed641b4e94e80603": {
+    "assetId": "eip155:1/erc20:0x1ccf27211e8bf052f6255329ed641b4e94e80603",
+    "chainId": "eip155:1",
+    "name": "Metababy",
+    "precision": 18,
+    "color": "#7D7372",
+    "icon": "https://assets.coingecko.com/coins/images/27175/thumb/7psZaqh0_400x400.jpeg?1696526225",
+    "symbol": "BABY",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x1ce270557c1f68cfb577b856766310bf8b47fd9c": {
+    "assetId": "eip155:1/erc20:0x1ce270557c1f68cfb577b856766310bf8b47fd9c",
+    "chainId": "eip155:1",
+    "name": "MongCoin",
+    "precision": 18,
+    "color": "#7B14F3",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x1ce270557C1f68Cfb577b856766310Bf8B47FD9C/logo.png",
+    "symbol": "MONG",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x1ceb5cb57c4d4e2b2433641b95dd330a33185a44": {
+    "assetId": "eip155:1/erc20:0x1ceb5cb57c4d4e2b2433641b95dd330a33185a44",
+    "chainId": "eip155:1",
+    "name": "Keep3rV1",
+    "precision": 18,
+    "color": "#067CFB",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x1cEB5cB57C4D4E2b2433641b95Dd330A33185A44/logo.png",
+    "symbol": "KP3R",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x1cf4592ebffd730c7dc92c1bdffdfc3b9efcf29a": {
+    "assetId": "eip155:1/erc20:0x1cf4592ebffd730c7dc92c1bdffdfc3b9efcf29a",
+    "chainId": "eip155:1",
+    "name": "Waves",
+    "precision": 18,
+    "color": "#0454FC",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x1cF4592ebfFd730c7dc92c1bdFFDfc3B9EfCf29a/logo.png",
+    "symbol": "WAVES",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x1cfa5641c01406ab8ac350ded7d735ec41298372": {
+    "assetId": "eip155:1/erc20:0x1cfa5641c01406ab8ac350ded7d735ec41298372",
+    "chainId": "eip155:1",
+    "name": "Convertible JPY Token",
+    "precision": 18,
+    "color": "#E7EAE0",
+    "icon": "https://assets.coingecko.com/coins/images/31356/thumb/CJPY_logo.png?1696530173",
+    "symbol": "CJPY",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x1d6405138a335ce5fd7364086334efb3e4f28b59": {
+    "assetId": "eip155:1/erc20:0x1d6405138a335ce5fd7364086334efb3e4f28b59",
+    "chainId": "eip155:1",
+    "name": "ClearCryptos",
+    "precision": 18,
+    "color": "#0C0F0C",
+    "icon": "https://assets.coingecko.com/coins/images/27900/thumb/3e88b61451995da1a5aa572cd4f48e78023e010c0bf984cd5456b2a7bd85f7a5.png?1696526921",
+    "symbol": "CCX",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x1d7ca62f6af49ec66f6680b8606e634e55ef22c1": {
+    "assetId": "eip155:1/erc20:0x1d7ca62f6af49ec66f6680b8606e634e55ef22c1",
+    "chainId": "eip155:1",
+    "name": "Starter xyz on Ethereum",
+    "precision": 18,
+    "color": "#272025",
+    "icon": "https://assets.coingecko.com/coins/images/14301/thumb/logo_poly_sym.png?1696513997",
+    "symbol": "START",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x1d96fd43ee07aa79f8fd003cbdf404fb5ce41ad2": {
+    "assetId": "eip155:1/erc20:0x1d96fd43ee07aa79f8fd003cbdf404fb5ce41ad2",
+    "chainId": "eip155:1",
+    "name": "Qawalla on Ethereum",
+    "precision": 18,
+    "color": "#CDD6D8",
+    "icon": "https://assets.coingecko.com/coins/images/15242/thumb/qwla.png?1696514896",
+    "symbol": "QWLA",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x1da4858ad385cc377165a298cc2ce3fce0c5fd31": {
+    "assetId": "eip155:1/erc20:0x1da4858ad385cc377165a298cc2ce3fce0c5fd31",
+    "chainId": "eip155:1",
+    "name": "CloutContracts on Ethereum",
+    "precision": 0,
+    "color": "#5CE4E4",
+    "icon": "https://assets.coingecko.com/coins/images/19072/thumb/200.png?1696518522",
+    "symbol": "CCS",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x1da87b114f35e1dc91f72bf57fc07a768ad40bb0": {
+    "assetId": "eip155:1/erc20:0x1da87b114f35e1dc91f72bf57fc07a768ad40bb0",
+    "chainId": "eip155:1",
+    "name": "Equalizer on Ethereum",
+    "precision": 18,
+    "color": "#5739FA",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x1Da87b114f35E1DC91F72bF57fc07A768Ad40Bb0/logo.png",
+    "symbol": "EQZ",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x1dd80016e3d4ae146ee2ebb484e8edd92dacc4ce": {
+    "assetId": "eip155:1/erc20:0x1dd80016e3d4ae146ee2ebb484e8edd92dacc4ce",
+    "chainId": "eip155:1",
+    "name": "Lead on Ethereum",
+    "precision": 18,
+    "color": "#641E7C",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x1dD80016e3d4ae146Ee2EBB484e8edD92dacC4ce/logo.png",
+    "symbol": "LEAD",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x1de852cd18323bc5ebda842b8eef46c6e551aa47": {
+    "assetId": "eip155:1/erc20:0x1de852cd18323bc5ebda842b8eef46c6e551aa47",
+    "chainId": "eip155:1",
+    "name": "hiRENGA",
+    "precision": 18,
+    "color": "#EC6D5E",
+    "icon": "https://assets.coingecko.com/coins/images/28999/thumb/hirenga.png?1696527971",
+    "symbol": "HIRENGA",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x1e053d89e08c24aa2ce5c5b4206744dc2d7bd8f5": {
+    "assetId": "eip155:1/erc20:0x1e053d89e08c24aa2ce5c5b4206744dc2d7bd8f5",
+    "chainId": "eip155:1",
+    "name": "ThunderCore",
+    "precision": 18,
+    "color": "#0421D4",
+    "icon": "https://assets.coingecko.com/coins/images/4375/thumb/ThunderCore_Logo_Mark_Gradient_%283%29.png?1696504974",
+    "symbol": "TT",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x1e095cbf663491f15cc1bdb5919e701b27dde90c": {
+    "color": "#FFFFFF",
+    "icon": "https://raw.githubusercontent.com/Idle-Labs/idle-dashboard/master/public/images/tokens/USDC.svg",
+    "name": "Euler USDC Senior Tranche",
+    "precision": 18,
+    "symbol": "AA_eUSDC",
+    "chainId": "eip155:1",
+    "assetId": "eip155:1/erc20:0x1e095cbf663491f15cc1bdb5919e701b27dde90c",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x1e0b2992079b620aa13a7c2e7c88d2e1e18e46e9": {
+    "assetId": "eip155:1/erc20:0x1e0b2992079b620aa13a7c2e7c88d2e1e18e46e9",
+    "chainId": "eip155:1",
+    "name": "KOMPETE",
+    "precision": 10,
+    "color": "#D2D2D2",
+    "icon": "https://assets.coingecko.com/coins/images/24298/thumb/KOMPETE_LOGO.?1696523480",
+    "symbol": "KOMPETE",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x1e18821e69b9faa8e6e75dffe54e7e25754beda0": {
+    "assetId": "eip155:1/erc20:0x1e18821e69b9faa8e6e75dffe54e7e25754beda0",
+    "chainId": "eip155:1",
+    "name": "KIMCHI finance",
+    "precision": 18,
+    "color": "#FBB68A",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x1E18821E69B9FAA8e6e75DFFe54E7E25754beDa0/logo.png",
+    "symbol": "KIMCHI",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x1e2c4fb7ede391d116e6b41cd0608260e8801d59": {
+    "assetId": "eip155:1/erc20:0x1e2c4fb7ede391d116e6b41cd0608260e8801d59",
+    "chainId": "eip155:1",
+    "name": "Backed CSPX Core S P 500 on Ethereum",
+    "precision": 18,
+    "color": "#CCCCD2",
+    "icon": "https://assets.coingecko.com/coins/images/31891/thumb/b-CSPX-200x200.png?1696530702",
+    "symbol": "BCSPX",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x1e2f15302b90edde696593607b6bd444b64e8f02": {
+    "assetId": "eip155:1/erc20:0x1e2f15302b90edde696593607b6bd444b64e8f02",
+    "chainId": "eip155:1",
+    "name": "Shiryo",
+    "precision": 9,
+    "color": "#070B0C",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x1E2F15302B90EddE696593607b6bD444B64e8F02/logo.png",
+    "symbol": "SHIRYO-INU",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x1e3778dd6dbfdc1c5b89f95f7c098b21e80ec4fa": {
+    "assetId": "eip155:1/erc20:0x1e3778dd6dbfdc1c5b89f95f7c098b21e80ec4fa",
+    "chainId": "eip155:1",
+    "name": "Victory Impact",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/32814/thumb/1000084688.png?1699578648",
+    "symbol": "VIC",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x1e4746dc744503b53b4a082cb3607b169a289090": {
+    "assetId": "eip155:1/erc20:0x1e4746dc744503b53b4a082cb3607b169a289090",
+    "chainId": "eip155:1",
+    "name": "IPOR",
+    "precision": 18,
+    "color": "#F49C10",
+    "icon": "https://assets.coingecko.com/coins/images/28373/thumb/IPOR-token-200x200.png?1696527376",
+    "symbol": "IPOR",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x1e4e46b7bf03ece908c88ff7cc4975560010893a": {
+    "assetId": "eip155:1/erc20:0x1e4e46b7bf03ece908c88ff7cc4975560010893a",
+    "chainId": "eip155:1",
+    "name": "Internet of Energy Network on Ethereum",
+    "precision": 18,
+    "color": "#CD864C",
+    "icon": "https://assets.coingecko.com/coins/images/19095/thumb/12799.png?1696518548",
+    "symbol": "IOEN",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x1e4ede388cbc9f4b5c79681b7f94d36a11abebc9": {
+    "assetId": "eip155:1/erc20:0x1e4ede388cbc9f4b5c79681b7f94d36a11abebc9",
+    "chainId": "eip155:1",
+    "name": "X2Y2",
+    "precision": 18,
+    "color": "#2991E4",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x1E4EDE388cbc9F4b5c79681B7f94d36a11ABEBC9/logo.png",
+    "symbol": "X2Y2",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x1e610de0d7acfa1d820024948a91d96c5c9ce6b9": {
+    "assetId": "eip155:1/erc20:0x1e610de0d7acfa1d820024948a91d96c5c9ce6b9",
+    "chainId": "eip155:1",
+    "name": "Flooring Protocol  BoredApeYachtClub",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/32690/thumb/bayctoken.png?1698974036",
+    "symbol": "BAYC",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x1e797ce986c3cff4472f7d38d5c4aba55dfefe40": {
+    "assetId": "eip155:1/erc20:0x1e797ce986c3cff4472f7d38d5c4aba55dfefe40",
+    "chainId": "eip155:1",
+    "name": "BlockCDN",
+    "precision": 15,
+    "color": "#F2F9F8",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x1e797Ce986C3CFF4472F7D38d5C4aba55DfEFE40/logo.png",
+    "symbol": "BCDN",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x1e917e764bc34d3bc313fe8159a6bd9d9ffd450d": {
+    "assetId": "eip155:1/erc20:0x1e917e764bc34d3bc313fe8159a6bd9d9ffd450d",
+    "chainId": "eip155:1",
+    "name": "WEWE",
+    "precision": 18,
+    "color": "#D1AE5B",
+    "icon": "https://assets.coingecko.com/coins/images/30458/thumb/IMG_3939.JPG?1696529345",
+    "symbol": "WEWE",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x1e971b5b21367888239f00da16f0a6b0effecb03": {
+    "assetId": "eip155:1/erc20:0x1e971b5b21367888239f00da16f0a6b0effecb03",
+    "chainId": "eip155:1",
+    "name": "LEEROY JENKINS",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/32774/thumb/IMG_20231106_175636_467.jpg?1699343781",
+    "symbol": "LEEROY",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x1e9d0bb190ac34492aa11b80d28c1c86487a341f": {
+    "assetId": "eip155:1/erc20:0x1e9d0bb190ac34492aa11b80d28c1c86487a341f",
+    "chainId": "eip155:1",
+    "name": "The Neko",
+    "precision": 18,
+    "color": "#DED7D8",
+    "icon": "https://assets.coingecko.com/coins/images/22692/thumb/FL6SU9b5_400x400.jpg?1696522003",
+    "symbol": "NEKO",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x1ea48b9965bb5086f3b468e50ed93888a661fc17": {
+    "assetId": "eip155:1/erc20:0x1ea48b9965bb5086f3b468e50ed93888a661fc17",
+    "chainId": "eip155:1",
+    "name": "Moneta DAO",
+    "precision": 18,
+    "color": "#B82317",
+    "icon": "https://assets.coingecko.com/coins/images/27493/thumb/logo-moneta.png?1696526534",
+    "symbol": "MON",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x1f16d41f9b3db03b462bdd6c92245ee708d1c103": {
+    "assetId": "eip155:1/erc20:0x1f16d41f9b3db03b462bdd6c92245ee708d1c103",
+    "chainId": "eip155:1",
+    "name": "Rangers Protocol on Ethereum",
+    "precision": 18,
+    "color": "#A28572",
+    "icon": "https://assets.coingecko.com/coins/images/18791/thumb/tO8MlqiM_400x400.png?1633421196",
+    "symbol": "RPG",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x1f17d72cbe65df609315df5c4f5f729efbd00ade": {
+    "assetId": "eip155:1/erc20:0x1f17d72cbe65df609315df5c4f5f729efbd00ade",
+    "chainId": "eip155:1",
+    "name": "GYOSHI",
+    "precision": 18,
+    "color": "#DDB9C4",
+    "icon": "https://assets.coingecko.com/coins/images/30002/thumb/99245ad73184347ee7c93bfc4f8ca2c2.png?1696528927",
+    "symbol": "GYOSHI",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x1f19f83fc9a25f3c861260143e36c17706257986": {
+    "assetId": "eip155:1/erc20:0x1f19f83fc9a25f3c861260143e36c17706257986",
+    "chainId": "eip155:1",
+    "name": "DAO Invest on Ethereum",
+    "precision": 18,
+    "color": "#BCBCBC",
+    "icon": "https://assets.coingecko.com/coins/images/17901/thumb/logo-round-200.png?1696517421",
+    "symbol": "VEST",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x1f1f26c966f483997728bed0f9814938b2b5e294": {
+    "assetId": "eip155:1/erc20:0x1f1f26c966f483997728bed0f9814938b2b5e294",
+    "chainId": "eip155:1",
+    "name": "Meowl",
+    "precision": 18,
+    "color": "#F0519B",
+    "icon": "https://assets.coingecko.com/coins/images/31142/thumb/logo_200_200.png?1696529971",
+    "symbol": "MEOWL",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x1f31dd60b84ea2a273cfc56876437e069ae80afd": {
+    "assetId": "eip155:1/erc20:0x1f31dd60b84ea2a273cfc56876437e069ae80afd",
+    "chainId": "eip155:1",
+    "name": "Shinji Inu",
+    "precision": 9,
+    "color": "#5C262F",
+    "icon": "https://assets.coingecko.com/coins/images/22846/thumb/Attachment_1645539736.png?1696522147",
+    "symbol": "SHINJI",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x1f36fb2d91d9951cf58ae4c1956c0b77e224f1e9": {
+    "assetId": "eip155:1/erc20:0x1f36fb2d91d9951cf58ae4c1956c0b77e224f1e9",
+    "chainId": "eip155:1",
+    "name": "VCGamers on Ethereum",
+    "precision": 18,
+    "color": "#F5BC16",
+    "icon": "https://assets.coingecko.com/coins/images/22371/thumb/VCG-Token-Logo-PNG.png?1696521714",
+    "symbol": "VCG",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x1f3f677ecc58f6a1f9e2cf410df4776a8546b5de": {
+    "assetId": "eip155:1/erc20:0x1f3f677ecc58f6a1f9e2cf410df4776a8546b5de",
+    "chainId": "eip155:1",
+    "name": "VNDC on Ethereum",
+    "precision": 0,
+    "color": "#E4BB63",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x1F3F677Ecc58F6A1F9e2CF410dF4776a8546b5DE/logo.png",
+    "symbol": "VNDC",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x1f4cb968b76931c494ff92ed80ccb169ad641cb1": {
+    "assetId": "eip155:1/erc20:0x1f4cb968b76931c494ff92ed80ccb169ad641cb1",
+    "chainId": "eip155:1",
+    "name": "Structure Finance",
+    "precision": 18,
+    "color": "#09090A",
+    "icon": "https://assets.coingecko.com/coins/images/18409/thumb/v4RAXKdq_400x400_%281%29.jpg?1696517899",
+    "symbol": "STF",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c": {
+    "assetId": "eip155:1/erc20:0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c",
+    "chainId": "eip155:1",
+    "name": "Bancor Network",
+    "precision": 18,
+    "color": "#0C0C2B",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x1F573D6Fb3F13d689FF844B4cE37794d79a7FF1C/logo.png",
+    "symbol": "BNT",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x1f8a626883d7724dbd59ef51cbd4bf1cf2016d13": {
+    "assetId": "eip155:1/erc20:0x1f8a626883d7724dbd59ef51cbd4bf1cf2016d13",
+    "chainId": "eip155:1",
+    "name": "Jigstack",
+    "precision": 18,
+    "color": "#5C54D4",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x1F8A626883d7724DBd59eF51CBD4BF1Cf2016D13/logo.png",
+    "symbol": "STAK",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x1f9840a85d5af5bf1d1762f925bdaddc4201f984": {
+    "assetId": "eip155:1/erc20:0x1f9840a85d5af5bf1d1762f925bdaddc4201f984",
+    "chainId": "eip155:1",
+    "name": "Uniswap on Ethereum",
+    "precision": 18,
+    "color": "#FCECF4",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x1f9840a85d5aF5bf1D1762F925BDADdC4201F984/logo.png",
+    "symbol": "UNI",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x1fbd3df007eb8a7477a1eab2c63483dcc24effd6": {
+    "assetId": "eip155:1/erc20:0x1fbd3df007eb8a7477a1eab2c63483dcc24effd6",
+    "chainId": "eip155:1",
+    "name": "Scaleswap on Ethereum",
+    "precision": 18,
+    "color": "#E28E3F",
+    "icon": "https://assets.coingecko.com/coins/images/16360/thumb/thumbnail_1170823958_vertical_logo_lateral_radiance.png?1696515959",
+    "symbol": "SCA",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x1fc5ef0337aea85c5f9198853a6e3a579a7a6987": {
+    "assetId": "eip155:1/erc20:0x1fc5ef0337aea85c5f9198853a6e3a579a7a6987",
+    "chainId": "eip155:1",
+    "name": "ReapChain",
+    "precision": 18,
+    "color": "#E6EAEA",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x1fc5EF0337AEA85C5f9198853a6E3A579a7A6987/logo.png",
+    "symbol": "REAP",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x1fcdce58959f536621d76f5b7ffb955baa5a672f": {
+    "assetId": "eip155:1/erc20:0x1fcdce58959f536621d76f5b7ffb955baa5a672f",
+    "chainId": "eip155:1",
+    "name": "ForTube on Ethereum",
+    "precision": 18,
+    "color": "#3920B4",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x1FCdcE58959f536621d76f5b7FfB955baa5A672F/logo.png",
+    "symbol": "FOR",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x1fe24f25b1cf609b9c4e7e12d802e3640dfa5e43": {
+    "assetId": "eip155:1/erc20:0x1fe24f25b1cf609b9c4e7e12d802e3640dfa5e43",
+    "chainId": "eip155:1",
+    "name": "Chain Guardians on Ethereum",
+    "precision": 18,
+    "color": "#44C0CF",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x1fE24F25b1Cf609B9c4e7E12D802e3640dFA5e43/logo.png",
+    "symbol": "CGG",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x1fee5588cb1de19c70b6ad5399152d8c643fae7b": {
+    "assetId": "eip155:1/erc20:0x1fee5588cb1de19c70b6ad5399152d8c643fae7b",
+    "chainId": "eip155:1",
+    "name": "Phun Token",
+    "precision": 18,
+    "color": "#F6ECF4",
+    "icon": "https://assets.coingecko.com/coins/images/24773/thumb/2q6YoWkb_400x400.jpg?1696523934",
+    "symbol": "PHTK",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x2001f2a0cf801ecfda622f6c28fb6e10d803d969": {
+    "assetId": "eip155:1/erc20:0x2001f2a0cf801ecfda622f6c28fb6e10d803d969",
+    "chainId": "eip155:1",
+    "name": "CoinLoan",
+    "precision": 8,
+    "color": "#2C84EC",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x2001f2A0Cf801EcFda622f6C28fb6E10d803D969/logo.png",
+    "symbol": "CLT",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x2008e3057bd734e10ad13c9eae45ff132abc1722": {
+    "assetId": "eip155:1/erc20:0x2008e3057bd734e10ad13c9eae45ff132abc1722",
+    "chainId": "eip155:1",
+    "name": "Zebi",
+    "precision": 8,
+    "color": "#049DEB",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x2008e3057BD734e10AD13c9EAe45Ff132aBc1722/logo.png",
+    "symbol": "ZCO",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x201332bd45c8628d814f870bfb584b385a7c351e": {
+    "assetId": "eip155:1/erc20:0x201332bd45c8628d814f870bfb584b385a7c351e",
+    "chainId": "eip155:1",
+    "name": "Astra Protocol",
+    "precision": 18,
+    "color": "#74FC9C",
+    "icon": "https://assets.coingecko.com/coins/images/24083/thumb/Astra_%281%29_%281%29.png?1696523277",
+    "symbol": "ASTRA",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x201b5b64438843553e3c3671810ae671c93c685c": {
+    "assetId": "eip155:1/erc20:0x201b5b64438843553e3c3671810ae671c93c685c",
+    "chainId": "eip155:1",
+    "name": "Megabot",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/32796/thumb/Megabot.jpg?1699445692",
+    "symbol": "MEGABOT",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x2047ab3072b52561596ce5e0131bdbb7c848538d": {
+    "assetId": "eip155:1/erc20:0x2047ab3072b52561596ce5e0131bdbb7c848538d",
+    "chainId": "eip155:1",
+    "name": "Bored Token",
+    "precision": 9,
+    "color": "#090C0E",
+    "icon": "https://assets.coingecko.com/coins/images/28515/thumb/Bored.png?1696527508",
+    "symbol": "BORED",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x20561172f791f915323241e885b4f7d5187c36e1": {
+    "assetId": "eip155:1/erc20:0x20561172f791f915323241e885b4f7d5187c36e1",
+    "chainId": "eip155:1",
+    "name": "Calcium",
+    "precision": 18,
+    "color": "#3F8CC2",
+    "icon": "https://assets.coingecko.com/coins/images/31971/thumb/callogo.jpg?1696530776",
+    "symbol": "CAL",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x205ed31c867bf715e4182137af95afe9177cd8e7": {
+    "assetId": "eip155:1/erc20:0x205ed31c867bf715e4182137af95afe9177cd8e7",
+    "chainId": "eip155:1",
+    "name": "DEFY on Ethereum",
+    "precision": 18,
+    "color": "#20372B",
+    "icon": "https://assets.coingecko.com/coins/images/26877/thumb/8ybr83fb0ca45cm1yvrcaclwbvcp.jpeg?1696525936",
+    "symbol": "DEFY",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x207e14389183a94343942de7afbc607f57460618": {
+    "assetId": "eip155:1/erc20:0x207e14389183a94343942de7afbc607f57460618",
+    "chainId": "eip155:1",
+    "name": "AngelBlock",
+    "precision": 18,
+    "color": "#482BB5",
+    "icon": "https://assets.coingecko.com/coins/images/25058/thumb/Tholos_circle_gradient_200x200.png?1696524208",
+    "symbol": "THOL",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x208bcf9cd1d694d1d3c630362e517940e3724d80": {
+    "assetId": "eip155:1/erc20:0x208bcf9cd1d694d1d3c630362e517940e3724d80",
+    "chainId": "eip155:1",
+    "name": "ORACLE",
+    "precision": 9,
+    "color": "#C4C4C4",
+    "icon": "https://assets.coingecko.com/coins/images/32234/thumb/qlasify_%281%29.jpg?1696936966",
+    "symbol": "ORACLE",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x20910e5b5f087f6439dfcb0dda4e27d1014ac2b8": {
+    "assetId": "eip155:1/erc20:0x20910e5b5f087f6439dfcb0dda4e27d1014ac2b8",
+    "chainId": "eip155:1",
+    "name": "BananaTok",
+    "precision": 18,
+    "color": "#F0C832",
+    "icon": "https://assets.coingecko.com/coins/images/10289/thumb/sMCxdYBa_400x400.jpg?1696510295",
+    "symbol": "BNA",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x20945ca1df56d237fd40036d47e866c7dccd2114": {
+    "assetId": "eip155:1/erc20:0x20945ca1df56d237fd40036d47e866c7dccd2114",
+    "chainId": "eip155:1",
+    "name": "Nsure Network",
+    "precision": 18,
+    "color": "#54B5F5",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x20945cA1df56D237fD40036d47E866C7DcCD2114/logo.png",
+    "symbol": "NSURE",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x20a8cec5fffea65be7122bcab2ffe32ed4ebf03a": {
+    "assetId": "eip155:1/erc20:0x20a8cec5fffea65be7122bcab2ffe32ed4ebf03a",
+    "chainId": "eip155:1",
+    "name": "DinoX on Ethereum",
+    "precision": 18,
+    "color": "#DE7C04",
+    "icon": "https://assets.coingecko.com/coins/images/17321/thumb/asset_icon_dnxc_200.png?1696516875",
+    "symbol": "DNXC",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x20b3b07e9c0e37815e2892ab09496559f57c3603": {
+    "assetId": "eip155:1/erc20:0x20b3b07e9c0e37815e2892ab09496559f57c3603",
+    "chainId": "eip155:1",
+    "name": "USDV on Ethereum",
+    "precision": 18,
+    "color": "#5C9CE4",
+    "icon": "https://assets.coingecko.com/coins/images/31806/thumb/200x200.png?1696530621",
+    "symbol": "USDV",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x20bc832ca081b91433ff6c17f85701b6e92486c5": {
+    "assetId": "eip155:1/erc20:0x20bc832ca081b91433ff6c17f85701b6e92486c5",
+    "chainId": "eip155:1",
+    "name": "rETH2",
+    "precision": 18,
+    "color": "#E35453",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x20BC832ca081b91433ff6c17f85701B6e92486c5/logo.png",
+    "symbol": "RETH2",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x20c36f062a31865bed8a5b1e512d9a1a20aa333a": {
+    "assetId": "eip155:1/erc20:0x20c36f062a31865bed8a5b1e512d9a1a20aa333a",
+    "chainId": "eip155:1",
+    "name": "DefiDollar DAO on Ethereum",
+    "precision": 18,
+    "color": "#1F1810",
+    "icon": "https://assets.coingecko.com/coins/images/12959/thumb/DFD.jpg?1696512747",
+    "symbol": "DFD",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x20c3fa331a385b63ee39137e99d0cf2db142fce1": {
+    "assetId": "eip155:1/erc20:0x20c3fa331a385b63ee39137e99d0cf2db142fce1",
+    "chainId": "eip155:1",
+    "name": "Shila Inu",
+    "precision": 18,
+    "color": "#BF7995",
+    "icon": "https://assets.coingecko.com/coins/images/28847/thumb/rsz_logo1.png?1696527823",
+    "symbol": "SHIL",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x20c64dee8fda5269a78f2d5bdba861ca1d83df7a": {
+    "assetId": "eip155:1/erc20:0x20c64dee8fda5269a78f2d5bdba861ca1d83df7a",
+    "chainId": "eip155:1",
+    "name": "Backed HIGH   High Yield Corp Bond on Ethereum",
+    "precision": 18,
+    "color": "#474C57",
+    "icon": "https://assets.coingecko.com/coins/images/31868/thumb/b-HIGH-200x200.png?1696530680",
+    "symbol": "BHIGH",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x20cd2e7ec8f5d8b337fe46a4f565ccef1561b9a9": {
+    "assetId": "eip155:1/erc20:0x20cd2e7ec8f5d8b337fe46a4f565ccef1561b9a9",
+    "chainId": "eip155:1",
+    "name": "ESG",
+    "precision": 18,
+    "color": "#18B62A",
+    "icon": "https://assets.coingecko.com/coins/images/24932/thumb/esg.png?1696524088",
+    "symbol": "ESG",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x20d4db1946859e2adb0e5acc2eac58047ad41395": {
+    "assetId": "eip155:1/erc20:0x20d4db1946859e2adb0e5acc2eac58047ad41395",
+    "chainId": "eip155:1",
+    "name": "Moon DAO",
+    "precision": 18,
+    "color": "#AE2F41",
+    "icon": "https://assets.coingecko.com/coins/images/22905/thumb/cVWTHdA.png?1696522202",
+    "symbol": "MOONEY",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x20d60c6eb195868d4643f2c9b0809e4de6cc003d": {
+    "assetId": "eip155:1/erc20:0x20d60c6eb195868d4643f2c9b0809e4de6cc003d",
+    "chainId": "eip155:1",
+    "name": "PlayNity on Ethereum",
+    "precision": 6,
+    "color": "#128FCF",
+    "icon": "https://assets.coingecko.com/coins/images/21479/thumb/ply.png?1696520840",
+    "symbol": "PLY",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x20e7125677311fca903a8897042b9983f22ea295": {
+    "assetId": "eip155:1/erc20:0x20e7125677311fca903a8897042b9983f22ea295",
+    "chainId": "eip155:1",
+    "name": "Freeway on Ethereum",
+    "precision": 18,
+    "color": "#242494",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x20e7125677311Fca903A8897042b9983f22Ea295/logo.png",
+    "symbol": "FWT",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x2105465ab589b74747b01afdaf606d058fb082be": {
+    "assetId": "eip155:1/erc20:0x2105465ab589b74747b01afdaf606d058fb082be",
+    "chainId": "eip155:1",
+    "name": "DEV SMASHED HIS KEYBOARD",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/32630/thumb/DEV_SMASHED_HIS_KEYBOARD.png?1698824159",
+    "symbol": "HIXOKDKEKJCJDKSICND",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x21381e026ad6d8266244f2a583b35f9e4413fa2a": {
+    "assetId": "eip155:1/erc20:0x21381e026ad6d8266244f2a583b35f9e4413fa2a",
+    "chainId": "eip155:1",
+    "name": "Formation FI on Ethereum",
+    "precision": 18,
+    "color": "#040404",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x21381e026Ad6d8266244f2A583b35F9E4413FA2a/logo.png",
+    "symbol": "FORM",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x213c53c96a01a89e6dcc5683cf16473203e17513": {
+    "assetId": "eip155:1/erc20:0x213c53c96a01a89e6dcc5683cf16473203e17513",
+    "chainId": "eip155:1",
+    "name": "Defi Shopping Stake",
+    "precision": 18,
+    "color": "#3F464E",
+    "icon": "https://assets.coingecko.com/coins/images/12602/thumb/DSS.png?1696512411",
+    "symbol": "DSS",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x21413c119b0c11c5d96ae1bd328917bc5c8ed67e": {
+    "assetId": "eip155:1/erc20:0x21413c119b0c11c5d96ae1bd328917bc5c8ed67e",
+    "chainId": "eip155:1",
+    "name": "GenomesDAO on Ethereum",
+    "precision": 18,
+    "color": "#E8DFF0",
+    "icon": "https://assets.coingecko.com/coins/images/20807/thumb/1637683704200x200.png?1696520200",
+    "symbol": "GENE",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x2162f572b25f7358db9376ab58a947a4e45cede1": {
+    "assetId": "eip155:1/erc20:0x2162f572b25f7358db9376ab58a947a4e45cede1",
+    "chainId": "eip155:1",
+    "name": "LABEL Foundation on Ethereum",
+    "precision": 18,
+    "color": "#DF505A",
+    "icon": "https://assets.coingecko.com/coins/images/19202/thumb/tele_profile_%EB%8C%80%EC%A7%80_1_-_%282%29.png?1696518649",
+    "symbol": "LBL",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x217ddead61a42369a266f1fb754eb5d3ebadc88a": {
+    "assetId": "eip155:1/erc20:0x217ddead61a42369a266f1fb754eb5d3ebadc88a",
+    "chainId": "eip155:1",
+    "name": "Don key on Ethereum",
+    "precision": 18,
+    "color": "#9C8E2B",
+    "icon": "https://assets.coingecko.com/coins/images/15482/thumb/donkey_logo.jpg?1696515127",
+    "symbol": "DON",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x21b8bfbbefc9e2b9a994871ecd742a5132b98aed": {
+    "assetId": "eip155:1/erc20:0x21b8bfbbefc9e2b9a994871ecd742a5132b98aed",
+    "chainId": "eip155:1",
+    "name": "Crypto Real Estate",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/29387/thumb/cre-logo-200.png?1696528333",
+    "symbol": "CRE",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x21bfbda47a0b4b5b1248c767ee49f7caa9b23697": {
+    "assetId": "eip155:1/erc20:0x21bfbda47a0b4b5b1248c767ee49f7caa9b23697",
+    "chainId": "eip155:1",
+    "name": "Ovr on Ethereum",
+    "precision": 18,
+    "color": "#A850A1",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x21BfBDa47A0B4B5b1248c767Ee49F7caA9B23697/logo.png",
+    "symbol": "OVR",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x21d5678a62dfe63a47062469ebb2fac2817d8832": {
+    "assetId": "eip155:1/erc20:0x21d5678a62dfe63a47062469ebb2fac2817d8832",
+    "chainId": "eip155:1",
+    "name": "YOLOCash",
+    "precision": 8,
+    "color": "#F7BD11",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x21d5678A62DFe63a47062469Ebb2fAc2817D8832/logo.png",
+    "symbol": "YLC",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x21ead867c8c5181854f6f8ce71f75b173d2bc16a": {
+    "assetId": "eip155:1/erc20:0x21ead867c8c5181854f6f8ce71f75b173d2bc16a",
+    "chainId": "eip155:1",
+    "name": "LSDx Pool",
+    "precision": 18,
+    "color": "#545E7D",
+    "icon": "https://assets.coingecko.com/coins/images/29780/thumb/ethx.png?1696528710",
+    "symbol": "ETHX",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x21f15966e07a10554c364b988e91dab01d32794a": {
+    "assetId": "eip155:1/erc20:0x21f15966e07a10554c364b988e91dab01d32794a",
+    "chainId": "eip155:1",
+    "name": "SmartMesh",
+    "precision": 18,
+    "color": "#282828",
+    "icon": "https://assets.coingecko.com/coins/images/1346/thumb/smartmesh.png?1696502406",
+    "symbol": "SMT",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x220b71671b649c03714da9c621285943f3cbcdc6": {
+    "assetId": "eip155:1/erc20:0x220b71671b649c03714da9c621285943f3cbcdc6",
+    "chainId": "eip155:1",
+    "name": "TosDis on Ethereum",
+    "precision": 18,
+    "color": "#1CBCCC",
+    "icon": "https://assets.coingecko.com/coins/images/13745/thumb/Tosdis-black.png?1696513488",
+    "symbol": "DIS",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x221657776846890989a759ba2973e427dff5c9bb": {
+    "assetId": "eip155:1/erc20:0x221657776846890989a759ba2973e427dff5c9bb",
+    "chainId": "eip155:1",
+    "name": "Augur",
+    "precision": 18,
+    "color": "#0C0C24",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x221657776846890989a759BA2973e427DfF5C9bB/logo.png",
+    "symbol": "REP",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x2217e5921b7edfb4bb193a6228459974010d2198": {
+    "assetId": "eip155:1/erc20:0x2217e5921b7edfb4bb193a6228459974010d2198",
+    "chainId": "eip155:1",
+    "name": "Qmall on Ethereum",
+    "precision": 18,
+    "color": "#382D39",
+    "icon": "https://assets.coingecko.com/coins/images/23630/thumb/tjVN6bQ5_400x400.jpg?1696522834",
+    "symbol": "QMALL",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x2223bf1d7c19ef7c06dab88938ec7b85952ccd89": {
+    "assetId": "eip155:1/erc20:0x2223bf1d7c19ef7c06dab88938ec7b85952ccd89",
+    "chainId": "eip155:1",
+    "name": "Kryxivia Game",
+    "precision": 18,
+    "color": "#F4D4D8",
+    "icon": "https://assets.coingecko.com/coins/images/21225/thumb/kxa.png?1696520599",
+    "symbol": "KXA",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x223028738503838e89fc5fd5b1a42f1d024d9600": {
+    "assetId": "eip155:1/erc20:0x223028738503838e89fc5fd5b1a42f1d024d9600",
+    "chainId": "eip155:1",
+    "name": "DegenInsure",
+    "precision": 18,
+    "color": "#FCFCFC",
+    "icon": "https://assets.coingecko.com/coins/images/32185/thumb/Frame_12_%282%29.png?1696756306",
+    "symbol": "DGNS",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x2260fac5e5542a773aa44fbcfedf7c193bc2c599": {
+    "assetId": "eip155:1/erc20:0x2260fac5e5542a773aa44fbcfedf7c193bc2c599",
+    "chainId": "eip155:1",
+    "name": "Wrapped Bitcoin on Ethereum",
+    "precision": 8,
+    "color": "#87868F",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x2260FAC5E5542a773Aa44fBCfeDf7C193bc2C599/logo.png",
+    "symbol": "WBTC",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x226bb599a12c826476e3a771454697ea52e9e220": {
+    "assetId": "eip155:1/erc20:0x226bb599a12c826476e3a771454697ea52e9e220",
+    "chainId": "eip155:1",
+    "name": "Propy",
+    "precision": 8,
+    "color": "#040404",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x226bb599a12C826476e3A771454697EA52E9E220/logo.png",
+    "symbol": "PRO",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x226d6d842d49b4d757bef1632053a198d5d9c8aa": {
+    "assetId": "eip155:1/erc20:0x226d6d842d49b4d757bef1632053a198d5d9c8aa",
+    "chainId": "eip155:1",
+    "name": "Block Browser",
+    "precision": 18,
+    "color": "#1F1D26",
+    "icon": "https://assets.coingecko.com/coins/images/31538/thumb/photo_2023-08-29_01-46-11.jpg?1696530347",
+    "symbol": "BLOCK",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x226f7b842e0f0120b7e194d05432b3fd14773a9d": {
+    "assetId": "eip155:1/erc20:0x226f7b842e0f0120b7e194d05432b3fd14773a9d",
+    "chainId": "eip155:1",
+    "name": "UNION Protocol Governance",
+    "precision": 18,
+    "color": "#7464FC",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x226f7b842E0F0120b7E194D05432b3fd14773a9D/logo.png",
+    "symbol": "UNN",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x227c7df69d3ed1ae7574a1a7685fded90292eb48": {
+    "assetId": "eip155:1/erc20:0x227c7df69d3ed1ae7574a1a7685fded90292eb48",
+    "chainId": "eip155:1",
+    "name": "Milady Vault  NFTX ",
+    "precision": 18,
+    "color": "#3F403F",
+    "icon": "https://assets.coingecko.com/coins/images/26540/thumb/256x256.png?1696525614",
+    "symbol": "MILADY",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x228ba514309ffdf03a81a205a6d040e429d6e80c": {
+    "assetId": "eip155:1/erc20:0x228ba514309ffdf03a81a205a6d040e429d6e80c",
+    "chainId": "eip155:1",
+    "name": "Global Social Chain",
+    "precision": 18,
+    "color": "#FC0463",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x228ba514309FFDF03A81a205a6D040E429d6E80C/logo.png",
+    "symbol": "GSC",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x22987407fd1fc5a971e3fda3b3e74c88666cda91": {
+    "assetId": "eip155:1/erc20:0x22987407fd1fc5a971e3fda3b3e74c88666cda91",
+    "chainId": "eip155:1",
+    "name": "Smart Reward Token",
+    "precision": 18,
+    "color": "#141414",
+    "icon": "https://assets.coingecko.com/coins/images/25035/thumb/me-44EyS_400x400.jpg?1696524187",
+    "symbol": "SRT",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x22b48e1f20043d1db5f2a11cbf1d520a4f20b198": {
+    "assetId": "eip155:1/erc20:0x22b48e1f20043d1db5f2a11cbf1d520a4f20b198",
+    "chainId": "eip155:1",
+    "name": "Okuru",
+    "precision": 18,
+    "color": "#D4D4D4",
+    "icon": "https://assets.coingecko.com/coins/images/25473/thumb/xot.png?1696524607",
+    "symbol": "XOT",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x22b6c31c2beb8f2d0d5373146eed41ab9ede3caf": {
+    "assetId": "eip155:1/erc20:0x22b6c31c2beb8f2d0d5373146eed41ab9ede3caf",
+    "chainId": "eip155:1",
+    "name": "cocktailbar finance",
+    "precision": 8,
+    "color": "#063944",
+    "icon": "https://assets.coingecko.com/coins/images/13121/thumb/Cocktail_Bar_logo_%281%29_%281%29.png?1696512909",
+    "symbol": "COC",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x22c5543d1a35178cb03b33f929a959145e538532": {
+    "assetId": "eip155:1/erc20:0x22c5543d1a35178cb03b33f929a959145e538532",
+    "chainId": "eip155:1",
+    "name": "The Wasted Lands on Ethereum",
+    "precision": 18,
+    "color": "#CA9F62",
+    "icon": "https://assets.coingecko.com/coins/images/24273/thumb/Coin_WAL_%281%29.png?1696523456",
+    "symbol": "WAL",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x230f5ed78a45452f726365b8ad1d6866f5faa68f": {
+    "assetId": "eip155:1/erc20:0x230f5ed78a45452f726365b8ad1d6866f5faa68f",
+    "chainId": "eip155:1",
+    "name": "Cryptoforce",
+    "precision": 9,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/32855/thumb/IMG_20231108_221331_196.png?1699665059",
+    "symbol": "COF",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x232fb065d9d24c34708eedbf03724f2e95abe768": {
+    "assetId": "eip155:1/erc20:0x232fb065d9d24c34708eedbf03724f2e95abe768",
+    "chainId": "eip155:1",
+    "name": "Sheesha Finance  ERC20 ",
+    "precision": 18,
+    "color": "#6A84D2",
+    "icon": "https://assets.coingecko.com/coins/images/23053/thumb/MLBmh4z0.png?1696522345",
+    "symbol": "SHEESHA",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x23352036e911a22cfc692b5e2e196692658aded9": {
+    "assetId": "eip155:1/erc20:0x23352036e911a22cfc692b5e2e196692658aded9",
+    "chainId": "eip155:1",
+    "name": "Friendz",
+    "precision": 18,
+    "color": "#61E4D4",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x23352036E911A22Cfc692B5E2E196692658ADED9/logo.png",
+    "symbol": "FDZ",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x2341dd0a96a0dab62aa1efb93d59ff7f3bdb8932": {
+    "assetId": "eip155:1/erc20:0x2341dd0a96a0dab62aa1efb93d59ff7f3bdb8932",
+    "chainId": "eip155:1",
+    "name": "ProStarter",
+    "precision": 18,
+    "color": "#B0B7B7",
+    "icon": "https://assets.coingecko.com/coins/images/15259/thumb/rpot.PNG?1696514912",
+    "symbol": "PROT",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x235c8ee913d93c68d2902a8e0b5a643755705726": {
+    "assetId": "eip155:1/erc20:0x235c8ee913d93c68d2902a8e0b5a643755705726",
+    "chainId": "eip155:1",
+    "name": "tehBag",
+    "precision": 18,
+    "color": "#0F7F39",
+    "icon": "https://assets.coingecko.com/coins/images/28950/thumb/tehBag-Logo.png?1696527923",
+    "symbol": "BAG",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x2365a4890ed8965e564b7e2d27c38ba67fec4c6f": {
+    "assetId": "eip155:1/erc20:0x2365a4890ed8965e564b7e2d27c38ba67fec4c6f",
+    "chainId": "eip155:1",
+    "name": "Aave AMM UniWBTCUSDC",
+    "precision": 18,
+    "color": "#F4EFF1",
+    "icon": "https://assets.coingecko.com/coins/images/17255/thumb/aAmmUniWBTCUSDC.png?1696516811",
+    "symbol": "AAMMUNIWBTCUSDC",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x2370f9d504c7a6e775bf6e14b3f12846b594cd53": {
+    "assetId": "eip155:1/erc20:0x2370f9d504c7a6e775bf6e14b3f12846b594cd53",
+    "chainId": "eip155:1",
+    "name": "JPY Coin v1 on Ethereum",
+    "precision": 18,
+    "color": "#C9D2E8",
+    "icon": "https://assets.coingecko.com/coins/images/17277/thumb/WoZ8rruL_400x400.png?1696516831",
+    "symbol": "JPYC",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x23878914efe38d27c4d67ab83ed1b93a74d4086a": {
+    "assetId": "eip155:1/erc20:0x23878914efe38d27c4d67ab83ed1b93a74d4086a",
+    "chainId": "eip155:1",
+    "name": "Aave v3 USDT on Ethereum",
+    "precision": 6,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/32884/thumb/USDT.PNG?1699768611",
+    "symbol": "AUSDT",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x23894dc9da6c94ecb439911caf7d337746575a72": {
+    "assetId": "eip155:1/erc20:0x23894dc9da6c94ecb439911caf7d337746575a72",
+    "chainId": "eip155:1",
+    "name": "Geojam",
+    "precision": 18,
+    "color": "#241C68",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x23894DC9da6c94ECb439911cAF7d337746575A72/logo.png",
+    "symbol": "JAM",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x238a1fcc2f65ed50c1e1797cf5857cba3e82a55b": {
+    "assetId": "eip155:1/erc20:0x238a1fcc2f65ed50c1e1797cf5857cba3e82a55b",
+    "chainId": "eip155:1",
+    "name": "Moeta",
+    "precision": 9,
+    "color": "#D65409",
+    "icon": "https://assets.coingecko.com/coins/images/29245/thumb/photo_2023-05-30_21-31-25.jpg?1696528201",
+    "symbol": "MOETA",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x238cefec182679c27a3035713416fa0a8198b302": {
+    "assetId": "eip155:1/erc20:0x238cefec182679c27a3035713416fa0a8198b302",
+    "chainId": "eip155:1",
+    "name": "GoodMeme",
+    "precision": 18,
+    "color": "#D9D477",
+    "icon": "https://assets.coingecko.com/coins/images/30325/thumb/gmeme200smol.png?1696529226",
+    "symbol": "GMEME",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x23b608675a2b2fb1890d3abbd85c5775c51691d5": {
+    "assetId": "eip155:1/erc20:0x23b608675a2b2fb1890d3abbd85c5775c51691d5",
+    "chainId": "eip155:1",
+    "name": "Unisocks",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x23B608675a2B2fB1890d3ABBd85c5775c51691d5/logo.png",
+    "symbol": "SOCKS",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x23da77203eead71e72d7326654c431ef563567a4": {
+    "assetId": "eip155:1/erc20:0x23da77203eead71e72d7326654c431ef563567a4",
+    "chainId": "eip155:1",
+    "name": "Amber Phantom Butterfly",
+    "precision": 18,
+    "color": "#C07F32",
+    "icon": "https://assets.coingecko.com/coins/images/31898/thumb/20230922_004931.png?1696530709",
+    "symbol": "APB",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x23dc3f6859e122b25b2cd5f3cf2335310b0f2b77": {
+    "assetId": "eip155:1/erc20:0x23dc3f6859e122b25b2cd5f3cf2335310b0f2b77",
+    "chainId": "eip155:1",
+    "name": "DeSME",
+    "precision": 5,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/33187/thumb/Logo-%28PNG%29%28200%29.png?1700954161",
+    "symbol": "DESME",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x23ddbd36547d43627afa9b42d4e9fb0515f48b09": {
+    "assetId": "eip155:1/erc20:0x23ddbd36547d43627afa9b42d4e9fb0515f48b09",
+    "chainId": "eip155:1",
+    "name": "hiBEANZ",
+    "precision": 18,
+    "color": "#E8B6BC",
+    "icon": "https://assets.coingecko.com/coins/images/29281/thumb/hibeanz.png?1696528234",
+    "symbol": "HIBEANZ",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x24249b5a869a445c9b0ce269a08d73c618df9d21": {
+    "assetId": "eip155:1/erc20:0x24249b5a869a445c9b0ce269a08d73c618df9d21",
+    "chainId": "eip155:1",
+    "name": "HarryPotterTrumpHomerSimpson777Inu",
+    "precision": 8,
+    "color": "#130C0F",
+    "icon": "https://assets.coingecko.com/coins/images/31320/thumb/hp777_%281%29.jpg?1696530139",
+    "symbol": "ETHEREUM",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x242914f264d44e4c5ead31092ec133dcb6c4d73f": {
+    "assetId": "eip155:1/erc20:0x242914f264d44e4c5ead31092ec133dcb6c4d73f",
+    "chainId": "eip155:1",
+    "name": "Share Friend",
+    "precision": 18,
+    "color": "#D5BCE6",
+    "icon": "https://assets.coingecko.com/coins/images/32407/thumb/photo_2023-10-17_08-34-30.jpg?1698057000",
+    "symbol": "SFRIEND",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x243cacb4d5ff6814ad668c3e225246efa886ad5a": {
+    "assetId": "eip155:1/erc20:0x243cacb4d5ff6814ad668c3e225246efa886ad5a",
+    "chainId": "eip155:1",
+    "name": "Shina Inu",
+    "precision": 18,
+    "color": "#F6D1CF",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x243cACb4D5fF6814AD668C3e225246efA886AD5a/logo.png",
+    "symbol": "SHI",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x244517dc59943e8cdfbd424bdb3262c5f04a1387": {
+    "assetId": "eip155:1/erc20:0x244517dc59943e8cdfbd424bdb3262c5f04a1387",
+    "chainId": "eip155:1",
+    "name": "Fluid DAI",
+    "precision": 6,
+    "color": "#F6B225",
+    "icon": "https://assets.coingecko.com/coins/images/28473/thumb/fDAI-200x200.png?1696527467",
+    "symbol": "FDAI",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x244748587f145c0571e92e85429d711d1b4cc43a": {
+    "assetId": "eip155:1/erc20:0x244748587f145c0571e92e85429d711d1b4cc43a",
+    "chainId": "eip155:1",
+    "name": "Chooky",
+    "precision": 18,
+    "color": "#1F3B3C",
+    "icon": "https://assets.coingecko.com/coins/images/31833/thumb/0kRMNr2U_400x400.jpg?1696530645",
+    "symbol": "CHOO",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x244b36af168cc3b3a24b1e6ade3a90817cf07d22": {
+    "assetId": "eip155:1/erc20:0x244b36af168cc3b3a24b1e6ade3a90817cf07d22",
+    "chainId": "eip155:1",
+    "name": "Copybot",
+    "precision": 18,
+    "color": "#D0DEFC",
+    "icon": "https://assets.coingecko.com/coins/images/32086/thumb/Copybot.png?1696530884",
+    "symbol": "COPYBOT",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x244b797d622d4dee8b188b03546acaabd0cf91a0": {
+    "assetId": "eip155:1/erc20:0x244b797d622d4dee8b188b03546acaabd0cf91a0",
+    "chainId": "eip155:1",
+    "name": "FourCoin",
+    "precision": 18,
+    "color": "#121212",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x244b797d622D4DEe8b188b03546ACAAbD0Cf91A0/logo.png",
+    "symbol": "FOUR",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x246908bff0b1ba6ecadcf57fb94f6ae2fcd43a77": {
+    "assetId": "eip155:1/erc20:0x246908bff0b1ba6ecadcf57fb94f6ae2fcd43a77",
+    "chainId": "eip155:1",
+    "name": "Divi",
+    "precision": 8,
+    "color": "#EC242E",
+    "icon": "https://assets.coingecko.com/coins/images/1273/thumb/red_logomark.png?1696502345",
+    "symbol": "DIVI",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x247dc9cbbaadabce6e30e2a84ec6c53a419913ad": {
+    "assetId": "eip155:1/erc20:0x247dc9cbbaadabce6e30e2a84ec6c53a419913ad",
+    "chainId": "eip155:1",
+    "name": "Ethereum Message Service",
+    "precision": 18,
+    "color": "#1B1729",
+    "icon": "https://assets.coingecko.com/coins/images/29812/thumb/LogoEMS200x200.png?1696528741",
+    "symbol": "EMS",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x249ca82617ec3dfb2589c4c17ab7ec9765350a18": {
+    "assetId": "eip155:1/erc20:0x249ca82617ec3dfb2589c4c17ab7ec9765350a18",
+    "chainId": "eip155:1",
+    "name": "Verse on Ethereum",
+    "precision": 18,
+    "color": "#0484FC",
+    "icon": "https://assets.coingecko.com/coins/images/28424/thumb/verselogo.png?1696527421",
+    "symbol": "VERSE",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x249e38ea4102d0cf8264d3701f1a0e39c4f2dc3b": {
+    "assetId": "eip155:1/erc20:0x249e38ea4102d0cf8264d3701f1a0e39c4f2dc3b",
+    "chainId": "eip155:1",
+    "name": "UFO Gaming",
+    "precision": 18,
+    "color": "#16CBEB",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x249e38Ea4102D0cf8264d3701f1a0E39C4f2DC3B/logo.png",
+    "symbol": "UFO",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x24a6a37576377f63f194caa5f518a60f45b42921": {
+    "assetId": "eip155:1/erc20:0x24a6a37576377f63f194caa5f518a60f45b42921",
+    "chainId": "eip155:1",
+    "name": "Float Protocol",
+    "precision": 18,
+    "color": "#FC7704",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x24A6A37576377F63f194Caa5F518a60f45b42921/logo.png",
+    "symbol": "BANK",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x24ae2da0f361aa4be46b48eb19c91e02c5e4f27e": {
+    "assetId": "eip155:1/erc20:0x24ae2da0f361aa4be46b48eb19c91e02c5e4f27e",
+    "chainId": "eip155:1",
+    "name": "mevETH",
+    "precision": 18,
+    "color": "#040404",
+    "icon": "https://assets.coingecko.com/coins/images/32153/thumb/MEV_logo_2.png?1696598728",
+    "symbol": "MEVETH",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x24b47299e756af0571f512232a3629e0dabb52ed": {
+    "assetId": "eip155:1/erc20:0x24b47299e756af0571f512232a3629e0dabb52ed",
+    "chainId": "eip155:1",
+    "name": "concertVR",
+    "precision": 18,
+    "color": "#4A3A9C",
+    "icon": "https://assets.coingecko.com/coins/images/2914/thumb/cvt.png?1696503662",
+    "symbol": "CVT",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x24bcec1afda63e622a97f17cff9a61ffcfd9b735": {
+    "assetId": "eip155:1/erc20:0x24bcec1afda63e622a97f17cff9a61ffcfd9b735",
+    "chainId": "eip155:1",
+    "name": "Crab Market",
+    "precision": 18,
+    "color": "#8E8104",
+    "icon": "https://assets.coingecko.com/coins/images/28356/thumb/200-icon.png?1696527360",
+    "symbol": "CRAB",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x24c19f7101c1731b85f1127eaa0407732e36ecdd": {
+    "assetId": "eip155:1/erc20:0x24c19f7101c1731b85f1127eaa0407732e36ecdd",
+    "chainId": "eip155:1",
+    "name": "SharedStake Governance v2",
+    "precision": 18,
+    "color": "#D70A52",
+    "icon": "https://assets.coingecko.com/coins/images/13948/thumb/sgt-png.png?1696513686",
+    "symbol": "SGTV2",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x24ccedebf841544c9e6a62af4e8c2fa6e5a46fde": {
+    "assetId": "eip155:1/erc20:0x24ccedebf841544c9e6a62af4e8c2fa6e5a46fde",
+    "chainId": "eip155:1",
+    "name": "BlueSparrow",
+    "precision": 9,
+    "color": "#4182A0",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x24cCeDEBF841544C9e6a62Af4E8c2fA6e5a46FdE/logo.png",
+    "symbol": "BLUESPARROW",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x24d541c86dd44bc6ce0a0511cf3146c37388ec4c": {
+    "assetId": "eip155:1/erc20:0x24d541c86dd44bc6ce0a0511cf3146c37388ec4c",
+    "chainId": "eip155:1",
+    "name": "Pineapple Owl",
+    "precision": 9,
+    "color": "#4A5418",
+    "icon": "https://assets.coingecko.com/coins/images/32089/thumb/Pineapple_Owl_Logo_Alt.png?1696530887",
+    "symbol": "PINEOWL",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x24d73bca2bd9c3a61e99dfc7cb86d3c379ebded7": {
+    "assetId": "eip155:1/erc20:0x24d73bca2bd9c3a61e99dfc7cb86d3c379ebded7",
+    "chainId": "eip155:1",
+    "name": "Micro AI",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/32811/thumb/mai.png?1699537844",
+    "symbol": "MAI",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x24d86df61479982c90d2977f4ba839496895559d": {
+    "assetId": "eip155:1/erc20:0x24d86df61479982c90d2977f4ba839496895559d",
+    "chainId": "eip155:1",
+    "name": "HypeToken",
+    "precision": 18,
+    "color": "#B0049A",
+    "icon": "https://assets.coingecko.com/coins/images/30699/thumb/_HYPE_LOGO_Black.png?1696529569",
+    "symbol": "HYPE",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x24da31e7bb182cb2cabfef1d88db19c2ae1f5572": {
+    "assetId": "eip155:1/erc20:0x24da31e7bb182cb2cabfef1d88db19c2ae1f5572",
+    "chainId": "eip155:1",
+    "name": "Shikoku",
+    "precision": 18,
+    "color": "#DD7C25",
+    "icon": "https://assets.coingecko.com/coins/images/28560/thumb/shikoku_inu02.png?1696527550",
+    "symbol": "SHIK",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x24e3794605c84e580eea4972738d633e8a7127c8": {
+    "assetId": "eip155:1/erc20:0x24e3794605c84e580eea4972738d633e8a7127c8",
+    "chainId": "eip155:1",
+    "name": "Katalyo",
+    "precision": 18,
+    "color": "#04A4BC",
+    "icon": "https://assets.coingecko.com/coins/images/13347/thumb/katalyo_logo_aqua_256.png?1696513113",
+    "symbol": "KTLYO",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x24e89bdf2f65326b94e36978a7edeac63623dafa": {
+    "assetId": "eip155:1/erc20:0x24e89bdf2f65326b94e36978a7edeac63623dafa",
+    "chainId": "eip155:1",
+    "name": "Tiger King Coin on Ethereum",
+    "precision": 18,
+    "color": "#D29949",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x24E89bDf2f65326b94E36978A7EDeAc63623DAFA/logo.png",
+    "symbol": "TKING",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x24ec2ca132abf8f6f8a6e24a1b97943e31f256a7": {
+    "assetId": "eip155:1/erc20:0x24ec2ca132abf8f6f8a6e24a1b97943e31f256a7",
+    "chainId": "eip155:1",
+    "name": "dotmoovs on Ethereum",
+    "precision": 18,
+    "color": "#E1057A",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x24EC2Ca132abf8F6f8a6E24A1B97943e31f256a7/logo.png",
+    "symbol": "MOOV",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x2512c545a0117353e4e9acddff860342640d3cf6": {
+    "assetId": "eip155:1/erc20:0x2512c545a0117353e4e9acddff860342640d3cf6",
+    "chainId": "eip155:1",
+    "name": "WHEE",
+    "precision": 18,
+    "color": "#E2DDD3",
+    "icon": "https://assets.coingecko.com/coins/images/30285/thumb/whee.jpg?1696529190",
+    "symbol": "WHEE",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x251457b7c5d85251ca1ab384361c821330be2520": {
+    "assetId": "eip155:1/erc20:0x251457b7c5d85251ca1ab384361c821330be2520",
+    "chainId": "eip155:1",
+    "name": "Hati",
+    "precision": 18,
+    "color": "#C1C1C1",
+    "icon": "https://assets.coingecko.com/coins/images/25736/thumb/hati-logo.png?1696524832",
+    "symbol": "HATI",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x2516e7b3f76294e03c42aa4c5b5b4dce9c436fb8": {
+    "assetId": "eip155:1/erc20:0x2516e7b3f76294e03c42aa4c5b5b4dce9c436fb8",
+    "chainId": "eip155:1",
+    "name": "Aave v3 BAL on Ethereum",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/32903/thumb/BAL_%281%29.png?1699802595",
+    "symbol": "ABAL",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x252b9f56359901a0bde52d0675b1f1130d86f471": {
+    "assetId": "eip155:1/erc20:0x252b9f56359901a0bde52d0675b1f1130d86f471",
+    "chainId": "eip155:1",
+    "name": "Pando",
+    "precision": 18,
+    "color": "#593E8F",
+    "icon": "https://assets.coingecko.com/coins/images/14150/thumb/pando_logo.png?1696513869",
+    "symbol": "PANDO",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x2559813bbb508c4c79e9ccce4703bcb1f149edd7": {
+    "assetId": "eip155:1/erc20:0x2559813bbb508c4c79e9ccce4703bcb1f149edd7",
+    "chainId": "eip155:1",
+    "name": "Hourglass",
+    "precision": 9,
+    "color": "#040404",
+    "icon": "https://assets.coingecko.com/coins/images/27516/thumb/Hourglass-Logo.png?1696526555",
+    "symbol": "WAIT",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6": {
+    "assetId": "eip155:1/erc20:0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6",
+    "chainId": "eip155:1",
+    "name": "Raiden Network",
+    "precision": 18,
+    "color": "#CBCCCC",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x255Aa6DF07540Cb5d3d297f0D0D4D84cb52bc8e6/logo.png",
+    "symbol": "RDN",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x25644ea5be09d1266b5df3f96559ecdc2d0ad69b": {
+    "assetId": "eip155:1/erc20:0x25644ea5be09d1266b5df3f96559ecdc2d0ad69b",
+    "chainId": "eip155:1",
+    "name": "Shori",
+    "precision": 18,
+    "color": "#101010",
+    "icon": "https://assets.coingecko.com/coins/images/29710/thumb/Shori_logo.jpeg?1696528642",
+    "symbol": "YSHORI",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x2565ae0385659badcada1031db704442e1b69982": {
+    "assetId": "eip155:1/erc20:0x2565ae0385659badcada1031db704442e1b69982",
+    "chainId": "eip155:1",
+    "name": "Assemble Protocol",
+    "precision": 18,
+    "color": "#208CEE",
+    "icon": "https://assets.coingecko.com/coins/images/11605/thumb/gpvrlkSq_400x400_%281%29.jpg?1696511500",
+    "symbol": "ASM",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x256d1fce1b1221e8398f65f9b36033ce50b2d497": {
+    "assetId": "eip155:1/erc20:0x256d1fce1b1221e8398f65f9b36033ce50b2d497",
+    "chainId": "eip155:1",
+    "name": "Alvey Chain on Ethereum",
+    "precision": 18,
+    "color": "#BCB62D",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x256D1fCE1b1221e8398f65F9B36033CE50B2D497/logo.png",
+    "symbol": "WALV",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x25722cd432d02895d9be45f5deb60fc479c8781e": {
+    "assetId": "eip155:1/erc20:0x25722cd432d02895d9be45f5deb60fc479c8781e",
+    "chainId": "eip155:1",
+    "name": "Sponge",
+    "precision": 18,
+    "color": "#C8CE5C",
+    "icon": "https://assets.coingecko.com/coins/images/30254/thumb/Sea_Sponge_1.png?1696529163",
+    "symbol": "SPONGE",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x25931894a86d47441213199621f1f2994e1c39aa": {
+    "assetId": "eip155:1/erc20:0x25931894a86d47441213199621f1f2994e1c39aa",
+    "chainId": "eip155:1",
+    "name": "ChainGPT on Ethereum",
+    "precision": 18,
+    "color": "#404DAC",
+    "icon": "https://assets.coingecko.com/coins/images/29306/thumb/200x200.png?1696528257",
+    "symbol": "CGPT",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x2596825a84888e8f24b747df29e11b5dd03c81d7": {
+    "assetId": "eip155:1/erc20:0x2596825a84888e8f24b747df29e11b5dd03c81d7",
+    "chainId": "eip155:1",
+    "name": "Faith Tribe on Ethereum",
+    "precision": 18,
+    "color": "#C1C1C1",
+    "icon": "https://assets.coingecko.com/coins/images/23939/thumb/ym1Hf4x2_400x400.jpg?1696523135",
+    "symbol": "FTRB",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x259ce0cb3581995d40cbb03fd4badeaaba1edaff": {
+    "assetId": "eip155:1/erc20:0x259ce0cb3581995d40cbb03fd4badeaaba1edaff",
+    "chainId": "eip155:1",
+    "name": "SphereSXS",
+    "precision": 18,
+    "color": "#DDE1E5",
+    "icon": "https://assets.coingecko.com/coins/images/27924/thumb/Sphere_logo.jpg?1696526944",
+    "symbol": "SXS",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x25b24b3c47918b7962b3e49c4f468367f73cc0e0": {
+    "assetId": "eip155:1/erc20:0x25b24b3c47918b7962b3e49c4f468367f73cc0e0",
+    "chainId": "eip155:1",
+    "name": "AXL INU on Ethereum",
+    "precision": 18,
+    "color": "#242424",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x25b24B3c47918b7962B3e49C4F468367F73CC0E0/logo.png",
+    "symbol": "AXL",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x25c7b64a93eb1261e130ec21a3e9918caa38b611": {
+    "assetId": "eip155:1/erc20:0x25c7b64a93eb1261e130ec21a3e9918caa38b611",
+    "chainId": "eip155:1",
+    "name": "Wrapped Virgin Gen 0 CryptoKittties",
+    "precision": 18,
+    "color": "#323629",
+    "icon": "https://assets.coingecko.com/coins/images/12875/thumb/wvg0.png?1696512663",
+    "symbol": "WVG0",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x25e1474170c4c0aa64fa98123bdc8db49d7802fa": {
+    "assetId": "eip155:1/erc20:0x25e1474170c4c0aa64fa98123bdc8db49d7802fa",
+    "chainId": "eip155:1",
+    "name": "Bidao",
+    "precision": 18,
+    "color": "#1CC4F3",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x25e1474170c4c0aA64fa98123bdc8dB49D7802fa/logo.png",
+    "symbol": "BID",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x25ec98773d7b4ced4cafab96a2a1c0945f145e10": {
+    "assetId": "eip155:1/erc20:0x25ec98773d7b4ced4cafab96a2a1c0945f145e10",
+    "chainId": "eip155:1",
+    "name": "Staked USDT",
+    "precision": 18,
+    "color": "#09241D",
+    "icon": "https://assets.coingecko.com/coins/images/31135/thumb/2veJywVy_400x400.jpg?1696529964",
+    "symbol": "STUSDT",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x25f8087ead173b73d6e8b84329989a8eea16cf73": {
+    "assetId": "eip155:1/erc20:0x25f8087ead173b73d6e8b84329989a8eea16cf73",
+    "chainId": "eip155:1",
+    "name": "Yield Guild Games",
+    "precision": 18,
+    "color": "#133683",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x25f8087EAD173b73D6e8B84329989A8eEA16CF73/logo.png",
+    "symbol": "YGG",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x2602278ee1882889b946eb11dc0e810075650983": {
+    "assetId": "eip155:1/erc20:0x2602278ee1882889b946eb11dc0e810075650983",
+    "chainId": "eip155:1",
+    "name": "Vader Protocol",
+    "precision": 18,
+    "color": "#E6D3E5",
+    "icon": "https://assets.coingecko.com/coins/images/20497/thumb/AcF08Jk1_400x400.jpg?1696519904",
+    "symbol": "VADER",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x2604fa406be957e542beb89e6754fcde6815e83f": {
+    "assetId": "eip155:1/erc20:0x2604fa406be957e542beb89e6754fcde6815e83f",
+    "chainId": "eip155:1",
+    "name": "PlayKey",
+    "precision": 18,
+    "color": "#23221D",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x2604FA406Be957E542BEb89E6754fCdE6815e83f/logo.png",
+    "symbol": "PKT",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x260e59a6e96c26cfefd9dec566a4d4e50031744d": {
+    "assetId": "eip155:1/erc20:0x260e59a6e96c26cfefd9dec566a4d4e50031744d",
+    "chainId": "eip155:1",
+    "name": "OHearn",
+    "precision": 8,
+    "color": "#7C4D41",
+    "icon": "https://assets.coingecko.com/coins/images/30737/thumb/mikkekekekeke.png?1696529607",
+    "symbol": "MIKE",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x2610f0bfc21ef389fe4d03cfb7de9ac1e6c99d6e": {
+    "assetId": "eip155:1/erc20:0x2610f0bfc21ef389fe4d03cfb7de9ac1e6c99d6e",
+    "chainId": "eip155:1",
+    "name": "Skyrim Finance",
+    "precision": 18,
+    "color": "#F43CA3",
+    "icon": "https://assets.coingecko.com/coins/images/18003/thumb/Xo3oCb53_400x400.png?1696517519",
+    "symbol": "SKYRIM",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x2620638eda99f9e7e902ea24a285456ee9438861": {
+    "assetId": "eip155:1/erc20:0x2620638eda99f9e7e902ea24a285456ee9438861",
+    "chainId": "eip155:1",
+    "name": "Crust Shadow",
+    "precision": 18,
+    "color": "#555555",
+    "icon": "https://assets.coingecko.com/coins/images/16037/thumb/2_mnCYZfHmLg2bFrjM3vKtPw.png?1696515647",
+    "symbol": "CSM",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x263b6b028f3e4ed8c4329eb2b5f409ee38d97296": {
+    "assetId": "eip155:1/erc20:0x263b6b028f3e4ed8c4329eb2b5f409ee38d97296",
+    "chainId": "eip155:1",
+    "name": "World Mobile Token on Ethereum",
+    "precision": 6,
+    "color": "#D41C6C",
+    "icon": "https://assets.coingecko.com/coins/images/17333/thumb/Colored_Token.png?1696516885",
+    "symbol": "WMT",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x2653891204f463fb2a2f4f412564b19e955166ae": {
+    "assetId": "eip155:1/erc20:0x2653891204f463fb2a2f4f412564b19e955166ae",
+    "chainId": "eip155:1",
+    "name": "Gold Fever Native Gold on Ethereum",
+    "precision": 18,
+    "color": "#A87F6C",
+    "icon": "https://assets.coingecko.com/coins/images/20633/thumb/2ypNydrG_400x400.jpg?1696520037",
+    "symbol": "NGL",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x2654e753424a9f02df31cfbc6c5af14a87b6cab5": {
+    "assetId": "eip155:1/erc20:0x2654e753424a9f02df31cfbc6c5af14a87b6cab5",
+    "chainId": "eip155:1",
+    "name": "Kendoll Janner",
+    "precision": 18,
+    "color": "#E6B698",
+    "icon": "https://assets.coingecko.com/coins/images/31260/thumb/android-chrome-512x512.png?1696530084",
+    "symbol": "KEN",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x265f542c1e78068f13d87c6fe0df54f3e9562a48": {
+    "assetId": "eip155:1/erc20:0x265f542c1e78068f13d87c6fe0df54f3e9562a48",
+    "chainId": "eip155:1",
+    "name": "Proof Of Pepe",
+    "precision": 9,
+    "color": "#365036",
+    "icon": "https://assets.coingecko.com/coins/images/31000/thumb/ebEOnrjk_400x400.jpg?1696529838",
+    "symbol": "POP",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x267eb2a9a13dc304a9deff4277abe850d0852c5f": {
+    "assetId": "eip155:1/erc20:0x267eb2a9a13dc304a9deff4277abe850d0852c5f",
+    "chainId": "eip155:1",
+    "name": "Trace AI",
+    "precision": 8,
+    "color": "#32B6B7",
+    "icon": "https://assets.coingecko.com/coins/images/31058/thumb/200x200.png?1696529892",
+    "symbol": "TAI",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x2688fc68c4eac90d9e5e1b94776cf14eade8d877": {
+    "color": "#FFFFFF",
+    "icon": "https://raw.githubusercontent.com/Idle-Labs/idle-dashboard/master/public/images/tokens/STETH.svg",
+    "name": "Lido STETH Senior Tranche",
+    "precision": 18,
+    "symbol": "AA_wstETH",
+    "chainId": "eip155:1",
+    "assetId": "eip155:1/erc20:0x2688fc68c4eac90d9e5e1b94776cf14eade8d877",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x269616d549d7e8eaa82dfb17028d0b212d11232a": {
+    "assetId": "eip155:1/erc20:0x269616d549d7e8eaa82dfb17028d0b212d11232a",
+    "chainId": "eip155:1",
+    "name": "Punk Vault  NFTX ",
+    "precision": 18,
+    "color": "#F7DEDE",
+    "icon": "https://assets.coingecko.com/coins/images/17018/thumb/Punk.png?1696516582",
+    "symbol": "PUNK",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x26a604dffe3ddab3bee816097f81d3c4a2a4cf97": {
+    "assetId": "eip155:1/erc20:0x26a604dffe3ddab3bee816097f81d3c4a2a4cf97",
+    "chainId": "eip155:1",
+    "name": "CorionX on Ethereum",
+    "precision": 8,
+    "color": "#FC5710",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x26a604DFFE3ddaB3BEE816097F81d3C4a2A4CF97/logo.png",
+    "symbol": "CORX",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x26aad156ba8efa501b32b42ffcdc8413f90e9c99": {
+    "assetId": "eip155:1/erc20:0x26aad156ba8efa501b32b42ffcdc8413f90e9c99",
+    "chainId": "eip155:1",
+    "name": "Open Campus on Ethereum",
+    "precision": 18,
+    "color": "#04ECBC",
+    "icon": "https://assets.coingecko.com/coins/images/29948/thumb/EDU_Logo.png?1696528874",
+    "symbol": "EDU",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x26c8afbbfe1ebaca03c2bb082e69d0476bffe099": {
+    "assetId": "eip155:1/erc20:0x26c8afbbfe1ebaca03c2bb082e69d0476bffe099",
+    "chainId": "eip155:1",
+    "name": "Cellframe on Ethereum",
+    "precision": 18,
+    "color": "#D41B5A",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x26c8AFBBFE1EBaca03C2bB082E69D0476Bffe099/logo.png",
+    "symbol": "CELL",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x26cb3641aaa43911f1d4cb2ce544eb652aac7c47": {
+    "assetId": "eip155:1/erc20:0x26cb3641aaa43911f1d4cb2ce544eb652aac7c47",
+    "chainId": "eip155:1",
+    "name": "Crystal CYL",
+    "precision": 18,
+    "color": "#D6D8DA",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x26CB3641aaA43911f1D4cB2ce544eb652AAc7c47/logo.png",
+    "symbol": "CYL",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x26dcfbfa8bc267b250432c01c982eaf81cc5480c": {
+    "assetId": "eip155:1/erc20:0x26dcfbfa8bc267b250432c01c982eaf81cc5480c",
+    "chainId": "eip155:1",
+    "name": "Ankr Staked MATIC on Ethereum",
+    "precision": 18,
+    "color": "#544C0A",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x26dcFbFa8Bc267b250432c01C982Eaf81cC5480C/logo.png",
+    "symbol": "ANKRMATIC",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x26f9111a358385dc46a832cf1a1a021ee72e58a1": {
+    "assetId": "eip155:1/erc20:0x26f9111a358385dc46a832cf1a1a021ee72e58a1",
+    "chainId": "eip155:1",
+    "name": "Zook Protocol",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/32706/thumb/20231102_124343.jpg?1698985803",
+    "symbol": "ZOOK",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x26fb86579e371c7aedc461b2ddef0a8628c93d3b": {
+    "assetId": "eip155:1/erc20:0x26fb86579e371c7aedc461b2ddef0a8628c93d3b",
+    "chainId": "eip155:1",
+    "name": "BORA",
+    "precision": 18,
+    "color": "#29A8F4",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x26fb86579e371c7AEdc461b2DdEF0A8628c93d3B/logo.png",
+    "symbol": "BORA",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x27054b13b1b798b345b591a4d22e6562d47ea75a": {
+    "assetId": "eip155:1/erc20:0x27054b13b1b798b345b591a4d22e6562d47ea75a",
+    "chainId": "eip155:1",
+    "name": "AirSwap",
+    "precision": 4,
+    "color": "#2B73FC",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x27054b13b1B798B345b591a4d22e6562d47eA75a/logo.png",
+    "symbol": "AST",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x271db794317b44827efe81dec6193ffc277050f6": {
+    "color": "#FFFFFF",
+    "icon": "https://raw.githubusercontent.com/Idle-Labs/idle-dashboard/master/public/images/tokens/USDC.svg",
+    "name": "EulerStaking USDC Junior Tranche",
+    "precision": 18,
+    "symbol": "BB_idleEulStk_eUSDC",
+    "chainId": "eip155:1",
+    "assetId": "eip155:1/erc20:0x271db794317b44827efe81dec6193ffc277050f6",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x27206f5a9afd0c51da95f20972885545d3b33647": {
+    "assetId": "eip155:1/erc20:0x27206f5a9afd0c51da95f20972885545d3b33647",
+    "chainId": "eip155:1",
+    "name": "KuKu",
+    "precision": 0,
+    "color": "#579993",
+    "icon": "https://assets.coingecko.com/coins/images/31177/thumb/IMG_20230801_131536_144.jpg?1696530005",
+    "symbol": "KUKU",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x272f97b7a56a387ae942350bbc7df5700f8a4576": {
+    "assetId": "eip155:1/erc20:0x272f97b7a56a387ae942350bbc7df5700f8a4576",
+    "chainId": "eip155:1",
+    "name": "Aave BAL",
+    "precision": 18,
+    "color": "#060606",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x272F97b7a56a387aE942350bBC7Df5700f8a4576/logo.png",
+    "symbol": "ABAL",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x2730d6fdc86c95a74253beffaa8306b40fedecbb": {
+    "assetId": "eip155:1/erc20:0x2730d6fdc86c95a74253beffaa8306b40fedecbb",
+    "chainId": "eip155:1",
+    "name": "UNICORN",
+    "precision": 8,
+    "color": "#DD1786",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x2730d6FdC86C95a74253BefFaA8306B40feDecbb/logo.png",
+    "symbol": "UNI",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x274e7eb07b485cfde53d02270555213447570ac6": {
+    "assetId": "eip155:1/erc20:0x274e7eb07b485cfde53d02270555213447570ac6",
+    "chainId": "eip155:1",
+    "name": "SubDAO",
+    "precision": 18,
+    "color": "#F0D5E4",
+    "icon": "https://assets.coingecko.com/coins/images/28379/thumb/gov.png?1696527379",
+    "symbol": "GOV",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x275f5ad03be0fa221b4c6649b8aee09a42d9412a": {
+    "assetId": "eip155:1/erc20:0x275f5ad03be0fa221b4c6649b8aee09a42d9412a",
+    "chainId": "eip155:1",
+    "name": "Monavale on Ethereum",
+    "precision": 18,
+    "color": "#CBCBCB",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x275f5Ad03be0Fa221B4C6649B8AeE09a42D9412A/logo.png",
+    "symbol": "MONA",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x27702a26126e0b3702af63ee09ac4d1a084ef628": {
+    "assetId": "eip155:1/erc20:0x27702a26126e0b3702af63ee09ac4d1a084ef628",
+    "chainId": "eip155:1",
+    "name": "Aleph im on Ethereum",
+    "precision": 18,
+    "color": "#0453FC",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x27702a26126e0B3702af63Ee09aC4d1A084EF628/logo.png",
+    "symbol": "ALEPH",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x27778e14ce36d3b85e1effeb43816a17bbb7088a": {
+    "assetId": "eip155:1/erc20:0x27778e14ce36d3b85e1effeb43816a17bbb7088a",
+    "chainId": "eip155:1",
+    "name": "Lyfe Gold",
+    "precision": 18,
+    "color": "#E1D185",
+    "icon": "https://assets.coingecko.com/coins/images/14938/thumb/LGOLD-Logo-200.png?1696514597",
+    "symbol": "LGOLD",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x2781246fe707bb15cee3e5ea354e2154a2877b16": {
+    "assetId": "eip155:1/erc20:0x2781246fe707bb15cee3e5ea354e2154a2877b16",
+    "chainId": "eip155:1",
+    "name": "ELYSIA",
+    "precision": 18,
+    "color": "#04255C",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x2781246fe707bB15CeE3e5ea354e2154a2877B16/logo.png",
+    "symbol": "EL",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x2791bfd60d232150bff86b39b7146c0eaaa2ba81": {
+    "assetId": "eip155:1/erc20:0x2791bfd60d232150bff86b39b7146c0eaaa2ba81",
+    "chainId": "eip155:1",
+    "name": "BiFi",
+    "precision": 18,
+    "color": "#B5D6F1",
+    "icon": "https://assets.coingecko.com/coins/images/13671/thumb/ysYIu7Q.png?1696513420",
+    "symbol": "BIFI",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x27b5739e22ad9033bcbf192059122d163b60349d": {
+    "assetId": "eip155:1/erc20:0x27b5739e22ad9033bcbf192059122d163b60349d",
+    "chainId": "eip155:1",
+    "name": "Staked Yearn CRV Vault",
+    "precision": 18,
+    "color": "#D8E222",
+    "icon": "https://assets.coingecko.com/coins/images/27623/thumb/st-yCRV-128-0x27B5739e22ad9033bcBf192059122d163b60349D.png?1696526654",
+    "symbol": "ST-YCRV",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x27c70cd1946795b66be9d954418546998b546634": {
+    "assetId": "eip155:1/erc20:0x27c70cd1946795b66be9d954418546998b546634",
+    "chainId": "eip155:1",
+    "name": "Doge Killer",
+    "precision": 18,
+    "color": "#C53524",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x27C70Cd1946795B66be9d954418546998b546634/logo.png",
+    "symbol": "LEASH",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x27f103f86070cc639fef262787a16887d22d8415": {
+    "assetId": "eip155:1/erc20:0x27f103f86070cc639fef262787a16887d22d8415",
+    "chainId": "eip155:1",
+    "name": "FOFO Token",
+    "precision": 18,
+    "color": "#2596E4",
+    "icon": "https://assets.coingecko.com/coins/images/30438/thumb/01_%281%29_copy.png?1696529326",
+    "symbol": "FOFO",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x2822f6d1b2f41f93f33d937bc7d84a8dfa4f4c21": {
+    "assetId": "eip155:1/erc20:0x2822f6d1b2f41f93f33d937bc7d84a8dfa4f4c21",
+    "chainId": "eip155:1",
+    "name": "Poseidon Network",
+    "precision": 18,
+    "color": "#93CCBC",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x2822f6D1B2f41F93f33d937bc7d84A8Dfa4f4C21/logo.png",
+    "symbol": "QQQ",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x285db79fa7e0e89e822786f48a7c98c6c1dc1c7d": {
+    "assetId": "eip155:1/erc20:0x285db79fa7e0e89e822786f48a7c98c6c1dc1c7d",
+    "chainId": "eip155:1",
+    "name": "Magic Internet Cash",
+    "precision": 18,
+    "color": "#C4CFD2",
+    "icon": "https://assets.coingecko.com/coins/images/31405/thumb/MICsmall.png?1696530221",
+    "symbol": "MIC",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x286f851b049ccce1419e09b6468dc3297f86a703": {
+    "assetId": "eip155:1/erc20:0x286f851b049ccce1419e09b6468dc3297f86a703",
+    "chainId": "eip155:1",
+    "name": "hiSEALS",
+    "precision": 18,
+    "color": "#A8B0BF",
+    "icon": "https://assets.coingecko.com/coins/images/29191/thumb/63f46d084b94830001ea9a60_hiSEALS_-__Logo.png?1696528150",
+    "symbol": "HISEALS",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x2890df158d76e584877a1d17a85fea3aeeb85aa6": {
+    "assetId": "eip155:1/erc20:0x2890df158d76e584877a1d17a85fea3aeeb85aa6",
+    "chainId": "eip155:1",
+    "name": "Alien Milady Fumo",
+    "precision": 18,
+    "color": "#C6C8C2",
+    "icon": "https://assets.coingecko.com/coins/images/30812/thumb/miladyfumo.jpg?1696529668",
+    "symbol": "FUMO",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x28b5e12cce51f15594b0b91d5b5adaa70f684a02": {
+    "assetId": "eip155:1/erc20:0x28b5e12cce51f15594b0b91d5b5adaa70f684a02",
+    "chainId": "eip155:1",
+    "name": "Napoleon X on Ethereum",
+    "precision": 2,
+    "color": "#E6E0BE",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x28b5E12CcE51f15594B0b91d5b5AdaA70F684a02/logo.png",
+    "symbol": "NPX",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x28cb7e841ee97947a86b06fa4090c8451f64c0be": {
+    "assetId": "eip155:1/erc20:0x28cb7e841ee97947a86b06fa4090c8451f64c0be",
+    "chainId": "eip155:1",
+    "name": "YF Link",
+    "precision": 18,
+    "color": "#2C5BD9",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x28cb7e841ee97947a86B06fA4090C8451f64c0be/logo.png",
+    "symbol": "YFL",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x28cca76f6e8ec81e4550ecd761f899110b060e97": {
+    "assetId": "eip155:1/erc20:0x28cca76f6e8ec81e4550ecd761f899110b060e97",
+    "chainId": "eip155:1",
+    "name": "ArGoApp",
+    "precision": 18,
+    "color": "#2F94DA",
+    "icon": "https://assets.coingecko.com/coins/images/15477/thumb/Group_118.png?1696515122",
+    "symbol": "ARGO",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x28dee01d53fed0edf5f6e310bf8ef9311513ae40": {
+    "assetId": "eip155:1/erc20:0x28dee01d53fed0edf5f6e310bf8ef9311513ae40",
+    "chainId": "eip155:1",
+    "name": "BlitzPick",
+    "precision": 18,
+    "color": "#27B366",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x28dee01D53FED0Edf5f6E310BF8Ef9311513Ae40/logo.png",
+    "symbol": "XBP",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x28fac5334c9f7262b3a3fe707e250e01053e07b5": {
+    "assetId": "eip155:1/erc20:0x28fac5334c9f7262b3a3fe707e250e01053e07b5",
+    "chainId": "eip155:1",
+    "name": "IdleUSDT  Risk Adjusted ",
+    "precision": 18,
+    "color": "#5599CA",
+    "icon": "https://assets.coingecko.com/coins/images/11931/thumb/idleusdt-safe.png?1696511792",
+    "symbol": "IDLEUSDTSAFE",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x28fda76721a8077a5de802ab0212849b8c38429e": {
+    "assetId": "eip155:1/erc20:0x28fda76721a8077a5de802ab0212849b8c38429e",
+    "chainId": "eip155:1",
+    "name": "Artemis Vision",
+    "precision": 18,
+    "color": "#942CE9",
+    "icon": "https://assets.coingecko.com/coins/images/23716/thumb/uUMU6_Cr_400x400.jpg?1696522916",
+    "symbol": "ARV",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x2904b9b16652d7d0408eccfa23a19d4a3358230f": {
+    "assetId": "eip155:1/erc20:0x2904b9b16652d7d0408eccfa23a19d4a3358230f",
+    "chainId": "eip155:1",
+    "name": "Puriever",
+    "precision": 18,
+    "color": "#049C44",
+    "icon": "https://assets.coingecko.com/coins/images/12600/thumb/200x200_pure_logo.png?1696512409",
+    "symbol": "PURE",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x2920f7d6134f4669343e70122ca9b8f19ef8fa5d": {
+    "assetId": "eip155:1/erc20:0x2920f7d6134f4669343e70122ca9b8f19ef8fa5d",
+    "chainId": "eip155:1",
+    "name": "MonoX",
+    "precision": 18,
+    "color": "#3ACE9A",
+    "icon": "https://assets.coingecko.com/coins/images/20901/thumb/e51c6UaU_400x400.png?1696520292",
+    "symbol": "MONO",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x2942e3b38e33123965bfbc21e802be943a76bbc6": {
+    "assetId": "eip155:1/erc20:0x2942e3b38e33123965bfbc21e802be943a76bbc6",
+    "chainId": "eip155:1",
+    "name": "EHash",
+    "precision": 18,
+    "color": "#5E4EE4",
+    "icon": "https://assets.coingecko.com/coins/images/14180/thumb/ehash.png?1696513898",
+    "symbol": "EHASH",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x294559fa758c88d639fd085751e463fee7806eab": {
+    "assetId": "eip155:1/erc20:0x294559fa758c88d639fd085751e463fee7806eab",
+    "chainId": "eip155:1",
+    "name": "Metal Blockchain",
+    "precision": 18,
+    "color": "#7648A0",
+    "icon": "https://assets.coingecko.com/coins/images/27222/thumb/metal-chain.png?1696526273",
+    "symbol": "METAL",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x295b42684f90c77da7ea46336001010f2791ec8c": {
+    "assetId": "eip155:1/erc20:0x295b42684f90c77da7ea46336001010f2791ec8c",
+    "chainId": "eip155:1",
+    "name": "Xi",
+    "precision": 18,
+    "color": "#8488F0",
+    "icon": "https://assets.coingecko.com/coins/images/18640/thumb/v5NMxPo.png?1696518111",
+    "symbol": "XI",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x296233e84c1d7bff11121bf6d60f0ffa39c3f0cf": {
+    "assetId": "eip155:1/erc20:0x296233e84c1d7bff11121bf6d60f0ffa39c3f0cf",
+    "chainId": "eip155:1",
+    "name": "No One",
+    "precision": 9,
+    "color": "#170F26",
+    "icon": "https://assets.coingecko.com/coins/images/19393/thumb/logo-200x200_%289%29.png?1696518833",
+    "symbol": "NOONE",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x297e4e5e59ad72b1b0a2fd446929e76117be0e0a": {
+    "assetId": "eip155:1/erc20:0x297e4e5e59ad72b1b0a2fd446929e76117be0e0a",
+    "chainId": "eip155:1",
+    "name": "Smart Valor",
+    "precision": 18,
+    "color": "#EC4324",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x297E4e5e59Ad72B1B0A2fd446929e76117be0E0a/logo.png",
+    "symbol": "VALOR",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x298d492e8c1d909d3f63bc4a36c66c64acb3d695": {
+    "assetId": "eip155:1/erc20:0x298d492e8c1d909d3f63bc4a36c66c64acb3d695",
+    "chainId": "eip155:1",
+    "name": "PolkaBridge on Ethereum",
+    "precision": 18,
+    "color": "#F6BCD8",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x298d492e8c1d909D3F63Bc4A36C66c64ACB3d695/logo.png",
+    "symbol": "PBR",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x29c56e7cb9c840d2b2371b17e28bab44ad3c3ead": {
+    "assetId": "eip155:1/erc20:0x29c56e7cb9c840d2b2371b17e28bab44ad3c3ead",
+    "chainId": "eip155:1",
+    "name": "EsportsPro on Ethereum",
+    "precision": 18,
+    "color": "#B1B2B3",
+    "icon": "https://assets.coingecko.com/coins/images/14187/thumb/logo.jpg?1696513905",
+    "symbol": "ESPRO",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x29cbd0510eec0327992cd6006e63f9fa8e7f33b7": {
+    "assetId": "eip155:1/erc20:0x29cbd0510eec0327992cd6006e63f9fa8e7f33b7",
+    "chainId": "eip155:1",
+    "name": "Tidal Finance on Ethereum",
+    "precision": 18,
+    "color": "#1C1C64",
+    "icon": "https://assets.coingecko.com/coins/images/14460/thumb/Tidal-mono.png?1696514147",
+    "symbol": "TIDAL",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x29ceddcf0da3c1d8068a7dfbd0fb06c2e438ff70": {
+    "assetId": "eip155:1/erc20:0x29ceddcf0da3c1d8068a7dfbd0fb06c2e438ff70",
+    "chainId": "eip155:1",
+    "name": "Freela on Ethereum",
+    "precision": 18,
+    "color": "#EC9879",
+    "icon": "https://assets.coingecko.com/coins/images/15856/thumb/freela.PNG?1696515472",
+    "symbol": "FREL",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x29d578cec46b50fa5c88a99c6a4b70184c062953": {
+    "assetId": "eip155:1/erc20:0x29d578cec46b50fa5c88a99c6a4b70184c062953",
+    "chainId": "eip155:1",
+    "name": "Everscale",
+    "precision": 9,
+    "color": "#DCD4FC",
+    "icon": "https://assets.coingecko.com/coins/images/12783/thumb/everscale_badge_main_round_1x.png?1696512578",
+    "symbol": "EVER",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x29d7139271398d0c2e22523fda06e023dcb07f8f": {
+    "assetId": "eip155:1/erc20:0x29d7139271398d0c2e22523fda06e023dcb07f8f",
+    "chainId": "eip155:1",
+    "name": "KlubCoin",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/32869/thumb/KLUB.jpg?1700564333",
+    "symbol": "KLUB",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x29de166064e1f9467b70bd561e516564a5a9ba3c": {
+    "assetId": "eip155:1/erc20:0x29de166064e1f9467b70bd561e516564a5a9ba3c",
+    "chainId": "eip155:1",
+    "name": "POV Chain",
+    "precision": 9,
+    "color": "#E06D98",
+    "icon": "https://assets.coingecko.com/coins/images/31440/thumb/1-Um3y-ZVA-400x400-1.png?1696530255",
+    "symbol": "POVCHAIN",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x29fa1fee0f4f0ab0e36ef7ab8d7a35439ec6be75": {
+    "assetId": "eip155:1/erc20:0x29fa1fee0f4f0ab0e36ef7ab8d7a35439ec6be75",
+    "chainId": "eip155:1",
+    "name": "SafeStake",
+    "precision": 18,
+    "color": "#DEF0F9",
+    "icon": "https://assets.coingecko.com/coins/images/30016/thumb/safestake.png?1696528940",
+    "symbol": "DVT",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x2a03a891add2dc6d0f7b94419086630ba5cb65b6": {
+    "assetId": "eip155:1/erc20:0x2a03a891add2dc6d0f7b94419086630ba5cb65b6",
+    "chainId": "eip155:1",
+    "name": "Dreamverse",
+    "precision": 18,
+    "color": "#6F5A7A",
+    "icon": "https://assets.coingecko.com/coins/images/21554/thumb/dv.png?1696520916",
+    "symbol": "DV",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x2a2550e0a75acec6d811ae3930732f7f3ad67588": {
+    "assetId": "eip155:1/erc20:0x2a2550e0a75acec6d811ae3930732f7f3ad67588",
+    "chainId": "eip155:1",
+    "name": "PathDAO",
+    "precision": 18,
+    "color": "#0450FC",
+    "icon": "https://assets.coingecko.com/coins/images/21146/thumb/thumbnail.png?1696520524",
+    "symbol": "PATH",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x2a304fda5a85182dca1d03741bb2f07881b9e095": {
+    "assetId": "eip155:1/erc20:0x2a304fda5a85182dca1d03741bb2f07881b9e095",
+    "chainId": "eip155:1",
+    "name": "DCOMY",
+    "precision": 8,
+    "color": "#49B0AC",
+    "icon": "https://assets.coingecko.com/coins/images/29007/thumb/15-38-16-200x200.png?1696527978",
+    "symbol": "DCO",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x2a3bff78b79a009976eea096a51a948a3dc00e34": {
+    "assetId": "eip155:1/erc20:0x2a3bff78b79a009976eea096a51a948a3dc00e34",
+    "chainId": "eip155:1",
+    "name": "Wilder World",
+    "precision": 18,
+    "color": "#9AAAF1",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x2a3bFF78B79A009976EeA096a51A948a3dC00e34/logo.png",
+    "symbol": "WILD",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x2a69655c22eda32ff48d315bb26ed45f150700b4": {
+    "assetId": "eip155:1/erc20:0x2a69655c22eda32ff48d315bb26ed45f150700b4",
+    "chainId": "eip155:1",
+    "name": "StakerDAO Wrapped Tezos",
+    "precision": 6,
+    "color": "#04BCEC",
+    "icon": "https://assets.coingecko.com/coins/images/14763/thumb/wXTZ-token-FullColor.png?1696514432",
+    "symbol": "WXTZ",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x2a7e415c169ce3a580c6f374dc26f6aaad1eccfe": {
+    "assetId": "eip155:1/erc20:0x2a7e415c169ce3a580c6f374dc26f6aaad1eccfe",
+    "chainId": "eip155:1",
+    "name": "Hachi",
+    "precision": 18,
+    "color": "#ECD9C9",
+    "icon": "https://assets.coingecko.com/coins/images/29262/thumb/HACHI_main_logo__.png?1696528216",
+    "symbol": "HACHI",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x2a8e1e676ec238d8a992307b495b45b3feaa5e86": {
+    "assetId": "eip155:1/erc20:0x2a8e1e676ec238d8a992307b495b45b3feaa5e86",
+    "chainId": "eip155:1",
+    "name": "Origin Dollar",
+    "precision": 18,
+    "color": "#2D424A",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x2A8e1E676Ec238d8A992307B495b45B3fEAa5e86/logo.png",
+    "symbol": "OUSD",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x2a9bdcff37ab68b95a53435adfd8892e86084f93": {
+    "assetId": "eip155:1/erc20:0x2a9bdcff37ab68b95a53435adfd8892e86084f93",
+    "chainId": "eip155:1",
+    "name": "Alpha Quark",
+    "precision": 18,
+    "color": "#FC442C",
+    "icon": "https://assets.coingecko.com/coins/images/12872/thumb/alpha_quark_logo.png?1696512660",
+    "symbol": "AQT",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x2aad9dbc82611485a52325923e1187734e951b78": {
+    "assetId": "eip155:1/erc20:0x2aad9dbc82611485a52325923e1187734e951b78",
+    "chainId": "eip155:1",
+    "name": "BYTZ on Ethereum",
+    "precision": 8,
+    "color": "#C4B5BD",
+    "icon": "https://assets.coingecko.com/coins/images/4017/thumb/bytz.png?1696504655",
+    "symbol": "BYTZ",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x2ab6bb8408ca3199b8fa6c92d5b455f820af03c4": {
+    "assetId": "eip155:1/erc20:0x2ab6bb8408ca3199b8fa6c92d5b455f820af03c4",
+    "chainId": "eip155:1",
+    "name": "TE FOOD",
+    "precision": 18,
+    "color": "#5297CE",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x2Ab6Bb8408ca3199B8Fa6C92d5b455F820Af03c4/logo.png",
+    "symbol": "TONE",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x2ad9addd0d97ec3cdba27f92bf6077893b76ab0b": {
+    "assetId": "eip155:1/erc20:0x2ad9addd0d97ec3cdba27f92bf6077893b76ab0b",
+    "chainId": "eip155:1",
+    "name": "Planet Token on Ethereum",
+    "precision": 18,
+    "color": "#04E5BF",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x2aD9adDD0d97EC3cDBA27F92bF6077893b76Ab0b/logo.png",
+    "symbol": "PLANET",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x2af1df3ab0ab157e1e2ad8f88a7d04fbea0c7dc6": {
+    "assetId": "eip155:1/erc20:0x2af1df3ab0ab157e1e2ad8f88a7d04fbea0c7dc6",
+    "chainId": "eip155:1",
+    "name": "Bankless BED Index on Ethereum",
+    "precision": 18,
+    "color": "#0F0E0E",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x2aF1dF3AB0ab157e1E2Ad8F88A7D04fbea0c7dc6/logo.png",
+    "symbol": "BED",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x2af5d2ad76741191d15dfe7bf6ac92d4bd912ca3": {
+    "assetId": "eip155:1/erc20:0x2af5d2ad76741191d15dfe7bf6ac92d4bd912ca3",
+    "chainId": "eip155:1",
+    "name": "LEO Token",
+    "precision": 18,
+    "color": "#14051C",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x2AF5D2aD76741191D15Dfe7bF6aC92d4Bd912Ca3/logo.png",
+    "symbol": "LEO",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x2af72850c504ddd3c1876c66a914caee7ff8a46a": {
+    "assetId": "eip155:1/erc20:0x2af72850c504ddd3c1876c66a914caee7ff8a46a",
+    "chainId": "eip155:1",
+    "name": "WhaleRoom",
+    "precision": 18,
+    "color": "#D746B8",
+    "icon": "https://assets.coingecko.com/coins/images/14328/thumb/ArEX8tkV_400x400.png?1696514016",
+    "symbol": "WHL",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x2b1d36f5b61addaf7da7ebbd11b35fd8cfb0de31": {
+    "assetId": "eip155:1/erc20:0x2b1d36f5b61addaf7da7ebbd11b35fd8cfb0de31",
+    "chainId": "eip155:1",
+    "name": "Interport Token",
+    "precision": 18,
+    "color": "#52A4FC",
+    "icon": "https://assets.coingecko.com/coins/images/28338/thumb/ITP_Logo_200.png?1696527344",
+    "symbol": "ITP",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x2b218683178d029bab6c9789b1073aa6c96e5176": {
+    "assetId": "eip155:1/erc20:0x2b218683178d029bab6c9789b1073aa6c96e5176",
+    "chainId": "eip155:1",
+    "name": "Balancer Savings DAI Boosted Pool",
+    "precision": 18,
+    "color": "#D7D2D9",
+    "icon": "https://assets.coingecko.com/coins/images/31367/thumb/bb-s-dai.png?1696530184",
+    "symbol": "BB-S-DAI",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x2b46578b7f06f2b373ad0e0c9b28f800dcc80bf3": {
+    "assetId": "eip155:1/erc20:0x2b46578b7f06f2b373ad0e0c9b28f800dcc80bf3",
+    "chainId": "eip155:1",
+    "name": "Echo Bot",
+    "precision": 9,
+    "color": "#BFDCFA",
+    "icon": "https://assets.coingecko.com/coins/images/31266/thumb/hd1qyGUA_200x200.jpg?1696530090",
+    "symbol": "ECHO",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x2b591e99afe9f32eaa6214f7b7629768c40eeb39": {
+    "assetId": "eip155:1/erc20:0x2b591e99afe9f32eaa6214f7b7629768c40eeb39",
+    "chainId": "eip155:1",
+    "name": "HEX on Ethereum",
+    "precision": 8,
+    "color": "#FC6940",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x2b591e99afE9f32eAA6214f7B7629768c40Eeb39/logo.png",
+    "symbol": "HEX",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x2b7da260f101fb259710c0a4f2efef59f41c0810": {
+    "color": "#FFFFFF",
+    "icon": "https://raw.githubusercontent.com/Idle-Labs/idle-dashboard/master/public/images/tokens/WETH.svg",
+    "name": "EulerStaking WETH Senior Tranche",
+    "precision": 18,
+    "symbol": "AA_idleEulStk_eWETH",
+    "chainId": "eip155:1",
+    "assetId": "eip155:1/erc20:0x2b7da260f101fb259710c0a4f2efef59f41c0810",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x2b81945875f892aff04af0a298d35fb2cf848c7b": {
+    "assetId": "eip155:1/erc20:0x2b81945875f892aff04af0a298d35fb2cf848c7b",
+    "chainId": "eip155:1",
+    "name": "Web",
+    "precision": 9,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/32957/thumb/WEB300.jpg?1699971838",
+    "symbol": "WEB",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x2b867efd2de4ad2b583ca0cb3df9c4040ef4d329": {
+    "assetId": "eip155:1/erc20:0x2b867efd2de4ad2b583ca0cb3df9c4040ef4d329",
+    "chainId": "eip155:1",
+    "name": "Lucky Block on Ethereum",
+    "precision": 9,
+    "color": "#100C05",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x2b867efD2dE4Ad2B583Ca0CB3dF9C4040Ef4D329/logo.png",
+    "symbol": "LBLOCK",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x2b896c7f060ae441b76bbe47cddca934ba60f37f": {
+    "assetId": "eip155:1/erc20:0x2b896c7f060ae441b76bbe47cddca934ba60f37f",
+    "chainId": "eip155:1",
+    "name": "BlackLatexFist",
+    "precision": 18,
+    "color": "#3B3A39",
+    "icon": "https://assets.coingecko.com/coins/images/31871/thumb/BLF_Fist_logo_200px.png?1696530683",
+    "symbol": "BLF",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x2b89bf8ba858cd2fcee1fada378d5cd6936968be": {
+    "assetId": "eip155:1/erc20:0x2b89bf8ba858cd2fcee1fada378d5cd6936968be",
+    "chainId": "eip155:1",
+    "name": "Secret  ERC20 ",
+    "precision": 6,
+    "color": "#1C1C1C",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x2B89bF8ba858cd2FCee1faDa378D5cd6936968Be/logo.png",
+    "symbol": "WSCRT",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x2b8ddaf520f38c23bb638766666c6f6952b2d064": {
+    "assetId": "eip155:1/erc20:0x2b8ddaf520f38c23bb638766666c6f6952b2d064",
+    "chainId": "eip155:1",
+    "name": "FriendX",
+    "precision": 18,
+    "color": "#A5E9F3",
+    "icon": "https://assets.coingecko.com/coins/images/32055/thumb/IMG_20230929_081942_771.jpg?1696530852",
+    "symbol": "FRIENDX",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x2b95a1dcc3d405535f9ed33c219ab38e8d7e0884": {
+    "assetId": "eip155:1/erc20:0x2b95a1dcc3d405535f9ed33c219ab38e8d7e0884",
+    "chainId": "eip155:1",
+    "name": "Aladdin cvxCRV on Ethereum",
+    "precision": 18,
+    "color": "#080A1D",
+    "icon": "https://assets.coingecko.com/coins/images/25395/thumb/Sv06cFHS_400x400.jpg?1696524527",
+    "symbol": "ACRV",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x2b9a49417f9c9c8dd18ef5bb37c20637441ad67a": {
+    "assetId": "eip155:1/erc20:0x2b9a49417f9c9c8dd18ef5bb37c20637441ad67a",
+    "chainId": "eip155:1",
+    "name": "greg",
+    "precision": 9,
+    "color": "#2E2F2F",
+    "icon": "https://assets.coingecko.com/coins/images/30415/thumb/photo_2023-05-16_14-37-01.jpg?1696529303",
+    "symbol": "GREG",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x2ba592f78db6436527729929aaf6c908497cb200": {
+    "assetId": "eip155:1/erc20:0x2ba592f78db6436527729929aaf6c908497cb200",
+    "chainId": "eip155:1",
+    "name": "Cream on Ethereum",
+    "precision": 18,
+    "color": "#6CE4DC",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x2ba592F78dB6436527729929AAf6c908497cB200/logo.png",
+    "symbol": "CREAM",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x2ba8349123de45e931a8c8264c332e6e9cf593f9": {
+    "assetId": "eip155:1/erc20:0x2ba8349123de45e931a8c8264c332e6e9cf593f9",
+    "chainId": "eip155:1",
+    "name": "Blockchain Monster Hunt on Ethereum",
+    "precision": 18,
+    "color": "#EF8223",
+    "icon": "https://assets.coingecko.com/coins/images/19045/thumb/bcmc-coin-200x200.png?1696518496",
+    "symbol": "BCMC",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x2bba3cf6de6058cc1b4457ce00deb359e2703d7f": {
+    "assetId": "eip155:1/erc20:0x2bba3cf6de6058cc1b4457ce00deb359e2703d7f",
+    "chainId": "eip155:1",
+    "name": "HashCoin",
+    "precision": 18,
+    "color": "#5C9CFC",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x2bBA3CF6DE6058cc1B4457Ce00deb359E2703d7F/logo.png",
+    "symbol": "HSC",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x2be1e42bf263aab47d27ba92e72c14823e101d7c": {
+    "assetId": "eip155:1/erc20:0x2be1e42bf263aab47d27ba92e72c14823e101d7c",
+    "chainId": "eip155:1",
+    "name": "Fluid FRAX",
+    "precision": 18,
+    "color": "#DDD1E6",
+    "icon": "https://assets.coingecko.com/coins/images/28475/thumb/fFRAX-200x200.png?1696527469",
+    "symbol": "FFRAX",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x2be5e8c109e2197d077d13a82daead6a9b3433c5": {
+    "assetId": "eip155:1/erc20:0x2be5e8c109e2197d077d13a82daead6a9b3433c5",
+    "chainId": "eip155:1",
+    "name": "Tokamak Network",
+    "precision": 18,
+    "color": "#4C89EA",
+    "icon": "https://assets.coingecko.com/coins/images/12260/thumb/D919x5-s_400x400.png?1696512091",
+    "symbol": "TON",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x2c000c0093de75a8fa2fccd3d97b314e20b431c3": {
+    "assetId": "eip155:1/erc20:0x2c000c0093de75a8fa2fccd3d97b314e20b431c3",
+    "chainId": "eip155:1",
+    "name": "Huobi Litecoin",
+    "precision": 18,
+    "color": "#848484",
+    "icon": "https://assets.coingecko.com/coins/images/14110/thumb/HLTC.png?1696513831",
+    "symbol": "HLTC",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x2c022e58c5e3ee213f06f975fd8a0d3a6fe9ca1c": {
+    "assetId": "eip155:1/erc20:0x2c022e58c5e3ee213f06f975fd8a0d3a6fe9ca1c",
+    "chainId": "eip155:1",
+    "name": "FINU",
+    "precision": 18,
+    "color": "#7A7576",
+    "icon": "https://assets.coingecko.com/coins/images/29309/thumb/FINU_200x200.png?1696528260",
+    "symbol": "FINU",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x2c056f9402a0627bc0e580365bb12979fc011e2c": {
+    "assetId": "eip155:1/erc20:0x2c056f9402a0627bc0e580365bb12979fc011e2c",
+    "chainId": "eip155:1",
+    "name": "Squid Game 2 0",
+    "precision": 18,
+    "color": "#FC058C",
+    "icon": "https://assets.coingecko.com/coins/images/30932/thumb/SQUID2_LOGO_%28200x200%29.png?1696529774",
+    "symbol": "SQUID2",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x2c10c0de3362ff21f8ed6bc7f4ac5e391153fd2c": {
+    "assetId": "eip155:1/erc20:0x2c10c0de3362ff21f8ed6bc7f4ac5e391153fd2c",
+    "chainId": "eip155:1",
+    "name": "MARKETVIZ",
+    "precision": 18,
+    "color": "#0B0B0B",
+    "icon": "https://assets.coingecko.com/coins/images/30083/thumb/CG_Logo.png?1696529007",
+    "symbol": "VIZ",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x2c2f7e7c5604d162d75641256b80f1bf6f4dc796": {
+    "assetId": "eip155:1/erc20:0x2c2f7e7c5604d162d75641256b80f1bf6f4dc796",
+    "chainId": "eip155:1",
+    "name": "Polkarare",
+    "precision": 18,
+    "color": "#F8D4E7",
+    "icon": "https://assets.coingecko.com/coins/images/15388/thumb/Image_from_iOS.png?1696515035",
+    "symbol": "PRARE",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x2c33b28527a63cdf13c0b24ce4cf5bf9c9fb3bc6": {
+    "assetId": "eip155:1/erc20:0x2c33b28527a63cdf13c0b24ce4cf5bf9c9fb3bc6",
+    "chainId": "eip155:1",
+    "name": "Schrodinger",
+    "precision": 9,
+    "color": "#E0A86C",
+    "icon": "https://assets.coingecko.com/coins/images/19649/thumb/kitty_dinger.png?1696519077",
+    "symbol": "KITTYDINGER",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x2c4e8f2d746113d0696ce89b35f0d8bf88e0aeca": {
+    "assetId": "eip155:1/erc20:0x2c4e8f2d746113d0696ce89b35f0d8bf88e0aeca",
+    "chainId": "eip155:1",
+    "name": "OST",
+    "precision": 18,
+    "color": "#ABE4D3",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x2C4e8f2D746113d0696cE89B35F0d8bF88E0AEcA/logo.png",
+    "symbol": "OST",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x2c4f1df9c7de0c59778936c9b145ff56813f3295": {
+    "assetId": "eip155:1/erc20:0x2c4f1df9c7de0c59778936c9b145ff56813f3295",
+    "chainId": "eip155:1",
+    "name": "AssetMantle on Ethereum",
+    "precision": 6,
+    "color": "#FCF8E6",
+    "icon": "https://assets.coingecko.com/coins/images/25181/thumb/thumbnail.png?1696524326",
+    "symbol": "MNTL",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x2c537e5624e4af88a7ae4060c022609376c8d0eb": {
+    "assetId": "eip155:1/erc20:0x2c537e5624e4af88a7ae4060c022609376c8d0eb",
+    "chainId": "eip155:1",
+    "name": "BiLira on Ethereum",
+    "precision": 6,
+    "color": "#1C2C4C",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x2C537E5624e4af88A7ae4060C022609376C8D0EB/logo.png",
+    "symbol": "TRYB",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x2c540c3c7be7af98278dc6963e092cd450009d1f": {
+    "assetId": "eip155:1/erc20:0x2c540c3c7be7af98278dc6963e092cd450009d1f",
+    "chainId": "eip155:1",
+    "name": "Sparko",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/32964/thumb/recursos-cripto-95.png?1700020107",
+    "symbol": "SPARKO",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x2c5bc2ba3614fd27fcc7022ea71d9172e2632c16": {
+    "assetId": "eip155:1/erc20:0x2c5bc2ba3614fd27fcc7022ea71d9172e2632c16",
+    "chainId": "eip155:1",
+    "name": "Shib Original Vision",
+    "precision": 18,
+    "color": "#B87B16",
+    "icon": "https://assets.coingecko.com/coins/images/29601/thumb/photo_2023-03-19_19-07-40_2.png?1696528539",
+    "symbol": "SOV",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x2c623d3cc9a2cc158951b8093cb94e80cf56deea": {
+    "assetId": "eip155:1/erc20:0x2c623d3cc9a2cc158951b8093cb94e80cf56deea",
+    "chainId": "eip155:1",
+    "name": "NexAI",
+    "precision": 18,
+    "color": "#09090A",
+    "icon": "https://assets.coingecko.com/coins/images/31056/thumb/NexAI-LOGO_200x200.png?1696529891",
+    "symbol": "NEX",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x2c642cd3bed9b4e4eeec493611779f13efb502f1": {
+    "assetId": "eip155:1/erc20:0x2c642cd3bed9b4e4eeec493611779f13efb502f1",
+    "chainId": "eip155:1",
+    "name": "Carbon21",
+    "precision": 18,
+    "color": "#2C5C1C",
+    "icon": "https://assets.coingecko.com/coins/images/32568/thumb/coin200x200.png?1698549361",
+    "symbol": "C21",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x2c7f442aab99d5e18cfae2291c507c0b5f3c1eb5": {
+    "assetId": "eip155:1/erc20:0x2c7f442aab99d5e18cfae2291c507c0b5f3c1eb5",
+    "chainId": "eip155:1",
+    "name": "Keko",
+    "precision": 18,
+    "color": "#FAFAF0",
+    "icon": "https://assets.coingecko.com/coins/images/29967/thumb/ytX0JKjO_400x400.jpg?1696528893",
+    "symbol": "KEKO",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x2c8ea636345a231e4b1a28f6eeb2072ed909c406": {
+    "assetId": "eip155:1/erc20:0x2c8ea636345a231e4b1a28f6eeb2072ed909c406",
+    "chainId": "eip155:1",
+    "name": "Meme Elon Doge Floki",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/32609/thumb/MEMELON.jpg?1698733326",
+    "symbol": "MEMELON",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x2c95d751da37a5c1d9c5a7fd465c1d50f3d96160": {
+    "assetId": "eip155:1/erc20:0x2c95d751da37a5c1d9c5a7fd465c1d50f3d96160",
+    "chainId": "eip155:1",
+    "name": "WASSIE",
+    "precision": 18,
+    "color": "#337E36",
+    "icon": "https://assets.coingecko.com/coins/images/30144/thumb/logo-coingecko.png?1696529065",
+    "symbol": "WASSIE",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x2c9715d6d95443c3bdf29e473ad168ff6fa6627d": {
+    "assetId": "eip155:1/erc20:0x2c9715d6d95443c3bdf29e473ad168ff6fa6627d",
+    "chainId": "eip155:1",
+    "name": "Crab Rave Token",
+    "precision": 18,
+    "color": "#945345",
+    "icon": "https://assets.coingecko.com/coins/images/30849/thumb/cute-little-crab-cartoon-posing-vector_%281%29.jpg?1696529700",
+    "symbol": "CRABS",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724": {
+    "assetId": "eip155:1/erc20:0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724",
+    "chainId": "eip155:1",
+    "name": "Viberate",
+    "precision": 18,
+    "color": "#FB1C44",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x2C974B2d0BA1716E644c1FC59982a89DDD2fF724/logo.png",
+    "symbol": "VIB",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x2c9aceb63181cd08a093d052ec041e191f229692": {
+    "assetId": "eip155:1/erc20:0x2c9aceb63181cd08a093d052ec041e191f229692",
+    "chainId": "eip155:1",
+    "name": "Angryb",
+    "precision": 18,
+    "color": "#F9DCC7",
+    "icon": "https://assets.coingecko.com/coins/images/17270/thumb/AngryBlockchain.png?1696516825",
+    "symbol": "ANB",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x2cbbce628af16de2fcaad681a3c79ec25043f279": {
+    "assetId": "eip155:1/erc20:0x2cbbce628af16de2fcaad681a3c79ec25043f279",
+    "chainId": "eip155:1",
+    "name": "Scarab DAO",
+    "precision": 18,
+    "color": "#3B2D1D",
+    "icon": "https://assets.coingecko.com/coins/images/32085/thumb/scarab_logo.png?1696530883",
+    "symbol": "SCARAB",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x2cc5c38ea9a58d360181852c9f5719b96407ed1e": {
+    "assetId": "eip155:1/erc20:0x2cc5c38ea9a58d360181852c9f5719b96407ed1e",
+    "chainId": "eip155:1",
+    "name": "MLORD",
+    "precision": 18,
+    "color": "#F6F1ED",
+    "icon": "https://assets.coingecko.com/coins/images/31773/thumb/photo_2023-09-14_21.32.40.jpeg?1696530591",
+    "symbol": "MLORD",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x2d64750ec85f6ec442e3093d74c7b1b0a133be6a": {
+    "assetId": "eip155:1/erc20:0x2d64750ec85f6ec442e3093d74c7b1b0a133be6a",
+    "chainId": "eip155:1",
+    "name": "Point Coin",
+    "precision": 18,
+    "color": "#04DCC7",
+    "icon": "https://assets.coingecko.com/coins/images/27295/thumb/point.png?1696526347",
+    "symbol": "POINT",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x2d787d4f5005bd66ac910c2e821241625c406ed5": {
+    "assetId": "eip155:1/erc20:0x2d787d4f5005bd66ac910c2e821241625c406ed5",
+    "chainId": "eip155:1",
+    "name": "Berry",
+    "precision": 18,
+    "color": "#AC0CDC",
+    "icon": "https://assets.coingecko.com/coins/images/11016/thumb/Berry_logo.png?1696510963",
+    "symbol": "BERRY",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x2d80f5f5328fdcb6eceb7cacf5dd8aedaec94e20": {
+    "assetId": "eip155:1/erc20:0x2d80f5f5328fdcb6eceb7cacf5dd8aedaec94e20",
+    "chainId": "eip155:1",
+    "name": "AGA on Ethereum",
+    "precision": 4,
+    "color": "#FB3A3A",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x2D80f5F5328FdcB6ECeb7Cacf5DD8AEDaEC94e20/logo.png",
+    "symbol": "AGA",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x2d886570a0da04885bfd6eb48ed8b8ff01a0eb7e": {
+    "assetId": "eip155:1/erc20:0x2d886570a0da04885bfd6eb48ed8b8ff01a0eb7e",
+    "chainId": "eip155:1",
+    "name": "Blockchain Bets",
+    "precision": 9,
+    "color": "#DCEAF0",
+    "icon": "https://assets.coingecko.com/coins/images/28694/thumb/200x200.jpg?1696527676",
+    "symbol": "BCB",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x2d94aa3e47d9d5024503ca8491fce9a2fb4da198": {
+    "assetId": "eip155:1/erc20:0x2d94aa3e47d9d5024503ca8491fce9a2fb4da198",
+    "chainId": "eip155:1",
+    "name": "Bankless DAO on Ethereum",
+    "precision": 18,
+    "color": "#040404",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x2d94AA3e47d9D5024503Ca8491fcE9A2fB4DA198/logo.png",
+    "symbol": "BANK",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x2da719db753dfa10a62e140f436e1d67f2ddb0d6": {
+    "assetId": "eip155:1/erc20:0x2da719db753dfa10a62e140f436e1d67f2ddb0d6",
+    "chainId": "eip155:1",
+    "name": "Cere Network",
+    "precision": 10,
+    "color": "#A932C4",
+    "icon": "https://assets.coingecko.com/coins/images/20008/thumb/cere.png?1696519430",
+    "symbol": "CERE",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x2daf397be543cb416ff09a7f48ee5505b074bede": {
+    "assetId": "eip155:1/erc20:0x2daf397be543cb416ff09a7f48ee5505b074bede",
+    "chainId": "eip155:1",
+    "name": "Roshambo",
+    "precision": 18,
+    "color": "#F4C7DA",
+    "icon": "https://assets.coingecko.com/coins/images/32177/thumb/Screenshot_20231008_022931_Gallery.jpg?1696756264",
+    "symbol": "ROS",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x2dca19e944453e46d9130950ca135461b3bc0c30": {
+    "assetId": "eip155:1/erc20:0x2dca19e944453e46d9130950ca135461b3bc0c30",
+    "chainId": "eip155:1",
+    "name": "EYES Protocol",
+    "precision": 18,
+    "color": "#EAEFF1",
+    "icon": "https://assets.coingecko.com/coins/images/9734/thumb/pTaAZUI6_400x400.jpg?1696509797",
+    "symbol": "EYES",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x2dd1b9410c73e16b60240e529e38e30425f00d4e": {
+    "assetId": "eip155:1/erc20:0x2dd1b9410c73e16b60240e529e38e30425f00d4e",
+    "chainId": "eip155:1",
+    "name": "Kay Pacha",
+    "precision": 10,
+    "color": "#636363",
+    "icon": "https://assets.coingecko.com/coins/images/27194/thumb/0_Lzf-8HxwOnPjYWi-.jpeg?1696526243",
+    "symbol": "PACHA",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x2dd7144b701bd66bc12ec17f1afaad409f0e32cf": {
+    "assetId": "eip155:1/erc20:0x2dd7144b701bd66bc12ec17f1afaad409f0e32cf",
+    "chainId": "eip155:1",
+    "name": "Poope",
+    "precision": 18,
+    "color": "#A57F59",
+    "icon": "https://assets.coingecko.com/coins/images/30685/thumb/smilepoopecoinf.png?1696529554",
+    "symbol": "POOPE",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x2de509bf0014ddf697b220be628213034d320ece": {
+    "assetId": "eip155:1/erc20:0x2de509bf0014ddf697b220be628213034d320ece",
+    "chainId": "eip155:1",
+    "name": "Don t Buy Inu",
+    "precision": 18,
+    "color": "#7C5C5C",
+    "icon": "https://assets.coingecko.com/coins/images/28058/thumb/1Artboard_1_%282%29.png?1696527070",
+    "symbol": "DBI",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x2de7b02ae3b1f11d51ca7b2495e9094874a064c0": {
+    "assetId": "eip155:1/erc20:0x2de7b02ae3b1f11d51ca7b2495e9094874a064c0",
+    "chainId": "eip155:1",
+    "name": "SHIB2",
+    "precision": 18,
+    "color": "#C17D50",
+    "icon": "https://assets.coingecko.com/coins/images/31776/thumb/IMG_6344_2.jpg?1696530594",
+    "symbol": "SHIB2",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x2df7d0e4903029717c949cad204075a3d75c8806": {
+    "assetId": "eip155:1/erc20:0x2df7d0e4903029717c949cad204075a3d75c8806",
+    "chainId": "eip155:1",
+    "name": "Sweet",
+    "precision": 9,
+    "color": "#F9DAEE",
+    "icon": "https://assets.coingecko.com/coins/images/31959/thumb/0x2df7d0e4903029717c949cad204075a3d75c8806.png?1696530765",
+    "symbol": "SWEET",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x2dff88a56767223a5529ea5960da7a3f5f766406": {
+    "assetId": "eip155:1/erc20:0x2dff88a56767223a5529ea5960da7a3f5f766406",
+    "chainId": "eip155:1",
+    "name": "SPACE ID on Ethereum",
+    "precision": 18,
+    "color": "#040605",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x2dfF88A56767223A5529eA5960Da7A3F5f766406/logo.png",
+    "symbol": "ID",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x2e19067cbeb38d6554d31a1a83aefc4018a1688a": {
+    "assetId": "eip155:1/erc20:0x2e19067cbeb38d6554d31a1a83aefc4018a1688a",
+    "chainId": "eip155:1",
+    "name": "Coinback",
+    "precision": 18,
+    "color": "#0C0C0E",
+    "icon": "https://assets.coingecko.com/coins/images/31576/thumb/F1090BAA-54E3-4F9A-AFAA-57BA89E144CB.PNG?1696530393",
+    "symbol": "CBK",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x2e1e15c44ffe4df6a0cb7371cd00d5028e571d14": {
+    "assetId": "eip155:1/erc20:0x2e1e15c44ffe4df6a0cb7371cd00d5028e571d14",
+    "chainId": "eip155:1",
+    "name": "Mettalex on Ethereum",
+    "precision": 18,
+    "color": "#3C34A4",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x2e1E15C44Ffe4Df6a0cb7371CD00d5028e571d14/logo.png",
+    "symbol": "MTLX",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x2e2364966267b5d7d2ce6cd9a9b5bd19d9c7c6a9": {
+    "assetId": "eip155:1/erc20:0x2e2364966267b5d7d2ce6cd9a9b5bd19d9c7c6a9",
+    "chainId": "eip155:1",
+    "name": "Voice",
+    "precision": 18,
+    "color": "#2F374D",
+    "icon": "https://assets.coingecko.com/coins/images/12926/thumb/OjCQtdL.png?1696512714",
+    "symbol": "VOICE",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x2e516ba5bf3b7ee47fb99b09eadb60bde80a82e0": {
+    "assetId": "eip155:1/erc20:0x2e516ba5bf3b7ee47fb99b09eadb60bde80a82e0",
+    "chainId": "eip155:1",
+    "name": "Eggs",
+    "precision": 18,
+    "color": "#D6C38C",
+    "icon": "https://assets.coingecko.com/coins/images/29024/thumb/egg200x200.png?1696527994",
+    "symbol": "EGGS",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x2e7b0d4f9b2eaf782ed3d160e3a0a4b1a7930ada": {
+    "assetId": "eip155:1/erc20:0x2e7b0d4f9b2eaf782ed3d160e3a0a4b1a7930ada",
+    "chainId": "eip155:1",
+    "name": "Ceres",
+    "precision": 18,
+    "color": "#283D80",
+    "icon": "https://assets.coingecko.com/coins/images/17959/thumb/sQLDgqx.png?1696517478",
+    "symbol": "CERES",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x2e80225f383f858e8737199d3496c5cf827670a5": {
+    "color": "#FFFFFF",
+    "icon": "https://raw.githubusercontent.com/Idle-Labs/idle-dashboard/master/public/images/tokens/WETH.svg",
+    "name": "EulerStaking WETH Junior Tranche",
+    "precision": 18,
+    "symbol": "BB_idleEulStk_eWETH",
+    "chainId": "eip155:1",
+    "assetId": "eip155:1/erc20:0x2e80225f383f858e8737199d3496c5cf827670a5",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x2e85ae1c47602f7927bcabc2ff99c40aa222ae15": {
+    "assetId": "eip155:1/erc20:0x2e85ae1c47602f7927bcabc2ff99c40aa222ae15",
+    "chainId": "eip155:1",
+    "name": "Katana Inu on Ethereum",
+    "precision": 18,
+    "color": "#CCC7BF",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x2e85ae1C47602f7927bCabc2Ff99C40aA222aE15/logo.png",
+    "symbol": "KATA",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x2e95cea14dd384429eb3c4331b776c4cfbb6fcd9": {
+    "assetId": "eip155:1/erc20:0x2e95cea14dd384429eb3c4331b776c4cfbb6fcd9",
+    "chainId": "eip155:1",
+    "name": "Throne",
+    "precision": 18,
+    "color": "#141414",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x2E95Cea14dd384429EB3c4331B776c4CFBB6FCD9/logo.png",
+    "symbol": "THN",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x2e9d63788249371f1dfc918a52f8d799f4a38c94": {
+    "assetId": "eip155:1/erc20:0x2e9d63788249371f1dfc918a52f8d799f4a38c94",
+    "chainId": "eip155:1",
+    "name": "Tokemak",
+    "precision": 18,
+    "color": "#3C3C3C",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x2e9d63788249371f1DFC918a52f8d799F4a38C94/logo.png",
+    "symbol": "TOKE",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x2ea6cc1ac06fdc01b568fcad8d842dec3f2ce1ad": {
+    "assetId": "eip155:1/erc20:0x2ea6cc1ac06fdc01b568fcad8d842dec3f2ce1ad",
+    "chainId": "eip155:1",
+    "name": "Blob",
+    "precision": 18,
+    "color": "#060607",
+    "icon": "https://assets.coingecko.com/coins/images/31749/thumb/IMG_C7C8AFB6267E-1.jpeg?1696530568",
+    "symbol": "BLOB",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x2ebd53d035150f328bd754d6dc66b99b0edb89aa": {
+    "assetId": "eip155:1/erc20:0x2ebd53d035150f328bd754d6dc66b99b0edb89aa",
+    "chainId": "eip155:1",
+    "name": "Metronome",
+    "precision": 18,
+    "color": "#7D63FC",
+    "icon": "https://assets.coingecko.com/coins/images/3249/thumb/met.png?1696503964",
+    "symbol": "MET",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x2ecba91da63c29ea80fbe7b52632ca2d1f8e5be0": {
+    "assetId": "eip155:1/erc20:0x2ecba91da63c29ea80fbe7b52632ca2d1f8e5be0",
+    "chainId": "eip155:1",
+    "name": "FairERC20",
+    "precision": 18,
+    "color": "#1E1D1C",
+    "icon": "https://assets.coingecko.com/coins/images/30698/thumb/fair.png?1696529568",
+    "symbol": "FERC",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x2ed2cc2c858a8a8219fd2f2d9e170285dbd02756": {
+    "assetId": "eip155:1/erc20:0x2ed2cc2c858a8a8219fd2f2d9e170285dbd02756",
+    "chainId": "eip155:1",
+    "name": "Sports Bet",
+    "precision": 18,
+    "color": "#B72B2B",
+    "icon": "https://assets.coingecko.com/coins/images/25312/thumb/sbet_logo_256.png?1696524449",
+    "symbol": "SBET",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x2edf094db69d6dcd487f1b3db9febe2eec0dd4c5": {
+    "assetId": "eip155:1/erc20:0x2edf094db69d6dcd487f1b3db9febe2eec0dd4c5",
+    "chainId": "eip155:1",
+    "name": "ZeroSwap on Ethereum",
+    "precision": 18,
+    "color": "#04044C",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x2eDf094dB69d6Dcd487f1B3dB9febE2eeC0dd4c5/logo.png",
+    "symbol": "ZEE",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x2ef52ed7de8c5ce03a4ef0efbe9b7450f2d7edc9": {
+    "assetId": "eip155:1/erc20:0x2ef52ed7de8c5ce03a4ef0efbe9b7450f2d7edc9",
+    "chainId": "eip155:1",
+    "name": "Revain",
+    "precision": 6,
+    "color": "#191E45",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x2ef52Ed7De8c5ce03a4eF0efbe9B7450F2D7Edc9/logo.png",
+    "symbol": "REV",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x2f09757b222642c649f1f9d80798b0123fa18ba9": {
+    "assetId": "eip155:1/erc20:0x2f09757b222642c649f1f9d80798b0123fa18ba9",
+    "chainId": "eip155:1",
+    "name": "Reflex Staking Bot",
+    "precision": 18,
+    "color": "#CA5C59",
+    "icon": "https://assets.coingecko.com/coins/images/31434/thumb/logo.png?1696530249",
+    "symbol": "REFLEX",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x2f109021afe75b949429fe30523ee7c0d5b27207": {
+    "assetId": "eip155:1/erc20:0x2f109021afe75b949429fe30523ee7c0d5b27207",
+    "chainId": "eip155:1",
+    "name": "OccamFi on Ethereum",
+    "precision": 18,
+    "color": "#292C3F",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x2F109021aFe75B949429fe30523Ee7C0D5B27207/logo.png",
+    "symbol": "OCC",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x2f11eeee0bf21e7661a22dbbbb9068f4ad191b86": {
+    "assetId": "eip155:1/erc20:0x2f11eeee0bf21e7661a22dbbbb9068f4ad191b86",
+    "chainId": "eip155:1",
+    "name": "Backed NIU Technologies on Ethereum",
+    "precision": 18,
+    "color": "#EC8898",
+    "icon": "https://assets.coingecko.com/coins/images/31869/thumb/b-NIU-200x200.png?1696530681",
+    "symbol": "BNIU",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x2f123cf3f37ce3328cc9b5b8415f9ec5109b45e7": {
+    "assetId": "eip155:1/erc20:0x2f123cf3f37ce3328cc9b5b8415f9ec5109b45e7",
+    "chainId": "eip155:1",
+    "name": "Backed GOVIES 0 6 months EURO on Ethereum",
+    "precision": 18,
+    "color": "#ADB4B6",
+    "icon": "https://assets.coingecko.com/coins/images/31870/thumb/b-C3-M-200x200.png?1696530682",
+    "symbol": "BC3M",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x2f141ce366a2462f02cea3d12cf93e4dca49e4fd": {
+    "assetId": "eip155:1/erc20:0x2f141ce366a2462f02cea3d12cf93e4dca49e4fd",
+    "chainId": "eip155:1",
+    "name": "FREEdom coin on Ethereum",
+    "precision": 18,
+    "color": "#E7B036",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x2F141Ce366a2462f02cEA3D12CF93E4DCa49e4Fd/logo.png",
+    "symbol": "FREE",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x2f30700735697baac1b9177d404303f0cc0e1a74": {
+    "assetId": "eip155:1/erc20:0x2f30700735697baac1b9177d404303f0cc0e1a74",
+    "chainId": "eip155:1",
+    "name": "Startupers",
+    "precision": 18,
+    "color": "#2B2317",
+    "icon": "https://assets.coingecko.com/coins/images/32325/thumb/star.jpg?1697449239",
+    "symbol": "STAR",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x2f32b39023da7d6a6486a85d12b346eb9c2a0d19": {
+    "assetId": "eip155:1/erc20:0x2f32b39023da7d6a6486a85d12b346eb9c2a0d19",
+    "chainId": "eip155:1",
+    "name": "Ferro",
+    "precision": 18,
+    "color": "#D97E53",
+    "icon": "https://assets.coingecko.com/coins/images/26111/thumb/FER_Token.png?1696525201",
+    "symbol": "FER",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x2f4404c4012476929b6503e1397707480bf23b7f": {
+    "assetId": "eip155:1/erc20:0x2f4404c4012476929b6503e1397707480bf23b7f",
+    "chainId": "eip155:1",
+    "name": "AITravis",
+    "precision": 9,
+    "color": "#111430",
+    "icon": "https://assets.coingecko.com/coins/images/28933/thumb/ava_%283%29.png?1696527907",
+    "symbol": "TAI",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x2f4eb47a1b1f4488c71fc10e39a4aa56af33dd49": {
+    "assetId": "eip155:1/erc20:0x2f4eb47a1b1f4488c71fc10e39a4aa56af33dd49",
+    "chainId": "eip155:1",
+    "name": "UNCL on Ethereum",
+    "precision": 18,
+    "color": "#1BAAFC",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x2f4eb47A1b1F4488C71fc10e39a4aa56AF33Dd49/logo.png",
+    "symbol": "UNCL",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x2f573070e6090b3264fe707e2c9f201716f123c7": {
+    "assetId": "eip155:1/erc20:0x2f573070e6090b3264fe707e2c9f201716f123c7",
+    "chainId": "eip155:1",
+    "name": "Mumu",
+    "precision": 18,
+    "color": "#C15C11",
+    "icon": "https://assets.coingecko.com/coins/images/29921/thumb/Mumucoin-200x200.png?1696528850",
+    "symbol": "MUMU",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x2f57430a6ceda85a67121757785877b4a71b8e6d": {
+    "assetId": "eip155:1/erc20:0x2f57430a6ceda85a67121757785877b4a71b8e6d",
+    "chainId": "eip155:1",
+    "name": "DefiPlaza",
+    "precision": 18,
+    "color": "#6114C4",
+    "icon": "https://assets.coingecko.com/coins/images/19552/thumb/profile-round.png?1696518985",
+    "symbol": "DFP2",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x2f6f397332b0f8b4536430bcc97980aa838f62f9": {
+    "assetId": "eip155:1/erc20:0x2f6f397332b0f8b4536430bcc97980aa838f62f9",
+    "chainId": "eip155:1",
+    "name": "Yuna",
+    "precision": 18,
+    "color": "#393735",
+    "icon": "https://assets.coingecko.com/coins/images/29384/thumb/logo_gl_%281%29.png?1696528331",
+    "symbol": "YUNA",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x2f75113b13d136f861d212fa9b572f2c79ac81c4": {
+    "assetId": "eip155:1/erc20:0x2f75113b13d136f861d212fa9b572f2c79ac81c4",
+    "chainId": "eip155:1",
+    "name": "Ekta on Ethereum",
+    "precision": 18,
+    "color": "#CA665C",
+    "icon": "https://assets.coingecko.com/coins/images/22350/thumb/token.jpg?1696521693",
+    "symbol": "EKTA",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x2f8221e82e0d4669ad66eabf02a5baed43ea49e7": {
+    "assetId": "eip155:1/erc20:0x2f8221e82e0d4669ad66eabf02a5baed43ea49e7",
+    "chainId": "eip155:1",
+    "name": "Newsly",
+    "precision": 18,
+    "color": "#EEEFF3",
+    "icon": "https://assets.coingecko.com/coins/images/31489/thumb/byk_Sy1X_400x400.jpg?1696530300",
+    "symbol": "NEWS",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x2f9411088cef82fd9fb904eb8092f28eb485c8f6": {
+    "assetId": "eip155:1/erc20:0x2f9411088cef82fd9fb904eb8092f28eb485c8f6",
+    "chainId": "eip155:1",
+    "name": "Athens",
+    "precision": 18,
+    "color": "#AFD5F2",
+    "icon": "https://assets.coingecko.com/coins/images/24514/thumb/ATH-logo-round.png?1696523693",
+    "symbol": "ATH",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x2fc246aa66f0da5bb1368f688548ecbbe9bdee5d": {
+    "assetId": "eip155:1/erc20:0x2fc246aa66f0da5bb1368f688548ecbbe9bdee5d",
+    "chainId": "eip155:1",
+    "name": "TEMCO",
+    "precision": 18,
+    "color": "#6B96C7",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x2Fc246aA66F0da5bB1368F688548ecBBE9bdee5d/logo.png",
+    "symbol": "TEMCO",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x2fd61567c29e7adb4ca17e60e1f4a3fcfe68acb8": {
+    "assetId": "eip155:1/erc20:0x2fd61567c29e7adb4ca17e60e1f4a3fcfe68acb8",
+    "chainId": "eip155:1",
+    "name": "SymVerse",
+    "precision": 18,
+    "color": "#2F9EA0",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x2fd61567c29E7ADB4Ca17e60E1f4a3Fcfe68aCb8/logo.png",
+    "symbol": "SYM",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x2fd8bc03d9e827f77fac20b5130ee98b7f80149d": {
+    "assetId": "eip155:1/erc20:0x2fd8bc03d9e827f77fac20b5130ee98b7f80149d",
+    "chainId": "eip155:1",
+    "name": "CRB Coin on Ethereum",
+    "precision": 8,
+    "color": "#047EE1",
+    "icon": "https://assets.coingecko.com/coins/images/19399/thumb/crb.png?1696518838",
+    "symbol": "CRB",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x2fda8c6783aa36bed645bad28a4cdc8769dcd252": {
+    "assetId": "eip155:1/erc20:0x2fda8c6783aa36bed645bad28a4cdc8769dcd252",
+    "chainId": "eip155:1",
+    "name": "Deuterium",
+    "precision": 18,
+    "color": "#9045B0",
+    "icon": "https://assets.coingecko.com/coins/images/28732/thumb/LinkedIn_d2o_Icon_300x300px.png?1696527712",
+    "symbol": "D2O",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x2fe39f22eac6d3c1c86dd9d143640ebb94609fce": {
+    "assetId": "eip155:1/erc20:0x2fe39f22eac6d3c1c86dd9d143640ebb94609fce",
+    "chainId": "eip155:1",
+    "name": "JD Coin",
+    "precision": 18,
+    "color": "#F0B83B",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x2fe39f22EAC6d3c1C86DD9D143640EbB94609FCE/logo.png",
+    "symbol": "JDC",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x3007083eaa95497cd6b2b809fb97b6a30bdf53d3": {
+    "assetId": "eip155:1/erc20:0x3007083eaa95497cd6b2b809fb97b6a30bdf53d3",
+    "chainId": "eip155:1",
+    "name": "PSYOP",
+    "precision": 18,
+    "color": "#4797D9",
+    "icon": "https://assets.coingecko.com/coins/images/30485/thumb/logo_200.png?1696529371",
+    "symbol": "PSYOP",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x301c755ba0fca00b1923768fffb3df7f4e63af31": {
+    "assetId": "eip155:1/erc20:0x301c755ba0fca00b1923768fffb3df7f4e63af31",
+    "chainId": "eip155:1",
+    "name": "Global Digital Content",
+    "precision": 18,
+    "color": "#2B2B2B",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x301C755bA0fcA00B1923768Fffb3Df7f4E63aF31/logo.png",
+    "symbol": "GDC",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x302cae5dcf8f051d0177043c3438020b89b33218": {
+    "assetId": "eip155:1/erc20:0x302cae5dcf8f051d0177043c3438020b89b33218",
+    "chainId": "eip155:1",
+    "name": "Boost",
+    "precision": 18,
+    "color": "#192116",
+    "icon": "https://assets.coingecko.com/coins/images/17657/thumb/02FjG1Og.png?1696517188",
+    "symbol": "BOOST",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x305de070488c8469dfac957226c9c900c4bfba22": {
+    "assetId": "eip155:1/erc20:0x305de070488c8469dfac957226c9c900c4bfba22",
+    "chainId": "eip155:1",
+    "name": "More",
+    "precision": 8,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/742/thumb/1722.png?1696501897",
+    "symbol": "MORE",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x3079f61704e9efa2bcf1db412f735d8d4cfa26f4": {
+    "assetId": "eip155:1/erc20:0x3079f61704e9efa2bcf1db412f735d8d4cfa26f4",
+    "chainId": "eip155:1",
+    "name": "HappyFans on Ethereum",
+    "precision": 18,
+    "color": "#EAEAED",
+    "icon": "https://assets.coingecko.com/coins/images/19027/thumb/O1pUoR8G_400x400.jpeg?1696518478",
+    "symbol": "HAPPY",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x3085154623f51b00dedfc6ceeb5197277a66b17b": {
+    "assetId": "eip155:1/erc20:0x3085154623f51b00dedfc6ceeb5197277a66b17b",
+    "chainId": "eip155:1",
+    "name": "NFTY DeFi Protocol",
+    "precision": 18,
+    "color": "#1C1B1C",
+    "icon": "https://assets.coingecko.com/coins/images/18584/thumb/nfty_logo.png?1696518060",
+    "symbol": "NFTY",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x30b47e13ccee15d6fa7a80994c94bb9b4a4bb973": {
+    "assetId": "eip155:1/erc20:0x30b47e13ccee15d6fa7a80994c94bb9b4a4bb973",
+    "chainId": "eip155:1",
+    "name": "Scratch Meme Coin on Ethereum",
+    "precision": 18,
+    "color": "#CF961D",
+    "icon": "https://assets.coingecko.com/coins/images/31323/thumb/logo_%283%29.png?1696530142",
+    "symbol": "SCRATS",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x30b593f8c3ab37615359b4e0e6df2e06d55bb55d": {
+    "assetId": "eip155:1/erc20:0x30b593f8c3ab37615359b4e0e6df2e06d55bb55d",
+    "chainId": "eip155:1",
+    "name": "FXDX",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/32730/thumb/ICONIC_LOGO_BLACK_PNG_%281%29.png?1699217673",
+    "symbol": "FXDX",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x30cf203b48edaa42c3b4918e955fed26cd012a3f": {
+    "assetId": "eip155:1/erc20:0x30cf203b48edaa42c3b4918e955fed26cd012a3f",
+    "chainId": "eip155:1",
+    "name": "MetaGame on Ethereum",
+    "precision": 18,
+    "color": "#12B084",
+    "icon": "https://assets.coingecko.com/coins/images/13099/thumb/V8phEz8V.png?1696512885",
+    "symbol": "SEED",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x30d20208d987713f46dfd34ef128bb16c404d10f": {
+    "assetId": "eip155:1/erc20:0x30d20208d987713f46dfd34ef128bb16c404d10f",
+    "chainId": "eip155:1",
+    "name": "Stader on Ethereum",
+    "precision": 18,
+    "color": "#080808",
+    "icon": "https://assets.coingecko.com/coins/images/20658/thumb/SD_Token_Logo.png?1696520060",
+    "symbol": "SD",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x30dcba0405004cf124045793e1933c798af9e66a": {
+    "assetId": "eip155:1/erc20:0x30dcba0405004cf124045793e1933c798af9e66a",
+    "chainId": "eip155:1",
+    "name": "Yieldification on Ethereum",
+    "precision": 18,
+    "color": "#F0A124",
+    "icon": "https://assets.coingecko.com/coins/images/26699/thumb/logo.png?1696525772",
+    "symbol": "YDF",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x30df7d7ee52c1b03cd009e656f00ab875adceed2": {
+    "assetId": "eip155:1/erc20:0x30df7d7ee52c1b03cd009e656f00ab875adceed2",
+    "chainId": "eip155:1",
+    "name": "MetaReset  OLD ",
+    "precision": 18,
+    "color": "#1A1A1A",
+    "icon": "https://assets.coingecko.com/coins/images/26631/thumb/logo.png?1696525704",
+    "symbol": "RESET",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x30f271c9e86d2b7d00a6376cd96a1cfbd5f0b9b3": {
+    "assetId": "eip155:1/erc20:0x30f271c9e86d2b7d00a6376cd96a1cfbd5f0b9b3",
+    "chainId": "eip155:1",
+    "name": "Decentr",
+    "precision": 18,
+    "color": "#69BCDB",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x30f271C9E86D2B7d00a6376Cd96A1cFBD5F0b9b3/logo.png",
+    "symbol": "DEC",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x30f7c830e0c2f4bec871df809d73e27ef19eb151": {
+    "assetId": "eip155:1/erc20:0x30f7c830e0c2f4bec871df809d73e27ef19eb151",
+    "chainId": "eip155:1",
+    "name": "Flooring Protocol  PudgyPenguins",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/32691/thumb/pudgy_penguins_64_64.png?1698974130",
+    "symbol": "PPG",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x3106a0a076bedae847652f42ef07fd58589e001f": {
+    "assetId": "eip155:1/erc20:0x3106a0a076bedae847652f42ef07fd58589e001f",
+    "chainId": "eip155:1",
+    "name": "Alkimi",
+    "precision": 18,
+    "color": "#5E6566",
+    "icon": "https://assets.coingecko.com/coins/images/17979/thumb/Alkimi_Alternatives_PNG.png?1696517497",
+    "symbol": "ADS",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x310c8f00b9de3c31ab95ea68feb6c877538f7947": {
+    "assetId": "eip155:1/erc20:0x310c8f00b9de3c31ab95ea68feb6c877538f7947",
+    "chainId": "eip155:1",
+    "name": "Undead Blocks",
+    "precision": 18,
+    "color": "#EAC2C5",
+    "icon": "https://assets.coingecko.com/coins/images/25382/thumb/AB0Uemhlw6jR.png?1696524515",
+    "symbol": "UNDEAD",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x3136ef851592acf49ca4c825131e364170fa32b3": {
+    "assetId": "eip155:1/erc20:0x3136ef851592acf49ca4c825131e364170fa32b3",
+    "chainId": "eip155:1",
+    "name": "CoinFi",
+    "precision": 18,
+    "color": "#15A7E9",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x3136eF851592aCf49CA4C825131E364170FA32b3/logo.png",
+    "symbol": "COFI",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x313cae7ad4454aac7b208c1f089da2b0e5825e46": {
+    "assetId": "eip155:1/erc20:0x313cae7ad4454aac7b208c1f089da2b0e5825e46",
+    "chainId": "eip155:1",
+    "name": "RepubliK",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/32950/thumb/RPK_Token_Logo_2x.png?1699935349",
+    "symbol": "RPK",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x31429d1856ad1377a8a0079410b297e1a9e214c2": {
+    "assetId": "eip155:1/erc20:0x31429d1856ad1377a8a0079410b297e1a9e214c2",
+    "chainId": "eip155:1",
+    "name": "ANGLE",
+    "precision": 18,
+    "color": "#E3C4B0",
+    "icon": "https://assets.coingecko.com/coins/images/19060/thumb/ANGLE_Token-light.png?1696518509",
+    "symbol": "ANGLE",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x3175df0976dfa876431c2e9ee6bc45b65d3473cc": {
+    "assetId": "eip155:1/erc20:0x3175df0976dfa876431c2e9ee6bc45b65d3473cc",
+    "chainId": "eip155:1",
+    "name": "Curve fi FRAX USDC",
+    "precision": 18,
+    "color": "#C4340A",
+    "icon": "https://assets.coingecko.com/coins/images/26829/thumb/W1sQNVWo_400x400.jpeg?1696525888",
+    "symbol": "CRVFRAX",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x318ee488af8881f9945b6d3d69e8b395fb559bb1": {
+    "assetId": "eip155:1/erc20:0x318ee488af8881f9945b6d3d69e8b395fb559bb1",
+    "chainId": "eip155:1",
+    "name": "Monte",
+    "precision": 18,
+    "color": "#DFDCDD",
+    "icon": "https://assets.coingecko.com/coins/images/29909/thumb/tPZ4SdnV_400x400.jpg?1696528838",
+    "symbol": "MONTE",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x31adda225642a8f4d7e90d4152be6661ab22a5a2": {
+    "assetId": "eip155:1/erc20:0x31adda225642a8f4d7e90d4152be6661ab22a5a2",
+    "chainId": "eip155:1",
+    "name": "Hypr Network",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/33071/thumb/655412078d33fa9fee8e3a1b_hypr_logo_200.png?1700598490",
+    "symbol": "HYPR",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x31c2415c946928e9fd1af83cdfa38d3edbd4326f": {
+    "assetId": "eip155:1/erc20:0x31c2415c946928e9fd1af83cdfa38d3edbd4326f",
+    "chainId": "eip155:1",
+    "name": "MADworld",
+    "precision": 8,
+    "color": "#F4D99B",
+    "icon": "https://assets.coingecko.com/coins/images/20939/thumb/UMAD_.png?1696520328",
+    "symbol": "UMAD",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x31c8eacbffdd875c74b94b077895bd78cf1e64a3": {
+    "assetId": "eip155:1/erc20:0x31c8eacbffdd875c74b94b077895bd78cf1e64a3",
+    "chainId": "eip155:1",
+    "name": "Radworks",
+    "precision": 18,
+    "color": "#05DF1F",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x31c8EAcBFFdD875c74b94b077895Bd78CF1E64A3/logo.png",
+    "symbol": "RAD",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x31e4efe290973ebe91b3a875a7994f650942d28f": {
+    "assetId": "eip155:1/erc20:0x31e4efe290973ebe91b3a875a7994f650942d28f",
+    "chainId": "eip155:1",
+    "name": "Shrapnel on Ethereum",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/32793/thumb/shrapnel.png?1699441661",
+    "symbol": "SHRAP",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x31ea0de8119307aa264bb4b38727aab4e36b074f": {
+    "assetId": "eip155:1/erc20:0x31ea0de8119307aa264bb4b38727aab4e36b074f",
+    "chainId": "eip155:1",
+    "name": "Bit Store on Ethereum",
+    "precision": 18,
+    "color": "#DCD4BC",
+    "icon": "https://assets.coingecko.com/coins/images/20463/thumb/bit_store.PNG?1696519868",
+    "symbol": "STORE",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x31f69de127c8a0ff10819c0955490a4ae46fcc2a": {
+    "assetId": "eip155:1/erc20:0x31f69de127c8a0ff10819c0955490a4ae46fcc2a",
+    "chainId": "eip155:1",
+    "name": "Obyte on Ethereum",
+    "precision": 18,
+    "color": "#2C3C4C",
+    "icon": "https://assets.coingecko.com/coins/images/561/thumb/byteball.png?1696501768",
+    "symbol": "GBYTE",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x31fdd1c6607f47c14a2821f599211c67ac20fa96": {
+    "assetId": "eip155:1/erc20:0x31fdd1c6607f47c14a2821f599211c67ac20fa96",
+    "chainId": "eip155:1",
+    "name": "Burency",
+    "precision": 18,
+    "color": "#DA823D",
+    "icon": "https://assets.coingecko.com/coins/images/12216/thumb/Ddphl9BD.png?1696512050",
+    "symbol": "BUY",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x320623b8e4ff03373931769a31fc52a4e78b5d70": {
+    "assetId": "eip155:1/erc20:0x320623b8e4ff03373931769a31fc52a4e78b5d70",
+    "chainId": "eip155:1",
+    "name": "Reserve Rights",
+    "precision": 18,
+    "color": "#050505",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x320623b8E4fF03373931769A31Fc52A4E78B5d70/logo.png",
+    "symbol": "RSR",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x3209d14ff61766359e64aceff91877cec2ad968e": {
+    "assetId": "eip155:1/erc20:0x3209d14ff61766359e64aceff91877cec2ad968e",
+    "chainId": "eip155:1",
+    "name": "CouponBay",
+    "precision": 18,
+    "color": "#5C2C84",
+    "icon": "https://assets.coingecko.com/coins/images/24696/thumb/logo_200.png?1696523862",
+    "symbol": "CUP",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x320d31183100280ccdf69366cd56180ea442a3e8": {
+    "assetId": "eip155:1/erc20:0x320d31183100280ccdf69366cd56180ea442a3e8",
+    "chainId": "eip155:1",
+    "name": "Lightcoin on Ethereum",
+    "precision": 8,
+    "color": "#503BB6",
+    "icon": "https://assets.coingecko.com/coins/images/16381/thumb/lhc.PNG?1696515979",
+    "symbol": "LHC",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x320ed4c7243e35a00f9ca30a1ae60929d15eae37": {
+    "assetId": "eip155:1/erc20:0x320ed4c7243e35a00f9ca30a1ae60929d15eae37",
+    "chainId": "eip155:1",
+    "name": "The Blox Project",
+    "precision": 18,
+    "color": "#282672",
+    "icon": "https://assets.coingecko.com/coins/images/32397/thumb/blox.png?1698054451",
+    "symbol": "BLOX",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x3212b29e33587a00fb1c83346f5dbfa69a458923": {
+    "assetId": "eip155:1/erc20:0x3212b29e33587a00fb1c83346f5dbfa69a458923",
+    "chainId": "eip155:1",
+    "name": "The Tokenized Bitcoin",
+    "precision": 8,
+    "color": "#272744",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x3212b29E33587A00FB1C83346f5dBFA69A458923/logo.png",
+    "symbol": "IMBTC",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x321c2fe4446c7c963dc41dd58879af648838f98d": {
+    "assetId": "eip155:1/erc20:0x321c2fe4446c7c963dc41dd58879af648838f98d",
+    "chainId": "eip155:1",
+    "name": "Cryptex Finance",
+    "precision": 18,
+    "color": "#262147",
+    "icon": "https://assets.coingecko.com/coins/images/14932/thumb/glossy_icon_-_C200px.png?1696514592",
+    "symbol": "CTX",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x3231cb76718cdef2155fc47b5286d82e6eda273f": {
+    "assetId": "eip155:1/erc20:0x3231cb76718cdef2155fc47b5286d82e6eda273f",
+    "chainId": "eip155:1",
+    "name": "Monerium EUR emoney on Ethereum",
+    "precision": 18,
+    "color": "#0783C0",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x3231Cb76718CDeF2155FC47b5286d82e6eDA273f/logo.png",
+    "symbol": "EURE",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x32353a6c91143bfd6c7d363b546e62a9a2489a20": {
+    "assetId": "eip155:1/erc20:0x32353a6c91143bfd6c7d363b546e62a9a2489a20",
+    "chainId": "eip155:1",
+    "name": "Adventure Gold",
+    "precision": 18,
+    "color": "#040404",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x32353A6C91143bfd6C7d363B546e62a9A2489A20/logo.png",
+    "symbol": "AGLD",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x3235b13708f178af6f110de7177ed5de10c1093d": {
+    "assetId": "eip155:1/erc20:0x3235b13708f178af6f110de7177ed5de10c1093d",
+    "chainId": "eip155:1",
+    "name": "Mongol NFT on Ethereum",
+    "precision": 18,
+    "color": "#E2E2E2",
+    "icon": "https://assets.coingecko.com/coins/images/23718/thumb/swI93LWg_400x400.jpg?1696522918",
+    "symbol": "MNFT",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x32462ba310e447ef34ff0d15bce8613aa8c4a244": {
+    "assetId": "eip155:1/erc20:0x32462ba310e447ef34ff0d15bce8613aa8c4a244",
+    "chainId": "eip155:1",
+    "name": "Dohrnii on Ethereum",
+    "precision": 18,
+    "color": "#7A8FEA",
+    "icon": "https://assets.coingecko.com/coins/images/24966/thumb/dhn.png?1696524119",
+    "symbol": "DHN",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x3267c5b73cc15e253b1a90c01366b17d560bc6fb": {
+    "assetId": "eip155:1/erc20:0x3267c5b73cc15e253b1a90c01366b17d560bc6fb",
+    "chainId": "eip155:1",
+    "name": "President Ron DeSantis",
+    "precision": 9,
+    "color": "#312C3D",
+    "icon": "https://assets.coingecko.com/coins/images/30620/thumb/Desantis-200x200.jpg?1696529494",
+    "symbol": "RON",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x327673ae6b33bd3d90f0096870059994f30dc8af": {
+    "assetId": "eip155:1/erc20:0x327673ae6b33bd3d90f0096870059994f30dc8af",
+    "chainId": "eip155:1",
+    "name": "Lympo Market on Ethereum",
+    "precision": 18,
+    "color": "#C7CEDE",
+    "icon": "https://assets.coingecko.com/coins/images/15155/thumb/coin_%282%29.png?1696514811",
+    "symbol": "LMT",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x328c4c80bc7aca0834db37e6600a6c49e12da4de": {
+    "assetId": "eip155:1/erc20:0x328c4c80bc7aca0834db37e6600a6c49e12da4de",
+    "chainId": "eip155:1",
+    "name": "Aave SNX v1",
+    "precision": 18,
+    "color": "#29BBDB",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x328C4c80BC7aCa0834Db37e6600A6c49E12Da4DE/logo.png",
+    "symbol": "ASNX",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x329c6e459ffa7475718838145e5e85802db2a303": {
+    "assetId": "eip155:1/erc20:0x329c6e459ffa7475718838145e5e85802db2a303",
+    "chainId": "eip155:1",
+    "name": "MaidSafeCoin",
+    "precision": 18,
+    "color": "#4296E9",
+    "icon": "https://assets.coingecko.com/coins/images/80/thumb/maidsafecoin.png?1696501470",
+    "symbol": "EMAID",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x329cf160f30d21006bcd24b67eade561e54cde4c": {
+    "assetId": "eip155:1/erc20:0x329cf160f30d21006bcd24b67eade561e54cde4c",
+    "chainId": "eip155:1",
+    "name": "CareCoin",
+    "precision": 18,
+    "color": "#DCE8EF",
+    "icon": "https://assets.coingecko.com/coins/images/28378/thumb/46FD299C-3DA4-43E6-A6A2-27F492FC7E4D.jpeg?1696527378",
+    "symbol": "CARE",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x32a5fc22e20903e78171977359b500060b7316bf": {
+    "assetId": "eip155:1/erc20:0x32a5fc22e20903e78171977359b500060b7316bf",
+    "chainId": "eip155:1",
+    "name": "Paw a Gotchi",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/33116/thumb/pawagotchi_200px.png?1700732363",
+    "symbol": "PAG",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x32a7c02e79c4ea1008dd6564b35f131428673c41": {
+    "assetId": "eip155:1/erc20:0x32a7c02e79c4ea1008dd6564b35f131428673c41",
+    "chainId": "eip155:1",
+    "name": "Crust Network",
+    "precision": 18,
+    "color": "#1C1C1C",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x32a7C02e79c4ea1008dD6564b35F131428673c41/logo.png",
+    "symbol": "CRU",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x32b86b99441480a7e5bd3a26c124ec2373e3f015": {
+    "assetId": "eip155:1/erc20:0x32b86b99441480a7e5bd3a26c124ec2373e3f015",
+    "chainId": "eip155:1",
+    "name": "Bad Idea AI",
+    "precision": 18,
+    "color": "#102A3A",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x32b86b99441480a7E5BD3A26c124ec2373e3F015/logo.png",
+    "symbol": "BAD",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x32c4adb9cf57f972bc375129de91c897b4f364f1": {
+    "assetId": "eip155:1/erc20:0x32c4adb9cf57f972bc375129de91c897b4f364f1",
+    "chainId": "eip155:1",
+    "name": "Flowchain",
+    "precision": 18,
+    "color": "#F48C24",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x32C4ADB9cF57f972bc375129de91C897b4F364F1/logo.png",
+    "symbol": "FLC",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x32d5b155e82c87c491ea14b59477ddd0957e242c": {
+    "assetId": "eip155:1/erc20:0x32d5b155e82c87c491ea14b59477ddd0957e242c",
+    "chainId": "eip155:1",
+    "name": "X Bridge Bot",
+    "precision": 18,
+    "color": "#7C7C7C",
+    "icon": "https://assets.coingecko.com/coins/images/31178/thumb/Xbot.jpeg?1696530006",
+    "symbol": "XFER",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x32e6c34cd57087abbd59b5a4aecc4cb495924356": {
+    "assetId": "eip155:1/erc20:0x32e6c34cd57087abbd59b5a4aecc4cb495924356",
+    "chainId": "eip155:1",
+    "name": "BitBase Token on Ethereum",
+    "precision": 18,
+    "color": "#F3E9D5",
+    "icon": "https://assets.coingecko.com/coins/images/17414/thumb/btbs.PNG?1696516962",
+    "symbol": "BTBS",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x32ea3dc70e2962334864a9665254d2433e4ddbfd": {
+    "assetId": "eip155:1/erc20:0x32ea3dc70e2962334864a9665254d2433e4ddbfd",
+    "chainId": "eip155:1",
+    "name": "Sportzchain on Ethereum",
+    "precision": 18,
+    "color": "#541C10",
+    "icon": "https://assets.coingecko.com/coins/images/24915/thumb/Sportzchain_logo_195_195.png?1696524072",
+    "symbol": "SPN",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x32fd949e1953b21b7a8232ef4259cd708b4e0847": {
+    "assetId": "eip155:1/erc20:0x32fd949e1953b21b7a8232ef4259cd708b4e0847",
+    "chainId": "eip155:1",
+    "name": "HyperBC",
+    "precision": 18,
+    "color": "#9C1FD2",
+    "icon": "https://assets.coingecko.com/coins/images/32003/thumb/hbt_%281%29.png?1696530803",
+    "symbol": "HBT",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x3301ee63fb29f863f2333bd4466acb46cd8323e6": {
+    "assetId": "eip155:1/erc20:0x3301ee63fb29f863f2333bd4466acb46cd8323e6",
+    "chainId": "eip155:1",
+    "name": "Akita Inu on Ethereum",
+    "precision": 18,
+    "color": "#F59E26",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x3301Ee63Fb29F863f2333Bd4466acb46CD8323E6/logo.png",
+    "symbol": "AKITA",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x330528172778cc5196d5f6742886c72505e0613d": {
+    "assetId": "eip155:1/erc20:0x330528172778cc5196d5f6742886c72505e0613d",
+    "chainId": "eip155:1",
+    "name": "XBot",
+    "precision": 18,
+    "color": "#190552",
+    "icon": "https://assets.coingecko.com/coins/images/31050/thumb/xbot.jpeg?1696529884",
+    "symbol": "XBOT",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x333000333b26ee30214b4af6419d9ab07a450400": {
+    "assetId": "eip155:1/erc20:0x333000333b26ee30214b4af6419d9ab07a450400",
+    "chainId": "eip155:1",
+    "name": "MELD on Ethereum",
+    "precision": 18,
+    "color": "#DD1D49",
+    "icon": "https://assets.coingecko.com/coins/images/30170/thumb/Twitter.jpg?1696529090",
+    "symbol": "MELD",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x3330bfb7332ca23cd071631837dc289b09c33333": {
+    "assetId": "eip155:1/erc20:0x3330bfb7332ca23cd071631837dc289b09c33333",
+    "chainId": "eip155:1",
+    "name": "Rubic",
+    "precision": 18,
+    "color": "#D4F9ED",
+    "icon": "https://assets.coingecko.com/coins/images/12629/thumb/rubic.png?1696512437",
+    "symbol": "RBC",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x33349b282065b0284d756f0577fb39c158f935e6": {
+    "assetId": "eip155:1/erc20:0x33349b282065b0284d756f0577fb39c158f935e6",
+    "chainId": "eip155:1",
+    "name": "Maple",
+    "precision": 18,
+    "color": "#FA7B07",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x33349B282065b0284d756F0577FB39c158F935e6/logo.png",
+    "symbol": "MPL",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x333a4823466879eef910a04d473505da62142069": {
+    "assetId": "eip155:1/erc20:0x333a4823466879eef910a04d473505da62142069",
+    "chainId": "eip155:1",
+    "name": "Nation3",
+    "precision": 18,
+    "color": "#6CCEF8",
+    "icon": "https://assets.coingecko.com/coins/images/25106/thumb/Orb_gradient.png?1696524257",
+    "symbol": "NATION",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x335f4e66b9b61cee5ceade4e727fcec20156b2f0": {
+    "assetId": "eip155:1/erc20:0x335f4e66b9b61cee5ceade4e727fcec20156b2f0",
+    "chainId": "eip155:1",
+    "name": "ElmoERC",
+    "precision": 18,
+    "color": "#4E2211",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x335F4e66B9B61CEE5CeaDE4e727FCEC20156B2F0/logo.png",
+    "symbol": "ELMO",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x337af08bb6980ecb68389c5ed8876d08643abf8a": {
+    "assetId": "eip155:1/erc20:0x337af08bb6980ecb68389c5ed8876d08643abf8a",
+    "chainId": "eip155:1",
+    "name": "NOVAWCHI",
+    "precision": 18,
+    "color": "#04041C",
+    "icon": "https://assets.coingecko.com/coins/images/29761/thumb/novawchi-infinity-of-nevoverse-coinmarketcap-logo.png?1696528692",
+    "symbol": "VACHI",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x337dd23d05c27bff099d3604938bfc23a9b25820": {
+    "assetId": "eip155:1/erc20:0x337dd23d05c27bff099d3604938bfc23a9b25820",
+    "chainId": "eip155:1",
+    "name": "Marshall Fighting Championship",
+    "precision": 18,
+    "color": "#4F1213",
+    "icon": "https://assets.coingecko.com/coins/images/29390/thumb/91C38363-77C4-4D85-A3B7-EFA1C5745DDF.png?1696528341",
+    "symbol": "MFC",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x33840024177a7daca3468912363bed8b425015c5": {
+    "assetId": "eip155:1/erc20:0x33840024177a7daca3468912363bed8b425015c5",
+    "chainId": "eip155:1",
+    "name": "Ebox on Ethereum",
+    "precision": 18,
+    "color": "#FC6C04",
+    "icon": "https://assets.coingecko.com/coins/images/14528/thumb/ebox.png?1696514213",
+    "symbol": "EBOX",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x3391bc034f2935ef0e1e41619445f998b2680d35": {
+    "assetId": "eip155:1/erc20:0x3391bc034f2935ef0e1e41619445f998b2680d35",
+    "chainId": "eip155:1",
+    "name": "IdleUSDC  Risk Adjusted ",
+    "precision": 18,
+    "color": "#548CDC",
+    "icon": "https://assets.coingecko.com/coins/images/11930/thumb/idleusdc-safe.png?1696511791",
+    "symbol": "IDLEUSDCSAFE",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x3392d8a60b77f8d3eaa4fb58f09d835bd31add29": {
+    "assetId": "eip155:1/erc20:0x3392d8a60b77f8d3eaa4fb58f09d835bd31add29",
+    "chainId": "eip155:1",
+    "name": "IndiGG",
+    "precision": 18,
+    "color": "#3F335F",
+    "icon": "https://assets.coingecko.com/coins/images/23857/thumb/https___bucketeer-e05bbc84-baa3-437e-9518-adb32be77984.s3.amazonaws.com_public_images_0cb39c1f-db6d-4dd9-9143-1f30ee38d74d_743x726.jpeg?1696523058",
+    "symbol": "INDI",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x33ba0f96980314cf962bd6224b5c3befa5946202": {
+    "assetId": "eip155:1/erc20:0x33ba0f96980314cf962bd6224b5c3befa5946202",
+    "chainId": "eip155:1",
+    "name": "nsurance",
+    "precision": 18,
+    "color": "#5C3484",
+    "icon": "https://assets.coingecko.com/coins/images/32392/thumb/n-logo-200x200.png?1698053006",
+    "symbol": "N",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x33bc4e44054fdb21d5a7cea5c03613782d821e45": {
+    "assetId": "eip155:1/erc20:0x33bc4e44054fdb21d5a7cea5c03613782d821e45",
+    "chainId": "eip155:1",
+    "name": "Xudo",
+    "precision": 18,
+    "color": "#048C8C",
+    "icon": "https://assets.coingecko.com/coins/images/30662/thumb/xudo.png?1696529532",
+    "symbol": "XUDO",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x33bd66c334274989b673a8e8c8d1a3f1b8de5889": {
+    "assetId": "eip155:1/erc20:0x33bd66c334274989b673a8e8c8d1a3f1b8de5889",
+    "chainId": "eip155:1",
+    "name": "hiODBS",
+    "precision": 18,
+    "color": "#11162A",
+    "icon": "https://assets.coingecko.com/coins/images/27296/thumb/hiodbs.png?1696526348",
+    "symbol": "HIODBS",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x33c04bed4533e31f2afb8ac4a61a48eda38c4fa0": {
+    "assetId": "eip155:1/erc20:0x33c04bed4533e31f2afb8ac4a61a48eda38c4fa0",
+    "chainId": "eip155:1",
+    "name": "Gorilla",
+    "precision": 9,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/33006/thumb/IMG_20231110_124057_942.jpg?1700123171",
+    "symbol": "GORILLA",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x33caf58d14d7cd284cc2d7f2bc878d2d63c8956a": {
+    "assetId": "eip155:1/erc20:0x33caf58d14d7cd284cc2d7f2bc878d2d63c8956a",
+    "chainId": "eip155:1",
+    "name": "Only Possible On Ethereum",
+    "precision": 8,
+    "color": "#AE9C59",
+    "icon": "https://assets.coingecko.com/coins/images/32097/thumb/download.png?1696530895",
+    "symbol": "OPOE",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x33d0568941c0c64ff7e0fb4fba0b11bd37deed9f": {
+    "assetId": "eip155:1/erc20:0x33d0568941c0c64ff7e0fb4fba0b11bd37deed9f",
+    "chainId": "eip155:1",
+    "name": "RAMP  OLD  on Ethereum",
+    "precision": 18,
+    "color": "#C4BCBC",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x33D0568941C0C64ff7e0FB4fbA0B11BD37deEd9f/logo.png",
+    "symbol": "RAMP",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x33e07f5055173cf8febede8b21b12d1e2b523205": {
+    "assetId": "eip155:1/erc20:0x33e07f5055173cf8febede8b21b12d1e2b523205",
+    "chainId": "eip155:1",
+    "name": "Etherland on Ethereum",
+    "precision": 18,
+    "color": "#146C6C",
+    "icon": "https://assets.coingecko.com/coins/images/14432/thumb/eland_logo.png?1696514122",
+    "symbol": "ELAND",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x33e80a92a9ea73dd02f6e732d1702d58c68388ca": {
+    "assetId": "eip155:1/erc20:0x33e80a92a9ea73dd02f6e732d1702d58c68388ca",
+    "chainId": "eip155:1",
+    "name": "XBANKING",
+    "precision": 2,
+    "color": "#C2C2C2",
+    "icon": "https://assets.coingecko.com/coins/images/31650/thumb/Web_1920_%E2%80%93_1.png?1696530465",
+    "symbol": "XB",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x33f289d91286535c47270c8479f6776fb3adeb3e": {
+    "assetId": "eip155:1/erc20:0x33f289d91286535c47270c8479f6776fb3adeb3e",
+    "chainId": "eip155:1",
+    "name": "BoxBet",
+    "precision": 18,
+    "color": "#94DC24",
+    "icon": "https://assets.coingecko.com/coins/images/32495/thumb/CoinGecko.png?1698916950",
+    "symbol": "BXBT",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x33f391f4c4fe802b70b77ae37670037a92114a7c": {
+    "assetId": "eip155:1/erc20:0x33f391f4c4fe802b70b77ae37670037a92114a7c",
+    "chainId": "eip155:1",
+    "name": "Burp on Ethereum",
+    "precision": 18,
+    "color": "#EAD5F8",
+    "icon": "https://assets.coingecko.com/coins/images/17317/thumb/Big_Town_Chef_-__BURP_-_Avatar_3x.png?1696516871",
+    "symbol": "BURP",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x3405a1bd46b85c5c029483fbecf2f3e611026e45": {
+    "assetId": "eip155:1/erc20:0x3405a1bd46b85c5c029483fbecf2f3e611026e45",
+    "chainId": "eip155:1",
+    "name": "WOWswap on Ethereum",
+    "precision": 18,
+    "color": "#F0B82C",
+    "icon": "https://assets.coingecko.com/coins/images/14101/thumb/Group-423.png?1696513823",
+    "symbol": "WOW",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x3408636a7825e894ac5521ca55494f89f96df240": {
+    "assetId": "eip155:1/erc20:0x3408636a7825e894ac5521ca55494f89f96df240",
+    "chainId": "eip155:1",
+    "name": "PymeDAO",
+    "precision": 18,
+    "color": "#E94121",
+    "icon": "https://assets.coingecko.com/coins/images/31490/thumb/tokenLogo.png?1696530301",
+    "symbol": "PYME",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x340d2bde5eb28c1eed91b2f790723e3b160613b7": {
+    "assetId": "eip155:1/erc20:0x340d2bde5eb28c1eed91b2f790723e3b160613b7",
+    "chainId": "eip155:1",
+    "name": "BLOCKv on Ethereum",
+    "precision": 18,
+    "color": "#738B96",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x340D2bdE5Eb28c1eed91B2f790723E3B160613B7/logo.png",
+    "symbol": "VEE",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x341c05c0e9b33c0e38d64de76516b2ce970bb3be": {
+    "assetId": "eip155:1/erc20:0x341c05c0e9b33c0e38d64de76516b2ce970bb3be",
+    "chainId": "eip155:1",
+    "name": "Diversified Staked ETH",
+    "precision": 18,
+    "color": "#404B4A",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x341c05c0E9b33C0E38d64de76516b2Ce970bB3BE/logo.png",
+    "symbol": "DSETH",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x3432b6a60d23ca0dfca7761b7ab56459d9c964d0": {
+    "assetId": "eip155:1/erc20:0x3432b6a60d23ca0dfca7761b7ab56459d9c964d0",
+    "chainId": "eip155:1",
+    "name": "Frax Share on Ethereum",
+    "precision": 18,
+    "color": "#040404",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x3432B6A60D23Ca0dFCa7761B7ab56459D9C964D0/logo.png",
+    "symbol": "FXS",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x343c6de13833bc7d9890eb6b1cd3fbebc730ebec": {
+    "assetId": "eip155:1/erc20:0x343c6de13833bc7d9890eb6b1cd3fbebc730ebec",
+    "chainId": "eip155:1",
+    "name": "Decentralized Activism",
+    "precision": 9,
+    "color": "#F1F9F9",
+    "icon": "https://assets.coingecko.com/coins/images/27700/thumb/logodact200x200.png?1696526727",
+    "symbol": "DACT",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x343cf59a43bd7ddd38b7236a478139a86a26222b": {
+    "assetId": "eip155:1/erc20:0x343cf59a43bd7ddd38b7236a478139a86a26222b",
+    "chainId": "eip155:1",
+    "name": "Caesar s Arena",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/32623/thumb/logo32.png?1698821024",
+    "symbol": "CAESAR",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x3442fbf264b6d723e01775a710850dcef6e6847c": {
+    "assetId": "eip155:1/erc20:0x3442fbf264b6d723e01775a710850dcef6e6847c",
+    "chainId": "eip155:1",
+    "name": "VINU Network",
+    "precision": 18,
+    "color": "#7CC4D4",
+    "icon": "https://assets.coingecko.com/coins/images/32196/thumb/Vinu_Network.jpg?1696745619",
+    "symbol": "VNN",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x3446dd70b2d52a6bf4a5a192d9b0a161295ab7f9": {
+    "assetId": "eip155:1/erc20:0x3446dd70b2d52a6bf4a5a192d9b0a161295ab7f9",
+    "chainId": "eip155:1",
+    "name": "sudoswap",
+    "precision": 18,
+    "color": "#C7C7F2",
+    "icon": "https://assets.coingecko.com/coins/images/27151/thumb/sudo.png?1696526202",
+    "symbol": "SUDO",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x3449fc1cd036255ba1eb19d65ff4ba2b8903a69a": {
+    "assetId": "eip155:1/erc20:0x3449fc1cd036255ba1eb19d65ff4ba2b8903a69a",
+    "chainId": "eip155:1",
+    "name": "Basis Cash",
+    "precision": 18,
+    "color": "#8C4CFC",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x3449FC1Cd036255BA1EB19d65fF4BA2b8903A69a/logo.png",
+    "symbol": "BAC",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x344d6117ae0984f3afdd23e593f92d95a83dcd0e": {
+    "assetId": "eip155:1/erc20:0x344d6117ae0984f3afdd23e593f92d95a83dcd0e",
+    "chainId": "eip155:1",
+    "name": "Skibidi Toilet",
+    "precision": 9,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/32832/thumb/SkibidiToilet.jpg?1699585948",
+    "symbol": "TOILET",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x34635280737b5bfe6c7dc2fc3065d60d66e78185": {
+    "assetId": "eip155:1/erc20:0x34635280737b5bfe6c7dc2fc3065d60d66e78185",
+    "chainId": "eip155:1",
+    "name": "Convex Prisma",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/32961/thumb/cvxprisma.png?1700026172",
+    "symbol": "CVXPRISMA",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x3472a5a71965499acd81997a54bba8d852c6e53d": {
+    "assetId": "eip155:1/erc20:0x3472a5a71965499acd81997a54bba8d852c6e53d",
+    "chainId": "eip155:1",
+    "name": "Badger on Ethereum",
+    "precision": 18,
+    "color": "#191419",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x3472A5A71965499acd81997a54BBA8D852C6E53d/logo.png",
+    "symbol": "BADGER",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x347a96a5bd06d2e15199b032f46fb724d6c73047": {
+    "assetId": "eip155:1/erc20:0x347a96a5bd06d2e15199b032f46fb724d6c73047",
+    "chainId": "eip155:1",
+    "name": "ASIC Token",
+    "precision": 12,
+    "color": "#C81FDD",
+    "icon": "https://assets.coingecko.com/coins/images/27952/thumb/ASIC_Token_Logo.png?1696526971",
+    "symbol": "ASIC",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x3486b751a36f731a1bebff779374bad635864919": {
+    "assetId": "eip155:1/erc20:0x3486b751a36f731a1bebff779374bad635864919",
+    "chainId": "eip155:1",
+    "name": "Inedible Coin",
+    "precision": 18,
+    "color": "#E46337",
+    "icon": "https://assets.coingecko.com/coins/images/30828/thumb/ZIGj-TlV_400x400.jpg?1696529681",
+    "symbol": "INEDIBLE",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x34950ff2b487d9e5282c5ab342d08a2f712eb79f": {
+    "assetId": "eip155:1/erc20:0x34950ff2b487d9e5282c5ab342d08a2f712eb79f",
+    "chainId": "eip155:1",
+    "name": "Efforce",
+    "precision": 18,
+    "color": "#040404",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x34950Ff2b487d9E5282c5aB342d08A2f712eb79F/logo.png",
+    "symbol": "WOZX",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x34965f73cfa05bf8d8af37cb4af64fa950605ea8": {
+    "assetId": "eip155:1/erc20:0x34965f73cfa05bf8d8af37cb4af64fa950605ea8",
+    "chainId": "eip155:1",
+    "name": "CoinWind on Ethereum",
+    "precision": 18,
+    "color": "#4898F5",
+    "icon": "https://assets.coingecko.com/coins/images/15766/thumb/logo.c3d2c062.png?1696515390",
+    "symbol": "COW",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x3496b523e5c00a4b4150d6721320cddb234c3079": {
+    "assetId": "eip155:1/erc20:0x3496b523e5c00a4b4150d6721320cddb234c3079",
+    "chainId": "eip155:1",
+    "name": "Numbers Protocol on Ethereum",
+    "precision": 18,
+    "color": "#CACACA",
+    "icon": "https://assets.coingecko.com/coins/images/20495/thumb/NP_Social_media_profile_pic.png?1696519902",
+    "symbol": "NUM",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x34abce75d2f8f33940c721dca0f562617787bff3": {
+    "assetId": "eip155:1/erc20:0x34abce75d2f8f33940c721dca0f562617787bff3",
+    "chainId": "eip155:1",
+    "name": "tSILVER on Ethereum",
+    "precision": 18,
+    "color": "#979797",
+    "icon": "https://assets.coingecko.com/coins/images/27829/thumb/tSILVER_token_2D.jpg?1696526848",
+    "symbol": "TXAG",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x34ba042827996821cffeb06477d48a2ff9474483": {
+    "assetId": "eip155:1/erc20:0x34ba042827996821cffeb06477d48a2ff9474483",
+    "chainId": "eip155:1",
+    "name": "Shib2 0",
+    "precision": 8,
+    "color": "#F8BB2B",
+    "icon": "https://assets.coingecko.com/coins/images/30940/thumb/unnamed.jpg?1696529779",
+    "symbol": "SHIB20",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x34bc13de8e5124a7c47d4b7ff7c5ade6ee34faba": {
+    "assetId": "eip155:1/erc20:0x34bc13de8e5124a7c47d4b7ff7c5ade6ee34faba",
+    "chainId": "eip155:1",
+    "name": "Project Dojo",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/33156/thumb/Project_Dojo_logo_transparent_200x200.png?1700827030",
+    "symbol": "DOJO",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x34bdf48a8f753de4822a6cfb1fee275f9b4d662e": {
+    "assetId": "eip155:1/erc20:0x34bdf48a8f753de4822a6cfb1fee275f9b4d662e",
+    "chainId": "eip155:1",
+    "name": "FACTS",
+    "precision": 18,
+    "color": "#081038",
+    "icon": "https://assets.coingecko.com/coins/images/8461/thumb/sFNOkmVx_400x400.jpg?1696508647",
+    "symbol": "BKC",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x34be5b8c30ee4fde069dc878989686abe9884470": {
+    "assetId": "eip155:1/erc20:0x34be5b8c30ee4fde069dc878989686abe9884470",
+    "chainId": "eip155:1",
+    "name": "SENATE",
+    "precision": 18,
+    "color": "#EE1021",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x34Be5b8C30eE4fDe069DC878989686aBE9884470/logo.png",
+    "symbol": "SENATE",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x34c8b3fe84410f9b3870549e037fd1ea7b168977": {
+    "assetId": "eip155:1/erc20:0x34c8b3fe84410f9b3870549e037fd1ea7b168977",
+    "chainId": "eip155:1",
+    "name": "BRUCE pepe",
+    "precision": 18,
+    "color": "#3A4F23",
+    "icon": "https://assets.coingecko.com/coins/images/30544/thumb/token-200x200.png?1696529416",
+    "symbol": "BRUCE",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x34d6a0f5c2f5d0082141fe73d93b9dd00ca7ce11": {
+    "assetId": "eip155:1/erc20:0x34d6a0f5c2f5d0082141fe73d93b9dd00ca7ce11",
+    "chainId": "eip155:1",
+    "name": "Golden",
+    "precision": 18,
+    "color": "#D3AA43",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x34D6A0F5C2f5D0082141fE73d93B9dd00ca7CE11/logo.png",
+    "symbol": "GOLD",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x34df29dd880e9fe2cec0f85f7658b75606fb2870": {
+    "assetId": "eip155:1/erc20:0x34df29dd880e9fe2cec0f85f7658b75606fb2870",
+    "chainId": "eip155:1",
+    "name": "Navy seal",
+    "precision": 9,
+    "color": "#EEDACF",
+    "icon": "https://assets.coingecko.com/coins/images/31406/thumb/Navyseal.jpg?1696530222",
+    "symbol": "NAVYSEAL",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x34f0915a5f15a66eba86f6a58be1a471fb7836a7": {
+    "assetId": "eip155:1/erc20:0x34f0915a5f15a66eba86f6a58be1a471fb7836a7",
+    "chainId": "eip155:1",
+    "name": "PulseDogecoin",
+    "precision": 12,
+    "color": "#DEC389",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x34F0915a5f15a66Eba86F6a58bE1A471FB7836A7/logo.png",
+    "symbol": "PLSD",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x34f797e7190c131cf630524655a618b5bd8738e7": {
+    "assetId": "eip155:1/erc20:0x34f797e7190c131cf630524655a618b5bd8738e7",
+    "chainId": "eip155:1",
+    "name": "BaconDAO on Ethereum",
+    "precision": 18,
+    "color": "#090608",
+    "icon": "https://assets.coingecko.com/coins/images/18059/thumb/xDV_bhdA_400x400.jpg?1696517567",
+    "symbol": "BACON",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x3505f494c3f0fed0b594e01fa41dd3967645ca39": {
+    "assetId": "eip155:1/erc20:0x3505f494c3f0fed0b594e01fa41dd3967645ca39",
+    "chainId": "eip155:1",
+    "name": "Swarm Network",
+    "precision": 18,
+    "color": "#F6941B",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x3505F494c3f0fed0B594E01Fa41Dd3967645ca39/logo.png",
+    "symbol": "SWM",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x3506424f91fd33084466f402d5d97f05f8e3b4af": {
+    "assetId": "eip155:1/erc20:0x3506424f91fd33084466f402d5d97f05f8e3b4af",
+    "chainId": "eip155:1",
+    "name": "Chiliz",
+    "precision": 18,
+    "color": "#D40C24",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x3506424F91fD33084466F402d5D97f05F8e3b4AF/logo.png",
+    "symbol": "CHZ",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x35156b404c3f9bdaf45ab65ba315419bcde3775c": {
+    "assetId": "eip155:1/erc20:0x35156b404c3f9bdaf45ab65ba315419bcde3775c",
+    "chainId": "eip155:1",
+    "name": "Chihiro Inu on Ethereum",
+    "precision": 9,
+    "color": "#335F94",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x35156b404C3f9bdaf45ab65Ba315419bcDe3775c/logo.png",
+    "symbol": "CHIRO",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x351caa9045d65107b9d311d922d15887cfd634e4": {
+    "assetId": "eip155:1/erc20:0x351caa9045d65107b9d311d922d15887cfd634e4",
+    "chainId": "eip155:1",
+    "name": "Arowana",
+    "precision": 18,
+    "color": "#F5D411",
+    "icon": "https://assets.coingecko.com/coins/images/17114/thumb/Arowana_LOGO_-_1_.png?1696516675",
+    "symbol": "ARW",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x3540abe4f288b280a0740ad5121aec337c404d15": {
+    "assetId": "eip155:1/erc20:0x3540abe4f288b280a0740ad5121aec337c404d15",
+    "chainId": "eip155:1",
+    "name": "TPRO on Ethereum",
+    "precision": 18,
+    "color": "#0C1420",
+    "icon": "https://assets.coingecko.com/coins/images/26694/thumb/tpro-logo-200x200.png?1696525768",
+    "symbol": "TPRO",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x3540dfcad7cf102a2e44aa0e2132fab1c89d7eae": {
+    "assetId": "eip155:1/erc20:0x3540dfcad7cf102a2e44aa0e2132fab1c89d7eae",
+    "chainId": "eip155:1",
+    "name": "SchwiftAI",
+    "precision": 18,
+    "color": "#9EBEC8",
+    "icon": "https://assets.coingecko.com/coins/images/29301/thumb/SchwiftAI.png?1696528253",
+    "symbol": "SWAI",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x3541a5c1b04adaba0b83f161747815cd7b1516bc": {
+    "assetId": "eip155:1/erc20:0x3541a5c1b04adaba0b83f161747815cd7b1516bc",
+    "chainId": "eip155:1",
+    "name": "CitaDAO",
+    "precision": 18,
+    "color": "#077EE7",
+    "icon": "https://assets.coingecko.com/coins/images/22848/thumb/KNIGHT_TOKEN_LOGO.png?1696522149",
+    "symbol": "KNIGHT",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x3543638ed4a9006e4840b105944271bcea15605d": {
+    "assetId": "eip155:1/erc20:0x3543638ed4a9006e4840b105944271bcea15605d",
+    "chainId": "eip155:1",
+    "name": "U Network",
+    "precision": 18,
+    "color": "#3C5CD2",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x3543638eD4a9006E4840B105944271Bcea15605D/logo.png",
+    "symbol": "UUU",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x355a824bea1adc22733978a3748271e1bbb34130": {
+    "assetId": "eip155:1/erc20:0x355a824bea1adc22733978a3748271e1bbb34130",
+    "chainId": "eip155:1",
+    "name": "Metanept",
+    "precision": 18,
+    "color": "#3B217A",
+    "icon": "https://assets.coingecko.com/coins/images/26798/thumb/OH1UiJ16_400x400.jpeg?1696525860",
+    "symbol": "NEPT",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x356a5160f2b34bc8d88fb084745465ebbbed0174": {
+    "assetId": "eip155:1/erc20:0x356a5160f2b34bc8d88fb084745465ebbbed0174",
+    "chainId": "eip155:1",
+    "name": "INVI",
+    "precision": 13,
+    "color": "#0C0C0C",
+    "icon": "https://assets.coingecko.com/coins/images/17363/thumb/INVI-Ticker.png?1696516914",
+    "symbol": "INVI",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x356e17967206efb413b60ab0ba44e269063a26c9": {
+    "assetId": "eip155:1/erc20:0x356e17967206efb413b60ab0ba44e269063a26c9",
+    "chainId": "eip155:1",
+    "name": "Of Course I Still Love You",
+    "precision": 9,
+    "color": "#F2EAED",
+    "icon": "https://assets.coingecko.com/coins/images/32035/thumb/IMG_20230927_151428_156_%281%29.jpg?1696530831",
+    "symbol": "OCISLY",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x3576eff2be8b1a31782b3e8dfd962a6ddb087890": {
+    "assetId": "eip155:1/erc20:0x3576eff2be8b1a31782b3e8dfd962a6ddb087890",
+    "chainId": "eip155:1",
+    "name": "Rabbit Race",
+    "precision": 18,
+    "color": "#D18131",
+    "icon": "https://assets.coingecko.com/coins/images/31063/thumb/uCAj-QeZ_400x400.jpg?1696529897",
+    "symbol": "RABBITS",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x357c915d7c12dc506d13332bb06c932af13e99a0": {
+    "assetId": "eip155:1/erc20:0x357c915d7c12dc506d13332bb06c932af13e99a0",
+    "chainId": "eip155:1",
+    "name": "LuckysLeprecoin",
+    "precision": 18,
+    "color": "#887243",
+    "icon": "https://assets.coingecko.com/coins/images/32303/thumb/Luckys_Leprecoin_New_Logo_200x200.png?1697187844",
+    "symbol": "LUCKYSLP",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x358aa737e033f34df7c54306960a38d09aabd523": {
+    "assetId": "eip155:1/erc20:0x358aa737e033f34df7c54306960a38d09aabd523",
+    "chainId": "eip155:1",
+    "name": "Ares Protocol on Ethereum",
+    "precision": 18,
+    "color": "#32ADF0",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x358AA737e033F34df7c54306960a38d09AaBd523/logo.png",
+    "symbol": "ARES",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x358bd0d980e031e23eba9aa793926857703783bd": {
+    "assetId": "eip155:1/erc20:0x358bd0d980e031e23eba9aa793926857703783bd",
+    "chainId": "eip155:1",
+    "name": "Aave AMM BptWBTCWETH",
+    "precision": 18,
+    "color": "#52B4C5",
+    "icon": "https://assets.coingecko.com/coins/images/17260/thumb/aAmmBptWBTCWETH.png?1696516815",
+    "symbol": "AAMMBPTWBTCWETH",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x359108ca299ca693502ef217e2109ad02aa4277c": {
+    "assetId": "eip155:1/erc20:0x359108ca299ca693502ef217e2109ad02aa4277c",
+    "chainId": "eip155:1",
+    "name": "Flooring Protocol  MutantApeYachtClub",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/32675/thumb/mayc_logo.69fd41b5.png?1698911670",
+    "symbol": "MAYC",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x3593d125a4f7849a1b059e64f4517a86dd60c95d": {
+    "assetId": "eip155:1/erc20:0x3593d125a4f7849a1b059e64f4517a86dd60c95d",
+    "chainId": "eip155:1",
+    "name": "MANTRA on Ethereum",
+    "precision": 18,
+    "color": "#1F2535",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x3593D125a4f7849a1B059E64F4517A86Dd60c95d/logo.png",
+    "symbol": "OM",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x3597bfd533a99c9aa083587b074434e61eb0a258": {
+    "assetId": "eip155:1/erc20:0x3597bfd533a99c9aa083587b074434e61eb0a258",
+    "chainId": "eip155:1",
+    "name": "Dent",
+    "precision": 8,
+    "color": "#747474",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x3597bfD533a99c9aa083587B074434E61Eb0A258/logo.png",
+    "symbol": "DENT",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x35a18000230da775cac24873d00ff85bccded550": {
+    "assetId": "eip155:1/erc20:0x35a18000230da775cac24873d00ff85bccded550",
+    "chainId": "eip155:1",
+    "name": "cUNI",
+    "precision": 8,
+    "color": "#E2E8EC",
+    "icon": "https://assets.coingecko.com/coins/images/12696/thumb/compound-uni.png?1696512499",
+    "symbol": "CUNI",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x35b08722aa26be119c1608029ccbc976ac5c1082": {
+    "assetId": "eip155:1/erc20:0x35b08722aa26be119c1608029ccbc976ac5c1082",
+    "chainId": "eip155:1",
+    "name": "Eminer",
+    "precision": 8,
+    "color": "#0E120F",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x35b08722AA26bE119c1608029CcbC976ac5C1082/logo.png",
+    "symbol": "EM",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x35bd01fc9d6d5d81ca9e055db88dc49aa2c699a8": {
+    "assetId": "eip155:1/erc20:0x35bd01fc9d6d5d81ca9e055db88dc49aa2c699a8",
+    "chainId": "eip155:1",
+    "name": "Friends With Benefits Pro",
+    "precision": 18,
+    "color": "#CFCECF",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x35bD01FC9d6D5D81CA9E055Db88Dc49aa2c699A8/logo.png",
+    "symbol": "FWB",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x35e78b3982e87ecfd5b3f3265b601c046cdbe232": {
+    "assetId": "eip155:1/erc20:0x35e78b3982e87ecfd5b3f3265b601c046cdbe232",
+    "chainId": "eip155:1",
+    "name": "SideShift",
+    "precision": 18,
+    "color": "#FC4448",
+    "icon": "https://assets.coingecko.com/coins/images/15719/thumb/sideshift-icon_3x.png?1696515346",
+    "symbol": "XAI",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x35f67c1d929e106fdff8d1a55226afe15c34dbe2": {
+    "assetId": "eip155:1/erc20:0x35f67c1d929e106fdff8d1a55226afe15c34dbe2",
+    "chainId": "eip155:1",
+    "name": "Beta",
+    "precision": 18,
+    "color": "#FCBC8C",
+    "icon": "https://assets.coingecko.com/coins/images/25539/thumb/Beta-47.png?1696524672",
+    "symbol": "BETA",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x35f6b052c598d933d69a4eec4d04c73a191fe6c2": {
+    "assetId": "eip155:1/erc20:0x35f6b052c598d933d69a4eec4d04c73a191fe6c2",
+    "chainId": "eip155:1",
+    "name": "Aave SNX",
+    "precision": 18,
+    "color": "#29BBDB",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x35f6B052C598d933D69A4EEC4D04c73A191fE6c2/logo.png",
+    "symbol": "ASNX",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x35fa164735182de50811e8e2e824cfb9b6118ac2": {
+    "assetId": "eip155:1/erc20:0x35fa164735182de50811e8e2e824cfb9b6118ac2",
+    "chainId": "eip155:1",
+    "name": "ether fi Staked ETH",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/33049/thumb/ether.fi_eETH.png?1700473063",
+    "symbol": "EETH",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x3625b55f653f8c7c884ac668696881df43631d44": {
+    "assetId": "eip155:1/erc20:0x3625b55f653f8c7c884ac668696881df43631d44",
+    "chainId": "eip155:1",
+    "name": "Arti Project",
+    "precision": 8,
+    "color": "#2B7A92",
+    "icon": "https://assets.coingecko.com/coins/images/18878/thumb/arti.PNG?1696518337",
+    "symbol": "ARTI",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x362bc847a3a9637d3af6624eec853618a43ed7d2": {
+    "assetId": "eip155:1/erc20:0x362bc847a3a9637d3af6624eec853618a43ed7d2",
+    "chainId": "eip155:1",
+    "name": "PARSIQ on Ethereum",
+    "precision": 18,
+    "color": "#045CC4",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x362bc847A3a9637d3af6624EeC853618a43ed7D2/logo.png",
+    "symbol": "PRQ",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x36520f6336490088c2455279c59cefac66984b36": {
+    "assetId": "eip155:1/erc20:0x36520f6336490088c2455279c59cefac66984b36",
+    "chainId": "eip155:1",
+    "name": "Copium",
+    "precision": 18,
+    "color": "#92AACA",
+    "icon": "https://assets.coingecko.com/coins/images/30466/thumb/copium.png?1696529353",
+    "symbol": "COPIUM",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x3656bd0f3f07623bb7f429b390d208f894e44ece": {
+    "assetId": "eip155:1/erc20:0x3656bd0f3f07623bb7f429b390d208f894e44ece",
+    "chainId": "eip155:1",
+    "name": "INFLIV",
+    "precision": 18,
+    "color": "#F4442C",
+    "icon": "https://assets.coingecko.com/coins/images/5279/thumb/INFLIV_LOGO_PNG.png?1696505779",
+    "symbol": "IFV",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x365accfca291e7d3914637abf1f7635db165bb09": {
+    "assetId": "eip155:1/erc20:0x365accfca291e7d3914637abf1f7635db165bb09",
+    "chainId": "eip155:1",
+    "name": "f x  Protocol",
+    "precision": 18,
+    "color": "#3957AB",
+    "icon": "https://assets.coingecko.com/coins/images/31889/thumb/FXN_200x200.png?1696530700",
+    "symbol": "FXN",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x36737b4ac153c762d6a767056e1af7b17573a6b9": {
+    "assetId": "eip155:1/erc20:0x36737b4ac153c762d6a767056e1af7b17573a6b9",
+    "chainId": "eip155:1",
+    "name": "GOLD",
+    "precision": 9,
+    "color": "#CEAD56",
+    "icon": "https://assets.coingecko.com/coins/images/32155/thumb/LOGO.jpg?1696598967",
+    "symbol": "GOLD",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x36880f14af2e85cae8e467827fa077d6bf12ea56": {
+    "assetId": "eip155:1/erc20:0x36880f14af2e85cae8e467827fa077d6bf12ea56",
+    "chainId": "eip155:1",
+    "name": "Jared From Subway",
+    "precision": 18,
+    "color": "#7F9EEA",
+    "icon": "https://assets.coingecko.com/coins/images/30890/thumb/Jared_Logo_200_X_200.png?1696529737",
+    "symbol": "JARED",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x368c5290b13caa10284db58b4ad4f3e9ee8bf4c9": {
+    "assetId": "eip155:1/erc20:0x368c5290b13caa10284db58b4ad4f3e9ee8bf4c9",
+    "chainId": "eip155:1",
+    "name": "KKO Protocol",
+    "precision": 18,
+    "color": "#D01913",
+    "icon": "https://assets.coingecko.com/coins/images/15366/thumb/kko-coingecko.png?1696515014",
+    "symbol": "KKO",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x36905fc93280f52362a1cbab151f25dc46742fb5": {
+    "assetId": "eip155:1/erc20:0x36905fc93280f52362a1cbab151f25dc46742fb5",
+    "chainId": "eip155:1",
+    "name": "Bottos",
+    "precision": 18,
+    "color": "#040404",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x36905Fc93280f52362A1CBAB151F25DC46742Fb5/logo.png",
+    "symbol": "BTO",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x36919a60a2b67b6d2329863093d180d23d5a0308": {
+    "assetId": "eip155:1/erc20:0x36919a60a2b67b6d2329863093d180d23d5a0308",
+    "chainId": "eip155:1",
+    "name": "Kusunoki Samurai",
+    "precision": 18,
+    "color": "#4B4240",
+    "icon": "https://assets.coingecko.com/coins/images/24688/thumb/68747470733a2f2f7777772e6b7573756e6f6b6973616d757261692e636f6d2f696d616765732f6b7573756e6f6b692d30312e706e67.png?1696523855",
+    "symbol": "KUSUNOKI",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x36948a6809be82d3ba8de9f2be626101e2c9e473": {
+    "assetId": "eip155:1/erc20:0x36948a6809be82d3ba8de9f2be626101e2c9e473",
+    "chainId": "eip155:1",
+    "name": "BoltBot",
+    "precision": 9,
+    "color": "#2EA29C",
+    "icon": "https://assets.coingecko.com/coins/images/30877/thumb/boltbot.jpg?1696529725",
+    "symbol": "BOLT",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x36a17b52b5322846fcf894ee1535c8aa23df6765": {
+    "assetId": "eip155:1/erc20:0x36a17b52b5322846fcf894ee1535c8aa23df6765",
+    "chainId": "eip155:1",
+    "name": "Flooring Protocol  Potatoz",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/32779/thumb/mpotatoz_%282%29.png?1699350069",
+    "symbol": "POTATOZ",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x36ac219f90f5a6a3c77f2a7b660e3cc701f68e25": {
+    "assetId": "eip155:1/erc20:0x36ac219f90f5a6a3c77f2a7b660e3cc701f68e25",
+    "chainId": "eip155:1",
+    "name": "Coinmetro",
+    "precision": 18,
+    "color": "#14141A",
+    "icon": "https://assets.coingecko.com/coins/images/3125/thumb/XCM_Token_Logo_.png?1696503850",
+    "symbol": "XCM",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x36c833eed0d376f75d1ff9dfdee260191336065e": {
+    "assetId": "eip155:1/erc20:0x36c833eed0d376f75d1ff9dfdee260191336065e",
+    "chainId": "eip155:1",
+    "name": "Gitcoin Staked ETH Index",
+    "precision": 18,
+    "color": "#E5D1D4",
+    "icon": "https://assets.coingecko.com/coins/images/29171/thumb/gtcETH-token-logo.png?1696528129",
+    "symbol": "GTCETH",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x36e43065e977bc72cb86dbd8405fae7057cdc7fd": {
+    "assetId": "eip155:1/erc20:0x36e43065e977bc72cb86dbd8405fae7057cdc7fd",
+    "chainId": "eip155:1",
+    "name": "ArchAngel on Ethereum",
+    "precision": 9,
+    "color": "#B4CEEF",
+    "icon": "https://assets.coingecko.com/coins/images/18814/thumb/Archa_200_x_200_PNG.png?1696518276",
+    "symbol": "ARCHA",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x36f8d0d0573ae92326827c4a82fe4ce4c244cab6": {
+    "assetId": "eip155:1/erc20:0x36f8d0d0573ae92326827c4a82fe4ce4c244cab6",
+    "chainId": "eip155:1",
+    "name": "Morpho Aave Dai Stablecoin",
+    "precision": 18,
+    "color": "#DCE1DE",
+    "icon": "https://assets.coingecko.com/coins/images/29836/thumb/maDAI.jpg?1696528763",
+    "symbol": "MADAI",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x36feca97a4e81f4e1260119fae0c572a98832285": {
+    "assetId": "eip155:1/erc20:0x36feca97a4e81f4e1260119fae0c572a98832285",
+    "chainId": "eip155:1",
+    "name": "Chainswitch",
+    "precision": 9,
+    "color": "#362C1B",
+    "icon": "https://assets.coingecko.com/coins/images/30778/thumb/chainswitch_loho.png?1696529646",
+    "symbol": "SWITCH",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x36ff4dae0e88113d68b1209e245b0e3af92e9d58": {
+    "assetId": "eip155:1/erc20:0x36ff4dae0e88113d68b1209e245b0e3af92e9d58",
+    "chainId": "eip155:1",
+    "name": "Xenlon Mars",
+    "precision": 18,
+    "color": "#D1AA27",
+    "icon": "https://assets.coingecko.com/coins/images/29721/thumb/signal-2023-04-29-113317_002.jpeg?1696528651",
+    "symbol": "XLON",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x3700adfd26d5bc062cb8b8a77e68fbd43f58ecab": {
+    "assetId": "eip155:1/erc20:0x3700adfd26d5bc062cb8b8a77e68fbd43f58ecab",
+    "chainId": "eip155:1",
+    "name": "hiDOODLES",
+    "precision": 18,
+    "color": "#84A8B4",
+    "icon": "https://assets.coingecko.com/coins/images/27427/thumb/hidoodles.png?1696526468",
+    "symbol": "HIDOODLES",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x370a366f402e2e41cdbbe54ecec12aae0cce1955": {
+    "assetId": "eip155:1/erc20:0x370a366f402e2e41cdbbe54ecec12aae0cce1955",
+    "chainId": "eip155:1",
+    "name": "Toad Killer",
+    "precision": 18,
+    "color": "#F9D104",
+    "icon": "https://assets.coingecko.com/coins/images/30234/thumb/khLXf12.png?1700669365",
+    "symbol": "TOAD",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x370adc71f67f581158dc56f539df5f399128ddf9": {
+    "assetId": "eip155:1/erc20:0x370adc71f67f581158dc56f539df5f399128ddf9",
+    "chainId": "eip155:1",
+    "name": "Aave AMM UniMKRWETH",
+    "precision": 18,
+    "color": "#52B7BF",
+    "icon": "https://assets.coingecko.com/coins/images/17222/thumb/aAmmUniMKRWETH.png?1696516777",
+    "symbol": "AAMMUNIMKRWETH",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x37268c4f56ebb13dfae9c16d57d17579312d0ee1": {
+    "assetId": "eip155:1/erc20:0x37268c4f56ebb13dfae9c16d57d17579312d0ee1",
+    "chainId": "eip155:1",
+    "name": "0xAuto io   Contract Auto Deployer",
+    "precision": 18,
+    "color": "#0A0A08",
+    "icon": "https://assets.coingecko.com/coins/images/30673/thumb/photo_2023-06-01_11-19-59_%282%29.jpg?1696529543",
+    "symbol": "0XA",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x374cb8c27130e2c9e04f44303f3c8351b9de61c1": {
+    "assetId": "eip155:1/erc20:0x374cb8c27130e2c9e04f44303f3c8351b9de61c1",
+    "chainId": "eip155:1",
+    "name": "Bao Finance",
+    "precision": 18,
+    "color": "#D6C4BC",
+    "icon": "https://assets.coingecko.com/coins/images/13547/thumb/BaoLogo.png?1696513307",
+    "symbol": "BAO",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x374fb05c96c36348b92e38fb088b26b8511e3b3d": {
+    "assetId": "eip155:1/erc20:0x374fb05c96c36348b92e38fb088b26b8511e3b3d",
+    "chainId": "eip155:1",
+    "name": "CROWD",
+    "precision": 18,
+    "color": "#929292",
+    "icon": "https://assets.coingecko.com/coins/images/24125/thumb/cwd.png?1696523316",
+    "symbol": "CWD",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x3757232b55e60da4a8793183ac030cfce4c3865d": {
+    "assetId": "eip155:1/erc20:0x3757232b55e60da4a8793183ac030cfce4c3865d",
+    "chainId": "eip155:1",
+    "name": "YDragon on Ethereum",
+    "precision": 18,
+    "color": "#E34E3C",
+    "icon": "https://assets.coingecko.com/coins/images/17807/thumb/icon.png?1696517328",
+    "symbol": "YDR",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x3758e00b100876c854636ef8db61988931bb8025": {
+    "assetId": "eip155:1/erc20:0x3758e00b100876c854636ef8db61988931bb8025",
+    "chainId": "eip155:1",
+    "name": "Uniqly",
+    "precision": 18,
+    "color": "#D25AA1",
+    "icon": "https://assets.coingecko.com/coins/images/14808/thumb/Hnet-com-image.png?1696514477",
+    "symbol": "UNIQ",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x375abb85c329753b1ba849a601438ae77eec9893": {
+    "assetId": "eip155:1/erc20:0x375abb85c329753b1ba849a601438ae77eec9893",
+    "chainId": "eip155:1",
+    "name": "ParagonsDAO",
+    "precision": 18,
+    "color": "#657261",
+    "icon": "https://assets.coingecko.com/coins/images/22642/thumb/PDT_LOGO_200.jpg?1696521956",
+    "symbol": "PDT",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x37613d64258c0fe09d5e53eecb091da5b8fa8707": {
+    "assetId": "eip155:1/erc20:0x37613d64258c0fe09d5e53eecb091da5b8fa8707",
+    "chainId": "eip155:1",
+    "name": "Pi Protocol on Ethereum",
+    "precision": 18,
+    "color": "#8AF009",
+    "icon": "https://assets.coingecko.com/coins/images/27476/thumb/LOGO_%281%29.png?1696526514",
+    "symbol": "PIP",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x376b2dcf9ebd3067bb89eb6d1020fbe604092212": {
+    "color": "#FFFFFF",
+    "icon": "https://raw.githubusercontent.com/Idle-Labs/idle-dashboard/master/public/images/tokens/USDC.svg",
+    "name": "MorphoAave USDC Senior Tranche",
+    "precision": 18,
+    "symbol": "AA_maUSDC",
+    "chainId": "eip155:1",
+    "assetId": "eip155:1/erc20:0x376b2dcf9ebd3067bb89eb6d1020fbe604092212",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x377d552914e7a104bc22b4f3b6268ddc69615be7": {
+    "assetId": "eip155:1/erc20:0x377d552914e7a104bc22b4f3b6268ddc69615be7",
+    "chainId": "eip155:1",
+    "name": "NEXT",
+    "precision": 18,
+    "color": "#0494FC",
+    "icon": "https://assets.coingecko.com/coins/images/7014/thumb/NEXT.exchange_Logo.png?1569212613",
+    "symbol": "NEXT",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x378cb52b00f9d0921cb46dfc099cff73b42419dc": {
+    "assetId": "eip155:1/erc20:0x378cb52b00f9d0921cb46dfc099cff73b42419dc",
+    "chainId": "eip155:1",
+    "name": "LUSD yVault",
+    "precision": 18,
+    "color": "#2CB4EC",
+    "icon": "https://assets.coingecko.com/coins/images/28788/thumb/yvLUSD-128-0x378cb52b00F9D0921cb46dFc099CFf73b42419dC.png?1696527767",
+    "symbol": "YVLUSD",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x378e1be15be6d6d1f23cfe7090b6a77660dbf14d": {
+    "assetId": "eip155:1/erc20:0x378e1be15be6d6d1f23cfe7090b6a77660dbf14d",
+    "chainId": "eip155:1",
+    "name": "FOXE",
+    "precision": 18,
+    "color": "#DF7C1F",
+    "icon": "https://assets.coingecko.com/coins/images/30227/thumb/foxe.jpeg?1696529137",
+    "symbol": "FOXE",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x37a15c92e67686aa268df03d4c881a76340907e8": {
+    "assetId": "eip155:1/erc20:0x37a15c92e67686aa268df03d4c881a76340907e8",
+    "chainId": "eip155:1",
+    "name": "Pixiu Finance",
+    "precision": 0,
+    "color": "#E7B441",
+    "icon": "https://assets.coingecko.com/coins/images/17297/thumb/pixiu_picture_.png?1696516850",
+    "symbol": "PIXIU",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x37c997b35c619c21323f3518b9357914e8b99525": {
+    "assetId": "eip155:1/erc20:0x37c997b35c619c21323f3518b9357914e8b99525",
+    "chainId": "eip155:1",
+    "name": "A51 Finance",
+    "precision": 18,
+    "color": "#040E18",
+    "icon": "https://assets.coingecko.com/coins/images/17235/thumb/QmSjCnb74Q88o9gcTMMYNggj6BDkFEPukAZ5nWrhPaRxoW.png?1696516789",
+    "symbol": "A51",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x37cfc2e83665d49364670dfea6d2dd4cb1215f22": {
+    "assetId": "eip155:1/erc20:0x37cfc2e83665d49364670dfea6d2dd4cb1215f22",
+    "chainId": "eip155:1",
+    "name": "Astrid Restaked rETH",
+    "precision": 18,
+    "color": "#C3C3C3",
+    "icon": "https://assets.coingecko.com/coins/images/32267/thumb/astridlogo_copy.png?1697166279",
+    "symbol": "RRETH",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x37da9de38c4094e090c014325f6ef4baeb302626": {
+    "assetId": "eip155:1/erc20:0x37da9de38c4094e090c014325f6ef4baeb302626",
+    "chainId": "eip155:1",
+    "name": "OTSea",
+    "precision": 18,
+    "color": "#9FB8CD",
+    "icon": "https://assets.coingecko.com/coins/images/31900/thumb/photo_2023-09-17_16-46-21.jpg?1696530711",
+    "symbol": "OTSEA",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x37dba54fdc402aff647ce06c66972f5d662c326d": {
+    "assetId": "eip155:1/erc20:0x37dba54fdc402aff647ce06c66972f5d662c326d",
+    "chainId": "eip155:1",
+    "name": "MELON",
+    "precision": 18,
+    "color": "#CA6766",
+    "icon": "https://assets.coingecko.com/coins/images/31701/thumb/Melon_Icon_200px_2.png?1696530525",
+    "symbol": "MELON",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x37e1160184f7dd29f00b78c050bf13224780b0b0": {
+    "assetId": "eip155:1/erc20:0x37e1160184f7dd29f00b78c050bf13224780b0b0",
+    "chainId": "eip155:1",
+    "name": "Yuan Chain Coin",
+    "precision": 8,
+    "color": "#4C75EE",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x37E1160184F7dD29f00b78C050Bf13224780b0B0/logo.png",
+    "symbol": "YCC",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x37e83a94c6b1bdb816b59ac71dd02cf154d8111f": {
+    "assetId": "eip155:1/erc20:0x37e83a94c6b1bdb816b59ac71dd02cf154d8111f",
+    "chainId": "eip155:1",
+    "name": "PhotoChromic",
+    "precision": 18,
+    "color": "#F1E6F7",
+    "icon": "https://assets.coingecko.com/coins/images/23640/thumb/L7vabJibqXHHmGtsIfIEQRaR3SjaE94QSaKWGlqYU7fpuz--nKsWG4BlB6Ddhn5-tGPWo-MDhfZPVAYG7ZM2vpWrVZlSx1Euw78tZcNey6FvpKX6a8w26qBWYeV7wxFzvW7VKieijrMXQ0BkISpt8d6jrCMBvx2ZFKVxF1x31_2X7WhRyqAgIG3epFPNz7v0j0ECaS7HmE0_sTHM4RS3CW1d0a.jpg?1696522844",
+    "symbol": "PHCR",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x37f678ad6221a0fd71cda0eca19c8802f4cabf44": {
+    "assetId": "eip155:1/erc20:0x37f678ad6221a0fd71cda0eca19c8802f4cabf44",
+    "chainId": "eip155:1",
+    "name": "YUKKY",
+    "precision": 18,
+    "color": "#E4D4CD",
+    "icon": "https://assets.coingecko.com/coins/images/30512/thumb/200GpSL05ul_400x400.jpg?1696529397",
+    "symbol": "YUKKY",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x37f74e99794853777a10ea1dc08a64c86958f06a": {
+    "assetId": "eip155:1/erc20:0x37f74e99794853777a10ea1dc08a64c86958f06a",
+    "chainId": "eip155:1",
+    "name": "D Community",
+    "precision": 18,
+    "color": "#F7651C",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x37F74e99794853777a10ea1dc08a64C86958F06a/logo.png",
+    "symbol": "DILI",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x37fc4b48ce93469dbea9918468993c735049642a": {
+    "assetId": "eip155:1/erc20:0x37fc4b48ce93469dbea9918468993c735049642a",
+    "chainId": "eip155:1",
+    "name": "CropBytes",
+    "precision": 18,
+    "color": "#BAE5BD",
+    "icon": "https://assets.coingecko.com/coins/images/19907/thumb/cbx.png?1696519327",
+    "symbol": "CBX",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x37fe0f067fa808ffbdd12891c0858532cfe7361d": {
+    "assetId": "eip155:1/erc20:0x37fe0f067fa808ffbdd12891c0858532cfe7361d",
+    "chainId": "eip155:1",
+    "name": "Civilization on Ethereum",
+    "precision": 18,
+    "color": "#476D88",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x37fE0f067FA808fFBDd12891C0858532CFE7361d/logo.png",
+    "symbol": "CIV",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x38029c62dfa30d9fd3cadf4c64e9b2ab21dbda17": {
+    "assetId": "eip155:1/erc20:0x38029c62dfa30d9fd3cadf4c64e9b2ab21dbda17",
+    "chainId": "eip155:1",
+    "name": "Dubbz on Ethereum",
+    "precision": 18,
+    "color": "#2F81DA",
+    "icon": "https://assets.coingecko.com/coins/images/28665/thumb/D8EACA06-18ED-4999-8B3A-6339F9E021CE.jpeg?1696527650",
+    "symbol": "DUBBZ",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x3802c218221390025bceabbad5d8c59f40eb74b8": {
+    "assetId": "eip155:1/erc20:0x3802c218221390025bceabbad5d8c59f40eb74b8",
+    "chainId": "eip155:1",
+    "name": "Guarded Ether",
+    "precision": 18,
+    "color": "#7C8CE4",
+    "icon": "https://assets.coingecko.com/coins/images/14001/thumb/guarda-shield-logo.png?1696513730",
+    "symbol": "GETH",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x3810a4ddf41e586fa0dba1463a7951b748cecfca": {
+    "assetId": "eip155:1/erc20:0x3810a4ddf41e586fa0dba1463a7951b748cecfca",
+    "chainId": "eip155:1",
+    "name": "Menapay",
+    "precision": 18,
+    "color": "#E70B48",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x3810A4Ddf41E586Fa0dbA1463A7951B748cEcFca/logo.png",
+    "symbol": "MPAY",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x3819f64f282bf135d62168c1e513280daf905e06": {
+    "assetId": "eip155:1/erc20:0x3819f64f282bf135d62168c1e513280daf905e06",
+    "chainId": "eip155:1",
+    "name": "Hedron",
+    "precision": 9,
+    "color": "#D0D2FC",
+    "icon": "https://assets.coingecko.com/coins/images/24208/thumb/hdrn.png?1696523395",
+    "symbol": "HDRN",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x382a1667c9062f0621362f49076ef6e4fe4c9ec7": {
+    "assetId": "eip155:1/erc20:0x382a1667c9062f0621362f49076ef6e4fe4c9ec7",
+    "chainId": "eip155:1",
+    "name": "RushCoin",
+    "precision": 18,
+    "color": "#CD1A24",
+    "icon": "https://assets.coingecko.com/coins/images/25053/thumb/Kax1yBSz_400x400.png?1696524204",
+    "symbol": "RUSH",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x382ac32e9abe17f424a74e8ce0a92c0f18788f9a": {
+    "assetId": "eip155:1/erc20:0x382ac32e9abe17f424a74e8ce0a92c0f18788f9a",
+    "chainId": "eip155:1",
+    "name": "Hottel",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAIAAAACACAMAAAD04JH5AAADAFBMVEUtN0gmudj///8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARk0D3AAABAHRSTlP/////AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAf6K/dgAAQItJREFUeNoBgEB/vwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAQEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgEBAQEBAQEBAQEBAQAAAgICAgICAgICAgICAgICAgICAgICAQEBAQEBAQEBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQEBAQEBAQAAAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQEBAQEBAQAAAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQEBAQEBAQAAAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQEBAQEBAQAAAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQEBAQEBAQAAAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQEBAQEBAQAAAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAAMDAwMDAwMDAwMDAwMDAwMDAwMDAgICAgICAgEBAQEBAQEBAwMDAwMDAwMDAwMDAwICAgICAgIDAwMDAwMDAwMDAwMDAwMAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwMDAwMDAwMDAwMDAwMDAwMDAwMDAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQEBAwMDAwMDAgICAgICAgICAgICAgICAgICAgICAQMDAwMDAwMBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQEBAQEBAQAAAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQEBAQEBAQAAAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQEBAQEBAQAAAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQEBAQEBAQAAAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQEBAQEBAQAAAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQEBAQEBAQAAAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAwMDAwMDAwEBAQEBAQEBAQEBAQEBAQEBAQEBAQMDAwMDAwMBAQEBAQEBAQEBAQAAAAMDAwMDAwMDAwMDAwMDAwMDAwMDAwEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEDAwMDAwMDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABa4MGc23m9kAAAAAElFTkSuQmCC",
+    "symbol": "HOTT",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x3832d2f059e55934220881f831be501d180671a7": {
+    "assetId": "eip155:1/erc20:0x3832d2f059e55934220881f831be501d180671a7",
+    "chainId": "eip155:1",
+    "name": "renDOGE on Ethereum",
+    "precision": 8,
+    "color": "#BFA83F",
+    "icon": "https://assets.coingecko.com/coins/images/13796/thumb/Dogecoin.jpg?1696513544",
+    "symbol": "RENDOGE",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x383518188c0c6d7730d91b2c03a03c837814a899": {
+    "assetId": "eip155:1/erc20:0x383518188c0c6d7730d91b2c03a03c837814a899",
+    "chainId": "eip155:1",
+    "name": "Olympus v1",
+    "precision": 9,
+    "color": "#738C94",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x383518188C0C6d7730D91b2c03a03C837814a899/logo.png",
+    "symbol": "OHM",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x3845badade8e6dff049820680d1f14bd3903a5d0": {
+    "assetId": "eip155:1/erc20:0x3845badade8e6dff049820680d1f14bd3903a5d0",
+    "chainId": "eip155:1",
+    "name": "The Sandbox on Ethereum",
+    "precision": 18,
+    "color": "#04ACEC",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x3845badAde8e6dFF049820680d1F14bD3903a5d0/logo.png",
+    "symbol": "SAND",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x3850952491606a0e420eb929b1a2e1a450d013f1": {
+    "assetId": "eip155:1/erc20:0x3850952491606a0e420eb929b1a2e1a450d013f1",
+    "chainId": "eip155:1",
+    "name": "PanoVerse",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/32812/thumb/0x3850952491606a0e420eb929b1a2e1a450d013f1.png?1699544500",
+    "symbol": "PANO",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x388d819724dd6d71760a38f00dc01d310d879771": {
+    "assetId": "eip155:1/erc20:0x388d819724dd6d71760a38f00dc01d310d879771",
+    "chainId": "eip155:1",
+    "name": "JustMoney on Ethereum",
+    "precision": 8,
+    "color": "#F2AA04",
+    "icon": "https://assets.coingecko.com/coins/images/25450/thumb/jm.png?1696524581",
+    "symbol": "JM",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x3893b9422cd5d70a81edeffe3d5a1c6a978310bb": {
+    "assetId": "eip155:1/erc20:0x3893b9422cd5d70a81edeffe3d5a1c6a978310bb",
+    "chainId": "eip155:1",
+    "name": "Mithril",
+    "precision": 18,
+    "color": "#043C7C",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x3893b9422Cd5D70a81eDeFfe3d5A1c6A978310BB/logo.png",
+    "symbol": "MITH",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x389999216860ab8e0175387a0c90e5c52522c945": {
+    "assetId": "eip155:1/erc20:0x389999216860ab8e0175387a0c90e5c52522c945",
+    "chainId": "eip155:1",
+    "name": "FEG  OLD ",
+    "precision": 9,
+    "color": "#F3AD33",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x389999216860AB8E0175387A0c90E5c52522C945/logo.png",
+    "symbol": "FEG",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x38a2fdc11f526ddd5a607c1f251c065f40fbf2f7": {
+    "assetId": "eip155:1/erc20:0x38a2fdc11f526ddd5a607c1f251c065f40fbf2f7",
+    "chainId": "eip155:1",
+    "name": "PhoenixDAO on Ethereum",
+    "precision": 18,
+    "color": "#E3DBFB",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x38A2fDc11f526Ddd5a607C1F251C065f40fBF2f7/logo.png",
+    "symbol": "PHNX",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x38a94e92a19e970c144ded0b2dd47278ca11cc1f": {
+    "assetId": "eip155:1/erc20:0x38a94e92a19e970c144ded0b2dd47278ca11cc1f",
+    "chainId": "eip155:1",
+    "name": "Falcon Nine",
+    "precision": 9,
+    "color": "#517EB3",
+    "icon": "https://assets.coingecko.com/coins/images/16858/thumb/logo-f9.png?1696516425",
+    "symbol": "F9",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x38b7bf4eecf3eb530b1529c9401fc37d2a71a912": {
+    "assetId": "eip155:1/erc20:0x38b7bf4eecf3eb530b1529c9401fc37d2a71a912",
+    "chainId": "eip155:1",
+    "name": "ClayStack Staked MATIC on Ethereum",
+    "precision": 18,
+    "color": "#1C1422",
+    "icon": "https://assets.coingecko.com/coins/images/28352/thumb/csMatic.png?1696527356",
+    "symbol": "CSMATIC",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x38cf11283de05cf1823b7804bc75068bd6296957": {
+    "assetId": "eip155:1/erc20:0x38cf11283de05cf1823b7804bc75068bd6296957",
+    "chainId": "eip155:1",
+    "name": "MoonBot",
+    "precision": 18,
+    "color": "#DFF0E5",
+    "icon": "https://assets.coingecko.com/coins/images/31198/thumb/IMAGE_2023-07-27_20_46_47.jpg?1696530025",
+    "symbol": "MBOT",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x38cf6cea814aefd01027a0bbf8a78b7aa95a698e": {
+    "assetId": "eip155:1/erc20:0x38cf6cea814aefd01027a0bbf8a78b7aa95a698e",
+    "chainId": "eip155:1",
+    "name": "Bypass",
+    "precision": 9,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/32716/thumb/0x38cf6cea814aefd01027a0bbf8a78b7aa95a698e.jpg?1699000988",
+    "symbol": "BYPASS",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x38d9eb07a7b8df7d86f440a4a5c4a4c1a27e1a08": {
+    "assetId": "eip155:1/erc20:0x38d9eb07a7b8df7d86f440a4a5c4a4c1a27e1a08",
+    "chainId": "eip155:1",
+    "name": "bloXmove on Ethereum",
+    "precision": 18,
+    "color": "#449464",
+    "icon": "https://assets.coingecko.com/coins/images/19310/thumb/blxm_200x200.png?1696518752",
+    "symbol": "BLXM",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x38e382f74dfb84608f3c1f10187f6bef5951de93": {
+    "assetId": "eip155:1/erc20:0x38e382f74dfb84608f3c1f10187f6bef5951de93",
+    "chainId": "eip155:1",
+    "name": "Multibit",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/33051/thumb/multi.jpg?1700473994",
+    "symbol": "MUBI",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x38e491a71291cd43e8de63b7253e482622184894": {
+    "assetId": "eip155:1/erc20:0x38e491a71291cd43e8de63b7253e482622184894",
+    "chainId": "eip155:1",
+    "name": "Aave AMM UniSNXWETH",
+    "precision": 18,
+    "color": "#2D8AA9",
+    "icon": "https://assets.coingecko.com/coins/images/17224/thumb/aAmmUniSNXWETH.png?1696516779",
+    "symbol": "AAMMUNISNXWETH",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x38e4adb44ef08f22f5b5b76a8f0c2d0dcbe7dca1": {
+    "assetId": "eip155:1/erc20:0x38e4adb44ef08f22f5b5b76a8f0c2d0dcbe7dca1",
+    "chainId": "eip155:1",
+    "name": "PowerPool Concentrated Voting Power",
+    "precision": 18,
+    "color": "#1B2BE3",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x38e4adB44ef08F22F5B5b76A8f0c2d0dCbE7DcA1/logo.png",
+    "symbol": "CVP",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x38e68a37e401f7271568cecaac63c6b1e19130b4": {
+    "assetId": "eip155:1/erc20:0x38e68a37e401f7271568cecaac63c6b1e19130b4",
+    "chainId": "eip155:1",
+    "name": "Banana Gun",
+    "precision": 18,
+    "color": "#0A090D",
+    "icon": "https://assets.coingecko.com/coins/images/31744/thumb/bgg.jpeg?1696530563",
+    "symbol": "BANANA",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x38f679f8e8116cd5d6a700e442dfaa8e7b8697b5": {
+    "assetId": "eip155:1/erc20:0x38f679f8e8116cd5d6a700e442dfaa8e7b8697b5",
+    "chainId": "eip155:1",
+    "name": "Nandin",
+    "precision": 9,
+    "color": "#242423",
+    "icon": "https://assets.coingecko.com/coins/images/31794/thumb/LOGO.png?1696530610",
+    "symbol": "NANDI",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x38f9bb135ea88033f4377b9ea0fb5cfb773fec2f": {
+    "assetId": "eip155:1/erc20:0x38f9bb135ea88033f4377b9ea0fb5cfb773fec2f",
+    "chainId": "eip155:1",
+    "name": "Alpha Shards",
+    "precision": 18,
+    "color": "#1C0A0A",
+    "icon": "https://assets.coingecko.com/coins/images/32002/thumb/alpha_%281%29.jpeg?1696530802",
+    "symbol": "ALPHA",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x390e61f798267fe7aa9bbe61be8bb1776250d44c": {
+    "assetId": "eip155:1/erc20:0x390e61f798267fe7aa9bbe61be8bb1776250d44c",
+    "chainId": "eip155:1",
+    "name": "T2T2",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/32856/thumb/T2T2.png?1699697712",
+    "symbol": "T2T2",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x39142c18b6db2a8a41b7018f49e1478837560cad": {
+    "assetId": "eip155:1/erc20:0x39142c18b6db2a8a41b7018f49e1478837560cad",
+    "chainId": "eip155:1",
+    "name": "STATS",
+    "precision": 9,
+    "color": "#0D074C",
+    "icon": "https://assets.coingecko.com/coins/images/28853/thumb/stats.png?1696527827",
+    "symbol": "STATS",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x391e86e2c002c70dee155eaceb88f7a3c38f5976": {
+    "assetId": "eip155:1/erc20:0x391e86e2c002c70dee155eaceb88f7a3c38f5976",
+    "chainId": "eip155:1",
+    "name": "Aave AMM UniUSDCWETH",
+    "precision": 18,
+    "color": "#52ACCA",
+    "icon": "https://assets.coingecko.com/coins/images/17219/thumb/aAmmUniUSDCWETH.png?1696516774",
+    "symbol": "AAMMUNIUSDCWETH",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x39207d2e2feef178fbda8083914554c59d9f8c00": {
+    "assetId": "eip155:1/erc20:0x39207d2e2feef178fbda8083914554c59d9f8c00",
+    "chainId": "eip155:1",
+    "name": "MultiPlanetary Inus",
+    "precision": 18,
+    "color": "#707ED1",
+    "icon": "https://assets.coingecko.com/coins/images/22648/thumb/logo.png?1696521961",
+    "symbol": "INUS",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x394a16744dcd805bb0ca7252e70691f0dcac56aa": {
+    "assetId": "eip155:1/erc20:0x394a16744dcd805bb0ca7252e70691f0dcac56aa",
+    "chainId": "eip155:1",
+    "name": "Trazable on Ethereum",
+    "precision": 18,
+    "color": "#303D7C",
+    "icon": "https://assets.coingecko.com/coins/images/24851/thumb/Logo_TRZ-Token_200.png?1696524011",
+    "symbol": "TRZ",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x395e925834996e558bdec77cd648435d620afb5b": {
+    "assetId": "eip155:1/erc20:0x395e925834996e558bdec77cd648435d620afb5b",
+    "chainId": "eip155:1",
+    "name": "ThreeFold on Ethereum",
+    "precision": 7,
+    "color": "#353535",
+    "icon": "https://assets.coingecko.com/coins/images/6704/thumb/black_logo_on_white_background_%282%29.jpg?1696507044",
+    "symbol": "TFT",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x396ec402b42066864c406d1ac3bc86b575003ed8": {
+    "assetId": "eip155:1/erc20:0x396ec402b42066864c406d1ac3bc86b575003ed8",
+    "chainId": "eip155:1",
+    "name": "Buying com on Ethereum",
+    "precision": 2,
+    "color": "#293941",
+    "icon": "https://assets.coingecko.com/coins/images/5290/thumb/buying_200x200.png?1696505788",
+    "symbol": "BUY",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x39795344cbcc76cc3fb94b9d1b15c23c2070c66d": {
+    "assetId": "eip155:1/erc20:0x39795344cbcc76cc3fb94b9d1b15c23c2070c66d",
+    "chainId": "eip155:1",
+    "name": "Seigniorage Shares",
+    "precision": 9,
+    "color": "#0464D3",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x39795344CBCc76cC3Fb94B9D1b15C23c2070C66D/logo.png",
+    "symbol": "SHARE",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x397b102deccace4aa8e5ba63eedb8e65ad83e20c": {
+    "assetId": "eip155:1/erc20:0x397b102deccace4aa8e5ba63eedb8e65ad83e20c",
+    "chainId": "eip155:1",
+    "name": "Encryption AI",
+    "precision": 9,
+    "color": "#F4F6F5",
+    "icon": "https://assets.coingecko.com/coins/images/30015/thumb/photo_2023-04-15_03-15-32_%281%29.jpg?1696528939",
+    "symbol": "0XENCRYPT",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x397deb686c72384fad502a81f4d7fdb89e1f1280": {
+    "assetId": "eip155:1/erc20:0x397deb686c72384fad502a81f4d7fdb89e1f1280",
+    "chainId": "eip155:1",
+    "name": "XELS",
+    "precision": 8,
+    "color": "#D4EDCC",
+    "icon": "https://assets.coingecko.com/coins/images/14729/thumb/Xels_logo_square_%281%29.png?1696514398",
+    "symbol": "XELS",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x39aa39c021dfbae8fac545936693ac917d5e7563": {
+    "assetId": "eip155:1/erc20:0x39aa39c021dfbae8fac545936693ac917d5e7563",
+    "chainId": "eip155:1",
+    "name": "cUSDC",
+    "precision": 8,
+    "color": "#5DAFCE",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x39AA39c021dfbaE8faC545936693aC917d5E7563/logo.png",
+    "symbol": "CUSDC",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x39b0e13a29c2a27ce88cebd21262a232b0633613": {
+    "assetId": "eip155:1/erc20:0x39b0e13a29c2a27ce88cebd21262a232b0633613",
+    "chainId": "eip155:1",
+    "name": "Grape Governance Token",
+    "precision": 18,
+    "color": "#FC7404",
+    "icon": "https://assets.coingecko.com/coins/images/30807/thumb/grape_logo.png?1696529664",
+    "symbol": "GGT",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x39b46b212bdf15b42b166779b9d1787a68b9d0c3": {
+    "assetId": "eip155:1/erc20:0x39b46b212bdf15b42b166779b9d1787a68b9d0c3",
+    "chainId": "eip155:1",
+    "name": "Dypius on Ethereum",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/33016/thumb/RS-zDhFE_400x400.jpg?1700157370",
+    "symbol": "DYP",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x39c6b3e42d6a679d7d776778fe880bc9487c2eda": {
+    "assetId": "eip155:1/erc20:0x39c6b3e42d6a679d7d776778fe880bc9487c2eda",
+    "chainId": "eip155:1",
+    "name": "Aave KNC",
+    "precision": 18,
+    "color": "#35C8A2",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x39C6b3e42d6A679d7D776778Fe880BC9487C2EDA/logo.png",
+    "symbol": "AKNC",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x39d30828a163713d91c4eadbba2c497a9139ec5c": {
+    "assetId": "eip155:1/erc20:0x39d30828a163713d91c4eadbba2c497a9139ec5c",
+    "chainId": "eip155:1",
+    "name": "Happy Birthday Coin",
+    "precision": 18,
+    "color": "#DF678E",
+    "icon": "https://assets.coingecko.com/coins/images/12814/thumb/%EC%A7%84%ED%92%88.png?1696512607",
+    "symbol": "HBDC",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x39ea10e507720783c27edd5f96bf2d6e199579b8": {
+    "assetId": "eip155:1/erc20:0x39ea10e507720783c27edd5f96bf2d6e199579b8",
+    "chainId": "eip155:1",
+    "name": "DeltaFlare",
+    "precision": 18,
+    "color": "#B2B2B2",
+    "icon": "https://assets.coingecko.com/coins/images/28059/thumb/DF_Logo_200x200.png?1696527071",
+    "symbol": "HONR",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x39fbbabf11738317a448031930706cd3e612e1b9": {
+    "assetId": "eip155:1/erc20:0x39fbbabf11738317a448031930706cd3e612e1b9",
+    "chainId": "eip155:1",
+    "name": "Wrapped XRP",
+    "precision": 18,
+    "color": "#D8EDFC",
+    "icon": "https://assets.coingecko.com/coins/images/19952/thumb/WXRP_revision-256px.png?1696519369",
+    "symbol": "WXRP",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x3a0b022f32b3191d44e5847da12dc0b63fb07c91": {
+    "assetId": "eip155:1/erc20:0x3a0b022f32b3191d44e5847da12dc0b63fb07c91",
+    "chainId": "eip155:1",
+    "name": "Spellfire on Ethereum",
+    "precision": 18,
+    "color": "#EC2424",
+    "icon": "https://assets.coingecko.com/coins/images/23107/thumb/17316.png?1696522396",
+    "symbol": "SPELLFIRE",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x3a1311b8c404629e38f61d566cefefed083b9670": {
+    "assetId": "eip155:1/erc20:0x3a1311b8c404629e38f61d566cefefed083b9670",
+    "chainId": "eip155:1",
+    "name": "Piccolo Inu",
+    "precision": 9,
+    "color": "#77AE39",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x3a1311B8C404629E38f61D566cefEFed083B9670/logo.png",
+    "symbol": "PINU",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x3a1bda28adb5b0a812a7cf10a1950c920f79bcd3": {
+    "assetId": "eip155:1/erc20:0x3a1bda28adb5b0a812a7cf10a1950c920f79bcd3",
+    "chainId": "eip155:1",
+    "name": "Gameflip",
+    "precision": 18,
+    "color": "#E67416",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x3a1Bda28AdB5B0a812a7CF10A1950c920F79BcD3/logo.png",
+    "symbol": "FLP",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x3a2348dbb9250a43226a27e21edb94882bb7de8d": {
+    "assetId": "eip155:1/erc20:0x3a2348dbb9250a43226a27e21edb94882bb7de8d",
+    "chainId": "eip155:1",
+    "name": "The AI Dev Bot",
+    "precision": 8,
+    "color": "#5778CC",
+    "icon": "https://assets.coingecko.com/coins/images/31052/thumb/AIDEV.png?1696529887",
+    "symbol": "AIDEV",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x3a3a65aab0dd2a17e3f1947ba16138cd37d08c04": {
+    "assetId": "eip155:1/erc20:0x3a3a65aab0dd2a17e3f1947ba16138cd37d08c04",
+    "chainId": "eip155:1",
+    "name": "Aave ETH v1",
+    "precision": 18,
+    "color": "#363030",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x3a3A65aAb0dd2A17E3F1947bA16138cd37d08c04/logo.png",
+    "symbol": "AETH",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x3a4c122243b53135e7f6bf5b4658092c3a3109ab": {
+    "assetId": "eip155:1/erc20:0x3a4c122243b53135e7f6bf5b4658092c3a3109ab",
+    "chainId": "eip155:1",
+    "name": "HustleBot",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/32651/thumb/IMG_20231030_233538_062.jpg?1698895135",
+    "symbol": "HUSTLE",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x3a4cab3dcfab144fe7eb2b5a3e288cc03dc07659": {
+    "assetId": "eip155:1/erc20:0x3a4cab3dcfab144fe7eb2b5a3e288cc03dc07659",
+    "chainId": "eip155:1",
+    "name": "OnGo",
+    "precision": 18,
+    "color": "#0B5CE6",
+    "icon": "https://assets.coingecko.com/coins/images/20154/thumb/IMG-20220728-WA0004.jpg?1696519568",
+    "symbol": "FTG",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x3a4f40631a4f906c2bad353ed06de7a5d3fcb430": {
+    "assetId": "eip155:1/erc20:0x3a4f40631a4f906c2bad353ed06de7a5d3fcb430",
+    "chainId": "eip155:1",
+    "name": "PlayDapp on Ethereum",
+    "precision": 18,
+    "color": "#C8F8EE",
+    "icon": "https://assets.coingecko.com/coins/images/14316/thumb/54023228.png?1696514005",
+    "symbol": "PLA",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x3a529a8d4f2ea64d206339fa12a3af4d431f53c3": {
+    "assetId": "eip155:1/erc20:0x3a529a8d4f2ea64d206339fa12a3af4d431f53c3",
+    "chainId": "eip155:1",
+    "name": "Vendetta Finance",
+    "precision": 18,
+    "color": "#2C2C2C",
+    "icon": "https://assets.coingecko.com/coins/images/26601/thumb/VF-Logo.png?1696525675",
+    "symbol": "VEN",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x3a52fa30c33caf05faee0f9c5dfe5fd5fe8b3978": {
+    "color": "#FFFFFF",
+    "icon": "https://raw.githubusercontent.com/Idle-Labs/idle-dashboard/master/public/images/tokens/STETH.svg",
+    "name": "Lido STETH Junior Tranche",
+    "precision": 18,
+    "symbol": "BB_wstETH",
+    "chainId": "eip155:1",
+    "assetId": "eip155:1/erc20:0x3a52fa30c33caf05faee0f9c5dfe5fd5fe8b3978",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x3a6dc7eefef660be5c254c8aa1b710202151e345": {
+    "assetId": "eip155:1/erc20:0x3a6dc7eefef660be5c254c8aa1b710202151e345",
+    "chainId": "eip155:1",
+    "name": "dPARROT",
+    "precision": 18,
+    "color": "#521652",
+    "icon": "https://assets.coingecko.com/coins/images/31601/thumb/coingecko.jpg?1696530417",
+    "symbol": "PARROT",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x3a707d56d538e85b783e8ce12b346e7fb6511f90": {
+    "assetId": "eip155:1/erc20:0x3a707d56d538e85b783e8ce12b346e7fb6511f90",
+    "chainId": "eip155:1",
+    "name": "Inverse Ethereum Volatility Index Token",
+    "precision": 18,
+    "color": "#070E0C",
+    "icon": "https://assets.coingecko.com/coins/images/16715/thumb/logo_-_2021-06-28T085526.083.png?1696516289",
+    "symbol": "IETHV",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x3a810ff7211b40c4fa76205a14efe161615d0385": {
+    "assetId": "eip155:1/erc20:0x3a810ff7211b40c4fa76205a14efe161615d0385",
+    "chainId": "eip155:1",
+    "name": "AI Network",
+    "precision": 18,
+    "color": "#643CBC",
+    "icon": "https://assets.coingecko.com/coins/images/13211/thumb/AI_Network_Logo_200x200.png?1696512991",
+    "symbol": "AIN",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x3a82d3111ab5faf39d847d46023d9090261a658f": {
+    "assetId": "eip155:1/erc20:0x3a82d3111ab5faf39d847d46023d9090261a658f",
+    "chainId": "eip155:1",
+    "name": "Tycoon",
+    "precision": 18,
+    "color": "#0C9AB1",
+    "icon": "https://assets.coingecko.com/coins/images/15165/thumb/coingecko.png?1696514820",
+    "symbol": "TYC",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x3a856d4effa670c54585a5d523e96513e148e95d": {
+    "assetId": "eip155:1/erc20:0x3a856d4effa670c54585a5d523e96513e148e95d",
+    "chainId": "eip155:1",
+    "name": "TriasLab on Ethereum",
+    "precision": 18,
+    "color": "#31B6C2",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x3A856d4effa670C54585a5D523e96513e148e95d/logo.png",
+    "symbol": "TRIAS",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x3a880652f47bfaa771908c07dd8673a787daed3a": {
+    "assetId": "eip155:1/erc20:0x3a880652f47bfaa771908c07dd8673a787daed3a",
+    "chainId": "eip155:1",
+    "name": "DerivaDAO",
+    "precision": 18,
+    "color": "#2D1684",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x3A880652F47bFaa771908C07Dd8673A787dAEd3A/logo.png",
+    "symbol": "DDX",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x3a8cccb969a61532d1e6005e2ce12c200caece87": {
+    "assetId": "eip155:1/erc20:0x3a8cccb969a61532d1e6005e2ce12c200caece87",
+    "chainId": "eip155:1",
+    "name": "TitanSwap",
+    "precision": 18,
+    "color": "#0EC4FC",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x3A8cCCB969a61532d1E6005e2CE12C200caeCe87/logo.png",
+    "symbol": "TITAN",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x3a8d5bc8a8948b68dfc0ce9c14ac4150e083518c": {
+    "assetId": "eip155:1/erc20:0x3a8d5bc8a8948b68dfc0ce9c14ac4150e083518c",
+    "chainId": "eip155:1",
+    "name": "Paralink Network on Ethereum",
+    "precision": 18,
+    "color": "#1EA2DC",
+    "icon": "https://assets.coingecko.com/coins/images/15789/thumb/para.PNG?1696515412",
+    "symbol": "PARA",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x3aada3e213abf8529606924d8d1c55cbdc70bf74": {
+    "assetId": "eip155:1/erc20:0x3aada3e213abf8529606924d8d1c55cbdc70bf74",
+    "chainId": "eip155:1",
+    "name": "XMON",
+    "precision": 18,
+    "color": "#499482",
+    "icon": "https://assets.coingecko.com/coins/images/14008/thumb/xmon_logo.png?1696513737",
+    "symbol": "XMON",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x3ab6ed69ef663bd986ee59205ccad8a20f98b4c2": {
+    "assetId": "eip155:1/erc20:0x3ab6ed69ef663bd986ee59205ccad8a20f98b4c2",
+    "chainId": "eip155:1",
+    "name": "Drep on Ethereum",
+    "precision": 18,
+    "color": "#8EA9C0",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x3Ab6Ed69Ef663bd986Ee59205CCaD8A20F98b4c2/logo.png",
+    "symbol": "DREP",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x3ac81633a291f342b62e7de5d00eb02924032e06": {
+    "assetId": "eip155:1/erc20:0x3ac81633a291f342b62e7de5d00eb02924032e06",
+    "chainId": "eip155:1",
+    "name": "FrontFanz",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/33225/thumb/200x200_ff.png?1701100617",
+    "symbol": "FANX",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x3acfc40a19520d97648eb7c0891e747b7f2b0283": {
+    "assetId": "eip155:1/erc20:0x3acfc40a19520d97648eb7c0891e747b7f2b0283",
+    "chainId": "eip155:1",
+    "name": "Flooring Protocol  Azuki",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/32676/thumb/vsF28_QV_400x400.jpg?1698911738",
+    "symbol": "AZUKI",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x3adf095d04311d7bf05c838f0d3dc34a83d81ab6": {
+    "assetId": "eip155:1/erc20:0x3adf095d04311d7bf05c838f0d3dc34a83d81ab6",
+    "chainId": "eip155:1",
+    "name": "SHILLD",
+    "precision": 18,
+    "color": "#0D0D0D",
+    "icon": "https://assets.coingecko.com/coins/images/31675/thumb/200x200.png?1696530491",
+    "symbol": "SHILLD",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x3adfc4999f77d04c8341bac5f3a76f58dff5b37a": {
+    "assetId": "eip155:1/erc20:0x3adfc4999f77d04c8341bac5f3a76f58dff5b37a",
+    "chainId": "eip155:1",
+    "name": "Privatix",
+    "precision": 8,
+    "color": "#1581BB",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x3ADfc4999F77D04c8341BAC5F3A76f58DfF5B37A/logo.png",
+    "symbol": "PRIX",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x3aeff9536ced04e4443908cb0cebac952a5550c3": {
+    "assetId": "eip155:1/erc20:0x3aeff9536ced04e4443908cb0cebac952a5550c3",
+    "chainId": "eip155:1",
+    "name": "PengyX",
+    "precision": 18,
+    "color": "#3A312E",
+    "icon": "https://assets.coingecko.com/coins/images/31196/thumb/IMG_6279.jpg?1696530023",
+    "symbol": "PENGYX",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x3af33bef05c2dcb3c7288b77fe1c8d2aeba4d789": {
+    "assetId": "eip155:1/erc20:0x3af33bef05c2dcb3c7288b77fe1c8d2aeba4d789",
+    "chainId": "eip155:1",
+    "name": "Kromatika on Ethereum",
+    "precision": 18,
+    "color": "#B0C9F9",
+    "icon": "https://assets.coingecko.com/coins/images/20541/thumb/KROM_Transparent.png?1696519948",
+    "symbol": "KROM",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x3af5ba94c29a8407785f5f6d90ef5d69a8eb2436": {
+    "assetId": "eip155:1/erc20:0x3af5ba94c29a8407785f5f6d90ef5d69a8eb2436",
+    "chainId": "eip155:1",
+    "name": "Unagii Wrapped Bitcoin",
+    "precision": 8,
+    "color": "#C0BEC6",
+    "icon": "https://assets.coingecko.com/coins/images/14625/thumb/uBTC.png?1696514303",
+    "symbol": "UWBTC",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x3affcca64c2a6f4e3b6bd9c64cd2c969efd1ecbe": {
+    "assetId": "eip155:1/erc20:0x3affcca64c2a6f4e3b6bd9c64cd2c969efd1ecbe",
+    "chainId": "eip155:1",
+    "name": "DSLA Protocol on Ethereum",
+    "precision": 18,
+    "color": "#2394F4",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x3aFfCCa64c2A6f4e3B6Bd9c64CD2C969EFd1ECBe/logo.png",
+    "symbol": "DSLA",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x3b0b09f5b14f6d50e6672ae158f9d71893feca18": {
+    "assetId": "eip155:1/erc20:0x3b0b09f5b14f6d50e6672ae158f9d71893feca18",
+    "chainId": "eip155:1",
+    "name": "hiBAKC",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/30585/thumb/MicrosoftTeams-image_%2812%29.png?1696529448",
+    "symbol": "HIBAKC",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x3b27f92c0e212c671ea351827edf93db27cc0c65": {
+    "assetId": "eip155:1/erc20:0x3b27f92c0e212c671ea351827edf93db27cc0c65",
+    "chainId": "eip155:1",
+    "name": "USDT yVault",
+    "precision": 6,
+    "color": "#54AC94",
+    "icon": "https://assets.coingecko.com/coins/images/28780/thumb/yvUSDT-128-0x7Da96a3891Add058AdA2E826306D812C638D87a7.png?1696527759",
+    "symbol": "YVUSDT",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x3b484b82567a09e2588a13d54d032153f0c0aee0": {
+    "assetId": "eip155:1/erc20:0x3b484b82567a09e2588a13d54d032153f0c0aee0",
+    "chainId": "eip155:1",
+    "name": "OpenDAO",
+    "precision": 18,
+    "color": "#7D9EDA",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x3b484b82567a09e2588A13D54D032153f0c0aEe0/logo.png",
+    "symbol": "SOS",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x3b544e6fcf6c8dce9d8b45a4fdf21c9b02f9fda9": {
+    "assetId": "eip155:1/erc20:0x3b544e6fcf6c8dce9d8b45a4fdf21c9b02f9fda9",
+    "chainId": "eip155:1",
+    "name": "Giftedhands on Ethereum",
+    "precision": 18,
+    "color": "#22DE9A",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x3b544e6fcf6C8dCE9D8B45A4FdF21C9B02f9fDa9/logo.png",
+    "symbol": "GHD",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x3b58c52c03ca5eb619eba171091c86c34d603e5f": {
+    "assetId": "eip155:1/erc20:0x3b58c52c03ca5eb619eba171091c86c34d603e5f",
+    "chainId": "eip155:1",
+    "name": "Cyclub",
+    "precision": 9,
+    "color": "#FC5C5C",
+    "icon": "https://assets.coingecko.com/coins/images/12524/thumb/mcicoin-logo.png?1696512337",
+    "symbol": "CYCLUB",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x3b604747ad1720c01ded0455728b62c0d2f100f0": {
+    "assetId": "eip155:1/erc20:0x3b604747ad1720c01ded0455728b62c0d2f100f0",
+    "chainId": "eip155:1",
+    "name": "WAGMI Games",
+    "precision": 18,
+    "color": "#0E0B0C",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x3B604747ad1720C01ded0455728b62c0d2F100F0/logo.png",
+    "symbol": "WAGMIGAMES",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x3b6564b5da73a41d3a66e6558a98fd0e9e1e77ad": {
+    "assetId": "eip155:1/erc20:0x3b6564b5da73a41d3a66e6558a98fd0e9e1e77ad",
+    "chainId": "eip155:1",
+    "name": "Unitus on Ethereum",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/33178/thumb/IMG_0051.jpeg?1700924333",
+    "symbol": "UTS",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x3b79a28264fc52c7b4cea90558aa0b162f7faf57": {
+    "assetId": "eip155:1/erc20:0x3b79a28264fc52c7b4cea90558aa0b162f7faf57",
+    "chainId": "eip155:1",
+    "name": "Wonderful Memories on Ethereum",
+    "precision": 18,
+    "color": "#3E5CB4",
+    "icon": "https://assets.coingecko.com/coins/images/22392/thumb/wMEMO.png?1696521735",
+    "symbol": "WMEMO",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x3b7f247f21bf3a07088c2d3423f64233d4b069f7": {
+    "assetId": "eip155:1/erc20:0x3b7f247f21bf3a07088c2d3423f64233d4b069f7",
+    "chainId": "eip155:1",
+    "name": "Dynamite on Ethereum",
+    "precision": 2,
+    "color": "#10090A",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x3B7f247f21BF3A07088C2D3423F64233d4B069F7/logo.png",
+    "symbol": "DYNMT",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x3b9be07d622accaed78f479bc0edabfd6397e320": {
+    "assetId": "eip155:1/erc20:0x3b9be07d622accaed78f479bc0edabfd6397e320",
+    "chainId": "eip155:1",
+    "name": "Lossless on Ethereum",
+    "precision": 18,
+    "color": "#1E1E1E",
+    "icon": "https://assets.coingecko.com/coins/images/15917/thumb/Group_57.png?1696515531",
+    "symbol": "LSS",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x3b9e094d56103611f0acefdab43182347ba60df4": {
+    "assetId": "eip155:1/erc20:0x3b9e094d56103611f0acefdab43182347ba60df4",
+    "chainId": "eip155:1",
+    "name": "PANTHEON X",
+    "precision": 18,
+    "color": "#0C345C",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x3b9e094D56103611f0ACEfDAb43182347BA60dF4/logo.png",
+    "symbol": "XPN",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x3ba925fdeae6b46d0bb4d424d829982cb2f7309e": {
+    "assetId": "eip155:1/erc20:0x3ba925fdeae6b46d0bb4d424d829982cb2f7309e",
+    "chainId": "eip155:1",
+    "name": "RabbitX",
+    "precision": 18,
+    "color": "#EC3444",
+    "icon": "https://assets.coingecko.com/coins/images/30048/thumb/RBX.png?1696528970",
+    "symbol": "RBX",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x3bb86d867a9f3addf994cdadb210fa82f0d4157a": {
+    "assetId": "eip155:1/erc20:0x3bb86d867a9f3addf994cdadb210fa82f0d4157a",
+    "chainId": "eip155:1",
+    "name": "Ghoul",
+    "precision": 18,
+    "color": "#2E2E2E",
+    "icon": "https://assets.coingecko.com/coins/images/16455/thumb/rsz-ghoul2.png?1696516051",
+    "symbol": "GHOUL",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x3bd8268791de798d4ed5d424d49412cf42b8ec3a": {
+    "assetId": "eip155:1/erc20:0x3bd8268791de798d4ed5d424d49412cf42b8ec3a",
+    "chainId": "eip155:1",
+    "name": "Opera Protocol",
+    "precision": 9,
+    "color": "#080808",
+    "icon": "https://assets.coingecko.com/coins/images/31072/thumb/IMG_20230713_192302_797.png?1696529905",
+    "symbol": "OPERA",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x3bdffa70f4b4e6985eed50453c7c0d4a15dcec52": {
+    "assetId": "eip155:1/erc20:0x3bdffa70f4b4e6985eed50453c7c0d4a15dcec52",
+    "chainId": "eip155:1",
+    "name": "TiTi Governance Token",
+    "precision": 18,
+    "color": "#44E4CC",
+    "icon": "https://assets.coingecko.com/coins/images/30561/thumb/TiTi.png?1696529432",
+    "symbol": "TITI",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x3be65bd36c1ad28d33acc1c9dd8338a2706ca000": {
+    "assetId": "eip155:1/erc20:0x3be65bd36c1ad28d33acc1c9dd8338a2706ca000",
+    "chainId": "eip155:1",
+    "name": "Kairos",
+    "precision": 9,
+    "color": "#252828",
+    "icon": "https://assets.coingecko.com/coins/images/30001/thumb/IMG_1074.png?1696528926",
+    "symbol": "KAIROS",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x3be7bf1a5f23bd8336787d0289b70602f1940875": {
+    "assetId": "eip155:1/erc20:0x3be7bf1a5f23bd8336787d0289b70602f1940875",
+    "chainId": "eip155:1",
+    "name": "VIDT DAO",
+    "precision": 18,
+    "color": "#276136",
+    "icon": "https://assets.coingecko.com/coins/images/27552/thumb/VIDTDAO_logo.png?1696526588",
+    "symbol": "VIDT",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x3bf954e809620bf2f1fcb667f1c7d2d2e94350d1": {
+    "assetId": "eip155:1/erc20:0x3bf954e809620bf2f1fcb667f1c7d2d2e94350d1",
+    "chainId": "eip155:1",
+    "name": "Vision City",
+    "precision": 9,
+    "color": "#8D583C",
+    "icon": "https://assets.coingecko.com/coins/images/30614/thumb/logo.png?1696529483",
+    "symbol": "VIZ",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x3c03b4ec9477809072ff9cc9292c9b25d4a8e6c6": {
+    "assetId": "eip155:1/erc20:0x3c03b4ec9477809072ff9cc9292c9b25d4a8e6c6",
+    "chainId": "eip155:1",
+    "name": "CoverCompared",
+    "precision": 18,
+    "color": "#3B84AC",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x3C03b4EC9477809072FF9CC9292C9B25d4A8e6c6/logo.png",
+    "symbol": "CVR",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x3c20ac688410be8f391be1fb00afc5c212972f86": {
+    "assetId": "eip155:1/erc20:0x3c20ac688410be8f391be1fb00afc5c212972f86",
+    "chainId": "eip155:1",
+    "name": "CLever USD",
+    "precision": 18,
+    "color": "#0F0F0F",
+    "icon": "https://assets.coingecko.com/coins/images/30624/thumb/fx_logo.png?1696529498",
+    "symbol": "CLEVUSD",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x3c2a309d9005433c1bc2c92ef1be06489e5bf258": {
+    "assetId": "eip155:1/erc20:0x3c2a309d9005433c1bc2c92ef1be06489e5bf258",
+    "chainId": "eip155:1",
+    "name": "Wrapped Paycoin",
+    "precision": 8,
+    "color": "#FC0D34",
+    "icon": "https://assets.coingecko.com/coins/images/24390/thumb/new_logo_square_%281%29.png?1696523573",
+    "symbol": "WPCI",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x3c37577f1de12046aea6975862559a50d8f50158": {
+    "assetId": "eip155:1/erc20:0x3c37577f1de12046aea6975862559a50d8f50158",
+    "chainId": "eip155:1",
+    "name": "ETH Coin",
+    "precision": 18,
+    "color": "#EA5D61",
+    "icon": "https://assets.coingecko.com/coins/images/31465/thumb/ETHC.jpeg?1696530278",
+    "symbol": "ETHC",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x3c3a81e81dc49a522a592e7622a7e711c06bf354": {
+    "assetId": "eip155:1/erc20:0x3c3a81e81dc49a522a592e7622a7e711c06bf354",
+    "chainId": "eip155:1",
+    "name": "Mantle",
+    "precision": 18,
+    "color": "#040404",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x3c3a81e81dc49A522A592e7622A7E711c06bf354/logo.png",
+    "symbol": "MNT",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x3c4008eca800ec1283e4cf500e68d06bfabc00a8": {
+    "assetId": "eip155:1/erc20:0x3c4008eca800ec1283e4cf500e68d06bfabc00a8",
+    "chainId": "eip155:1",
+    "name": "HistoryDAO",
+    "precision": 18,
+    "color": "#C4B290",
+    "icon": "https://assets.coingecko.com/coins/images/27318/thumb/5961657012978_.pic.jpg?1696526367",
+    "symbol": "HAO",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x3c48ca59bf2699e51d4974d4b6d284ae52076e5e": {
+    "assetId": "eip155:1/erc20:0x3c48ca59bf2699e51d4974d4b6d284ae52076e5e",
+    "chainId": "eip155:1",
+    "name": "Capital DAO Starter",
+    "precision": 18,
+    "color": "#81898D",
+    "icon": "https://assets.coingecko.com/coins/images/20332/thumb/cds.png?1696519736",
+    "symbol": "CDS",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x3c4b6e6e1ea3d4863700d7f76b36b7f3d3f13e3d": {
+    "assetId": "eip155:1/erc20:0x3c4b6e6e1ea3d4863700d7f76b36b7f3d3f13e3d",
+    "chainId": "eip155:1",
+    "name": "Voyager VGX",
+    "precision": 8,
+    "color": "#4B4AD6",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x3C4B6E6e1eA3D4863700D7F76b36B7f3D3f13E3d/logo.png",
+    "symbol": "VGX",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x3c6a7ab47b5f058be0e7c7fe1a4b7925b8aca40e": {
+    "assetId": "eip155:1/erc20:0x3c6a7ab47b5f058be0e7c7fe1a4b7925b8aca40e",
+    "chainId": "eip155:1",
+    "name": "Cajutel",
+    "precision": 18,
+    "color": "#CC202B",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x3C6A7aB47B5F058Be0e7C7fE1A4b7925B8aCA40e/logo.png",
+    "symbol": "CAJ",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x3c72fca8523686fd9e5740b0826fa4bb376e0241": {
+    "assetId": "eip155:1/erc20:0x3c72fca8523686fd9e5740b0826fa4bb376e0241",
+    "chainId": "eip155:1",
+    "name": "300FIT",
+    "precision": 18,
+    "color": "#D3E7F4",
+    "icon": "https://assets.coingecko.com/coins/images/9690/thumb/6mkyI4Ss_400x400.png?1696509759",
+    "symbol": "FIT",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x3c8d2fce49906e11e71cb16fa0ffeb2b16c29638": {
+    "assetId": "eip155:1/erc20:0x3c8d2fce49906e11e71cb16fa0ffeb2b16c29638",
+    "chainId": "eip155:1",
+    "name": "Nifty League",
+    "precision": 18,
+    "color": "#E4DDFA",
+    "icon": "https://assets.coingecko.com/coins/images/19224/thumb/NFTL-256x256.png?1696518671",
+    "symbol": "NFTL",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x3c917054e03485808137eb306eafa8da0ab695cd": {
+    "assetId": "eip155:1/erc20:0x3c917054e03485808137eb306eafa8da0ab695cd",
+    "chainId": "eip155:1",
+    "name": "Orbcity on Ethereum",
+    "precision": 18,
+    "color": "#9DC4DA",
+    "icon": "https://assets.coingecko.com/coins/images/24332/thumb/OrbCity_enlarged.jpg?1696523517",
+    "symbol": "ORB",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x3c9d6c1c73b31c837832c72e04d3152f051fc1a9": {
+    "assetId": "eip155:1/erc20:0x3c9d6c1c73b31c837832c72e04d3152f051fc1a9",
+    "chainId": "eip155:1",
+    "name": "BoringDAO  OLD  on Ethereum",
+    "precision": 18,
+    "color": "#0473E4",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x3c9d6c1C73b31c837832c72E04D3152f051fc1A9/logo.png",
+    "symbol": "BOR",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x3cbb7f5d7499af626026e96a2f05df806f2200dc": {
+    "assetId": "eip155:1/erc20:0x3cbb7f5d7499af626026e96a2f05df806f2200dc",
+    "chainId": "eip155:1",
+    "name": "PandaDAO",
+    "precision": 18,
+    "color": "#E3E3E3",
+    "icon": "https://assets.coingecko.com/coins/images/24926/thumb/PandaDAO_logo_512.png?1696524082",
+    "symbol": "PANDA",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x3cbc780d2934d55a06069e837fabd3e6fc23dab0": {
+    "assetId": "eip155:1/erc20:0x3cbc780d2934d55a06069e837fabd3e6fc23dab0",
+    "chainId": "eip155:1",
+    "name": "DBX",
+    "precision": 18,
+    "color": "#7C1CD4",
+    "icon": "https://assets.coingecko.com/coins/images/15682/thumb/logo.png?1696515312",
+    "symbol": "DBX",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x3ce1848f4ace979d31f7ed1921ee0b2689fce5a5": {
+    "assetId": "eip155:1/erc20:0x3ce1848f4ace979d31f7ed1921ee0b2689fce5a5",
+    "chainId": "eip155:1",
+    "name": "omniBOT",
+    "precision": 18,
+    "color": "#54CCEC",
+    "icon": "https://assets.coingecko.com/coins/images/31840/thumb/CG.png?1696530654",
+    "symbol": "OMNI",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x3d0293f06daf4311b482564330d57c8db6c10893": {
+    "assetId": "eip155:1/erc20:0x3d0293f06daf4311b482564330d57c8db6c10893",
+    "chainId": "eip155:1",
+    "name": "Y Coin",
+    "precision": 8,
+    "color": "#65E4EC",
+    "icon": "https://assets.coingecko.com/coins/images/14128/thumb/BIG-POTAT-200x200-removebg-preview.png?1696513849",
+    "symbol": "YCO",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x3d26dcd840fcc8e4b2193ace8a092e4a65832f9f": {
+    "assetId": "eip155:1/erc20:0x3d26dcd840fcc8e4b2193ace8a092e4a65832f9f",
+    "chainId": "eip155:1",
+    "name": "Aave AMM UniUNIWETH",
+    "precision": 18,
+    "color": "#52B4C5",
+    "icon": "https://assets.coingecko.com/coins/images/17225/thumb/aAmmUniUNIWETH.png?1696516780",
+    "symbol": "AAMMUNIUNIWETH",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x3d2b66bc4f9d6388bd2d97b95b565be1686aefb3": {
+    "assetId": "eip155:1/erc20:0x3d2b66bc4f9d6388bd2d97b95b565be1686aefb3",
+    "chainId": "eip155:1",
+    "name": " LAMBO",
+    "precision": 18,
+    "color": "#C7C418",
+    "icon": "https://assets.coingecko.com/coins/images/30126/thumb/IMG_20230502_225617_622.png?1696529048",
+    "symbol": "LAMBO",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x3d371413dd5489f3a04c07c0c2ce369c20986ceb": {
+    "assetId": "eip155:1/erc20:0x3d371413dd5489f3a04c07c0c2ce369c20986ceb",
+    "chainId": "eip155:1",
+    "name": "YOUcash",
+    "precision": 10,
+    "color": "#F9D6F6",
+    "icon": "https://assets.coingecko.com/coins/images/11152/thumb/round-400x400.png?1696511087",
+    "symbol": "YOUC",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x3d382228c54736d831fac2748f4734d9177c7332": {
+    "assetId": "eip155:1/erc20:0x3d382228c54736d831fac2748f4734d9177c7332",
+    "chainId": "eip155:1",
+    "name": "Aniverse",
+    "precision": 18,
+    "color": "#E0D2E8",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x3D382228C54736d831FAC2748F4734D9177c7332/logo.png",
+    "symbol": "ANV",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x3d3af44cf092a49280e316f09c8f20ecf97bc933": {
+    "assetId": "eip155:1/erc20:0x3d3af44cf092a49280e316f09c8f20ecf97bc933",
+    "chainId": "eip155:1",
+    "name": "UCX",
+    "precision": 18,
+    "color": "#CCAC1C",
+    "icon": "https://assets.coingecko.com/coins/images/10131/thumb/UCX_200200.png?1696510155",
+    "symbol": "UCX",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x3d3d35bb9bec23b06ca00fe472b50e7a4c692c30": {
+    "assetId": "eip155:1/erc20:0x3d3d35bb9bec23b06ca00fe472b50e7a4c692c30",
+    "chainId": "eip155:1",
+    "name": "Vidya",
+    "precision": 18,
+    "color": "#A58DF9",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x3D3D35bb9bEC23b06Ca00fe472b50E7A4c692C30/logo.png",
+    "symbol": "VIDYA",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x3d5fa1cf7d356474f72c8cb24f7a6117b40f8c40": {
+    "assetId": "eip155:1/erc20:0x3d5fa1cf7d356474f72c8cb24f7a6117b40f8c40",
+    "chainId": "eip155:1",
+    "name": "Saintbot",
+    "precision": 18,
+    "color": "#C1C1BC",
+    "icon": "https://assets.coingecko.com/coins/images/31165/thumb/1SDHoUxG_400x400.jpg?1696529993",
+    "symbol": "SAINT",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x3d658390460295fb963f54dc0899cfb1c30776df": {
+    "assetId": "eip155:1/erc20:0x3d658390460295fb963f54dc0899cfb1c30776df",
+    "chainId": "eip155:1",
+    "name": "Circuits of Value on Ethereum",
+    "precision": 8,
+    "color": "#EBECF0",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x3D658390460295FB963f54dC0899cfb1c30776Df/logo.png",
+    "symbol": "COVAL",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x3d6f0dea3ac3c607b3998e6ce14b6350721752d9": {
+    "assetId": "eip155:1/erc20:0x3d6f0dea3ac3c607b3998e6ce14b6350721752d9",
+    "chainId": "eip155:1",
+    "name": "Cardstarter",
+    "precision": 18,
+    "color": "#C7D5FC",
+    "icon": "https://assets.coingecko.com/coins/images/14612/thumb/CARDSx200.png?1696514290",
+    "symbol": "CARDS",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x3d806324b6df5af3c1a81acba14a8a62fe6d643f": {
+    "assetId": "eip155:1/erc20:0x3d806324b6df5af3c1a81acba14a8a62fe6d643f",
+    "chainId": "eip155:1",
+    "name": "BarbieCrashBandicootRFK88",
+    "precision": 18,
+    "color": "#2C2D4A",
+    "icon": "https://assets.coingecko.com/coins/images/31247/thumb/logo_200px.jpg?1696530072",
+    "symbol": "SOLANA",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x3d9a4d8ab4f5bd1d5d08ae3a95e8ed8bb4d7e3b9": {
+    "assetId": "eip155:1/erc20:0x3d9a4d8ab4f5bd1d5d08ae3a95e8ed8bb4d7e3b9",
+    "chainId": "eip155:1",
+    "name": "STONKSDAO",
+    "precision": 18,
+    "color": "#3C89DA",
+    "icon": "https://assets.coingecko.com/coins/images/29976/thumb/Final_Logo_%281%29_%281%29.png?1696528901",
+    "symbol": "STONKS",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x3da434f76226b9489ed4277eb6fdccdf03ff190e": {
+    "assetId": "eip155:1/erc20:0x3da434f76226b9489ed4277eb6fdccdf03ff190e",
+    "chainId": "eip155:1",
+    "name": "Zion Token",
+    "precision": 18,
+    "color": "#D0D0D0",
+    "icon": "https://assets.coingecko.com/coins/images/30504/thumb/zion.jpg?1696529390",
+    "symbol": "ZION",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x3da932456d082cba208feb0b096d49b202bf89c8": {
+    "assetId": "eip155:1/erc20:0x3da932456d082cba208feb0b096d49b202bf89c8",
+    "chainId": "eip155:1",
+    "name": "Dego Finance on Ethereum",
+    "precision": 18,
+    "color": "#FC906E",
+    "icon": "https://assets.coingecko.com/coins/images/12503/thumb/c185FKx.png?1696512318",
+    "symbol": "DEGO",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x3db045814d0a29d831fe38055cb97a956ef7cafb": {
+    "assetId": "eip155:1/erc20:0x3db045814d0a29d831fe38055cb97a956ef7cafb",
+    "chainId": "eip155:1",
+    "name": "BlockRemit",
+    "precision": 18,
+    "color": "#392311",
+    "icon": "https://assets.coingecko.com/coins/images/30360/thumb/20230512_204249_copy_200x200.jpg?1696529259",
+    "symbol": "REMIT",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x3dbb00c9be5a327e25caf4f650844c5dba81e34b": {
+    "assetId": "eip155:1/erc20:0x3dbb00c9be5a327e25caf4f650844c5dba81e34b",
+    "chainId": "eip155:1",
+    "name": "StaFi Staked MATIC on Ethereum",
+    "precision": 18,
+    "color": "#04C4CA",
+    "icon": "https://assets.coingecko.com/coins/images/29610/thumb/rMATIC.png?1696528546",
+    "symbol": "RMATIC",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x3e34eabf5858a126cb583107e643080cee20ca64": {
+    "assetId": "eip155:1/erc20:0x3e34eabf5858a126cb583107e643080cee20ca64",
+    "chainId": "eip155:1",
+    "name": "Linq",
+    "precision": 18,
+    "color": "#BABABA",
+    "icon": "https://assets.coingecko.com/coins/images/31328/thumb/IMG_1185.jpeg?1696530147",
+    "symbol": "LINQ",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x3e452a416dae9f0bf4bf69fa0bf529c2b7c7360f": {
+    "assetId": "eip155:1/erc20:0x3e452a416dae9f0bf4bf69fa0bf529c2b7c7360f",
+    "chainId": "eip155:1",
+    "name": "Mixquity Finance",
+    "precision": 9,
+    "color": "#E0F4E0",
+    "icon": "https://assets.coingecko.com/coins/images/31969/thumb/symbol-w.png?1696530774",
+    "symbol": "MIXQ",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x3e5d9d8a63cc8a88748f229999cf59487e90721e": {
+    "assetId": "eip155:1/erc20:0x3e5d9d8a63cc8a88748f229999cf59487e90721e",
+    "chainId": "eip155:1",
+    "name": "MetalSwap on Ethereum",
+    "precision": 18,
+    "color": "#335267",
+    "icon": "https://assets.coingecko.com/coins/images/22075/thumb/Logo_COIN_-_Gradiente.png?1696521419",
+    "symbol": "XMT",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x3e613d7f3ceb1f27dd22a44f35343dd234c51262": {
+    "assetId": "eip155:1/erc20:0x3e613d7f3ceb1f27dd22a44f35343dd234c51262",
+    "chainId": "eip155:1",
+    "name": "Kryptonite on Ethereum",
+    "precision": 18,
+    "color": "#D4D4D4",
+    "icon": "https://assets.coingecko.com/coins/images/31252/thumb/Kryptonite_PFP-03.png?1696530076",
+    "symbol": "SEILOR",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x3e7804c51a70ba26e904c2e0ab440c5623a8a83f": {
+    "assetId": "eip155:1/erc20:0x3e7804c51a70ba26e904c2e0ab440c5623a8a83f",
+    "chainId": "eip155:1",
+    "name": "GPEX",
+    "precision": 8,
+    "color": "#F4B42C",
+    "icon": "https://assets.coingecko.com/coins/images/22584/thumb/GPEX-E_200.png?1696521902",
+    "symbol": "GPX",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x3e8203e0b1d56984abc66f183a8d0b1a09a7e607": {
+    "assetId": "eip155:1/erc20:0x3e8203e0b1d56984abc66f183a8d0b1a09a7e607",
+    "chainId": "eip155:1",
+    "name": "Liquid Protocol",
+    "precision": 9,
+    "color": "#C6E6F4",
+    "icon": "https://assets.coingecko.com/coins/images/32078/thumb/5000x5000.png?1696530875",
+    "symbol": "LP",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x3e828ac5c480069d4765654fb4b8733b910b13b2": {
+    "assetId": "eip155:1/erc20:0x3e828ac5c480069d4765654fb4b8733b910b13b2",
+    "chainId": "eip155:1",
+    "name": "Colony Network",
+    "precision": 18,
+    "color": "#ECEEF1",
+    "icon": "https://assets.coingecko.com/coins/images/23269/thumb/Logo.png?1696522489",
+    "symbol": "CLNY",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x3e9bc21c9b189c09df3ef1b824798658d5011937": {
+    "assetId": "eip155:1/erc20:0x3e9bc21c9b189c09df3ef1b824798658d5011937",
+    "chainId": "eip155:1",
+    "name": "Linear on Ethereum",
+    "precision": 18,
+    "color": "#2121AD",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x3E9BC21C9b189C09dF3eF1B824798658d5011937/logo.png",
+    "symbol": "LINA",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x3ea8ea4237344c9931214796d9417af1a1180770": {
+    "assetId": "eip155:1/erc20:0x3ea8ea4237344c9931214796d9417af1a1180770",
+    "chainId": "eip155:1",
+    "name": "SEDA Protocol",
+    "precision": 18,
+    "color": "#E4E6F4",
+    "icon": "https://assets.coingecko.com/coins/images/21137/thumb/flx.png?1696520515",
+    "symbol": "FLX",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x3eb6318b8d9f362a0e1d99f6032edb1c4c602500": {
+    "color": "#FFFFFF",
+    "icon": "https://raw.githubusercontent.com/Idle-Labs/idle-dashboard/master/public/images/tokens/USDT.svg",
+    "name": "Clearpool USDT Junior Tranche",
+    "precision": 18,
+    "symbol": "BB_idle_cpFAS-USDT",
+    "chainId": "eip155:1",
+    "assetId": "eip155:1/erc20:0x3eb6318b8d9f362a0e1d99f6032edb1c4c602500",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x3ebb4a4e91ad83be51f8d596533818b246f4bee1": {
+    "assetId": "eip155:1/erc20:0x3ebb4a4e91ad83be51f8d596533818b246f4bee1",
+    "chainId": "eip155:1",
+    "name": "Signata on Ethereum",
+    "precision": 18,
+    "color": "#489E3C",
+    "icon": "https://assets.coingecko.com/coins/images/14704/thumb/logo.png?1696514375",
+    "symbol": "SATA",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x3ec15c4745e21ab3831d1f51c492e3b5582d6239": {
+    "assetId": "eip155:1/erc20:0x3ec15c4745e21ab3831d1f51c492e3b5582d6239",
+    "chainId": "eip155:1",
+    "name": "PICKLE",
+    "precision": 18,
+    "color": "#DCBDBD",
+    "icon": "https://assets.coingecko.com/coins/images/31717/thumb/ezgif.com-resize_%287%29.png?1696530538",
+    "symbol": "PICKLE",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x3ec8798b81485a254928b70cda1cf0a2bb0b74d7": {
+    "assetId": "eip155:1/erc20:0x3ec8798b81485a254928b70cda1cf0a2bb0b74d7",
+    "chainId": "eip155:1",
+    "name": "Gro DAO",
+    "precision": 18,
+    "color": "#B559FA",
+    "icon": "https://assets.coingecko.com/coins/images/18673/thumb/613f171979749061aaa1edf9_Icon-GRO-256x256-Square.png?1696518143",
+    "symbol": "GRO",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x3ecab35b64345bfc472477a653e4a3abe70532d9": {
+    "assetId": "eip155:1/erc20:0x3ecab35b64345bfc472477a653e4a3abe70532d9",
+    "chainId": "eip155:1",
+    "name": "EnterButton",
+    "precision": 18,
+    "color": "#4C4C7C",
+    "icon": "https://assets.coingecko.com/coins/images/19677/thumb/ENTC_symbol.png?1696519104",
+    "symbol": "ENTC",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x3ed3b47dd13ec9a98b44e6204a523e766b225811": {
+    "assetId": "eip155:1/erc20:0x3ed3b47dd13ec9a98b44e6204a523e766b225811",
+    "chainId": "eip155:1",
+    "name": "Aave USDT",
+    "precision": 6,
+    "color": "#53AA9C",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x3Ed3B47Dd13EC9a98b44e6204A523E766B225811/logo.png",
+    "symbol": "AUSDT",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x3ee4b152824b657644c7a9b50694787e80eb8f4a": {
+    "assetId": "eip155:1/erc20:0x3ee4b152824b657644c7a9b50694787e80eb8f4a",
+    "chainId": "eip155:1",
+    "name": "Bazed Games",
+    "precision": 18,
+    "color": "#130C10",
+    "icon": "https://assets.coingecko.com/coins/images/31195/thumb/IMG_1849.jpeg?1696530023",
+    "symbol": "BAZED",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x3eef95e483b0a013d34b9482c6f4afcbd4d38146": {
+    "assetId": "eip155:1/erc20:0x3eef95e483b0a013d34b9482c6f4afcbd4d38146",
+    "chainId": "eip155:1",
+    "name": "Multiport",
+    "precision": 18,
+    "color": "#192C46",
+    "icon": "https://assets.coingecko.com/coins/images/32290/thumb/Multiport.png?1697182790",
+    "symbol": "PORT",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x3ef389f264e07fff3106a3926f2a166d1393086f": {
+    "assetId": "eip155:1/erc20:0x3ef389f264e07fff3106a3926f2a166d1393086f",
+    "chainId": "eip155:1",
+    "name": "Sator",
+    "precision": 9,
+    "color": "#FCCFE8",
+    "icon": "https://assets.coingecko.com/coins/images/19410/thumb/sator-logo-CMC.png?1696518849",
+    "symbol": "SAO",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x3ef3b555842cdaff0f4f0b79c9dd65096d60ba63": {
+    "assetId": "eip155:1/erc20:0x3ef3b555842cdaff0f4f0b79c9dd65096d60ba63",
+    "chainId": "eip155:1",
+    "name": "CryptoPawCoin",
+    "precision": 18,
+    "color": "#4C372B",
+    "icon": "https://assets.coingecko.com/coins/images/32162/thumb/20231001_232853.png?1696722479",
+    "symbol": "CPRC",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x3f0c858c26775df75e45934b189154c436bd7335": {
+    "assetId": "eip155:1/erc20:0x3f0c858c26775df75e45934b189154c436bd7335",
+    "chainId": "eip155:1",
+    "name": "SuperFrank",
+    "precision": 8,
+    "color": "#5F77ED",
+    "icon": "https://assets.coingecko.com/coins/images/32531/thumb/SuperFrank_logo1080x1080_nobackground_noletters_centered.png?1698461197",
+    "symbol": "CHFP",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x3f14920c99beb920afa163031c4e47a3e03b3e4a": {
+    "assetId": "eip155:1/erc20:0x3f14920c99beb920afa163031c4e47a3e03b3e4a",
+    "chainId": "eip155:1",
+    "name": "Send",
+    "precision": 0,
+    "color": "#1C1A18",
+    "icon": "https://assets.coingecko.com/coins/images/30847/thumb/S_logomark__filled_200x200.png?1696529697",
+    "symbol": "SEND",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x3f17f64f682019599ba51638f74e4b6c127fe725": {
+    "assetId": "eip155:1/erc20:0x3f17f64f682019599ba51638f74e4b6c127fe725",
+    "chainId": "eip155:1",
+    "name": "ReviveEth",
+    "precision": 18,
+    "color": "#DD767F",
+    "icon": "https://assets.coingecko.com/coins/images/30770/thumb/IMG_1662.png?1696529638",
+    "symbol": "REVIVE",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x3f2d4708f75de6fb60b687fed326697634774deb": {
+    "assetId": "eip155:1/erc20:0x3f2d4708f75de6fb60b687fed326697634774deb",
+    "chainId": "eip155:1",
+    "name": "NeoBot",
+    "precision": 18,
+    "color": "#E2E3EE",
+    "icon": "https://assets.coingecko.com/coins/images/31033/thumb/20230718_190506_0000.png?1696529869",
+    "symbol": "NEOBOT",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x3f3052ccc6ab2337e3d63f5c695c4471a8637a32": {
+    "assetId": "eip155:1/erc20:0x3f3052ccc6ab2337e3d63f5c695c4471a8637a32",
+    "chainId": "eip155:1",
+    "name": "OOF",
+    "precision": 18,
+    "color": "#3A8F38",
+    "icon": "https://assets.coingecko.com/coins/images/32573/thumb/Oof_logi.jpeg?1698554413",
+    "symbol": "OOF",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x3f382dbd960e3a9bbceae22651e88158d2791550": {
+    "assetId": "eip155:1/erc20:0x3f382dbd960e3a9bbceae22651e88158d2791550",
+    "chainId": "eip155:1",
+    "name": "Aavegotchi on Ethereum",
+    "precision": 18,
+    "color": "#D4BEF5",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x3F382DbD960E3a9bbCeaE22651E88158d2791550/logo.png",
+    "symbol": "GHST",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x3f3cd642e81d030d7b514a2ab5e3a5536beb90ec": {
+    "assetId": "eip155:1/erc20:0x3f3cd642e81d030d7b514a2ab5e3a5536beb90ec",
+    "chainId": "eip155:1",
+    "name": "Rho",
+    "precision": 18,
+    "color": "#DDB8E7",
+    "icon": "https://assets.coingecko.com/coins/images/25540/thumb/Rho-icon-03.png?1696524673",
+    "symbol": "RHO",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x3f48cce3eabb02304f7cc16fd7a35f3a2df7be8e": {
+    "assetId": "eip155:1/erc20:0x3f48cce3eabb02304f7cc16fd7a35f3a2df7be8e",
+    "chainId": "eip155:1",
+    "name": "Truck",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/32760/thumb/2023-10-31_19.33.52.jpg?1699328941",
+    "symbol": "TRUCK",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x3f5294df68f871241c4b18fcf78ebd8ac18ab654": {
+    "assetId": "eip155:1/erc20:0x3f5294df68f871241c4b18fcf78ebd8ac18ab654",
+    "chainId": "eip155:1",
+    "name": "99Starz on Ethereum",
+    "precision": 18,
+    "color": "#BA1E1E",
+    "icon": "https://assets.coingecko.com/coins/images/21467/thumb/stz.png?1696520828",
+    "symbol": "STZ",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x3f5dd1a1538a4f9f82e543098f01f22480b0a3a8": {
+    "assetId": "eip155:1/erc20:0x3f5dd1a1538a4f9f82e543098f01f22480b0a3a8",
+    "chainId": "eip155:1",
+    "name": "KumaDex Token",
+    "precision": 18,
+    "color": "#E27E43",
+    "icon": "https://assets.coingecko.com/coins/images/26693/thumb/dkumaOG02_CoinGecko.png?1696525767",
+    "symbol": "DKUMA",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x3f68e7b44e9bcb486c2feadb7a2289d9cdfc9088": {
+    "assetId": "eip155:1/erc20:0x3f68e7b44e9bcb486c2feadb7a2289d9cdfc9088",
+    "chainId": "eip155:1",
+    "name": "SportsIcon",
+    "precision": 18,
+    "color": "#907017",
+    "icon": "https://assets.coingecko.com/coins/images/20856/thumb/icons-coin-gold.png?1696520251",
+    "symbol": "ICONS",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x3f7d1c62a8456893c0f55c13e3b5993d2f68287a": {
+    "assetId": "eip155:1/erc20:0x3f7d1c62a8456893c0f55c13e3b5993d2f68287a",
+    "chainId": "eip155:1",
+    "name": "Froki",
+    "precision": 18,
+    "color": "#545412",
+    "icon": "https://assets.coingecko.com/coins/images/30158/thumb/FROKI_200X200s.png?1696529078",
+    "symbol": "FROKI",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x3f817b28da4940f018c6b5c0a11c555ebb1264f9": {
+    "assetId": "eip155:1/erc20:0x3f817b28da4940f018c6b5c0a11c555ebb1264f9",
+    "chainId": "eip155:1",
+    "name": "3A on Ethereum",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/33135/thumb/A3A.png?1700801023",
+    "symbol": "A3A",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x3f9bec82c776c47405bcb38070d2395fd18f89d3": {
+    "assetId": "eip155:1/erc20:0x3f9bec82c776c47405bcb38070d2395fd18f89d3",
+    "chainId": "eip155:1",
+    "name": "Phantom Protocol on Ethereum",
+    "precision": 18,
+    "color": "#242A2D",
+    "icon": "https://assets.coingecko.com/coins/images/18253/thumb/phm.PNG?1696517748",
+    "symbol": "PHM",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x3fa729b4548becbad4eab6ef18413470e6d5324c": {
+    "assetId": "eip155:1/erc20:0x3fa729b4548becbad4eab6ef18413470e6d5324c",
+    "chainId": "eip155:1",
+    "name": "Mover on Ethereum",
+    "precision": 18,
+    "color": "#C2EA33",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x3FA729B4548beCBAd4EaB6EF18413470e6D5324C/logo.png",
+    "symbol": "MOVE",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x3fab0bbaa03bceaf7c49e2b12877db0142be65fc": {
+    "assetId": "eip155:1/erc20:0x3fab0bbaa03bceaf7c49e2b12877db0142be65fc",
+    "chainId": "eip155:1",
+    "name": "Castello Coin",
+    "precision": 8,
+    "color": "#AB9776",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x3FAb0bBAa03BCEAF7C49E2b12877dB0142BE65FC/logo.png",
+    "symbol": "CAST",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x3fd8f39a962efda04956981c31ab89fab5fb8bc8": {
+    "assetId": "eip155:1/erc20:0x3fd8f39a962efda04956981c31ab89fab5fb8bc8",
+    "chainId": "eip155:1",
+    "name": "Rotharium",
+    "precision": 18,
+    "color": "#040404",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x3FD8f39A962eFDA04956981C31AB89FAB5FB8bC8/logo.png",
+    "symbol": "RTH",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x3fe6a295459fae07df8a0cecc36f37160fe86aa9": {
+    "assetId": "eip155:1/erc20:0x3fe6a295459fae07df8a0cecc36f37160fe86aa9",
+    "chainId": "eip155:1",
+    "name": "Aave v3 LUSD on Ethereum",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/32894/thumb/LUSD.png?1699789893",
+    "symbol": "ALUSD",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x3fe7940616e5bc47b0775a0dccf6237893353bb4": {
+    "color": "#F9B02B",
+    "icon": "https://raw.githubusercontent.com/Idle-Labs/idle-dashboard/master/public/images/tokens/DAI.svg",
+    "name": "DAI Senior Best Yield",
+    "precision": 18,
+    "symbol": "idleDAIYield",
+    "chainId": "eip155:1",
+    "assetId": "eip155:1/erc20:0x3fe7940616e5bc47b0775a0dccf6237893353bb4",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x3feb4fea5132695542f8ede5076ac43296d17c6d": {
+    "assetId": "eip155:1/erc20:0x3feb4fea5132695542f8ede5076ac43296d17c6d",
+    "chainId": "eip155:1",
+    "name": "Bitcoin 2 0",
+    "precision": 8,
+    "color": "#C27C05",
+    "icon": "https://assets.coingecko.com/coins/images/30984/thumb/btc2-200x200.png?1696529823",
+    "symbol": "BTC20",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x3ffdde70f128de8a5c8b116142d79889d6d5a551": {
+    "assetId": "eip155:1/erc20:0x3ffdde70f128de8a5c8b116142d79889d6d5a551",
+    "chainId": "eip155:1",
+    "name": "HarryPotterOhtaniStreetFighter2CultInu",
+    "precision": 9,
+    "color": "#AA9575",
+    "icon": "https://assets.coingecko.com/coins/images/31369/thumb/xlm.jpg?1696530186",
+    "symbol": "XLM",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x400b1d8a7dd8c471026b2c8cbe1062b27d120538": {
+    "assetId": "eip155:1/erc20:0x400b1d8a7dd8c471026b2c8cbe1062b27d120538",
+    "chainId": "eip155:1",
+    "name": "Limestone Network",
+    "precision": 8,
+    "color": "#7495AA",
+    "icon": "https://assets.coingecko.com/coins/images/11907/thumb/nw1FE_f4_400x400.png?1696511771",
+    "symbol": "LIMEX",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x40370aed88933021e20cf7c4d67e00417cda2202": {
+    "assetId": "eip155:1/erc20:0x40370aed88933021e20cf7c4d67e00417cda2202",
+    "chainId": "eip155:1",
+    "name": "Xave",
+    "precision": 18,
+    "color": "#E4ECFC",
+    "icon": "https://assets.coingecko.com/coins/images/28299/thumb/Xave_logo_gradient.png?1696527298",
+    "symbol": "XAV",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x4057db5bd9f67a566aa10e5587b1a964affc6a16": {
+    "assetId": "eip155:1/erc20:0x4057db5bd9f67a566aa10e5587b1a964affc6a16",
+    "chainId": "eip155:1",
+    "name": "Truefeedback on Ethereum",
+    "precision": 18,
+    "color": "#4D483A",
+    "icon": "https://assets.coingecko.com/coins/images/8842/thumb/5rd7a55q_400x400.png?1696508994",
+    "symbol": "TFBX",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x40803cea2b2a32bda1be61d3604af6a814e70976": {
+    "assetId": "eip155:1/erc20:0x40803cea2b2a32bda1be61d3604af6a814e70976",
+    "chainId": "eip155:1",
+    "name": "Spool on Ethereum",
+    "precision": 18,
+    "color": "#0C0C0C",
+    "icon": "https://assets.coingecko.com/coins/images/21532/thumb/spool.png?1696520891",
+    "symbol": "SPOOL",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x4086e77c5e993fdb90a406285d00111a974f877a": {
+    "assetId": "eip155:1/erc20:0x4086e77c5e993fdb90a406285d00111a974f877a",
+    "chainId": "eip155:1",
+    "name": "Blockchain Brawlers",
+    "precision": 4,
+    "color": "#221319",
+    "icon": "https://assets.coingecko.com/coins/images/24701/thumb/fuDdvI8Y_400x400.png?1696523867",
+    "symbol": "BRWL",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x408e41876cccdc0f92210600ef50372656052a38": {
+    "assetId": "eip155:1/erc20:0x408e41876cccdc0f92210600ef50372656052a38",
+    "chainId": "eip155:1",
+    "name": "Ren",
+    "precision": 18,
+    "color": "#0B0B0B",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x408e41876cCCDC0F92210600ef50372656052a38/logo.png",
+    "symbol": "REN",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x4092678e4e78230f46a1534c0fbc8fa39780892b": {
+    "assetId": "eip155:1/erc20:0x4092678e4e78230f46a1534c0fbc8fa39780892b",
+    "chainId": "eip155:1",
+    "name": "Odyssey",
+    "precision": 18,
+    "color": "#243035",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x4092678e4E78230F46A1534C0fbc8fA39780892B/logo.png",
+    "symbol": "OCN",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x40955d77f87123b71b145098358a60573ac7be96": {
+    "assetId": "eip155:1/erc20:0x40955d77f87123b71b145098358a60573ac7be96",
+    "chainId": "eip155:1",
+    "name": "Daisy Protocol",
+    "precision": 18,
+    "color": "#E5FCF4",
+    "icon": "https://assets.coingecko.com/coins/images/17844/thumb/daisy.PNG?1696517367",
+    "symbol": "DAISY",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x40986a85b4cfcdb054a6cbfb1210194fee51af88": {
+    "assetId": "eip155:1/erc20:0x40986a85b4cfcdb054a6cbfb1210194fee51af88",
+    "chainId": "eip155:1",
+    "name": "UniFarm on Ethereum",
+    "precision": 18,
+    "color": "#812CA4",
+    "icon": "https://assets.coingecko.com/coins/images/15247/thumb/ufarm.jpeg?1696514900",
+    "symbol": "UFARM",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x409c4d8cd5d2924b9bc5509230d16a61289c8153": {
+    "assetId": "eip155:1/erc20:0x409c4d8cd5d2924b9bc5509230d16a61289c8153",
+    "chainId": "eip155:1",
+    "name": "TONStarter",
+    "precision": 18,
+    "color": "#D4E2F8",
+    "icon": "https://assets.coingecko.com/coins/images/17878/thumb/tos.PNG?1696517400",
+    "symbol": "TOS",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x40a9d39aa50871df092538c5999b107f34409061": {
+    "assetId": "eip155:1/erc20:0x40a9d39aa50871df092538c5999b107f34409061",
+    "chainId": "eip155:1",
+    "name": "Instadapp DAI",
+    "precision": 18,
+    "color": "#DDE7FC",
+    "icon": "https://assets.coingecko.com/coins/images/25821/thumb/iDAI_100x100.png?1696524906",
+    "symbol": "IDAI",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x40d16fc0246ad3160ccc09b8d0d3a2cd28ae6c2f": {
+    "assetId": "eip155:1/erc20:0x40d16fc0246ad3160ccc09b8d0d3a2cd28ae6c2f",
+    "chainId": "eip155:1",
+    "name": "GHO",
+    "precision": 18,
+    "color": "#C9B3F7",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x40D16FC0246aD3160Ccc09B8D0D3A2cD28aE6C2f/logo.png",
+    "symbol": "GHO",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x40d1f63b5d2048e67e9bedb1b4c2f1a9fb4b6817": {
+    "assetId": "eip155:1/erc20:0x40d1f63b5d2048e67e9bedb1b4c2f1a9fb4b6817",
+    "chainId": "eip155:1",
+    "name": "Golden Goose",
+    "precision": 18,
+    "color": "#DEA956",
+    "icon": "https://assets.coingecko.com/coins/images/7892/thumb/tsRcntSR_400x400.png?1696508124",
+    "symbol": "GOLD",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x40e9187078032afe1a30cfcf76e4fe3d7ab5c6c5": {
+    "assetId": "eip155:1/erc20:0x40e9187078032afe1a30cfcf76e4fe3d7ab5c6c5",
+    "chainId": "eip155:1",
+    "name": "AIgentX",
+    "precision": 18,
+    "color": "#1F0B5B",
+    "icon": "https://assets.coingecko.com/coins/images/31860/thumb/logo22.jpg?1698917072",
+    "symbol": "AIX",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x40fd72257597aa14c7231a7b1aaa29fce868f677": {
+    "assetId": "eip155:1/erc20:0x40fd72257597aa14c7231a7b1aaa29fce868f677",
+    "chainId": "eip155:1",
+    "name": "Sora",
+    "precision": 18,
+    "color": "#E4242C",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x40FD72257597aA14C7231A7B1aaa29Fce868F677/logo.png",
+    "symbol": "XOR",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x40fed5691e547885cabd7a2990de719dcc8497fc": {
+    "assetId": "eip155:1/erc20:0x40fed5691e547885cabd7a2990de719dcc8497fc",
+    "chainId": "eip155:1",
+    "name": "Safe Haven on Ethereum",
+    "precision": 18,
+    "color": "#AE2CD5",
+    "icon": "https://assets.coingecko.com/coins/images/2584/thumb/safehaven.png?1696503388",
+    "symbol": "SHA",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x4104b135dbc9609fc1a9490e61369036497660c8": {
+    "assetId": "eip155:1/erc20:0x4104b135dbc9609fc1a9490e61369036497660c8",
+    "chainId": "eip155:1",
+    "name": "Spectra on Ethereum",
+    "precision": 18,
+    "color": "#201F37",
+    "icon": "https://assets.coingecko.com/coins/images/15597/thumb/spectra.png?1696515232",
+    "symbol": "APW",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x410e731c2970dce3add351064acf5ce9e33fdbf0": {
+    "assetId": "eip155:1/erc20:0x410e731c2970dce3add351064acf5ce9e33fdbf0",
+    "chainId": "eip155:1",
+    "name": "ONBUFF",
+    "precision": 18,
+    "color": "#F5FAF9",
+    "icon": "https://assets.coingecko.com/coins/images/12252/thumb/d4suDHSzEZjDXc0uxFGPZXfDFp0L1tfoEusBx03zB1bvMLLbxa7Yq5naXAOutkirIlLXacFRRebX_hF2Ez69_fIPUfr2LuN0Z_UrXTLYds4aT95C6eHGXsZnezMHKAaOmjLpKto0xPTiYkXExvEvXrqL7O_J1wecb4eJsgwCoVprMLpm89BdKO9IyMmpNsfbW7JJFMiHgL8vq9fPhaeEi.jpg?1696512083",
+    "symbol": "ONIT",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x411099c0b413f4feddb10edf6a8be63bd321311c": {
+    "assetId": "eip155:1/erc20:0x411099c0b413f4feddb10edf6a8be63bd321311c",
+    "chainId": "eip155:1",
+    "name": "HELLO on Ethereum",
+    "precision": 18,
+    "color": "#B3B3B3",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x411099C0b413f4fedDb10Edf6a8be63BD321311C/logo.png",
+    "symbol": "HELLO",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x4123a133ae3c521fd134d7b13a2dec35b56c2463": {
+    "assetId": "eip155:1/erc20:0x4123a133ae3c521fd134d7b13a2dec35b56c2463",
+    "chainId": "eip155:1",
+    "name": "Qredo",
+    "precision": 8,
+    "color": "#040404",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x4123a133ae3c521FD134D7b13A2dEC35b56c2463/logo.png",
+    "symbol": "QRDO",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x414cbf31c62d99515bfd66497b495a585b52f703": {
+    "assetId": "eip155:1/erc20:0x414cbf31c62d99515bfd66497b495a585b52f703",
+    "chainId": "eip155:1",
+    "name": "Chappie",
+    "precision": 0,
+    "color": "#C18216",
+    "icon": "https://assets.coingecko.com/coins/images/31375/thumb/Frame_563.png?1696530192",
+    "symbol": "CHAP",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x41545f8b9472d758bb669ed8eaeeecd7a9c4ec29": {
+    "assetId": "eip155:1/erc20:0x41545f8b9472d758bb669ed8eaeeecd7a9c4ec29",
+    "chainId": "eip155:1",
+    "name": "Forta on Ethereum",
+    "precision": 18,
+    "color": "#0C0C0C",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x41545f8b9472D758bB669ed8EaEEEcD7a9C4Ec29/logo.png",
+    "symbol": "FORT",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x4156d3342d5c385a87d264f90653733592000581": {
+    "assetId": "eip155:1/erc20:0x4156d3342d5c385a87d264f90653733592000581",
+    "chainId": "eip155:1",
+    "name": "SALT",
+    "precision": 8,
+    "color": "#E6A97F",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x4156D3342D5c385a87D264F90653733592000581/logo.png",
+    "symbol": "SALT",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x4159862bcf6b4393a80550b1ed03dffa6f90533c": {
+    "assetId": "eip155:1/erc20:0x4159862bcf6b4393a80550b1ed03dffa6f90533c",
+    "chainId": "eip155:1",
+    "name": "One Hundred Million Inu",
+    "precision": 18,
+    "color": "#D9C08E",
+    "icon": "https://assets.coingecko.com/coins/images/28625/thumb/ohmi-shield-200.png?1696527610",
+    "symbol": "OHMI",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x4161725d019690a3e0de50f6be67b07a86a9fae1": {
+    "assetId": "eip155:1/erc20:0x4161725d019690a3e0de50f6be67b07a86a9fae1",
+    "chainId": "eip155:1",
+    "name": "TokenPocket Token on Ethereum",
+    "precision": 4,
+    "color": "#2464E4",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x4161725D019690a3E0de50f6bE67b07a86A9fAe1/logo.png",
+    "symbol": "TPT",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x4168bbc34baea34e55721809911bca5baaef6ba6": {
+    "assetId": "eip155:1/erc20:0x4168bbc34baea34e55721809911bca5baaef6ba6",
+    "chainId": "eip155:1",
+    "name": "CEREAL",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/10469/thumb/logo_%EC%8B%AC%EB%B3%BC.png?1700070186",
+    "symbol": "CEP",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x4184aa04215e5d716dd4c213fed519acadc68f92": {
+    "assetId": "eip155:1/erc20:0x4184aa04215e5d716dd4c213fed519acadc68f92",
+    "chainId": "eip155:1",
+    "name": "ONUS on Ethereum",
+    "precision": 18,
+    "color": "#0666FC",
+    "icon": "https://assets.coingecko.com/coins/images/24599/thumb/ONUS_200.png?1696523773",
+    "symbol": "ONUS",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x418afee14a1fd9c05c4df05e033f7c3d46aeb905": {
+    "assetId": "eip155:1/erc20:0x418afee14a1fd9c05c4df05e033f7c3d46aeb905",
+    "chainId": "eip155:1",
+    "name": "Magic Bag",
+    "precision": 18,
+    "color": "#C1C2CD",
+    "icon": "https://assets.coingecko.com/coins/images/30436/thumb/Magic_Bag.png?1696529324",
+    "symbol": "FELIX",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x4190818ffeb4c7349fa59eeb08eb6e7ab70d9aa7": {
+    "assetId": "eip155:1/erc20:0x4190818ffeb4c7349fa59eeb08eb6e7ab70d9aa7",
+    "chainId": "eip155:1",
+    "name": "LFi on Ethereum",
+    "precision": 8,
+    "color": "#143A46",
+    "icon": "https://assets.coingecko.com/coins/images/31897/thumb/LFi_Token.png?1696530708",
+    "symbol": "LFI",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x419777d3e39aa9b00405724eace5ea57620c9062": {
+    "assetId": "eip155:1/erc20:0x419777d3e39aa9b00405724eace5ea57620c9062",
+    "chainId": "eip155:1",
+    "name": "PAW",
+    "precision": 18,
+    "color": "#E9D5C1",
+    "icon": "https://assets.coingecko.com/coins/images/32118/thumb/IMG_20231003_090631_153.jpg?1696586039",
+    "symbol": "PAW",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x419c4db4b9e25d6db2ad9691ccb832c8d9fda05e": {
+    "assetId": "eip155:1/erc20:0x419c4db4b9e25d6db2ad9691ccb832c8d9fda05e",
+    "chainId": "eip155:1",
+    "name": "Dragonchain",
+    "precision": 18,
+    "color": "#1684CC",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x419c4dB4B9e25d6Db2AD9691ccb832C8D9fDA05E/logo.png",
+    "symbol": "DRGN",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x419d0d8bdd9af5e606ae2232ed285aff190e711b": {
+    "assetId": "eip155:1/erc20:0x419d0d8bdd9af5e606ae2232ed285aff190e711b",
+    "chainId": "eip155:1",
+    "name": "FUNToken",
+    "precision": 8,
+    "color": "#E02D51",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x419D0d8BdD9aF5e606Ae2232ed285Aff190E711b/logo.png",
+    "symbol": "FUN",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x419e35e3515c2fdb652c898bf7a0b21fb20497dc": {
+    "assetId": "eip155:1/erc20:0x419e35e3515c2fdb652c898bf7a0b21fb20497dc",
+    "chainId": "eip155:1",
+    "name": "Ordinals Finance",
+    "precision": 9,
+    "color": "#7AC404",
+    "icon": "https://assets.coingecko.com/coins/images/29226/thumb/symbol-bbg.png?1696528183",
+    "symbol": "OFI",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x41a08648c3766f9f9d85598ff102a08f4ef84f84": {
+    "assetId": "eip155:1/erc20:0x41a08648c3766f9f9d85598ff102a08f4ef84f84",
+    "chainId": "eip155:1",
+    "name": "Aave Balancer Pool Token",
+    "precision": 18,
+    "color": "#DCD9E6",
+    "icon": "https://assets.coingecko.com/coins/images/16788/thumb/ABPT_2x.png?1696516360",
+    "symbol": "ABPT",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x41a3dba3d677e573636ba691a70ff2d606c29666": {
+    "assetId": "eip155:1/erc20:0x41a3dba3d677e573636ba691a70ff2d606c29666",
+    "chainId": "eip155:1",
+    "name": "BlockWallet on Ethereum",
+    "precision": 18,
+    "color": "#040404",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x41A3Dba3D677E573636BA691a70ff2D606c29666/logo.png",
+    "symbol": "BLANK",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x41b25ff6431074959532db7435dadaca65a21d1c": {
+    "assetId": "eip155:1/erc20:0x41b25ff6431074959532db7435dadaca65a21d1c",
+    "chainId": "eip155:1",
+    "name": "Claw",
+    "precision": 18,
+    "color": "#E7CDB0",
+    "icon": "https://assets.coingecko.com/coins/images/29677/thumb/PBixw6K.png?1696528611",
+    "symbol": "CLAW",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x41c21693e60fc1a5dbb7c50e54e7a6016aa44c99": {
+    "assetId": "eip155:1/erc20:0x41c21693e60fc1a5dbb7c50e54e7a6016aa44c99",
+    "chainId": "eip155:1",
+    "name": "SO COL",
+    "precision": 18,
+    "color": "#FCE0DE",
+    "icon": "https://assets.coingecko.com/coins/images/28760/thumb/Frame_427318605.png?1696527739",
+    "symbol": "SIMP",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x41d5d79431a913c4ae7d69a668ecdfe5ff9dfb68": {
+    "assetId": "eip155:1/erc20:0x41d5d79431a913c4ae7d69a668ecdfe5ff9dfb68",
+    "chainId": "eip155:1",
+    "name": "Inverse Finance",
+    "precision": 18,
+    "color": "#52638C",
+    "icon": "https://assets.coingecko.com/coins/images/14205/thumb/inverse_finance.jpg?1696513922",
+    "symbol": "INV",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x41dbecc1cdc5517c6f76f6a6e836adbee2754de3": {
+    "assetId": "eip155:1/erc20:0x41dbecc1cdc5517c6f76f6a6e836adbee2754de3",
+    "chainId": "eip155:1",
+    "name": "Medicalchain",
+    "precision": 18,
+    "color": "#0864C1",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x41dBECc1cdC5517C6f76f6a6E836aDbEe2754DE3/logo.png",
+    "symbol": "MTN",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x41e5560054824ea6b0732e656e3ad64e20e94e45": {
+    "assetId": "eip155:1/erc20:0x41e5560054824ea6b0732e656e3ad64e20e94e45",
+    "chainId": "eip155:1",
+    "name": "Civic on Ethereum",
+    "precision": 8,
+    "color": "#EEF3EE",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x41e5560054824eA6B0732E656E3Ad64E20e94E45/logo.png",
+    "symbol": "CVC",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x41ea5d41eeacc2d5c4072260945118a13bb7ebce": {
+    "assetId": "eip155:1/erc20:0x41ea5d41eeacc2d5c4072260945118a13bb7ebce",
+    "chainId": "eip155:1",
+    "name": "Creso",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/32954/thumb/CRE.jpg?1699941230",
+    "symbol": "CRE",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x4208aa4d7a9a10f4f8bb7f6400c1b2161d946969": {
+    "assetId": "eip155:1/erc20:0x4208aa4d7a9a10f4f8bb7f6400c1b2161d946969",
+    "chainId": "eip155:1",
+    "name": "DongCoin",
+    "precision": 18,
+    "color": "#BD9498",
+    "icon": "https://assets.coingecko.com/coins/images/31499/thumb/DONG_LOGO.png?1696530310",
+    "symbol": "DONG",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x420a24c9c65bd44c48bfb1cc8d6cd1ea8b1ac840": {
+    "assetId": "eip155:1/erc20:0x420a24c9c65bd44c48bfb1cc8d6cd1ea8b1ac840",
+    "chainId": "eip155:1",
+    "name": "JumpToken on Ethereum",
+    "precision": 18,
+    "color": "#5494FC",
+    "icon": "https://assets.coingecko.com/coins/images/22603/thumb/200x200.png?1696521919",
+    "symbol": "JMPT",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x4216663ddc7bd10eaf44609df4dd0f91cd2be7f2": {
+    "assetId": "eip155:1/erc20:0x4216663ddc7bd10eaf44609df4dd0f91cd2be7f2",
+    "chainId": "eip155:1",
+    "name": "MicroPepe",
+    "precision": 18,
+    "color": "#1947B8",
+    "icon": "https://assets.coingecko.com/coins/images/30153/thumb/logo.jpeg?1696529073",
+    "symbol": "MPEPE",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x423352f2c6e0e72422b69af03aba259310146d90": {
+    "assetId": "eip155:1/erc20:0x423352f2c6e0e72422b69af03aba259310146d90",
+    "chainId": "eip155:1",
+    "name": "Reality Metaverse",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/29806/thumb/rltm.png?1696528735",
+    "symbol": "RMV",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x4236f8aaf2b1f3a28420eb15b8e0ddf63201a95e": {
+    "assetId": "eip155:1/erc20:0x4236f8aaf2b1f3a28420eb15b8e0ddf63201a95e",
+    "chainId": "eip155:1",
+    "name": "Bermuda",
+    "precision": 18,
+    "color": "#3D6E54",
+    "icon": "https://assets.coingecko.com/coins/images/28878/thumb/LOGO.png?1696527855",
+    "symbol": "BMDA",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x423f4e6138e475d85cf7ea071ac92097ed631eea": {
+    "assetId": "eip155:1/erc20:0x423f4e6138e475d85cf7ea071ac92097ed631eea",
+    "chainId": "eip155:1",
+    "name": "PondCoin",
+    "precision": 18,
+    "color": "#75C551",
+    "icon": "https://assets.coingecko.com/coins/images/31215/thumb/pond-coin.jpeg?1696530042",
+    "symbol": "PNDC",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x42476f744292107e34519f9c357927074ea3f75d": {
+    "assetId": "eip155:1/erc20:0x42476f744292107e34519f9c357927074ea3f75d",
+    "chainId": "eip155:1",
+    "name": "Loom Network  NEW ",
+    "precision": 18,
+    "color": "#231C23",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x42476F744292107e34519F9c357927074Ea3F75D/logo.png",
+    "symbol": "LOOM",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x425d105913a04f4f95311788195ba13c3e82c3b9": {
+    "assetId": "eip155:1/erc20:0x425d105913a04f4f95311788195ba13c3e82c3b9",
+    "chainId": "eip155:1",
+    "name": "Apollo Token",
+    "precision": 9,
+    "color": "#2B2554",
+    "icon": "https://assets.coingecko.com/coins/images/29861/thumb/Apollo.jpeg?1696528787",
+    "symbol": "APOLLO",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x426fc8be95573230f6e6bc4af91873f0c67b21b4": {
+    "assetId": "eip155:1/erc20:0x426fc8be95573230f6e6bc4af91873f0c67b21b4",
+    "chainId": "eip155:1",
+    "name": "BlackPearl on Ethereum",
+    "precision": 18,
+    "color": "#3BC2F9",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x426FC8BE95573230f6e6bc4af91873F0c67b21b4/logo.png",
+    "symbol": "BPLC",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x42726d074bba68ccc15200442b72afa2d495a783": {
+    "assetId": "eip155:1/erc20:0x42726d074bba68ccc15200442b72afa2d495a783",
+    "chainId": "eip155:1",
+    "name": "Isiklar Coin",
+    "precision": 4,
+    "color": "#FCC614",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x42726d074BBa68Ccc15200442B72Afa2D495A783/logo.png",
+    "symbol": "ISIKC",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x427a03fb96d9a94a6727fbcfbba143444090dd64": {
+    "assetId": "eip155:1/erc20:0x427a03fb96d9a94a6727fbcfbba143444090dd64",
+    "chainId": "eip155:1",
+    "name": "PIXL",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/33045/thumb/20220531_190522.jpg?1700450022",
+    "symbol": "PIXL",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x428487ad75dc9197cccb496629ab516974329dc1": {
+    "assetId": "eip155:1/erc20:0x428487ad75dc9197cccb496629ab516974329dc1",
+    "chainId": "eip155:1",
+    "name": "RealAliensEnjoyingLiquidity",
+    "precision": 18,
+    "color": "#9C8071",
+    "icon": "https://assets.coingecko.com/coins/images/31735/thumb/rael_logo_%282%29.jpg?1696530554",
+    "symbol": "RAEL",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x428dc22668e6f3468273634067e5545ed5417a3e": {
+    "assetId": "eip155:1/erc20:0x428dc22668e6f3468273634067e5545ed5417a3e",
+    "chainId": "eip155:1",
+    "name": "MiraQle",
+    "precision": 18,
+    "color": "#E4C34E",
+    "icon": "https://assets.coingecko.com/coins/images/12278/thumb/200_200_%EB%AF%B8%EB%9D%BC%ED%81%B4_%EB%A1%9C%EA%B3%A0.png?1696512107",
+    "symbol": "MQL",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x428dca9537116148616a5a3e44035af17238fe9d": {
+    "assetId": "eip155:1/erc20:0x428dca9537116148616a5a3e44035af17238fe9d",
+    "chainId": "eip155:1",
+    "name": "OxAI com on Ethereum",
+    "precision": 18,
+    "color": "#0E7C8C",
+    "icon": "https://assets.coingecko.com/coins/images/28992/thumb/oxai-logo-200.png?1696527964",
+    "symbol": "OXAI",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x4295c8556afee00264c0789dde2ddd2dba71acfe": {
+    "assetId": "eip155:1/erc20:0x4295c8556afee00264c0789dde2ddd2dba71acfe",
+    "chainId": "eip155:1",
+    "name": "Bidao Smart Chain",
+    "precision": 18,
+    "color": "#CAE5FC",
+    "icon": "https://assets.coingecko.com/coins/images/29825/thumb/bisc200.png?1696528753",
+    "symbol": "BISC",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x4297394c20800e8a38a619a243e9bbe7681ff24e": {
+    "assetId": "eip155:1/erc20:0x4297394c20800e8a38a619a243e9bbe7681ff24e",
+    "chainId": "eip155:1",
+    "name": "Hot Cross on Ethereum",
+    "precision": 18,
+    "color": "#23837C",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x4297394c20800E8a38A619A243E9BbE7681Ff24E/logo.png",
+    "symbol": "HOTCROSS",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x429881672b9ae42b8eba0e26cd9c73711b891ca5": {
+    "assetId": "eip155:1/erc20:0x429881672b9ae42b8eba0e26cd9c73711b891ca5",
+    "chainId": "eip155:1",
+    "name": "Pickle Finance on Ethereum",
+    "precision": 18,
+    "color": "#14A30C",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x429881672B9AE42b8EbA0E26cD9C73711b891Ca5/logo.png",
+    "symbol": "PICKLE",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x429aca1ccd47296483d1281c85b24e842de0b758": {
+    "assetId": "eip155:1/erc20:0x429aca1ccd47296483d1281c85b24e842de0b758",
+    "chainId": "eip155:1",
+    "name": "YEET DAO",
+    "precision": 18,
+    "color": "#070707",
+    "icon": "https://assets.coingecko.com/coins/images/30106/thumb/200x200.png?1696529028",
+    "symbol": "YEET",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x42a501903afaa1086b5975773375c80e363f4063": {
+    "assetId": "eip155:1/erc20:0x42a501903afaa1086b5975773375c80e363f4063",
+    "chainId": "eip155:1",
+    "name": "Cryptyk",
+    "precision": 8,
+    "color": "#BABABA",
+    "icon": "https://assets.coingecko.com/coins/images/2729/thumb/th.jpg?1696503507",
+    "symbol": "CTK",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x42a7797351dfd281a80807196c8508eb70bb2af9": {
+    "assetId": "eip155:1/erc20:0x42a7797351dfd281a80807196c8508eb70bb2af9",
+    "chainId": "eip155:1",
+    "name": "AISociety",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/32861/thumb/AIS_Symbol.png?1699669819",
+    "symbol": "AIS",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x42b91f1d05afea671a2da3c780eda2abf0a2a366": {
+    "assetId": "eip155:1/erc20:0x42b91f1d05afea671a2da3c780eda2abf0a2a366",
+    "chainId": "eip155:1",
+    "name": "Mineable",
+    "precision": 18,
+    "color": "#1C2536",
+    "icon": "https://assets.coingecko.com/coins/images/29272/thumb/mnb.png?1696528225",
+    "symbol": "MNB",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x42baf1f659d765c65ade5bb7e08eb2c680360d9d": {
+    "assetId": "eip155:1/erc20:0x42baf1f659d765c65ade5bb7e08eb2c680360d9d",
+    "chainId": "eip155:1",
+    "name": "Cornucopias on Ethereum",
+    "precision": 18,
+    "color": "#251F1B",
+    "icon": "https://assets.coingecko.com/coins/images/21452/thumb/g56WwJDA_400x400.jpg?1696520814",
+    "symbol": "COPI",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x42bbfa2e77757c645eeaad1655e0911a7553efbc": {
+    "assetId": "eip155:1/erc20:0x42bbfa2e77757c645eeaad1655e0911a7553efbc",
+    "chainId": "eip155:1",
+    "name": "Boba Network",
+    "precision": 18,
+    "color": "#9CBA30",
+    "icon": "https://assets.coingecko.com/coins/images/20285/thumb/Boba-200x200---white.png?1696519690",
+    "symbol": "BOBA",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x42d6622dece394b54999fbd73d108123806f6a18": {
+    "assetId": "eip155:1/erc20:0x42d6622dece394b54999fbd73d108123806f6a18",
+    "chainId": "eip155:1",
+    "name": "SpankChain",
+    "precision": 18,
+    "color": "#FAEDF5",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x42d6622deCe394b54999Fbd73D108123806f6a18/logo.png",
+    "symbol": "SPANK",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x42dbbd5ae373fea2fc320f62d44c058522bb3758": {
+    "assetId": "eip155:1/erc20:0x42dbbd5ae373fea2fc320f62d44c058522bb3758",
+    "chainId": "eip155:1",
+    "name": "Memecoin on Ethereum",
+    "precision": 18,
+    "color": "#F4EDE0",
+    "icon": "https://assets.coingecko.com/coins/images/16370/thumb/mem_gold_200x200_copy.png?1696515969",
+    "symbol": "MEM",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x42e70913b53cfcc38b18ffbd124e8f65c706deaf": {
+    "assetId": "eip155:1/erc20:0x42e70913b53cfcc38b18ffbd124e8f65c706deaf",
+    "chainId": "eip155:1",
+    "name": "SALAMANDER",
+    "precision": 9,
+    "color": "#E6BA3D",
+    "icon": "https://assets.coingecko.com/coins/images/31826/thumb/Sally200x200.png?1696530640",
+    "symbol": "SALLY",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x42f1ffeabd9551aec26d70257c8a4d4c31b72180": {
+    "assetId": "eip155:1/erc20:0x42f1ffeabd9551aec26d70257c8a4d4c31b72180",
+    "chainId": "eip155:1",
+    "name": "Flooring Protocol  0N1Force",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/32786/thumb/0N1.png?1699353080",
+    "symbol": "0N1",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x43044f861ec040db59a7e324c40507addb673142": {
+    "assetId": "eip155:1/erc20:0x43044f861ec040db59a7e324c40507addb673142",
+    "chainId": "eip155:1",
+    "name": "Cap on Ethereum",
+    "precision": 18,
+    "color": "#1BFB4B",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x43044f861ec040DB59A7e324c40507adDb673142/logo.png",
+    "symbol": "CAP",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x4309e88d1d511f3764ee0f154cee98d783b61f09": {
+    "assetId": "eip155:1/erc20:0x4309e88d1d511f3764ee0f154cee98d783b61f09",
+    "chainId": "eip155:1",
+    "name": "Onchain AI",
+    "precision": 18,
+    "color": "#E1E1E1",
+    "icon": "https://assets.coingecko.com/coins/images/31191/thumb/onchain_200.jpeg?1696530019",
+    "symbol": "OCAI",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x430ef9263e76dae63c84292c3409d61c598e9682": {
+    "assetId": "eip155:1/erc20:0x430ef9263e76dae63c84292c3409d61c598e9682",
+    "chainId": "eip155:1",
+    "name": "Vulcan Forged on Ethereum",
+    "precision": 18,
+    "color": "#F8A024",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x430EF9263E76DAE63c84292C3409D61c598E9682/logo.png",
+    "symbol": "PYR",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x431ad2ff6a9c365805ebad47ee021148d6f7dbe0": {
+    "assetId": "eip155:1/erc20:0x431ad2ff6a9c365805ebad47ee021148d6f7dbe0",
+    "chainId": "eip155:1",
+    "name": "dForce on Ethereum",
+    "precision": 18,
+    "color": "#090938",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x431ad2ff6a9C365805eBaD47Ee021148d6f7DBe0/logo.png",
+    "symbol": "DF",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x431d5dff03120afa4bdf332c61a6e1766ef37bdb": {
+    "assetId": "eip155:1/erc20:0x431d5dff03120afa4bdf332c61a6e1766ef37bdb",
+    "chainId": "eip155:1",
+    "name": "JPY Coin on Ethereum",
+    "precision": 18,
+    "color": "#DCE2EE",
+    "icon": "https://assets.coingecko.com/coins/images/25971/thumb/2023jpyc.png?1696525049",
+    "symbol": "JPYC",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x4332f8a38f14bd3d8d1553af27d7c7ac6c27278d": {
+    "assetId": "eip155:1/erc20:0x4332f8a38f14bd3d8d1553af27d7c7ac6c27278d",
+    "chainId": "eip155:1",
+    "name": "Ape Finance",
+    "precision": 18,
+    "color": "#BFAA84",
+    "icon": "https://assets.coingecko.com/coins/images/25625/thumb/APEFI.png?1696524759",
+    "symbol": "APEFI",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x433fb346139e4eb5e513ae5fd77bd98614b153b1": {
+    "assetId": "eip155:1/erc20:0x433fb346139e4eb5e513ae5fd77bd98614b153b1",
+    "chainId": "eip155:1",
+    "name": "Flooring Protocol  Beanz",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/32784/thumb/beanz_%281%29.png?1699352128",
+    "symbol": "BEANZ",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x433fce7dfbec729a79999eaf056cb073b2153eba": {
+    "assetId": "eip155:1/erc20:0x433fce7dfbec729a79999eaf056cb073b2153eba",
+    "chainId": "eip155:1",
+    "name": "CoinWealth on Ethereum",
+    "precision": 6,
+    "color": "#143C5C",
+    "icon": "https://assets.coingecko.com/coins/images/23769/thumb/cw_logo-4955f59a5c8079f246fa07ac71b2541870ca7d906ca1d9c26d74a3870fafef2f_%281%29.png?1696522970",
+    "symbol": "CNW",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x4341a2c412b1b7bee50616de6e6e1172719c6351": {
+    "assetId": "eip155:1/erc20:0x4341a2c412b1b7bee50616de6e6e1172719c6351",
+    "chainId": "eip155:1",
+    "name": "Guppi Finance",
+    "precision": 18,
+    "color": "#F49C21",
+    "icon": "https://assets.coingecko.com/coins/images/31424/thumb/guppi200.png?1696530239",
+    "symbol": "GUPPI",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x434cb4fc4b952872967914d430878eee53ebd502": {
+    "assetId": "eip155:1/erc20:0x434cb4fc4b952872967914d430878eee53ebd502",
+    "chainId": "eip155:1",
+    "name": "ALLPAYCOIN",
+    "precision": 18,
+    "color": "#D6ECE0",
+    "icon": "https://assets.coingecko.com/coins/images/26836/thumb/apcg.png?1696525895",
+    "symbol": "APCG",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x436da116249044e8b4464f0cf21dd93311d88190": {
+    "assetId": "eip155:1/erc20:0x436da116249044e8b4464f0cf21dd93311d88190",
+    "chainId": "eip155:1",
+    "name": "Colizeum on Ethereum",
+    "precision": 18,
+    "color": "#D1D0D1",
+    "icon": "https://assets.coingecko.com/coins/images/24448/thumb/AB0cGpnx_400x400.jpg?1696523629",
+    "symbol": "ZEUM",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x4385328cc4d643ca98dfea734360c0f596c83449": {
+    "assetId": "eip155:1/erc20:0x4385328cc4d643ca98dfea734360c0f596c83449",
+    "chainId": "eip155:1",
+    "name": "tomiNet",
+    "precision": 18,
+    "color": "#2B2C2C",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x4385328cc4D643Ca98DfEA734360C0F596C83449/logo.png",
+    "symbol": "TOMI",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x43a8f41644a3f07818a43455b975d940ce16a3fa": {
+    "assetId": "eip155:1/erc20:0x43a8f41644a3f07818a43455b975d940ce16a3fa",
+    "chainId": "eip155:1",
+    "name": "Fren Nation",
+    "precision": 18,
+    "color": "#8C7932",
+    "icon": "https://assets.coingecko.com/coins/images/30551/thumb/frennation.png?1696529423",
+    "symbol": "FREN",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x43a96962254855f16b925556f9e97be436a43448": {
+    "assetId": "eip155:1/erc20:0x43a96962254855f16b925556f9e97be436a43448",
+    "chainId": "eip155:1",
+    "name": "Hord on Ethereum",
+    "precision": 18,
+    "color": "#AFAFB0",
+    "icon": "https://assets.coingecko.com/coins/images/14972/thumb/HORD_logo_mark_%28purple%29.png?1696514632",
+    "symbol": "HORD",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x43a9c989597efeadf11faec609ad8df7d3c18cdb": {
+    "assetId": "eip155:1/erc20:0x43a9c989597efeadf11faec609ad8df7d3c18cdb",
+    "chainId": "eip155:1",
+    "name": "McBase",
+    "precision": 18,
+    "color": "#AD7850",
+    "icon": "https://assets.coingecko.com/coins/images/31479/thumb/photo_2023-08-24_07-45-00.jpg?1696530291",
+    "symbol": "MCBASE",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x43ab765ee05075d78ad8aa79dcb1978ca3079258": {
+    "assetId": "eip155:1/erc20:0x43ab765ee05075d78ad8aa79dcb1978ca3079258",
+    "chainId": "eip155:1",
+    "name": "POW",
+    "precision": 18,
+    "color": "#14CA1B",
+    "icon": "https://assets.coingecko.com/coins/images/22333/thumb/16963.png?1696521677",
+    "symbol": "POW",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x43af0944b34ad466dcea7fc8f77aafc6a4ec70fa": {
+    "assetId": "eip155:1/erc20:0x43af0944b34ad466dcea7fc8f77aafc6a4ec70fa",
+    "chainId": "eip155:1",
+    "name": "RavenFund",
+    "precision": 18,
+    "color": "#212823",
+    "icon": "https://assets.coingecko.com/coins/images/31399/thumb/GECKOLISTINGICON.png?1696530215",
+    "symbol": "RAVEN",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x43d4a3cd90ddd2f8f4f693170c9c8098163502ad": {
+    "assetId": "eip155:1/erc20:0x43d4a3cd90ddd2f8f4f693170c9c8098163502ad",
+    "chainId": "eip155:1",
+    "name": "Prime",
+    "precision": 18,
+    "color": "#14092A",
+    "icon": "https://assets.coingecko.com/coins/images/21609/thumb/RJD82RrV_400x400.jpg?1696520970",
+    "symbol": "D2D",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x43d7e65b8ff49698d9550a7f315c87e67344fb59": {
+    "assetId": "eip155:1/erc20:0x43d7e65b8ff49698d9550a7f315c87e67344fb59",
+    "chainId": "eip155:1",
+    "name": "Shiba Saga",
+    "precision": 18,
+    "color": "#211D28",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x43D7E65B8fF49698D9550a7F315c87E67344FB59/logo.png",
+    "symbol": "SHIA",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x43dfc4159d86f3a37a5a4b3d4580b888ad7d4ddd": {
+    "assetId": "eip155:1/erc20:0x43dfc4159d86f3a37a5a4b3d4580b888ad7d4ddd",
+    "chainId": "eip155:1",
+    "name": "DODO on Ethereum",
+    "precision": 18,
+    "color": "#060604",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x43Dfc4159D86F3A37A5A4B3D4580b888ad7d4DDd/logo.png",
+    "symbol": "DODO",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x43e54c2e7b3e294de3a155785f52ab49d87b9922": {
+    "assetId": "eip155:1/erc20:0x43e54c2e7b3e294de3a155785f52ab49d87b9922",
+    "chainId": "eip155:1",
+    "name": "Aladdin sdCRV",
+    "precision": 18,
+    "color": "#ECEFE9",
+    "icon": "https://assets.coingecko.com/coins/images/31428/thumb/asdCRV_logo.jpg?1696530243",
+    "symbol": "ASDCRV",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x44108f0223a3c3028f5fe7aec7f9bb2e66bef82f": {
+    "assetId": "eip155:1/erc20:0x44108f0223a3c3028f5fe7aec7f9bb2e66bef82f",
+    "chainId": "eip155:1",
+    "name": "Across Protocol on Ethereum",
+    "precision": 18,
+    "color": "#6BF9D9",
+    "icon": "https://assets.coingecko.com/coins/images/28161/thumb/across-200x200.png?1696527165",
+    "symbol": "ACX",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x441761326490cacf7af299725b6292597ee822c2": {
+    "assetId": "eip155:1/erc20:0x441761326490cacf7af299725b6292597ee822c2",
+    "chainId": "eip155:1",
+    "name": "Unifi Protocol DAO on Ethereum",
+    "precision": 18,
+    "color": "#3AFA94",
+    "icon": "https://assets.coingecko.com/coins/images/13152/thumb/logo-2.png?1696512937",
+    "symbol": "UNFI",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x441c3c2f4a92f1b90f916811514ebddbbd3bff4f": {
+    "assetId": "eip155:1/erc20:0x441c3c2f4a92f1b90f916811514ebddbbd3bff4f",
+    "chainId": "eip155:1",
+    "name": "LFG coin",
+    "precision": 18,
+    "color": "#ECECEC",
+    "icon": "https://assets.coingecko.com/coins/images/30278/thumb/T207klVP_400x400.jpg?1696529184",
+    "symbol": "LFG",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x442bc47357919446eabc18c7211e57a13d983469": {
+    "assetId": "eip155:1/erc20:0x442bc47357919446eabc18c7211e57a13d983469",
+    "chainId": "eip155:1",
+    "name": "BeeChat",
+    "precision": 18,
+    "color": "#1DA0F8",
+    "icon": "https://assets.coingecko.com/coins/images/14386/thumb/ezgif-6-b78b8423d870.png?1696514077",
+    "symbol": "CHAT",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x443b29fc978058abe3fc2f4c3c6b76c57fdecc02": {
+    "assetId": "eip155:1/erc20:0x443b29fc978058abe3fc2f4c3c6b76c57fdecc02",
+    "chainId": "eip155:1",
+    "name": "IDEAS",
+    "precision": 18,
+    "color": "#64ACDC",
+    "icon": "https://assets.coingecko.com/coins/images/21535/thumb/IDEAS_logo_200.png?1696520894",
+    "symbol": "IDEAS",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x444444444444c1a66f394025ac839a535246fcc8": {
+    "assetId": "eip155:1/erc20:0x444444444444c1a66f394025ac839a535246fcc8",
+    "chainId": "eip155:1",
+    "name": "Genius on Ethereum",
+    "precision": 9,
+    "color": "#0F073F",
+    "icon": "https://assets.coingecko.com/coins/images/28621/thumb/GENI200x200.png?1696527606",
+    "symbol": "GENI",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x4448d67ea26a2eaf286bc1045005f4cf15aaba11": {
+    "assetId": "eip155:1/erc20:0x4448d67ea26a2eaf286bc1045005f4cf15aaba11",
+    "chainId": "eip155:1",
+    "name": "Shinjarium",
+    "precision": 9,
+    "color": "#312022",
+    "icon": "https://assets.coingecko.com/coins/images/29862/thumb/Shinjarium_logo.png?1696528787",
+    "symbol": "SJM",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x445bd590a01fe6709d4f13a8f579c1e4846921db": {
+    "assetId": "eip155:1/erc20:0x445bd590a01fe6709d4f13a8f579c1e4846921db",
+    "chainId": "eip155:1",
+    "name": "DUMMY",
+    "precision": 18,
+    "color": "#C6AF87",
+    "icon": "https://assets.coingecko.com/coins/images/30650/thumb/a3miYrC7_400x400-removebg-preview%281%29.png?1696529520",
+    "symbol": "DUMMY",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x4463e6a3ded0dbe3f6e15bc8420dfc55e5fea830": {
+    "assetId": "eip155:1/erc20:0x4463e6a3ded0dbe3f6e15bc8420dfc55e5fea830",
+    "chainId": "eip155:1",
+    "name": "TXA",
+    "precision": 18,
+    "color": "#F4F7F1",
+    "icon": "https://assets.coingecko.com/coins/images/17746/thumb/jwjcN5Kx_400x400.jpg?1696517273",
+    "symbol": "TXA",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x446c9033e7516d820cc9a2ce2d0b7328b579406f": {
+    "assetId": "eip155:1/erc20:0x446c9033e7516d820cc9a2ce2d0b7328b579406f",
+    "chainId": "eip155:1",
+    "name": "SOLVE",
+    "precision": 8,
+    "color": "#DCAC9C",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x446C9033E7516D820cc9a2ce2d0B7328b579406F/logo.png",
+    "symbol": "SOLVE",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x446f2a8a39cc730ef378be759a3c57f1a3fe824c": {
+    "assetId": "eip155:1/erc20:0x446f2a8a39cc730ef378be759a3c57f1a3fe824c",
+    "chainId": "eip155:1",
+    "name": "NanoByte on Ethereum",
+    "precision": 18,
+    "color": "#C8BCED",
+    "icon": "https://assets.coingecko.com/coins/images/23698/thumb/WpcmdLW.png?1696522899",
+    "symbol": "NBT",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x44709a920fccf795fbc57baa433cc3dd53c44dbe": {
+    "assetId": "eip155:1/erc20:0x44709a920fccf795fbc57baa433cc3dd53c44dbe",
+    "chainId": "eip155:1",
+    "name": "DappRadar on Ethereum",
+    "precision": 18,
+    "color": "#056BF9",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x44709a920fCcF795fbC57BAA433cc3dd53C44DbE/logo.png",
+    "symbol": "RADAR",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x4485561db76614ff727f8e0a3ea95690b8b16022": {
+    "assetId": "eip155:1/erc20:0x4485561db76614ff727f8e0a3ea95690b8b16022",
+    "chainId": "eip155:1",
+    "name": "Invox Finance",
+    "precision": 18,
+    "color": "#053C66",
+    "icon": "https://assets.coingecko.com/coins/images/3200/thumb/invox.png?1696503919",
+    "symbol": "INVOX",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x44aad22afbb2606d7828ca1f8f9e5af00e779ae1": {
+    "assetId": "eip155:1/erc20:0x44aad22afbb2606d7828ca1f8f9e5af00e779ae1",
+    "chainId": "eip155:1",
+    "name": "Homer",
+    "precision": 9,
+    "color": "#E2BA37",
+    "icon": "https://assets.coingecko.com/coins/images/30243/thumb/1111.png?1696529152",
+    "symbol": "SIMPSON",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x44f5909e97e1cbf5fbbdf0fc92fd83cde5d5c58a": {
+    "assetId": "eip155:1/erc20:0x44f5909e97e1cbf5fbbdf0fc92fd83cde5d5c58a",
+    "chainId": "eip155:1",
+    "name": "Acria AI on Ethereum",
+    "precision": 18,
+    "color": "#0B0B0B",
+    "icon": "https://assets.coingecko.com/coins/images/28598/thumb/image002.png?1696527585",
+    "symbol": "ACRIA",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x4501a82790ef2587dfeb93dc038541228e516597": {
+    "assetId": "eip155:1/erc20:0x4501a82790ef2587dfeb93dc038541228e516597",
+    "chainId": "eip155:1",
+    "name": "Hydra",
+    "precision": 18,
+    "color": "#298497",
+    "icon": "https://assets.coingecko.com/coins/images/32062/thumb/GDQ7c1hj_400x400.jpg?1696530859",
+    "symbol": "HYDRA",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x4507cef57c46789ef8d1a19ea45f4216bae2b528": {
+    "assetId": "eip155:1/erc20:0x4507cef57c46789ef8d1a19ea45f4216bae2b528",
+    "chainId": "eip155:1",
+    "name": "TokenFi on Ethereum",
+    "precision": 9,
+    "color": "#040404",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x4507cEf57C46789eF8d1a19EA45f4216bae2B528/logo.png",
+    "symbol": "TOKEN",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x45080a6531d671ddff20db42f93792a489685e32": {
+    "assetId": "eip155:1/erc20:0x45080a6531d671ddff20db42f93792a489685e32",
+    "chainId": "eip155:1",
+    "name": "Finance Vote on Ethereum",
+    "precision": 18,
+    "color": "#B7EBF6",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x45080a6531d671DDFf20DB42f93792a489685e32/logo.png",
+    "symbol": "FVT",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x450e7f6e3a2f247a51b98c39297a9a5bfbdb3170": {
+    "assetId": "eip155:1/erc20:0x450e7f6e3a2f247a51b98c39297a9a5bfbdb3170",
+    "chainId": "eip155:1",
+    "name": "Elon GOAT",
+    "precision": 9,
+    "color": "#E1E5E5",
+    "icon": "https://assets.coingecko.com/coins/images/22301/thumb/ElonGoat.jpg?1696521647",
+    "symbol": "EGT",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x4521c9ad6a3d4230803ab752ed238be11f8b342f": {
+    "assetId": "eip155:1/erc20:0x4521c9ad6a3d4230803ab752ed238be11f8b342f",
+    "chainId": "eip155:1",
+    "name": "Sanin Inu",
+    "precision": 18,
+    "color": "#362E22",
+    "icon": "https://assets.coingecko.com/coins/images/25222/thumb/B7r0ocfQ_400x400.jpg?1696524365",
+    "symbol": "SANI",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x4527a3b4a8a150403090a99b87effc96f2195047": {
+    "assetId": "eip155:1/erc20:0x4527a3b4a8a150403090a99b87effc96f2195047",
+    "chainId": "eip155:1",
+    "name": "P2P solutions foundation",
+    "precision": 8,
+    "color": "#E72A26",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x4527a3B4A8A150403090a99b87efFC96F2195047/logo.png",
+    "symbol": "P2PS",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x45448e05020576929fcdeabc228e35b420098840": {
+    "assetId": "eip155:1/erc20:0x45448e05020576929fcdeabc228e35b420098840",
+    "chainId": "eip155:1",
+    "name": "Idavoll DAO",
+    "precision": 18,
+    "color": "#04A4FC",
+    "icon": "https://assets.coingecko.com/coins/images/14229/thumb/71922199.png?1696513943",
+    "symbol": "IDV",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x4550003152f12014558e5ce025707e4dd841100f": {
+    "assetId": "eip155:1/erc20:0x4550003152f12014558e5ce025707e4dd841100f",
+    "chainId": "eip155:1",
+    "name": "Kaizen Finance on Ethereum",
+    "precision": 18,
+    "color": "#FCCFCF",
+    "icon": "https://assets.coingecko.com/coins/images/24396/thumb/PKl5OVRv_400x400.png?1696523579",
+    "symbol": "KZEN",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x4554cc10898f92d45378b98d6d6c2dd54c687fb2": {
+    "assetId": "eip155:1/erc20:0x4554cc10898f92d45378b98d6d6c2dd54c687fb2",
+    "chainId": "eip155:1",
+    "name": "Juicebox",
+    "precision": 18,
+    "color": "#E5AC4A",
+    "icon": "https://assets.coingecko.com/coins/images/21120/thumb/CCeIEmvE_400x400.jpg?1696520499",
+    "symbol": "JBX",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x455e53cbb86018ac2b8092fdcd39d8444affc3f6": {
+    "assetId": "eip155:1/erc20:0x455e53cbb86018ac2b8092fdcd39d8444affc3f6",
+    "chainId": "eip155:1",
+    "name": "Polygon Ecosystem Token",
+    "precision": 18,
+    "color": "#DDC2F2",
+    "icon": "https://assets.coingecko.com/coins/images/32440/thumb/polygon.png?1698233684",
+    "symbol": "POL",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x456125cd98107ae0480ba566f1b716d48ba31453": {
+    "assetId": "eip155:1/erc20:0x456125cd98107ae0480ba566f1b716d48ba31453",
+    "chainId": "eip155:1",
+    "name": "Ultimate Champions on Ethereum",
+    "precision": 18,
+    "color": "#E0B680",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x456125Cd98107ae0480Ba566f1b716D48Ba31453/logo.png",
+    "symbol": "CHAMP",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x4561de8e0c2bba725d38d266ef62426e62678d82": {
+    "assetId": "eip155:1/erc20:0x4561de8e0c2bba725d38d266ef62426e62678d82",
+    "chainId": "eip155:1",
+    "name": "Coniun",
+    "precision": 18,
+    "color": "#F4F4F4",
+    "icon": "https://assets.coingecko.com/coins/images/29771/thumb/16801884918921679374349437Only-Amblem-23.png?1696528702",
+    "symbol": "CONI",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x456815812b3129a4389ea4d73e9706697cc91373": {
+    "assetId": "eip155:1/erc20:0x456815812b3129a4389ea4d73e9706697cc91373",
+    "chainId": "eip155:1",
+    "name": "0xS",
+    "precision": 18,
+    "color": "#A2A4A8",
+    "icon": "https://assets.coingecko.com/coins/images/31453/thumb/Logo200x200.png?1696530267",
+    "symbol": "0XS",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x4575f41308ec1483f3d399aa9a2826d74da13deb": {
+    "assetId": "eip155:1/erc20:0x4575f41308ec1483f3d399aa9a2826d74da13deb",
+    "chainId": "eip155:1",
+    "name": "Orchid Protocol",
+    "precision": 18,
+    "color": "#5C44BC",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x4575f41308EC1483f3d399aa9a2826d74Da13Deb/logo.png",
+    "symbol": "OXT",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x45804880de22913dafe09f4980848ece6ecbaf78": {
+    "assetId": "eip155:1/erc20:0x45804880de22913dafe09f4980848ece6ecbaf78",
+    "chainId": "eip155:1",
+    "name": "PAX Gold",
+    "precision": 18,
+    "color": "#DCC41B",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x45804880De22913dAFE09f4980848ECE6EcbAf78/logo.png",
+    "symbol": "PAXG",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x4591dbff62656e7859afe5e45f6f47d3669fbb28": {
+    "assetId": "eip155:1/erc20:0x4591dbff62656e7859afe5e45f6f47d3669fbb28",
+    "chainId": "eip155:1",
+    "name": "Prisma mkUSD",
+    "precision": 18,
+    "color": "#3A75FC",
+    "icon": "https://assets.coingecko.com/coins/images/31519/thumb/mkUSD_200.png?1696530329",
+    "symbol": "MKUSD",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x4594cffbfc09bc5e7ecf1c2e1c1e24f0f7d29036": {
+    "assetId": "eip155:1/erc20:0x4594cffbfc09bc5e7ecf1c2e1c1e24f0f7d29036",
+    "chainId": "eip155:1",
+    "name": "0 Knowledge Network",
+    "precision": 18,
+    "color": "#04845F",
+    "icon": "https://assets.coingecko.com/coins/images/31626/thumb/200x200.png?1696530442",
+    "symbol": "0KN",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x45c2f8c9b4c0bdc76200448cc26c48ab6ffef83f": {
+    "assetId": "eip155:1/erc20:0x45c2f8c9b4c0bdc76200448cc26c48ab6ffef83f",
+    "chainId": "eip155:1",
+    "name": "Domi on Ethereum",
+    "precision": 18,
+    "color": "#D3AD53",
+    "icon": "https://assets.coingecko.com/coins/images/21633/thumb/Transparent_Circle_Logo_2.png?1696520993",
+    "symbol": "DOMI",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x45f93404ae1e4f0411a7f42bc6a5dc395792738d": {
+    "assetId": "eip155:1/erc20:0x45f93404ae1e4f0411a7f42bc6a5dc395792738d",
+    "chainId": "eip155:1",
+    "name": "DGEN on Ethereum",
+    "precision": 18,
+    "color": "#7B37CC",
+    "icon": "https://assets.coingecko.com/coins/images/31294/thumb/dgen-new-200-200.png?1696530114",
+    "symbol": "DGEN",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x45fdb1b92a649fb6a64ef1511d3ba5bf60044838": {
+    "assetId": "eip155:1/erc20:0x45fdb1b92a649fb6a64ef1511d3ba5bf60044838",
+    "chainId": "eip155:1",
+    "name": "SpiceUSD on Ethereum",
+    "precision": 18,
+    "color": "#5CBC5C",
+    "icon": "https://assets.coingecko.com/coins/images/25697/thumb/USDS.png?1696524824",
+    "symbol": "USDS",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x464ebe77c293e473b48cfe96ddcf88fcf7bfdac0": {
+    "assetId": "eip155:1/erc20:0x464ebe77c293e473b48cfe96ddcf88fcf7bfdac0",
+    "chainId": "eip155:1",
+    "name": "KRYLL",
+    "precision": 18,
+    "color": "#46375C",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x464eBE77c293E473B48cFe96dDCf88fcF7bFDAC0/logo.png",
+    "symbol": "KRL",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x464fdb8affc9bac185a7393fd4298137866dcfb8": {
+    "assetId": "eip155:1/erc20:0x464fdb8affc9bac185a7393fd4298137866dcfb8",
+    "chainId": "eip155:1",
+    "name": "Realm on Ethereum",
+    "precision": 18,
+    "color": "#173452",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x464FdB8AFFC9bac185A7393fd4298137866DCFB8/logo.png",
+    "symbol": "REALM",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x465a5a630482f3abd6d3b84b39b29b07214d19e5": {
+    "assetId": "eip155:1/erc20:0x465a5a630482f3abd6d3b84b39b29b07214d19e5",
+    "chainId": "eip155:1",
+    "name": "Flux USDC",
+    "precision": 8,
+    "color": "#BFD5ED",
+    "icon": "https://assets.coingecko.com/coins/images/29051/thumb/fUSDC_200x200.png?1696528018",
+    "symbol": "FUSDC",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x4667765333494049921709a1cec32dedc529d59e": {
+    "assetId": "eip155:1/erc20:0x4667765333494049921709a1cec32dedc529d59e",
+    "chainId": "eip155:1",
+    "name": "AION",
+    "precision": 18,
+    "color": "#1D2357",
+    "icon": "https://assets.coingecko.com/coins/images/31950/thumb/BUBBLE_%281%29.png?1696530756",
+    "symbol": "AION",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x466a756e9a7401b5e2444a3fcb3c2c12fbea0a54": {
+    "assetId": "eip155:1/erc20:0x466a756e9a7401b5e2444a3fcb3c2c12fbea0a54",
+    "chainId": "eip155:1",
+    "name": "PUSd",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/25858/thumb/PUSd.png?1696524942",
+    "symbol": "PUSD",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x4674672bcddda2ea5300f5207e1158185c944bc0": {
+    "assetId": "eip155:1/erc20:0x4674672bcddda2ea5300f5207e1158185c944bc0",
+    "chainId": "eip155:1",
+    "name": "Gem Exchange and Trading on Ethereum",
+    "precision": 18,
+    "color": "#6772E2",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x4674672BcDdDA2ea5300F5207E1158185c944bc0/logo.png",
+    "symbol": "GXT",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x4674a4f24c5f63d53f22490fb3a08eaaad739ff8": {
+    "assetId": "eip155:1/erc20:0x4674a4f24c5f63d53f22490fb3a08eaaad739ff8",
+    "chainId": "eip155:1",
+    "name": "Brokoli on Ethereum",
+    "precision": 18,
+    "color": "#3B9F85",
+    "icon": "https://assets.coingecko.com/coins/images/18763/thumb/brkl.png?1696518228",
+    "symbol": "BRKL",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x467719ad09025fcc6cf6f8311755809d45a5e5f3": {
+    "assetId": "eip155:1/erc20:0x467719ad09025fcc6cf6f8311755809d45a5e5f3",
+    "chainId": "eip155:1",
+    "name": "Axelar on Ethereum",
+    "precision": 6,
+    "color": "#141414",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x467719aD09025FcC6cF6F8311755809d45a5E5f3/logo.png",
+    "symbol": "AXL",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x467bccd9d29f223bce8043b84e8c8b282827790f": {
+    "assetId": "eip155:1/erc20:0x467bccd9d29f223bce8043b84e8c8b282827790f",
+    "chainId": "eip155:1",
+    "name": "Telcoin on Ethereum",
+    "precision": 2,
+    "color": "#EDF8FA",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x467Bccd9d29f223BcE8043b84E8C8B282827790F/logo.png",
+    "symbol": "TEL",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x4688a8b1f292fdab17e9a90c8bc379dc1dbd8713": {
+    "assetId": "eip155:1/erc20:0x4688a8b1f292fdab17e9a90c8bc379dc1dbd8713",
+    "chainId": "eip155:1",
+    "name": "Cover Protocol",
+    "precision": 18,
+    "color": "#2A2A2A",
+    "icon": "https://assets.coingecko.com/coins/images/13563/thumb/1_eWBbDaqpxXqt7WYPSP4qSw.jpeg?1696513317",
+    "symbol": "COVER",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x469084939d1c20fae3c73704fe963941c51be863": {
+    "assetId": "eip155:1/erc20:0x469084939d1c20fae3c73704fe963941c51be863",
+    "chainId": "eip155:1",
+    "name": "Envision",
+    "precision": 18,
+    "color": "#040404",
+    "icon": "https://assets.coingecko.com/coins/images/23907/thumb/J3JCKVq2.png?1696523107",
+    "symbol": "VIS",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x4691937a7508860f876c9c0a2a617e7d9e945d4b": {
+    "assetId": "eip155:1/erc20:0x4691937a7508860f876c9c0a2a617e7d9e945d4b",
+    "chainId": "eip155:1",
+    "name": "WOO Network on Ethereum",
+    "precision": 18,
+    "color": "#0C1B24",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x4691937a7508860F876c9c0a2a617E7d9E945D4B/logo.png",
+    "symbol": "WOO",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x469eda64aed3a3ad6f868c44564291aa415cb1d9": {
+    "assetId": "eip155:1/erc20:0x469eda64aed3a3ad6f868c44564291aa415cb1d9",
+    "chainId": "eip155:1",
+    "name": "Datamine FLUX on Ethereum",
+    "precision": 18,
+    "color": "#232434",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x469eDA64aEd3A3Ad6f868c44564291aA415cB1d9/logo.png",
+    "symbol": "FLUX",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x46b2deae6eff3011008ea27ea36b7c27255ddfa9": {
+    "assetId": "eip155:1/erc20:0x46b2deae6eff3011008ea27ea36b7c27255ddfa9",
+    "chainId": "eip155:1",
+    "name": "dYdX",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/32595/thumb/dydx.png?1698673699",
+    "symbol": "WETHDYDX",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x46cca329970b33e1a007dd4ef0594a1cedb3e72a": {
+    "assetId": "eip155:1/erc20:0x46cca329970b33e1a007dd4ef0594a1cedb3e72a",
+    "chainId": "eip155:1",
+    "name": "Yesports",
+    "precision": 18,
+    "color": "#1ECBE0",
+    "icon": "https://assets.coingecko.com/coins/images/29767/thumb/YESP_TOKEN.png?1696528698",
+    "symbol": "YESP",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x46d0dac0926fa16707042cadc23f1eb4141fe86b": {
+    "assetId": "eip155:1/erc20:0x46d0dac0926fa16707042cadc23f1eb4141fe86b",
+    "chainId": "eip155:1",
+    "name": "SONM",
+    "precision": 18,
+    "color": "#C1C4C6",
+    "icon": "https://assets.coingecko.com/coins/images/861/thumb/sonm.png?1696501995",
+    "symbol": "SNM",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x46d473a0b3eeec9f55fade641bc576d5bc0b2246": {
+    "assetId": "eip155:1/erc20:0x46d473a0b3eeec9f55fade641bc576d5bc0b2246",
+    "chainId": "eip155:1",
+    "name": "SurfExUtilityToken",
+    "precision": 18,
+    "color": "#3CC4E4",
+    "icon": "https://assets.coingecko.com/coins/images/10783/thumb/200x200-logo-blu-grey-bkg-4-e1583512409629.png?1696510744",
+    "symbol": "SURF",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x46e98ffe40e408ba6412beb670507e083c8b95ff": {
+    "assetId": "eip155:1/erc20:0x46e98ffe40e408ba6412beb670507e083c8b95ff",
+    "chainId": "eip155:1",
+    "name": "Primate on Ethereum",
+    "precision": 18,
+    "color": "#C08539",
+    "icon": "https://assets.coingecko.com/coins/images/25245/thumb/benji-logo-512x512.png?1696524386",
+    "symbol": "PRIMATE",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x470c8950c0c3aa4b09654bc73b004615119a44b5": {
+    "assetId": "eip155:1/erc20:0x470c8950c0c3aa4b09654bc73b004615119a44b5",
+    "chainId": "eip155:1",
+    "name": "Kizuna",
+    "precision": 18,
+    "color": "#C2C1BF",
+    "icon": "https://assets.coingecko.com/coins/images/32113/thumb/IMG_9968.png?1696585475",
+    "symbol": "KIZUNA",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x470e8de2ebaef52014a47cb5e6af86884947f08c": {
+    "assetId": "eip155:1/erc20:0x470e8de2ebaef52014a47cb5e6af86884947f08c",
+    "chainId": "eip155:1",
+    "name": "ETH/FOX Pool",
+    "precision": 18,
+    "color": "#FC047C",
+    "icon": "https://assets.coincap.io/assets/icons/256/uni.png",
+    "symbol": "UNI-V2",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x470ebf5f030ed85fc1ed4c2d36b9dd02e77cf1b7": {
+    "assetId": "eip155:1/erc20:0x470ebf5f030ed85fc1ed4c2d36b9dd02e77cf1b7",
+    "chainId": "eip155:1",
+    "name": "TempleDAO",
+    "precision": 18,
+    "color": "#B57F5A",
+    "icon": "https://assets.coingecko.com/coins/images/20040/thumb/LPK15ZOW_400x400.jpg?1696519459",
+    "symbol": "TEMPLE",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x471a202f69d6e975da55e363dab1bdb2e86e0c0f": {
+    "assetId": "eip155:1/erc20:0x471a202f69d6e975da55e363dab1bdb2e86e0c0f",
+    "chainId": "eip155:1",
+    "name": "Geke",
+    "precision": 18,
+    "color": "#A57F3F",
+    "icon": "https://assets.coingecko.com/coins/images/30332/thumb/geke.jpg?1696529233",
+    "symbol": "GEKE",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x471d113059324321749e097705197a2b44a070fc": {
+    "assetId": "eip155:1/erc20:0x471d113059324321749e097705197a2b44a070fc",
+    "chainId": "eip155:1",
+    "name": "Kanga Exchange on Ethereum",
+    "precision": 18,
+    "color": "#ECE7E5",
+    "icon": "https://assets.coingecko.com/coins/images/21188/thumb/KNG_logo-200.png?1696520564",
+    "symbol": "KNG",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x471ea49dd8e60e697f4cac262b5fafcc307506e4": {
+    "assetId": "eip155:1/erc20:0x471ea49dd8e60e697f4cac262b5fafcc307506e4",
+    "chainId": "eip155:1",
+    "name": "RMRK",
+    "precision": 10,
+    "color": "#3D2C74",
+    "icon": "https://assets.coingecko.com/coins/images/18656/thumb/download_%281%29_%281%29.png?1696518126",
+    "symbol": "RMRK",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x4727a02269943b225a7de9ef28496f36d454b983": {
+    "assetId": "eip155:1/erc20:0x4727a02269943b225a7de9ef28496f36d454b983",
+    "chainId": "eip155:1",
+    "name": "Flash Bot",
+    "precision": 18,
+    "color": "#D2CFC8",
+    "icon": "https://assets.coingecko.com/coins/images/31138/thumb/ct0ID9qI_400x400.jpg?1696529967",
+    "symbol": "FBT",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x473037de59cf9484632f4a27b509cfe8d4a31404": {
+    "assetId": "eip155:1/erc20:0x473037de59cf9484632f4a27b509cfe8d4a31404",
+    "chainId": "eip155:1",
+    "name": "STEPN Green Satoshi Token on ETH",
+    "precision": 8,
+    "color": "#4B4949",
+    "icon": "https://assets.coingecko.com/coins/images/26528/thumb/gst_eth.png?1696525600",
+    "symbol": "GST-ETH",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x4730fb1463a6f1f44aeb45f6c5c422427f37f4d0": {
+    "assetId": "eip155:1/erc20:0x4730fb1463a6f1f44aeb45f6c5c422427f37f4d0",
+    "chainId": "eip155:1",
+    "name": "FOUR on Ethereum",
+    "precision": 18,
+    "color": "#24343C",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x4730fB1463A6F1F44AEB45F6c5c422427f37F4D0/logo.png",
+    "symbol": "FOUR",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x474021845c4643113458ea4414bdb7fb74a01a77": {
+    "assetId": "eip155:1/erc20:0x474021845c4643113458ea4414bdb7fb74a01a77",
+    "chainId": "eip155:1",
+    "name": "Uno Re on Ethereum",
+    "precision": 18,
+    "color": "#8F47EA",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x474021845C4643113458ea4414bdb7fB74A01A77/logo.png",
+    "symbol": "UNO",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x4740735aa98dc8aa232bd049f8f0210458e7fca3": {
+    "assetId": "eip155:1/erc20:0x4740735aa98dc8aa232bd049f8f0210458e7fca3",
+    "chainId": "eip155:1",
+    "name": "Ridotto on Ethereum",
+    "precision": 18,
+    "color": "#2F56C1",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x4740735AA98Dc8aa232BD049f8F0210458E7fCa3/logo.png",
+    "symbol": "RDT",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x4743a7a193cdf202035e9bc6830a07f1607630c4": {
+    "assetId": "eip155:1/erc20:0x4743a7a193cdf202035e9bc6830a07f1607630c4",
+    "chainId": "eip155:1",
+    "name": "Family Guy",
+    "precision": 18,
+    "color": "#DCACA0",
+    "icon": "https://assets.coingecko.com/coins/images/30435/thumb/photo_2023-05-16_18-24-10_%281%29.png?1696529323",
+    "symbol": "GUY",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x47481c1b44f2a1c0135c45aa402ce4f4dde4d30e": {
+    "assetId": "eip155:1/erc20:0x47481c1b44f2a1c0135c45aa402ce4f4dde4d30e",
+    "chainId": "eip155:1",
+    "name": "Meetple",
+    "precision": 18,
+    "color": "#35BEDA",
+    "icon": "https://assets.coingecko.com/coins/images/14323/thumb/Tqlsvhn1_400x400.png?1696514012",
+    "symbol": "MPT",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x4752613b11dfc4e735c4853692c43542e87f0cc2": {
+    "assetId": "eip155:1/erc20:0x4752613b11dfc4e735c4853692c43542e87f0cc2",
+    "chainId": "eip155:1",
+    "name": "Goofy Inu",
+    "precision": 9,
+    "color": "#24B4DC",
+    "icon": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAIAAAACACAMAAAD04JH5AAADAFBMVEUtN0gmt9j///8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB5C17PAAABAHRSTlP/////AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAf6K/dgAAQItJREFUeNoBgEB/vwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgICAgICAgICAgICAgICAQEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgICAgICAgICAgICAgICAQEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgICAgICAgICAgICAgICAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgICAgICAgICAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgICAgICAgICAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgICAgICAgICAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgICAgICAgICAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgICAgICAgICAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgICAgICAgICAgICAgICAwAAAAAAAAAAAAAAAAAAAAACAgICAgICAQMDAwMDAwMDAwMDAwMDAwMDAwMDAgICAgICAgEBAQEBAQECAgICAgICAAMDAwMDAwMDAwMDAwMDAwMDAwMDAgICAgICAgEBAQEBAQECAgICAgICAQMDAwMDAwMDAwMDAwMDAwMDAwMDAgICAgICAgAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAQMDAwMDAwMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAgICAgICAgEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAwMDAwMDAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAAAAwMDAwMDAgICAgICAgICAgICAgICAgICAgICAQMDAwMDAwMBAQEBAQEBAwMDAwMDAgICAgICAgICAgICAgICAgICAgICAQMDAwMDAwMBAQEBAQEBAwMDAwMDAgICAgICAgICAgICAgICAgICAgICAAMDAwMDAwMAAAAAAAAAAAAAAAAAAAEBAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgICAgICAgICAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgICAgICAgICAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgICAgICAgICAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgICAgICAgICAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgICAgICAgICAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgICAgICAgICAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQMDAwMDAwMDAwMDAwMDAwMDAwMDAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAMDAwMDAwMDAwMDAwMDAwMDAwMDAwEBAQEBAQEBAQEBAQEBAQEBAQEBAQMDAwMDAwMDAwMDAwMDAwMDAwMDAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMSsMmnciW60AAAAAElFTkSuQmCC",
+    "symbol": "GOOFY",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x476c5e26a75bd202a9683ffd34359c0cc15be0ff": {
+    "assetId": "eip155:1/erc20:0x476c5e26a75bd202a9683ffd34359c0cc15be0ff",
+    "chainId": "eip155:1",
+    "name": "Serum",
+    "precision": 6,
+    "color": "#64D9E7",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x476c5E26a75bd202a9683ffD34359C0CC15be0fF/logo.png",
+    "symbol": "SRM",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x47879db9e657e644082071b48e2f33d80f369f02": {
+    "assetId": "eip155:1/erc20:0x47879db9e657e644082071b48e2f33d80f369f02",
+    "chainId": "eip155:1",
+    "name": "XINU  ETH ",
+    "precision": 9,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/32712/thumb/xinu.jpg?1699000456",
+    "symbol": "XINU",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x47b751e318fe7e9769f4b56fabbffb05d530a88c": {
+    "assetId": "eip155:1/erc20:0x47b751e318fe7e9769f4b56fabbffb05d530a88c",
+    "chainId": "eip155:1",
+    "name": "Photon Milky Way",
+    "precision": 18,
+    "color": "#C07095",
+    "icon": "https://assets.coingecko.com/coins/images/31882/thumb/PMW_Logo.png?1696530693",
+    "symbol": "PMW",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x47b9f01b16e9c9cb99191dca68c9cc5bf6403957": {
+    "assetId": "eip155:1/erc20:0x47b9f01b16e9c9cb99191dca68c9cc5bf6403957",
+    "chainId": "eip155:1",
+    "name": "Onston on Ethereum",
+    "precision": 18,
+    "color": "#202841",
+    "icon": "https://assets.coingecko.com/coins/images/20669/thumb/onston.PNG?1696520070",
+    "symbol": "ONSTON",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x47da5456bc2e1ce391b645ce80f2e97192e4976a": {
+    "assetId": "eip155:1/erc20:0x47da5456bc2e1ce391b645ce80f2e97192e4976a",
+    "chainId": "eip155:1",
+    "name": "PL Gnet",
+    "precision": 18,
+    "color": "#0CA5E3",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x47DA5456bC2e1ce391b645Ce80F2E97192e4976a/logo.png",
+    "symbol": "PLUG",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x47e67ba66b0699500f18a53f94e2b9db3d47437e": {
+    "assetId": "eip155:1/erc20:0x47e67ba66b0699500f18a53f94e2b9db3d47437e",
+    "chainId": "eip155:1",
+    "name": "PlayGame",
+    "precision": 18,
+    "color": "#FC9332",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x47e67BA66b0699500f18A53F94E2b9dB3D47437e/logo.png",
+    "symbol": "PXG",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x4824a7b64e3966b0133f4f4ffb1b9d6beb75fff7": {
+    "assetId": "eip155:1/erc20:0x4824a7b64e3966b0133f4f4ffb1b9d6beb75fff7",
+    "chainId": "eip155:1",
+    "name": "TokenClub",
+    "precision": 18,
+    "color": "#2C74DC",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x4824A7b64E3966B0133f4f4FFB1b9D6bEb75FFF7/logo.png",
+    "symbol": "TCT",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x485c665d8eeaca7987c48057ffd0591e2aaa797e": {
+    "assetId": "eip155:1/erc20:0x485c665d8eeaca7987c48057ffd0591e2aaa797e",
+    "chainId": "eip155:1",
+    "name": "Metamundo",
+    "precision": 18,
+    "color": "#372D4E",
+    "icon": "https://assets.coingecko.com/coins/images/31724/thumb/batch_MM_logo.png?1696530545",
+    "symbol": "MMT",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x485d17a6f1b8780392d53d64751824253011a260": {
+    "assetId": "eip155:1/erc20:0x485d17a6f1b8780392d53d64751824253011a260",
+    "chainId": "eip155:1",
+    "name": "chrono tech on Ethereum",
+    "precision": 8,
+    "color": "#6484FC",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x485d17A6f1B8780392d53D64751824253011A260/logo.png",
+    "symbol": "TIME",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x486c280024b5428459ec3360f99183a61d41d9a3": {
+    "assetId": "eip155:1/erc20:0x486c280024b5428459ec3360f99183a61d41d9a3",
+    "chainId": "eip155:1",
+    "name": "Ethlinq Tech",
+    "precision": 18,
+    "color": "#458C8C",
+    "icon": "https://assets.coingecko.com/coins/images/31477/thumb/200_200.png?1696530289",
+    "symbol": "ETHLINQ",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x486f4641ef2b50cc130dadbd27b6f271723873b8": {
+    "assetId": "eip155:1/erc20:0x486f4641ef2b50cc130dadbd27b6f271723873b8",
+    "chainId": "eip155:1",
+    "name": "Adventurer Gold on Ethereum",
+    "precision": 18,
+    "color": "#192125",
+    "icon": "https://assets.coingecko.com/coins/images/28427/thumb/anon-npc-pixel.png?1696527424",
+    "symbol": "GOLD",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x48783486ddd7fa85eca6b0c4ae8920bc25dfbcd7": {
+    "assetId": "eip155:1/erc20:0x48783486ddd7fa85eca6b0c4ae8920bc25dfbcd7",
+    "chainId": "eip155:1",
+    "name": "GoMoney2",
+    "precision": 0,
+    "color": "#FCAC04",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x48783486ddD7fa85ECa6B0C4AE8920Bc25DfbcD7/logo.png",
+    "symbol": "GOM2",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x488e0369f9bc5c40c002ea7c1fe4fd01a198801c": {
+    "assetId": "eip155:1/erc20:0x488e0369f9bc5c40c002ea7c1fe4fd01a198801c",
+    "chainId": "eip155:1",
+    "name": "Golff",
+    "precision": 18,
+    "color": "#F4F9F7",
+    "icon": "https://assets.coingecko.com/coins/images/12445/thumb/_x-AmLBv_400x400.jpg?1696512264",
+    "symbol": "GOF",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x48c276e8d03813224bb1e55f953adb6d02fd3e02": {
+    "assetId": "eip155:1/erc20:0x48c276e8d03813224bb1e55f953adb6d02fd3e02",
+    "chainId": "eip155:1",
+    "name": "Kuma Inu",
+    "precision": 18,
+    "color": "#1D1716",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x48C276e8d03813224bb1e55F953adB6d02FD3E02/logo.png",
+    "symbol": "KUMA",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x48c3399719b582dd63eb5aadf12a40b4c3f52fa2": {
+    "assetId": "eip155:1/erc20:0x48c3399719b582dd63eb5aadf12a40b4c3f52fa2",
+    "chainId": "eip155:1",
+    "name": "StakeWise",
+    "precision": 18,
+    "color": "#8678A8",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x48C3399719B582dD63eB5AADf12A40B4C3f52FA2/logo.png",
+    "symbol": "SWISE",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x48c87cdacb6bb6bf6e5cd85d8ee5c847084c7410": {
+    "assetId": "eip155:1/erc20:0x48c87cdacb6bb6bf6e5cd85d8ee5c847084c7410",
+    "chainId": "eip155:1",
+    "name": "Hamsters",
+    "precision": 18,
+    "color": "#E28827",
+    "icon": "https://assets.coingecko.com/coins/images/31055/thumb/hams_logo_s.png?1696529890",
+    "symbol": "HAMS",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x48fb253446873234f2febbf9bdeaa72d9d387f94": {
+    "assetId": "eip155:1/erc20:0x48fb253446873234f2febbf9bdeaa72d9d387f94",
+    "chainId": "eip155:1",
+    "name": "Bancor Governance",
+    "precision": 18,
+    "color": "#D2E0F6",
+    "icon": "https://assets.coingecko.com/coins/images/14053/thumb/bancorvbnt_32.png?1696513778",
+    "symbol": "VBNT",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x490bbbc2485e99989ba39b34802fafa58e26aba4": {
+    "assetId": "eip155:1/erc20:0x490bbbc2485e99989ba39b34802fafa58e26aba4",
+    "chainId": "eip155:1",
+    "name": "Morpho Aave Wrapped Ether",
+    "precision": 18,
+    "color": "#E8E9EC",
+    "icon": "https://assets.coingecko.com/coins/images/29873/thumb/maWETH.jpg?1696528798",
+    "symbol": "MAWETH",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x490e3f4af13e1616ec97a8c6600c1061a8d0253e": {
+    "assetId": "eip155:1/erc20:0x490e3f4af13e1616ec97a8c6600c1061a8d0253e",
+    "chainId": "eip155:1",
+    "name": "Terran Coin on Ethereum",
+    "precision": 18,
+    "color": "#1C5494",
+    "icon": "https://assets.coingecko.com/coins/images/15351/thumb/TERRAN-500px.png?1696515000",
+    "symbol": "TRR",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x491604c0fdf08347dd1fa4ee062a822a5dd06b5d": {
+    "assetId": "eip155:1/erc20:0x491604c0fdf08347dd1fa4ee062a822a5dd06b5d",
+    "chainId": "eip155:1",
+    "name": "Cartesi on Ethereum",
+    "precision": 18,
+    "color": "#141414",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x491604c0FDF08347Dd1fa4Ee062a822A5DD06B5D/logo.png",
+    "symbol": "CTSI",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x491e136ff7ff03e6ab097e54734697bb5802fc1c": {
+    "assetId": "eip155:1/erc20:0x491e136ff7ff03e6ab097e54734697bb5802fc1c",
+    "chainId": "eip155:1",
+    "name": "Kattana on Ethereum",
+    "precision": 18,
+    "color": "#222222",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x491E136FF7FF03E6aB097E54734697Bb5802FC1C/logo.png",
+    "symbol": "KTN",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x492798fb464e77cb3cda62b9a2c3c65162db198e": {
+    "assetId": "eip155:1/erc20:0x492798fb464e77cb3cda62b9a2c3c65162db198e",
+    "chainId": "eip155:1",
+    "name": "AmpliFi DAO on Ethereum",
+    "precision": 18,
+    "color": "#FC542C",
+    "icon": "https://assets.coingecko.com/coins/images/29137/thumb/original-icon-transparent.png?1696528098",
+    "symbol": "AGG",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x4946fcea7c692606e8908002e55a582af44ac121": {
+    "assetId": "eip155:1/erc20:0x4946fcea7c692606e8908002e55a582af44ac121",
+    "chainId": "eip155:1",
+    "name": "FOAM",
+    "precision": 18,
+    "color": "#71524E",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x4946Fcea7C692606e8908002e55A582af44AC121/logo.png",
+    "symbol": "FOAM",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x49642110b712c1fd7261bc074105e9e44676c68f": {
+    "assetId": "eip155:1/erc20:0x49642110b712c1fd7261bc074105e9e44676c68f",
+    "chainId": "eip155:1",
+    "name": "DinoLFG",
+    "precision": 18,
+    "color": "#D8932F",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x49642110B712C1FD7261Bc074105E9E44676c68F/logo.png",
+    "symbol": "DINO",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x49849c98ae39fff122806c06791fa73784fb3675": {
+    "assetId": "eip155:1/erc20:0x49849c98ae39fff122806c06791fa73784fb3675",
+    "chainId": "eip155:1",
+    "name": "LP renBTC Curve",
+    "precision": 18,
+    "color": "#147996",
+    "icon": "https://assets.coingecko.com/coins/images/11957/thumb/Curvefi_renCrv_32.png?1696511817",
+    "symbol": "RENBTCCURVE",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x499568c250ab2a42292261d6121525d70691894b": {
+    "assetId": "eip155:1/erc20:0x499568c250ab2a42292261d6121525d70691894b",
+    "chainId": "eip155:1",
+    "name": "KROWN on Ethereum",
+    "precision": 18,
+    "color": "#19202E",
+    "icon": "https://assets.coingecko.com/coins/images/16530/thumb/KRW_token_logo_200x200.png?1696516093",
+    "symbol": "KRW",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x49bf0220c9ce17e52dcca3d217231746d676085b": {
+    "assetId": "eip155:1/erc20:0x49bf0220c9ce17e52dcca3d217231746d676085b",
+    "chainId": "eip155:1",
+    "name": "Vixco",
+    "precision": 18,
+    "color": "#14C0E8",
+    "icon": "https://assets.coingecko.com/coins/images/15405/thumb/vixco.png?1696515051",
+    "symbol": "VIX",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x49d72e3973900a195a155a46441f0c08179fdb64": {
+    "assetId": "eip155:1/erc20:0x49d72e3973900a195a155a46441f0c08179fdb64",
+    "chainId": "eip155:1",
+    "name": "Cream ETH 2",
+    "precision": 18,
+    "color": "#E2EBEE",
+    "icon": "https://assets.coingecko.com/coins/images/13568/thumb/creth2.png?1696513322",
+    "symbol": "CRETH2",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x49e833337ece7afe375e44f4e3e8481029218e5c": {
+    "assetId": "eip155:1/erc20:0x49e833337ece7afe375e44f4e3e8481029218e5c",
+    "chainId": "eip155:1",
+    "name": "Value DeFi",
+    "precision": 18,
+    "color": "#F3F3F4",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x49E833337ECe7aFE375e44F4E3e8481029218E5c/logo.png",
+    "symbol": "VALUE",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x4a1d542b52a95ad01ddc70c2e7df0c7bbaadc56f": {
+    "assetId": "eip155:1/erc20:0x4a1d542b52a95ad01ddc70c2e7df0c7bbaadc56f",
+    "chainId": "eip155:1",
+    "name": "Niftify",
+    "precision": 18,
+    "color": "#561980",
+    "icon": "https://assets.coingecko.com/coins/images/20558/thumb/AWPDLxLK_400x400.jpg?1696519967",
+    "symbol": "NIFT",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x4a220e6096b25eadb88358cb44068a3248254675": {
+    "assetId": "eip155:1/erc20:0x4a220e6096b25eadb88358cb44068a3248254675",
+    "chainId": "eip155:1",
+    "name": "Quant",
+    "precision": 18,
+    "color": "#2AB6B6",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x4a220E6096B25EADb88358cb44068A3248254675/logo.png",
+    "symbol": "QNT",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x4a3fe75762017db0ed73a71c9a06db7768db5e66": {
+    "assetId": "eip155:1/erc20:0x4a3fe75762017db0ed73a71c9a06db7768db5e66",
+    "chainId": "eip155:1",
+    "name": "COMP yVault",
+    "precision": 18,
+    "color": "#04D091",
+    "icon": "https://assets.coingecko.com/coins/images/28786/thumb/yvCOMP-128-0x4A3FE75762017DB0eD73a71C9A06db7768DB5e66.png?1696527765",
+    "symbol": "YVCOMP",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x4a527d8fc13c5203ab24ba0944f4cb14658d1db6": {
+    "assetId": "eip155:1/erc20:0x4a527d8fc13c5203ab24ba0944f4cb14658d1db6",
+    "chainId": "eip155:1",
+    "name": "Morpheus Labs on Ethereum",
+    "precision": 18,
+    "color": "#14A4D4",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x4a527d8fc13C5203AB24BA0944F4Cb14658D1Db6/logo.png",
+    "symbol": "MITX",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x4a615bb7166210cce20e6642a6f8fb5d4d044496": {
+    "assetId": "eip155:1/erc20:0x4a615bb7166210cce20e6642a6f8fb5d4d044496",
+    "chainId": "eip155:1",
+    "name": "NAOS Finance on Ethereum",
+    "precision": 18,
+    "color": "#4131C5",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x4a615bB7166210CCe20E6642a6f8Fb5d4D044496/logo.png",
+    "symbol": "NAOS",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x4a621d9f1b19296d1c0f87637b3a8d4978e9bf82": {
+    "assetId": "eip155:1/erc20:0x4a621d9f1b19296d1c0f87637b3a8d4978e9bf82",
+    "chainId": "eip155:1",
+    "name": "CyberFM on Ethereum",
+    "precision": 18,
+    "color": "#DDE2E5",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x4a621d9f1b19296d1C0f87637b3A8D4978e9bf82/logo.png",
+    "symbol": "CYFM",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x4a8f5f96d5436e43112c2fbc6a9f70da9e4e16d4": {
+    "assetId": "eip155:1/erc20:0x4a8f5f96d5436e43112c2fbc6a9f70da9e4e16d4",
+    "chainId": "eip155:1",
+    "name": "Internxt",
+    "precision": 8,
+    "color": "#C8CFD7",
+    "icon": "https://assets.coingecko.com/coins/images/986/thumb/inxt.png?1696502099",
+    "symbol": "INXT",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x4aa41bc1649c9c3177ed16caaa11482295fc7441": {
+    "assetId": "eip155:1/erc20:0x4aa41bc1649c9c3177ed16caaa11482295fc7441",
+    "chainId": "eip155:1",
+    "name": "XFai",
+    "precision": 18,
+    "color": "#801C40",
+    "icon": "https://assets.coingecko.com/coins/images/14904/thumb/XFAI_Logo200x200.jpg?1696514567",
+    "symbol": "XFIT",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x4abb9cc67bd3da9eb966d1159a71a0e68bd15432": {
+    "assetId": "eip155:1/erc20:0x4abb9cc67bd3da9eb966d1159a71a0e68bd15432",
+    "chainId": "eip155:1",
+    "name": "KelVPN on Ethereum",
+    "precision": 18,
+    "color": "#E43B56",
+    "icon": "https://assets.coingecko.com/coins/images/14851/thumb/logokelvpn200x200.png?1696514517",
+    "symbol": "KEL",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x4ad0b81f92b16624bbcf46fc0030cfbbf8d02376": {
+    "assetId": "eip155:1/erc20:0x4ad0b81f92b16624bbcf46fc0030cfbbf8d02376",
+    "chainId": "eip155:1",
+    "name": "Unagii Dai",
+    "precision": 18,
+    "color": "#FCB420",
+    "icon": "https://assets.coingecko.com/coins/images/13782/thumb/uDAI.png?1696513523",
+    "symbol": "UDAI",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x4ad434b8cdc3aa5ac97932d6bd18b5d313ab0f6f": {
+    "assetId": "eip155:1/erc20:0x4ad434b8cdc3aa5ac97932d6bd18b5d313ab0f6f",
+    "chainId": "eip155:1",
+    "name": "EverMoon ERC",
+    "precision": 18,
+    "color": "#050C18",
+    "icon": "https://assets.coingecko.com/coins/images/30720/thumb/evermoon.png?1696529591",
+    "symbol": "EVERMOON",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x4aecc899b68f086c008e920eafdc2a66d88aa7f1": {
+    "assetId": "eip155:1/erc20:0x4aecc899b68f086c008e920eafdc2a66d88aa7f1",
+    "chainId": "eip155:1",
+    "name": "SAFEMARS",
+    "precision": 9,
+    "color": "#192530",
+    "icon": "https://assets.coingecko.com/coins/images/32292/thumb/LOGO1.png?1697182930",
+    "symbol": "SAFEMARS",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x4af5ff1a60a6ef6c7c8f9c4e304cd9051fca3ec0": {
+    "assetId": "eip155:1/erc20:0x4af5ff1a60a6ef6c7c8f9c4e304cd9051fca3ec0",
+    "chainId": "eip155:1",
+    "name": "Rigel Protocol on Ethereum",
+    "precision": 18,
+    "color": "#2E94C0",
+    "icon": "https://assets.coingecko.com/coins/images/15837/thumb/A_qRYvB2_400x400.png?1696515455",
+    "symbol": "RGP",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x4b0181102a0112a2ef11abee5563bb4a3176c9d7": {
+    "assetId": "eip155:1/erc20:0x4b0181102a0112a2ef11abee5563bb4a3176c9d7",
+    "chainId": "eip155:1",
+    "name": "cSUSHI",
+    "precision": 8,
+    "color": "#D1E1EE",
+    "icon": "https://assets.coingecko.com/coins/images/17529/thumb/csushi.PNG?1696517067",
+    "symbol": "CSUSHI",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x4b0f027d0b694aae2761ed2d426295d4f949f5d0": {
+    "assetId": "eip155:1/erc20:0x4b0f027d0b694aae2761ed2d426295d4f949f5d0",
+    "chainId": "eip155:1",
+    "name": "Pollchain",
+    "precision": 18,
+    "color": "#D9D9DB",
+    "icon": "https://assets.coingecko.com/coins/images/19034/thumb/pollchain.PNG?1696518486",
+    "symbol": "POLL",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x4b13006980acb09645131b91d259eaa111eaf5ba": {
+    "assetId": "eip155:1/erc20:0x4b13006980acb09645131b91d259eaa111eaf5ba",
+    "chainId": "eip155:1",
+    "name": "Mycelium on Ethereum",
+    "precision": 18,
+    "color": "#D5DDD5",
+    "icon": "https://assets.coingecko.com/coins/images/26874/thumb/MYC_Token.png?1696525933",
+    "symbol": "MYC",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x4b19c70da4c6fa4baa0660825e889d2f7eabc279": {
+    "assetId": "eip155:1/erc20:0x4b19c70da4c6fa4baa0660825e889d2f7eabc279",
+    "chainId": "eip155:1",
+    "name": "Gamium on Ethereum",
+    "precision": 18,
+    "color": "#171718",
+    "icon": "https://assets.coingecko.com/coins/images/22749/thumb/14304.png?1696522053",
+    "symbol": "GMM",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x4b1d0b9f081468d780ca1d5d79132b64301085d1": {
+    "assetId": "eip155:1/erc20:0x4b1d0b9f081468d780ca1d5d79132b64301085d1",
+    "chainId": "eip155:1",
+    "name": "Lumerin",
+    "precision": 8,
+    "color": "#3A8B97",
+    "icon": "https://assets.coingecko.com/coins/images/24593/thumb/Lumerin-icon.png?1696523767",
+    "symbol": "LMR",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x4b1e80cac91e2216eeb63e29b957eb91ae9c2be8": {
+    "assetId": "eip155:1/erc20:0x4b1e80cac91e2216eeb63e29b957eb91ae9c2be8",
+    "chainId": "eip155:1",
+    "name": "Jupiter on Ethereum",
+    "precision": 18,
+    "color": "#049444",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x4B1E80cAC91e2216EEb63e29B957eB91Ae9C2Be8/logo.png",
+    "symbol": "JUP",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x4b520c812e8430659fc9f12f6d0c39026c83588d": {
+    "assetId": "eip155:1/erc20:0x4b520c812e8430659fc9f12f6d0c39026c83588d",
+    "chainId": "eip155:1",
+    "name": "Decentral Games on Ethereum",
+    "precision": 18,
+    "color": "#046CFC",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x4b520c812E8430659FC9f12f6d0c39026C83588D/logo.png",
+    "symbol": "DG",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x4b5f49487ea7b3609b1ad05459be420548789f1f": {
+    "assetId": "eip155:1/erc20:0x4b5f49487ea7b3609b1ad05459be420548789f1f",
+    "chainId": "eip155:1",
+    "name": "LeverFi",
+    "precision": 18,
+    "color": "#343937",
+    "icon": "https://assets.coingecko.com/coins/images/26205/thumb/WI72SpBl_400x400.jpeg?1696525291",
+    "symbol": "LEVER",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x4b7ffcb2b92fb4890f22f62a52fb7a180eab818e": {
+    "assetId": "eip155:1/erc20:0x4b7ffcb2b92fb4890f22f62a52fb7a180eab818e",
+    "chainId": "eip155:1",
+    "name": "DIVA Protocol",
+    "precision": 18,
+    "color": "#05050B",
+    "icon": "https://assets.coingecko.com/coins/images/31467/thumb/DIVA-200px-square.png?1696530280",
+    "symbol": "DIVA",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x4b9278b94a1112cad404048903b8d343a810b07e": {
+    "assetId": "eip155:1/erc20:0x4b9278b94a1112cad404048903b8d343a810b07e",
+    "chainId": "eip155:1",
+    "name": "Hifi Finance",
+    "precision": 18,
+    "color": "#6C2CF4",
+    "icon": "https://assets.coingecko.com/coins/images/28712/thumb/hft.png?1696527693",
+    "symbol": "HIFI",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x4ba942d56a3b95b03c0af7a91b7294e0e95271f4": {
+    "assetId": "eip155:1/erc20:0x4ba942d56a3b95b03c0af7a91b7294e0e95271f4",
+    "chainId": "eip155:1",
+    "name": "Super Cycle",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/32754/thumb/SUPERCYCLE.png?1699265229",
+    "symbol": "RICH",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x4bb3205bf648b7f59ef90dee0f1b62f6116bc7ca": {
+    "assetId": "eip155:1/erc20:0x4bb3205bf648b7f59ef90dee0f1b62f6116bc7ca",
+    "chainId": "eip155:1",
+    "name": "NBX on Ethereum",
+    "precision": 18,
+    "color": "#0885F5",
+    "icon": "https://assets.coingecko.com/coins/images/14746/thumb/NBX.png?1696514416",
+    "symbol": "BYN",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x4bc2213ee6c99dc38099690603f044980a4f5dba": {
+    "assetId": "eip155:1/erc20:0x4bc2213ee6c99dc38099690603f044980a4f5dba",
+    "chainId": "eip155:1",
+    "name": "The Bear",
+    "precision": 18,
+    "color": "#3B3B3B",
+    "icon": "https://assets.coingecko.com/coins/images/31937/thumb/e515844ff6928bb75517196e3e741338.png?1696530744",
+    "symbol": "BEAR",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x4bc3263eb5bb2ef7ad9ab6fb68be80e43b43801f": {
+    "assetId": "eip155:1/erc20:0x4bc3263eb5bb2ef7ad9ab6fb68be80e43b43801f",
+    "chainId": "eip155:1",
+    "name": "Voucher Ethereum 2 0",
+    "precision": 18,
+    "color": "#667CEA",
+    "icon": "https://assets.coingecko.com/coins/images/29683/thumb/vETH_200.png?1696528617",
+    "symbol": "VETH",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x4bcea5e4d0f6ed53cf45e7a28febb2d3621d7438": {
+    "assetId": "eip155:1/erc20:0x4bcea5e4d0f6ed53cf45e7a28febb2d3621d7438",
+    "chainId": "eip155:1",
+    "name": "Modex",
+    "precision": 18,
+    "color": "#642C84",
+    "icon": "https://assets.coingecko.com/coins/images/2851/thumb/LhWIeAg.png?1696503608",
+    "symbol": "MODEX",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x4bd70556ae3f8a6ec6c4080a0c327b24325438f3": {
+    "assetId": "eip155:1/erc20:0x4bd70556ae3f8a6ec6c4080a0c327b24325438f3",
+    "chainId": "eip155:1",
+    "name": "HXRO",
+    "precision": 18,
+    "color": "#FB04CB",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x4bD70556ae3F8a6eC6C4080A0C327B24325438f3/logo.png",
+    "symbol": "HXRO",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x4bdcb66b968060d9390c1d12bd29734496205581": {
+    "assetId": "eip155:1/erc20:0x4bdcb66b968060d9390c1d12bd29734496205581",
+    "chainId": "eip155:1",
+    "name": "Acquire Fi",
+    "precision": 18,
+    "color": "#4CBCB4",
+    "icon": "https://assets.coingecko.com/coins/images/27199/thumb/ACQisotypeSept2022_1000x1000px.png?1696526248",
+    "symbol": "ACQ",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x4be10da47a07716af28ad199fbe020501bddd7af": {
+    "assetId": "eip155:1/erc20:0x4be10da47a07716af28ad199fbe020501bddd7af",
+    "chainId": "eip155:1",
+    "name": "XT com",
+    "precision": 18,
+    "color": "#EBBF5A",
+    "icon": "https://assets.coingecko.com/coins/images/8391/thumb/XT_token.jpg?1696508583",
+    "symbol": "XT",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x4be2b2c45b432ba362f198c08094017b61e3bdc6": {
+    "assetId": "eip155:1/erc20:0x4be2b2c45b432ba362f198c08094017b61e3bdc6",
+    "chainId": "eip155:1",
+    "name": "Marswap",
+    "precision": 18,
+    "color": "#D64207",
+    "icon": "https://assets.coingecko.com/coins/images/31280/thumb/Mars-1.png?1696530103",
+    "symbol": "MSWAP",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x4c05f1e65069a8c0694470720be77e50d2b212d6": {
+    "assetId": "eip155:1/erc20:0x4c05f1e65069a8c0694470720be77e50d2b212d6",
+    "chainId": "eip155:1",
+    "name": "0xFreelance",
+    "precision": 9,
+    "color": "#04ACD4",
+    "icon": "https://assets.coingecko.com/coins/images/32173/thumb/0xfreelance-icon-200px.png?1696742117",
+    "symbol": "0XFREE",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x4c0bc0b3c734a573d28c627a96b95a1f1a7596fb": {
+    "assetId": "eip155:1/erc20:0x4c0bc0b3c734a573d28c627a96b95a1f1a7596fb",
+    "chainId": "eip155:1",
+    "name": "Husbant",
+    "precision": 8,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/32863/thumb/husbant.png?1699670240",
+    "symbol": "HUSBANT",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x4c0f743928ca8fa7fb24ad89669c8a7838f34917": {
+    "assetId": "eip155:1/erc20:0x4c0f743928ca8fa7fb24ad89669c8a7838f34917",
+    "chainId": "eip155:1",
+    "name": "STACKER AI",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/32865/thumb/IMG_1751.png?1699670330",
+    "symbol": "STACK",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x4c11249814f11b9346808179cf06e71ac328c1b5": {
+    "assetId": "eip155:1/erc20:0x4c11249814f11b9346808179cf06e71ac328c1b5",
+    "chainId": "eip155:1",
+    "name": "Oraichain on Ethereum",
+    "precision": 18,
+    "color": "#04ACEC",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x4c11249814f11b9346808179Cf06e71ac328c1b5/logo.png",
+    "symbol": "ORAI",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x4c19596f5aaff459fa38b0f7ed92f11ae6543784": {
+    "assetId": "eip155:1/erc20:0x4c19596f5aaff459fa38b0f7ed92f11ae6543784",
+    "chainId": "eip155:1",
+    "name": "TrueFi",
+    "precision": 8,
+    "color": "#1C5CFC",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x4C19596f5aAfF459fA38B0f7eD92F11AE6543784/logo.png",
+    "symbol": "TRU",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x4c2e59d098df7b6cbae0848d66de2f8a4889b9c3": {
+    "assetId": "eip155:1/erc20:0x4c2e59d098df7b6cbae0848d66de2f8a4889b9c3",
+    "chainId": "eip155:1",
+    "name": "Fodl Finance on Ethereum",
+    "precision": 18,
+    "color": "#FC685D",
+    "icon": "https://assets.coingecko.com/coins/images/19040/thumb/Fodl_Symbol_Gradient.png?1696518491",
+    "symbol": "FODL",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x4c3a8eceb656ec63eae80a4ebd565e4887db6160": {
+    "assetId": "eip155:1/erc20:0x4c3a8eceb656ec63eae80a4ebd565e4887db6160",
+    "chainId": "eip155:1",
+    "name": "SokuSwap on Ethereum",
+    "precision": 18,
+    "color": "#2CC1F4",
+    "icon": "https://assets.coingecko.com/coins/images/18378/thumb/VCIEHaG.png?1696517870",
+    "symbol": "SOKU",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x4c3bae16c79c30eeb1004fb03c878d89695e3a99": {
+    "assetId": "eip155:1/erc20:0x4c3bae16c79c30eeb1004fb03c878d89695e3a99",
+    "chainId": "eip155:1",
+    "name": "Autumn",
+    "precision": 18,
+    "color": "#FCAC24",
+    "icon": "https://assets.coingecko.com/coins/images/25366/thumb/autumn.png?1696524499",
+    "symbol": "AUTUMN",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x4c45bbec2ff7810ef4a77ad7bd4757c446fe4155": {
+    "assetId": "eip155:1/erc20:0x4c45bbec2ff7810ef4a77ad7bd4757c446fe4155",
+    "chainId": "eip155:1",
+    "name": "Jungle Labz",
+    "precision": 18,
+    "color": "#39D428",
+    "icon": "https://assets.coingecko.com/coins/images/31742/thumb/Jungle.png?1696530561",
+    "symbol": "JNGL",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x4c584cd339bdde73b7f5210486dd8bbeee3fde6d": {
+    "assetId": "eip155:1/erc20:0x4c584cd339bdde73b7f5210486dd8bbeee3fde6d",
+    "chainId": "eip155:1",
+    "name": "ShibElon on Ethereum",
+    "precision": 9,
+    "color": "#BEE6E3",
+    "icon": "https://assets.coingecko.com/coins/images/20434/thumb/shibelon.png?1696519841",
+    "symbol": "SHIBELON",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x4c5cb5d87709387f8821709f7a6664f00dcf0c93": {
+    "assetId": "eip155:1/erc20:0x4c5cb5d87709387f8821709f7a6664f00dcf0c93",
+    "chainId": "eip155:1",
+    "name": "Raft",
+    "precision": 18,
+    "color": "#FCECE0",
+    "icon": "https://assets.coingecko.com/coins/images/30915/thumb/Logomark_Transparent_Background_200x200.png?1696529760",
+    "symbol": "RAFT",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x4c601dc69affb0d4fc8de1ac303705e432a4a27e": {
+    "assetId": "eip155:1/erc20:0x4c601dc69affb0d4fc8de1ac303705e432a4a27e",
+    "chainId": "eip155:1",
+    "name": "Konnect",
+    "precision": 18,
+    "color": "#1C5553",
+    "icon": "https://assets.coingecko.com/coins/images/25756/thumb/EAO_5JhW_400x400.jpg?1696524842",
+    "symbol": "KCT",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x4c612e3b15b96ff9a6faed838f8d07d479a8dd4c": {
+    "assetId": "eip155:1/erc20:0x4c612e3b15b96ff9a6faed838f8d07d479a8dd4c",
+    "chainId": "eip155:1",
+    "name": "Aave v3 sDAI on Ethereum",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/32891/thumb/sdai.png?1699785595",
+    "symbol": "ASDAI",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x4c6e2c495b974b8d4220e370f23c7e0e1da9b644": {
+    "assetId": "eip155:1/erc20:0x4c6e2c495b974b8d4220e370f23c7e0e1da9b644",
+    "chainId": "eip155:1",
+    "name": "Smiley Coin",
+    "precision": 9,
+    "color": "#F9F5DF",
+    "icon": "https://assets.coingecko.com/coins/images/30809/thumb/photo_2023-06-21_03-25-14.jpg?1696529666",
+    "symbol": "SMILEY",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x4c6ec08cf3fc987c6c4beb03184d335a2dfc4042": {
+    "assetId": "eip155:1/erc20:0x4c6ec08cf3fc987c6c4beb03184d335a2dfc4042",
+    "chainId": "eip155:1",
+    "name": "MurAll on Ethereum",
+    "precision": 18,
+    "color": "#1C1A1C",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x4C6eC08CF3fc987c6C4BEB03184D335A2dFc4042/logo.png",
+    "symbol": "PAINT",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x4cc19356f2d37338b9802aa8e8fc58b0373296e7": {
+    "assetId": "eip155:1/erc20:0x4cc19356f2d37338b9802aa8e8fc58b0373296e7",
+    "chainId": "eip155:1",
+    "name": "SelfKey",
+    "precision": 18,
+    "color": "#4FB6D9",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x4CC19356f2D37338b9802aa8E8fc58B0373296E7/logo.png",
+    "symbol": "KEY",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x4cd0c43b0d53bc318cc5342b77eb6f124e47f526": {
+    "assetId": "eip155:1/erc20:0x4cd0c43b0d53bc318cc5342b77eb6f124e47f526",
+    "chainId": "eip155:1",
+    "name": "FreeRossDAO",
+    "precision": 18,
+    "color": "#434343",
+    "icon": "https://assets.coingecko.com/coins/images/21648/thumb/free.jpg?1696521006",
+    "symbol": "FREE",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x4ce4c025692b3142dbde1cd432ef55b9a8d18701": {
+    "assetId": "eip155:1/erc20:0x4ce4c025692b3142dbde1cd432ef55b9a8d18701",
+    "chainId": "eip155:1",
+    "name": "Decanect",
+    "precision": 9,
+    "color": "#2486E7",
+    "icon": "https://assets.coingecko.com/coins/images/27309/thumb/200-x-200-jpeg.jpg?1696526359",
+    "symbol": "DCNT",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x4ce9975a510d9b02ecca7541bc94c5530c1b1929": {
+    "assetId": "eip155:1/erc20:0x4ce9975a510d9b02ecca7541bc94c5530c1b1929",
+    "chainId": "eip155:1",
+    "name": "AficionaDAO",
+    "precision": 18,
+    "color": "#D0D0D0",
+    "icon": "https://assets.coingecko.com/coins/images/31899/thumb/AficionaDAO.png?1696530710",
+    "symbol": "ADAO",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x4cf488387f035ff08c371515562cba712f9015d4": {
+    "assetId": "eip155:1/erc20:0x4cf488387f035ff08c371515562cba712f9015d4",
+    "chainId": "eip155:1",
+    "name": "WePower",
+    "precision": 18,
+    "color": "#041CFA",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x4CF488387F035FF08c371515562CBa712f9015d4/logo.png",
+    "symbol": "WPR",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x4cf89ca06ad997bc732dc876ed2a7f26a9e7f361": {
+    "assetId": "eip155:1/erc20:0x4cf89ca06ad997bc732dc876ed2a7f26a9e7f361",
+    "chainId": "eip155:1",
+    "name": "Mysterium on Ethereum",
+    "precision": 18,
+    "color": "#6F2463",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x4Cf89ca06ad997bC732Dc876ed2A7F26a9E7f361/logo.png",
+    "symbol": "MYST",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x4cff49d0a19ed6ff845a9122fa912abcfb1f68a6": {
+    "assetId": "eip155:1/erc20:0x4cff49d0a19ed6ff845a9122fa912abcfb1f68a6",
+    "chainId": "eip155:1",
+    "name": "WadzPay",
+    "precision": 18,
+    "color": "#FCC434",
+    "icon": "https://assets.coingecko.com/coins/images/13083/thumb/200xWadzToken.png?1696512871",
+    "symbol": "WTK",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x4d224452801aced8b2f0aebe155379bb5d594381": {
+    "assetId": "eip155:1/erc20:0x4d224452801aced8b2f0aebe155379bb5d594381",
+    "chainId": "eip155:1",
+    "name": "ApeCoin on Ethereum",
+    "precision": 18,
+    "color": "#074BD4",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x4d224452801ACEd8B2F0aebE155379bb5D594381/logo.png",
+    "symbol": "APE",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x4d2ee5dae46c86da2ff521f7657dad98834f97b8": {
+    "assetId": "eip155:1/erc20:0x4d2ee5dae46c86da2ff521f7657dad98834f97b8",
+    "chainId": "eip155:1",
+    "name": "Pepemon Pepeballs",
+    "precision": 18,
+    "color": "#C59F8B",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x4D2eE5DAe46C86DA2FF521F7657dad98834f97b8/logo.png",
+    "symbol": "PPBLZ",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x4d40ea8fab99544a64c6b7c2c98dd19d7bc170a7": {
+    "assetId": "eip155:1/erc20:0x4d40ea8fab99544a64c6b7c2c98dd19d7bc170a7",
+    "chainId": "eip155:1",
+    "name": "XFather Bot",
+    "precision": 18,
+    "color": "#A45CFC",
+    "icon": "https://assets.coingecko.com/coins/images/31540/thumb/icon2.200x200.png?1696530353",
+    "symbol": "XFBOT",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x4d4d883f920f7c0c36a1be71a02aa0cde2aa22d1": {
+    "assetId": "eip155:1/erc20:0x4d4d883f920f7c0c36a1be71a02aa0cde2aa22d1",
+    "chainId": "eip155:1",
+    "name": "Opticash on Ethereum",
+    "precision": 18,
+    "color": "#B0CC2D",
+    "icon": "https://assets.coingecko.com/coins/images/29362/thumb/opticash_logo_256*256.jpg?1696528310",
+    "symbol": "OPCH",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x4d4f3715050571a447fffa2cd4cf091c7014ca5c": {
+    "assetId": "eip155:1/erc20:0x4d4f3715050571a447fffa2cd4cf091c7014ca5c",
+    "chainId": "eip155:1",
+    "name": "Summer",
+    "precision": 18,
+    "color": "#E46C24",
+    "icon": "https://assets.coingecko.com/coins/images/25365/thumb/summer.png?1696524498",
+    "symbol": "SUMMER",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x4d5f47fa6a74757f35c14fd3a6ef8e3c9bc514e8": {
+    "assetId": "eip155:1/erc20:0x4d5f47fa6a74757f35c14fd3a6ef8e3c9bc514e8",
+    "chainId": "eip155:1",
+    "name": "Aave v3 WETH on Ethereum",
+    "precision": 18,
+    "color": "#D3D1D1",
+    "icon": "https://assets.coingecko.com/coins/images/32882/thumb/WETH_%281%29.png?1699716492",
+    "symbol": "AWETH",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x4d67edef87a5ff910954899f4e5a0aaf107afd42": {
+    "assetId": "eip155:1/erc20:0x4d67edef87a5ff910954899f4e5a0aaf107afd42",
+    "chainId": "eip155:1",
+    "name": "BlueSparrow  OLD ",
+    "precision": 9,
+    "color": "#2D8CBA",
+    "icon": "https://assets.coingecko.com/coins/images/19995/thumb/bluesparrow.png?1696519417",
+    "symbol": "BLUESPARROW",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x4d953cf077c0c95ba090226e59a18fcf97db44ec": {
+    "assetId": "eip155:1/erc20:0x4d953cf077c0c95ba090226e59a18fcf97db44ec",
+    "chainId": "eip155:1",
+    "name": "Mini",
+    "precision": 18,
+    "color": "#AB25AC",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x4D953cf077c0C95Ba090226E59A18FcF97db44EC/logo.png",
+    "symbol": "MINI",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x4d9b0b7a6db042cb990d36a0df5aa2960e552f16": {
+    "assetId": "eip155:1/erc20:0x4d9b0b7a6db042cb990d36a0df5aa2960e552f16",
+    "chainId": "eip155:1",
+    "name": "Hpohs888inu",
+    "precision": 9,
+    "color": "#BC8C3B",
+    "icon": "https://assets.coingecko.com/coins/images/31355/thumb/200xlogo.png?1696530172",
+    "symbol": "TETHER",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x4da08a1bff50be96bded5c7019227164b49c2bfc": {
+    "assetId": "eip155:1/erc20:0x4da08a1bff50be96bded5c7019227164b49c2bfc",
+    "chainId": "eip155:1",
+    "name": "Mononoke Inu",
+    "precision": 9,
+    "color": "#C6C5C5",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x4da08a1Bff50BE96bdeD5C7019227164b49C2bFc/logo.png",
+    "symbol": "MONONOKE-INU",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x4da0c48376c277cdbd7fc6fdc6936dee3e4adf75": {
+    "assetId": "eip155:1/erc20:0x4da0c48376c277cdbd7fc6fdc6936dee3e4adf75",
+    "chainId": "eip155:1",
+    "name": "Epik Prime on Ethereum",
+    "precision": 18,
+    "color": "#E9DFEF",
+    "icon": "https://assets.coingecko.com/coins/images/17907/thumb/EPIK_Prime_LOGO.jpg?1696517427",
+    "symbol": "EPIK",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x4da34f8264cb33a5c9f17081b9ef5ff6091116f4": {
+    "assetId": "eip155:1/erc20:0x4da34f8264cb33a5c9f17081b9ef5ff6091116f4",
+    "chainId": "eip155:1",
+    "name": "ELYFI on Ethereum",
+    "precision": 18,
+    "color": "#04BCFC",
+    "icon": "https://assets.coingecko.com/coins/images/23733/thumb/elyfi_logo.png?1696522936",
+    "symbol": "ELFI",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x4da9b813057d04baef4e5800e36083717b4a0341": {
+    "assetId": "eip155:1/erc20:0x4da9b813057d04baef4e5800e36083717b4a0341",
+    "chainId": "eip155:1",
+    "name": "Aave TUSD v1",
+    "precision": 18,
+    "color": "#A672AE",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x4DA9b813057D04BAef4e5800E36083717b4a0341/logo.png",
+    "symbol": "ATUSD",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x4daeb4a06f70f4b1a5c329115731fe4b89c0b227": {
+    "assetId": "eip155:1/erc20:0x4daeb4a06f70f4b1a5c329115731fe4b89c0b227",
+    "chainId": "eip155:1",
+    "name": "Quasacoin",
+    "precision": 18,
+    "color": "#B77D2D",
+    "icon": "https://assets.coingecko.com/coins/images/21965/thumb/coin_200.png?1696521314",
+    "symbol": "QUA",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x4db26817c88a57d2ef84cfd90168f535ee83bda9": {
+    "assetId": "eip155:1/erc20:0x4db26817c88a57d2ef84cfd90168f535ee83bda9",
+    "chainId": "eip155:1",
+    "name": "hiAZUKI",
+    "precision": 18,
+    "color": "#E5B5B9",
+    "icon": "https://assets.coingecko.com/coins/images/28565/thumb/hiazuki.png?1696527554",
+    "symbol": "HIAZUKI",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x4db2c02831c9ac305ff9311eb661f80f1df61e07": {
+    "assetId": "eip155:1/erc20:0x4db2c02831c9ac305ff9311eb661f80f1df61e07",
+    "chainId": "eip155:1",
+    "name": "oneICHI",
+    "precision": 18,
+    "color": "#243680",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x4db2c02831c9ac305FF9311Eb661f80f1dF61e07/logo.png",
+    "symbol": "ONEICHI",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x4db57d585fa82ca32d25086ddc069d899f08d455": {
+    "assetId": "eip155:1/erc20:0x4db57d585fa82ca32d25086ddc069d899f08d455",
+    "chainId": "eip155:1",
+    "name": "Enoch",
+    "precision": 18,
+    "color": "#7C530F",
+    "icon": "https://assets.coingecko.com/coins/images/30810/thumb/20230619_001351.png?1696529667",
+    "symbol": "ENOCH",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x4dd28568d05f09b02220b09c2cb307bfd837cb95": {
+    "assetId": "eip155:1/erc20:0x4dd28568d05f09b02220b09c2cb307bfd837cb95",
+    "chainId": "eip155:1",
+    "name": "FingerprintsDAO",
+    "precision": 18,
+    "color": "#E7E8EA",
+    "icon": "https://assets.coingecko.com/coins/images/18143/thumb/prints.png?1696517646",
+    "symbol": "PRINTS",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x4dd672e77c795844fe3a464ef8ef0faae617c8fb": {
+    "assetId": "eip155:1/erc20:0x4dd672e77c795844fe3a464ef8ef0faae617c8fb",
+    "chainId": "eip155:1",
+    "name": "CONUN",
+    "precision": 18,
+    "color": "#CFB124",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x4Dd672e77c795844fe3A464eF8eF0FAAe617C8fB/logo.png",
+    "symbol": "CON",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x4dd942baa75810a3c1e876e79d5cd35e09c97a76": {
+    "assetId": "eip155:1/erc20:0x4dd942baa75810a3c1e876e79d5cd35e09c97a76",
+    "chainId": "eip155:1",
+    "name": "Dash 2 Trade",
+    "precision": 18,
+    "color": "#1C242C",
+    "icon": "https://assets.coingecko.com/coins/images/28707/thumb/logo.png?1696527689",
+    "symbol": "D2T",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x4ddc2d193948926d02f9b1fe9e1daa0718270ed5": {
+    "assetId": "eip155:1/erc20:0x4ddc2d193948926d02f9b1fe9e1daa0718270ed5",
+    "chainId": "eip155:1",
+    "name": "cETH",
+    "precision": 8,
+    "color": "#61AECC",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x4Ddc2D193948926D02f9B1fE9e1daa0718270ED5/logo.png",
+    "symbol": "CETH",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x4de914f49f04c943dbde7e4f8017d08b51ad657c": {
+    "assetId": "eip155:1/erc20:0x4de914f49f04c943dbde7e4f8017d08b51ad657c",
+    "chainId": "eip155:1",
+    "name": "Oracle Layer2",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/32702/thumb/20231101_235814.png?1698985290",
+    "symbol": "ORACLE",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x4df812f6064def1e5e029f1ca858777cc98d2d81": {
+    "assetId": "eip155:1/erc20:0x4df812f6064def1e5e029f1ca858777cc98d2d81",
+    "chainId": "eip155:1",
+    "name": "Xaurum",
+    "precision": 8,
+    "color": "#B4973D",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x4DF812F6064def1e5e029f1ca858777CC98D2D81/logo.png",
+    "symbol": "XAUR",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x4e114d405b9ba2f59524941733e505ae03fb1fb5": {
+    "assetId": "eip155:1/erc20:0x4e114d405b9ba2f59524941733e505ae03fb1fb5",
+    "chainId": "eip155:1",
+    "name": "Joystick",
+    "precision": 18,
+    "color": "#200F2D",
+    "icon": "https://assets.coingecko.com/coins/images/27666/thumb/awKbFbPi_400x400.jpg?1696526694",
+    "symbol": "JOY",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x4e12eb8e506ccd1427f6b8f7faa3e88fb698eb28": {
+    "assetId": "eip155:1/erc20:0x4e12eb8e506ccd1427f6b8f7faa3e88fb698eb28",
+    "chainId": "eip155:1",
+    "name": "Jack Token",
+    "precision": 18,
+    "color": "#241C24",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x4E12EB8e506Ccd1427F6b8F7faa3e88fB698EB28/logo.png",
+    "symbol": "JACK",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x4e15361fd6b4bb609fa63c81a2be19d873717870": {
+    "assetId": "eip155:1/erc20:0x4e15361fd6b4bb609fa63c81a2be19d873717870",
+    "chainId": "eip155:1",
+    "name": "Wrapped Fantom on Ethereum",
+    "precision": 18,
+    "color": "#1C6CFC",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x4E15361FD6b4BB609Fa63C81A2be19d873717870/logo.png",
+    "symbol": "WFTM",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x4e352cf164e64adcbad318c3a1e222e9eba4ce42": {
+    "assetId": "eip155:1/erc20:0x4e352cf164e64adcbad318c3a1e222e9eba4ce42",
+    "chainId": "eip155:1",
+    "name": "MUX Protocol on Ethereum",
+    "precision": 18,
+    "color": "#DC8444",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x4e352cF164E64ADCBad318C3a1e222E9EBa4Ce42/logo.png",
+    "symbol": "MCB",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x4e3fbd56cd56c3e72c1403e103b45db9da5b9d2b": {
+    "assetId": "eip155:1/erc20:0x4e3fbd56cd56c3e72c1403e103b45db9da5b9d2b",
+    "chainId": "eip155:1",
+    "name": "Convex Finance",
+    "precision": 18,
+    "color": "#3B3C3C",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x4e3FBD56CD56c3e72c1403e103b45Db9da5B9D2B/logo.png",
+    "symbol": "CVX",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x4e432a62733a7ee38ad2e16b3cc0731457ea5b55": {
+    "assetId": "eip155:1/erc20:0x4e432a62733a7ee38ad2e16b3cc0731457ea5b55",
+    "chainId": "eip155:1",
+    "name": "QChain QDT",
+    "precision": 4,
+    "color": "#FC4C47",
+    "icon": "https://assets.coingecko.com/coins/images/26502/thumb/qdt_logo.png?1696525575",
+    "symbol": "QDT",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x4e452b391a86c9240e98df7277ce0bea5be08e43": {
+    "assetId": "eip155:1/erc20:0x4e452b391a86c9240e98df7277ce0bea5be08e43",
+    "chainId": "eip155:1",
+    "name": "Pax Unitas",
+    "precision": 18,
+    "color": "#AE843B",
+    "icon": "https://assets.coingecko.com/coins/images/31648/thumb/IMG_11C5EA8BD781-1.jpeg?1696530463",
+    "symbol": "PAXU",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x4e47951508fd4a4126f8ff9cf5e6fa3b7cc8e073": {
+    "assetId": "eip155:1/erc20:0x4e47951508fd4a4126f8ff9cf5e6fa3b7cc8e073",
+    "chainId": "eip155:1",
+    "name": "Fluid",
+    "precision": 18,
+    "color": "#14E4FC",
+    "icon": "https://assets.coingecko.com/coins/images/31890/thumb/fluidlogo200x200.png?1696530701",
+    "symbol": "FLUID",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x4e4a47cac6a28a62dcc20990ed2cda9bc659469f": {
+    "assetId": "eip155:1/erc20:0x4e4a47cac6a28a62dcc20990ed2cda9bc659469f",
+    "chainId": "eip155:1",
+    "name": "I will poop it NFT",
+    "precision": 18,
+    "color": "#F2B83D",
+    "icon": "https://assets.coingecko.com/coins/images/25945/thumb/PCNoOl8.png?1696525024",
+    "symbol": "SHIT",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x4e4bffaa8df6f0dc3e5600bbacf7da55f37134fc": {
+    "assetId": "eip155:1/erc20:0x4e4bffaa8df6f0dc3e5600bbacf7da55f37134fc",
+    "chainId": "eip155:1",
+    "name": "BlockStar",
+    "precision": 18,
+    "color": "#04863C",
+    "icon": "https://assets.coingecko.com/coins/images/29524/thumb/BlockStar_Transparent_200_by_200.png?1696528467",
+    "symbol": "BST",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x4e51a6b3cc6d5ae69a0d44db9de846aeb5a582dd": {
+    "assetId": "eip155:1/erc20:0x4e51a6b3cc6d5ae69a0d44db9de846aeb5a582dd",
+    "chainId": "eip155:1",
+    "name": "Gyoza",
+    "precision": 9,
+    "color": "#F0BC7F",
+    "icon": "https://assets.coingecko.com/coins/images/31083/thumb/logorecized_new.png?1696529916",
+    "symbol": "GYOZA",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x4e58ea38f4915850fbe1577cd818a09ba673c8ee": {
+    "assetId": "eip155:1/erc20:0x4e58ea38f4915850fbe1577cd818a09ba673c8ee",
+    "chainId": "eip155:1",
+    "name": "OmniaBot",
+    "precision": 18,
+    "color": "#050406",
+    "icon": "https://assets.coingecko.com/coins/images/31068/thumb/omniapng.jpeg?1696529902",
+    "symbol": "OMNIA",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x4e9e4ab99cfc14b852f552f5fb3aa68617825b6c": {
+    "assetId": "eip155:1/erc20:0x4e9e4ab99cfc14b852f552f5fb3aa68617825b6c",
+    "chainId": "eip155:1",
+    "name": "Solarcoin",
+    "precision": 18,
+    "color": "#FAC065",
+    "icon": "https://assets.coingecko.com/coins/images/152/thumb/solarcoin.png?1696501524",
+    "symbol": "SLR",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x4e9fcd48af4738e3bf1382009dc1e93ebfce698f": {
+    "assetId": "eip155:1/erc20:0x4e9fcd48af4738e3bf1382009dc1e93ebfce698f",
+    "chainId": "eip155:1",
+    "name": "TAO Inu",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/33145/thumb/photo_2023-11-21_23.13.35.jpeg?1700821870",
+    "symbol": "TAONU",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x4eb5124d04227f1aab771a37e131e62f17c4ffdc": {
+    "assetId": "eip155:1/erc20:0x4eb5124d04227f1aab771a37e131e62f17c4ffdc",
+    "chainId": "eip155:1",
+    "name": "Vocare ex Machina",
+    "precision": 18,
+    "color": "#046C44",
+    "icon": "https://assets.coingecko.com/coins/images/31524/thumb/Vocare_%28Icon_200x200%29.png?1696530333",
+    "symbol": "VOCARE",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x4ebe70cb942d5af0a18b9126762637e7098ff5fd": {
+    "assetId": "eip155:1/erc20:0x4ebe70cb942d5af0a18b9126762637e7098ff5fd",
+    "chainId": "eip155:1",
+    "name": "G Revolution",
+    "precision": 9,
+    "color": "#040404",
+    "icon": "https://assets.coingecko.com/coins/images/30869/thumb/G_logo.png?1696529716",
+    "symbol": "G",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x4ec1b60b96193a64acae44778e51f7bff2007831": {
+    "assetId": "eip155:1/erc20:0x4ec1b60b96193a64acae44778e51f7bff2007831",
+    "chainId": "eip155:1",
+    "name": "Edge",
+    "precision": 18,
+    "color": "#0CCC5C",
+    "icon": "https://assets.coingecko.com/coins/images/1848/thumb/EDGE.png?1696502846",
+    "symbol": "EDGE",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x4ece5c5cfb9b960a49aae739e15cdb6cfdcc5782": {
+    "assetId": "eip155:1/erc20:0x4ece5c5cfb9b960a49aae739e15cdb6cfdcc5782",
+    "chainId": "eip155:1",
+    "name": "Doont Buy",
+    "precision": 9,
+    "color": "#8214E0",
+    "icon": "https://assets.coingecko.com/coins/images/17895/thumb/VaxEiZ3.png?1696517415",
+    "symbol": "DBUY",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x4ee438be38f8682abb089f2bfea48851c5e71eaf": {
+    "assetId": "eip155:1/erc20:0x4ee438be38f8682abb089f2bfea48851c5e71eaf",
+    "chainId": "eip155:1",
+    "name": "Cryptonovae on Ethereum",
+    "precision": 18,
+    "color": "#FC2C64",
+    "icon": "https://assets.coingecko.com/coins/images/14693/thumb/yae.png?1696514365",
+    "symbol": "YAE",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x4eea762311be76f9071aa01058c047ad12a017a1": {
+    "assetId": "eip155:1/erc20:0x4eea762311be76f9071aa01058c047ad12a017a1",
+    "chainId": "eip155:1",
+    "name": "GBURN on Ethereum",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/33048/thumb/Untitled_design_-_2023-11-10T174143.724.png?1700472805",
+    "symbol": "GBURN",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x4eea955f63d7e24ea7272651a29c7c70f7c2a9ae": {
+    "assetId": "eip155:1/erc20:0x4eea955f63d7e24ea7272651a29c7c70f7c2a9ae",
+    "chainId": "eip155:1",
+    "name": "EastGate Pharmaceuticals",
+    "precision": 18,
+    "color": "#E6E7E2",
+    "icon": "https://assets.coingecko.com/coins/images/31866/thumb/IMG_20230921_002259_489.jpg?1696530678",
+    "symbol": "EGP",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x4efe8665e564bf454ccf5c90ee16817f7485d5cf": {
+    "assetId": "eip155:1/erc20:0x4efe8665e564bf454ccf5c90ee16817f7485d5cf",
+    "chainId": "eip155:1",
+    "name": "BlackDragon",
+    "precision": 18,
+    "color": "#060606",
+    "icon": "https://assets.coingecko.com/coins/images/13426/thumb/Black-Dragon-Black.png?1696513186",
+    "symbol": "BDT",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x4f08705fb8f33affc231ed66e626b40e84a71870": {
+    "assetId": "eip155:1/erc20:0x4f08705fb8f33affc231ed66e626b40e84a71870",
+    "chainId": "eip155:1",
+    "name": "Flute",
+    "precision": 11,
+    "color": "#13102C",
+    "icon": "https://assets.coingecko.com/coins/images/29148/thumb/TheFlute200x200.png?1696528108",
+    "symbol": "FLUT",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x4f14cdbd815b79e9624121f564f24685c6b1211b": {
+    "assetId": "eip155:1/erc20:0x4f14cdbd815b79e9624121f564f24685c6b1211b",
+    "chainId": "eip155:1",
+    "name": "Angry Doge",
+    "precision": 18,
+    "color": "#D0B786",
+    "icon": "https://assets.coingecko.com/coins/images/25921/thumb/angry-doge-anfd.png?1696525001",
+    "symbol": "ANFD",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x4f311c430540db1d64e635eb55f969f1660b2016": {
+    "assetId": "eip155:1/erc20:0x4f311c430540db1d64e635eb55f969f1660b2016",
+    "chainId": "eip155:1",
+    "name": "Pepe Chain",
+    "precision": 9,
+    "color": "#329D30",
+    "icon": "https://assets.coingecko.com/coins/images/31041/thumb/Pepechain_Token.png?1696529876",
+    "symbol": "PC",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x4f3afec4e5a3f2a6a1a411def7d7dfe50ee057bf": {
+    "assetId": "eip155:1/erc20:0x4f3afec4e5a3f2a6a1a411def7d7dfe50ee057bf",
+    "chainId": "eip155:1",
+    "name": "Digix Gold",
+    "precision": 9,
+    "color": "#131933",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x4f3AfEC4E5a3F2A6a1A411DEF7D7dFe50eE057bF/logo.png",
+    "symbol": "DGX",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x4f5fa8f2d12e5eb780f6082dd656c565c48e0f24": {
+    "assetId": "eip155:1/erc20:0x4f5fa8f2d12e5eb780f6082dd656c565c48e0f24",
+    "chainId": "eip155:1",
+    "name": "Gourmet Galaxy on Ethereum",
+    "precision": 18,
+    "color": "#3C1C64",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x4f5fa8f2d12e5eB780f6082Dd656C565C48E0f24/logo.png",
+    "symbol": "GUM",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x4f604735c1cf31399c6e711d5962b2b3e0225ad3": {
+    "assetId": "eip155:1/erc20:0x4f604735c1cf31399c6e711d5962b2b3e0225ad3",
+    "chainId": "eip155:1",
+    "name": "Glo Dollar on Ethereum",
+    "precision": 18,
+    "color": "#143C3C",
+    "icon": "https://assets.coingecko.com/coins/images/29319/thumb/glo_logo_coingecko.png?1696528270",
+    "symbol": "USDGLO",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x4f640f2529ee0cf119a2881485845fa8e61a782a": {
+    "assetId": "eip155:1/erc20:0x4f640f2529ee0cf119a2881485845fa8e61a782a",
+    "chainId": "eip155:1",
+    "name": "ORE Network on Ethereum",
+    "precision": 18,
+    "color": "#04D8CF",
+    "icon": "https://assets.coingecko.com/coins/images/18917/thumb/ORE_FullColor.png?1696518374",
+    "symbol": "ORE",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x4f81c790581b240a5c948afd173620ecc8c71c8d": {
+    "assetId": "eip155:1/erc20:0x4f81c790581b240a5c948afd173620ecc8c71c8d",
+    "chainId": "eip155:1",
+    "name": "Decentral Games Governance on Ethereum",
+    "precision": 18,
+    "color": "#CCCCCC",
+    "icon": "https://assets.coingecko.com/coins/images/21176/thumb/xDG_Logo.png?1696520552",
+    "symbol": "XDG",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x4f8b986ecffe7bed5dbeb2b49310fb00ca85a539": {
+    "assetId": "eip155:1/erc20:0x4f8b986ecffe7bed5dbeb2b49310fb00ca85a539",
+    "chainId": "eip155:1",
+    "name": " REKT on Ethereum",
+    "precision": 18,
+    "color": "#E6DEE1",
+    "icon": "https://assets.coingecko.com/coins/images/32252/thumb/rekt.png?1696998751",
+    "symbol": "REKT",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x4f9254c83eb525f9fcf346490bbb3ed28a81c667": {
+    "assetId": "eip155:1/erc20:0x4f9254c83eb525f9fcf346490bbb3ed28a81c667",
+    "chainId": "eip155:1",
+    "name": "Celer Network on Ethereum",
+    "precision": 18,
+    "color": "#090909",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x4F9254C83EB525f9FCf346490bbb3ed28a81C667/logo.png",
+    "symbol": "CELR",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x4fa5836b58d6f1877a616e7833c7350781e21202": {
+    "assetId": "eip155:1/erc20:0x4fa5836b58d6f1877a616e7833c7350781e21202",
+    "chainId": "eip155:1",
+    "name": "Flooring Protocol  Otherdeed",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/32766/thumb/othr_%281%29.png?1699332911",
+    "symbol": "OTHR",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x4fabb145d64652a948d72533023f6e7a623c7c53": {
+    "assetId": "eip155:1/erc20:0x4fabb145d64652a948d72533023f6e7a623c7c53",
+    "chainId": "eip155:1",
+    "name": "BUSD on Ethereum",
+    "precision": 18,
+    "color": "#F3BC0C",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x4Fabb145d64652a948d72533023f6E7A623C7C53/logo.png",
+    "symbol": "BUSD",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x4fabf135bcf8111671870d4399af739683198f96": {
+    "assetId": "eip155:1/erc20:0x4fabf135bcf8111671870d4399af739683198f96",
+    "chainId": "eip155:1",
+    "name": "Xave Coin on Ethereum",
+    "precision": 18,
+    "color": "#111420",
+    "icon": "https://assets.coingecko.com/coins/images/24084/thumb/k8qjP9t9_400x400.jpg?1696523277",
+    "symbol": "XVC",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x4fb721ef3bf99e0f2c193847afa296b9257d3c30": {
+    "assetId": "eip155:1/erc20:0x4fb721ef3bf99e0f2c193847afa296b9257d3c30",
+    "chainId": "eip155:1",
+    "name": "Tokenplace on Ethereum",
+    "precision": 8,
+    "color": "#08B8EF",
+    "icon": "https://assets.coingecko.com/coins/images/15779/thumb/output-onlinepngtools_%283%29.png?1696515403",
+    "symbol": "TOK",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x4fbb350052bca5417566f188eb2ebce5b19bc964": {
+    "assetId": "eip155:1/erc20:0x4fbb350052bca5417566f188eb2ebce5b19bc964",
+    "chainId": "eip155:1",
+    "name": "RigoBlock on Ethereum",
+    "precision": 18,
+    "color": "#FBBC2F",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x4FbB350052Bca5417566f188eB2EBCE5b19BC964/logo.png",
+    "symbol": "GRG",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x4fc15c91a9c4a9efb404174464687e8e128730c2": {
+    "assetId": "eip155:1/erc20:0x4fc15c91a9c4a9efb404174464687e8e128730c2",
+    "chainId": "eip155:1",
+    "name": "STAT",
+    "precision": 18,
+    "color": "#282C30",
+    "icon": "https://assets.coingecko.com/coins/images/26602/thumb/stat.png?1696525676",
+    "symbol": "STAT",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x4fd51cb87ffefdf1711112b5bd8ab682e54988ea": {
+    "assetId": "eip155:1/erc20:0x4fd51cb87ffefdf1711112b5bd8ab682e54988ea",
+    "chainId": "eip155:1",
+    "name": "WPT Investing Corp",
+    "precision": 18,
+    "color": "#142444",
+    "icon": "https://assets.coingecko.com/coins/images/26431/thumb/200200.png?1696525505",
+    "symbol": "WPT",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x4fe83213d56308330ec302a8bd641f1d0113a4cc": {
+    "assetId": "eip155:1/erc20:0x4fe83213d56308330ec302a8bd641f1d0113a4cc",
+    "chainId": "eip155:1",
+    "name": "NuCypher",
+    "precision": 18,
+    "color": "#1C64F4",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x4fE83213D56308330EC302a8BD641f1d0113A4Cc/logo.png",
+    "symbol": "NU",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x4fee21439f2b95b72da2f9f901b3956f27fe91d5": {
+    "assetId": "eip155:1/erc20:0x4fee21439f2b95b72da2f9f901b3956f27fe91d5",
+    "chainId": "eip155:1",
+    "name": "FrogSwap",
+    "precision": 18,
+    "color": "#97D28E",
+    "icon": "https://assets.coingecko.com/coins/images/21449/thumb/logo.54d7099f.png?1696520811",
+    "symbol": "FROG",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x501e8726d06cdef66f3e0cb67f54924cca1cc894": {
+    "assetId": "eip155:1/erc20:0x501e8726d06cdef66f3e0cb67f54924cca1cc894",
+    "chainId": "eip155:1",
+    "name": "BRMV",
+    "precision": 18,
+    "color": "#2C3C5C",
+    "icon": "https://assets.coingecko.com/coins/images/14389/thumb/brmv-logo-256px.png?1696514080",
+    "symbol": "BRMV",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x5026f006b85729a8b14553fae6af249ad16c9aab": {
+    "assetId": "eip155:1/erc20:0x5026f006b85729a8b14553fae6af249ad16c9aab",
+    "chainId": "eip155:1",
+    "name": "Wojak",
+    "precision": 18,
+    "color": "#118A0E",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x5026F006B85729a8b14553FAE6af249aD16c9aaB/logo.png",
+    "symbol": "WOJAK",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x50327c6c5a14dcade707abad2e27eb517df87ab5": {
+    "assetId": "eip155:1/erc20:0x50327c6c5a14dcade707abad2e27eb517df87ab5",
+    "chainId": "eip155:1",
+    "name": "Wrapped Tron",
+    "precision": 6,
+    "color": "#EC0C2C",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x50327c6c5a14DCaDE707ABad2E27eB517df87AB5/logo.png",
+    "symbol": "WTRX",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x503cd987998824192578d0d7950148445667287c": {
+    "assetId": "eip155:1/erc20:0x503cd987998824192578d0d7950148445667287c",
+    "chainId": "eip155:1",
+    "name": "FOGnet",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/31743/thumb/fognet_logo_512-pso36yibc3wmls8sg2l5arxqptos6g1glqowa3rgik.png?1696530562",
+    "symbol": "FOG",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x505a84a03e382331a1be487b632cf357748b65d6": {
+    "assetId": "eip155:1/erc20:0x505a84a03e382331a1be487b632cf357748b65d6",
+    "chainId": "eip155:1",
+    "name": "SHIBGF",
+    "precision": 18,
+    "color": "#F9416C",
+    "icon": "https://assets.coingecko.com/coins/images/19699/thumb/shibgf_logo.png?1696519126",
+    "symbol": "SHIBGF",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x505b5eda5e25a67e1c24a2bf1a527ed9eb88bf04": {
+    "assetId": "eip155:1/erc20:0x505b5eda5e25a67e1c24a2bf1a527ed9eb88bf04",
+    "chainId": "eip155:1",
+    "name": "Coinweb",
+    "precision": 18,
+    "color": "#505070",
+    "icon": "https://assets.coingecko.com/coins/images/21607/thumb/Logo_200x200.png?1696520967",
+    "symbol": "CWEB",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x506b8f75bdef0edac36b0a6f9cf313485e4341b0": {
+    "assetId": "eip155:1/erc20:0x506b8f75bdef0edac36b0a6f9cf313485e4341b0",
+    "chainId": "eip155:1",
+    "name": "WCAPES",
+    "precision": 18,
+    "color": "#C0C0C0",
+    "icon": "https://assets.coingecko.com/coins/images/29361/thumb/wca.png?1696528309",
+    "symbol": "WCA",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x508626d9a29d13eba26f843a2bd7bf7b00a45be5": {
+    "assetId": "eip155:1/erc20:0x508626d9a29d13eba26f843a2bd7bf7b00a45be5",
+    "chainId": "eip155:1",
+    "name": "Bluelight",
+    "precision": 18,
+    "color": "#1ED2FC",
+    "icon": "https://assets.coingecko.com/coins/images/28031/thumb/kale.png?1696527046",
+    "symbol": "KALE",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x508df5aa4746be37b5b6a69684dfd8bdc322219d": {
+    "assetId": "eip155:1/erc20:0x508df5aa4746be37b5b6a69684dfd8bdc322219d",
+    "chainId": "eip155:1",
+    "name": "Crafting Finance",
+    "precision": 18,
+    "color": "#3CACFC",
+    "icon": "https://assets.coingecko.com/coins/images/21559/thumb/tokenlogo.png?1696520920",
+    "symbol": "CRF",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x509a38b7a1cc0dcd83aa9d06214663d9ec7c7f4a": {
+    "assetId": "eip155:1/erc20:0x509a38b7a1cc0dcd83aa9d06214663d9ec7c7f4a",
+    "chainId": "eip155:1",
+    "name": "Blocksquare",
+    "precision": 18,
+    "color": "#F3F3FB",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x509A38b7a1cC0dcd83Aa9d06214663D9eC7c7F4a/logo.png",
+    "symbol": "BST",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x50bc2ecc0bfdf5666640048038c1aba7b7525683": {
+    "assetId": "eip155:1/erc20:0x50bc2ecc0bfdf5666640048038c1aba7b7525683",
+    "chainId": "eip155:1",
+    "name": "carVertical",
+    "precision": 18,
+    "color": "#2DBCE4",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x50bC2Ecc0bfDf5666640048038C1ABA7B7525683/logo.png",
+    "symbol": "CV",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x50d1c8e131dca8b9226c0a0f78947557497374b3": {
+    "assetId": "eip155:1/erc20:0x50d1c8e131dca8b9226c0a0f78947557497374b3",
+    "chainId": "eip155:1",
+    "name": "Bridge Bot",
+    "precision": 9,
+    "color": "#DCE1F1",
+    "icon": "https://assets.coingecko.com/coins/images/31015/thumb/bridgebot.jpeg?1696529852",
+    "symbol": "BRIDGE",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x50d1c9771902476076ecfc8b2a83ad6b9355a4c9": {
+    "assetId": "eip155:1/erc20:0x50d1c9771902476076ecfc8b2a83ad6b9355a4c9",
+    "chainId": "eip155:1",
+    "name": "FTX",
+    "precision": 18,
+    "color": "#6ED2E1",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x50D1c9771902476076eCFc8B2A83Ad6b9355a4c9/logo.png",
+    "symbol": "FTT",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x50de6856358cc35f3a9a57eaaa34bd4cb707d2cd": {
+    "assetId": "eip155:1/erc20:0x50de6856358cc35f3a9a57eaaa34bd4cb707d2cd",
+    "chainId": "eip155:1",
+    "name": "Razor Network on Ethereum",
+    "precision": 18,
+    "color": "#3392D3",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x50DE6856358Cc35f3A9a57eAAA34BD4cB707d2cd/logo.png",
+    "symbol": "RAZOR",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x50eec6d765792dcfb0913c8403ef2a12e1b861a6": {
+    "assetId": "eip155:1/erc20:0x50eec6d765792dcfb0913c8403ef2a12e1b861a6",
+    "chainId": "eip155:1",
+    "name": "Z Cubed",
+    "precision": 18,
+    "color": "#040404",
+    "icon": "https://assets.coingecko.com/coins/images/29478/thumb/Z3-BLACK-200x200.png?1696528422",
+    "symbol": "Z3",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x510975eda48a97e0ca228dd04d1217292487bea6": {
+    "assetId": "eip155:1/erc20:0x510975eda48a97e0ca228dd04d1217292487bea6",
+    "chainId": "eip155:1",
+    "name": "PROJECT XENO on Ethereum",
+    "precision": 18,
+    "color": "#C4C4C4",
+    "icon": "https://assets.coingecko.com/coins/images/29000/thumb/gxe.png?1696527972",
+    "symbol": "GXE",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x511686014f39f487e5cdd5c37b4b37606b795ae3": {
+    "assetId": "eip155:1/erc20:0x511686014f39f487e5cdd5c37b4b37606b795ae3",
+    "chainId": "eip155:1",
+    "name": "Loyalty Labs",
+    "precision": 18,
+    "color": "#E99328",
+    "icon": "https://assets.coingecko.com/coins/images/30605/thumb/loyalty_labs.jpg?1696529474",
+    "symbol": "LOYAL",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x51395ade06eae126f590e7b06dc8f6baf511f13f": {
+    "assetId": "eip155:1/erc20:0x51395ade06eae126f590e7b06dc8f6baf511f13f",
+    "chainId": "eip155:1",
+    "name": "hiSQUIGGLE",
+    "precision": 18,
+    "color": "#FC1620",
+    "icon": "https://assets.coingecko.com/coins/images/28127/thumb/hisquiggle.png?1696527134",
+    "symbol": "HISQUIGGLE",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x514910771af9ca656af840dff83e8264ecf986ca": {
+    "assetId": "eip155:1/erc20:0x514910771af9ca656af840dff83e8264ecf986ca",
+    "chainId": "eip155:1",
+    "name": "Chainlink on Ethereum",
+    "precision": 18,
+    "color": "#335CD3",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x514910771AF9Ca656af840dff83E8264EcF986CA/logo.png",
+    "symbol": "LINK",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x5150956e082c748ca837a5dfa0a7c10ca4697f9c": {
+    "assetId": "eip155:1/erc20:0x5150956e082c748ca837a5dfa0a7c10ca4697f9c",
+    "chainId": "eip155:1",
+    "name": "Zeedex",
+    "precision": 18,
+    "color": "#2099D9",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x5150956E082C748Ca837a5dFa0a7C10CA4697f9c/logo.png",
+    "symbol": "ZDEX",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x515d7e9d75e2b76db60f8a051cd890eba23286bc": {
+    "assetId": "eip155:1/erc20:0x515d7e9d75e2b76db60f8a051cd890eba23286bc",
+    "chainId": "eip155:1",
+    "name": "Governor DAO",
+    "precision": 18,
+    "color": "#54A9E9",
+    "icon": "https://assets.coingecko.com/coins/images/13140/thumb/GDAOlogo2-bird.png?1696512926",
+    "symbol": "GDAO",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x5165d24277cd063f5ac44efd447b27025e888f37": {
+    "assetId": "eip155:1/erc20:0x5165d24277cd063f5ac44efd447b27025e888f37",
+    "chainId": "eip155:1",
+    "name": "Aave YFI",
+    "precision": 18,
+    "color": "#A97DB6",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x5165d24277cD063F5ac44Efd447B27025e888f37/logo.png",
+    "symbol": "AYFI",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x516e2758b044433371076a48127b8cfa7b0bdb43": {
+    "assetId": "eip155:1/erc20:0x516e2758b044433371076a48127b8cfa7b0bdb43",
+    "chainId": "eip155:1",
+    "name": "Smudge Lord",
+    "precision": 18,
+    "color": "#BEBBBA",
+    "icon": "https://assets.coingecko.com/coins/images/30268/thumb/logo-A.png?1696529175",
+    "symbol": "SMUDGE",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x517abf1fcdbd76bc75b532683ada9113e313a128": {
+    "assetId": "eip155:1/erc20:0x517abf1fcdbd76bc75b532683ada9113e313a128",
+    "chainId": "eip155:1",
+    "name": "Doke Inu",
+    "precision": 9,
+    "color": "#9C6632",
+    "icon": "https://assets.coingecko.com/coins/images/29234/thumb/Doke_logo.jpg?1696528191",
+    "symbol": "DOKE",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x518b63da813d46556fea041a88b52e3caa8c16a8": {
+    "assetId": "eip155:1/erc20:0x518b63da813d46556fea041a88b52e3caa8c16a8",
+    "chainId": "eip155:1",
+    "name": "Antfarm Token on Ethereum",
+    "precision": 18,
+    "color": "#040404",
+    "icon": "https://assets.coingecko.com/coins/images/28821/thumb/ATF.png?1696527797",
+    "symbol": "ATF",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x519c1001d550c0a1dae7d1fc220f7d14c2a521bb": {
+    "assetId": "eip155:1/erc20:0x519c1001d550c0a1dae7d1fc220f7d14c2a521bb",
+    "chainId": "eip155:1",
+    "name": "Polkaswap",
+    "precision": 18,
+    "color": "#FCC6D9",
+    "icon": "https://assets.coingecko.com/coins/images/15475/thumb/pswap-token-logomark-ticker-icon-200px-transparent-optimized.png?1696515120",
+    "symbol": "PSWAP",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x51a59a02ba906194285e81eb1f98ffa28e7cf4c9": {
+    "assetId": "eip155:1/erc20:0x51a59a02ba906194285e81eb1f98ffa28e7cf4c9",
+    "chainId": "eip155:1",
+    "name": "Pepe King Prawn",
+    "precision": 9,
+    "color": "#E79432",
+    "icon": "https://assets.coingecko.com/coins/images/31942/thumb/Pepe_King_Prawn.png?1696530749",
+    "symbol": "PEPE",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x51acb1ea45c1ec2512ae4202b9076c13016dc8aa": {
+    "assetId": "eip155:1/erc20:0x51acb1ea45c1ec2512ae4202b9076c13016dc8aa",
+    "chainId": "eip155:1",
+    "name": "Fractal Protocol Vault on Ethereum",
+    "precision": 6,
+    "color": "#EDF6F8",
+    "icon": "https://assets.coingecko.com/coins/images/30946/thumb/fractal.jpeg?1696529785",
+    "symbol": "USDF",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x51cb253744189f11241becb29bedd3f1b5384fdb": {
+    "assetId": "eip155:1/erc20:0x51cb253744189f11241becb29bedd3f1b5384fdb",
+    "chainId": "eip155:1",
+    "name": "Dimitra",
+    "precision": 18,
+    "color": "#EBF3E7",
+    "icon": "https://assets.coingecko.com/coins/images/18530/thumb/HqEiru32_400x400.jpg?1696518010",
+    "symbol": "DMTR",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x51db5ad35c671a87207d88fc11d593ac0c8415bd": {
+    "assetId": "eip155:1/erc20:0x51db5ad35c671a87207d88fc11d593ac0c8415bd",
+    "chainId": "eip155:1",
+    "name": "Moeda Loyalty Points",
+    "precision": 18,
+    "color": "#04A44C",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x51DB5Ad35C671a87207d88fC11d593AC0C8415bd/logo.png",
+    "symbol": "MDA",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x51fa2efd62ee56a493f24ae963eace7d0051929e": {
+    "assetId": "eip155:1/erc20:0x51fa2efd62ee56a493f24ae963eace7d0051929e",
+    "chainId": "eip155:1",
+    "name": "Poseidon OCEAN",
+    "precision": 18,
+    "color": "#1F2A3F",
+    "icon": "https://assets.coingecko.com/coins/images/27859/thumb/psdnOCEAN.png?1696526878",
+    "symbol": "PSDNOCEAN",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x51fe05eac152494908ff1ebbd50e116e960baf64": {
+    "assetId": "eip155:1/erc20:0x51fe05eac152494908ff1ebbd50e116e960baf64",
+    "chainId": "eip155:1",
+    "name": "X GPT",
+    "precision": 18,
+    "color": "#FC043C",
+    "icon": "https://assets.coingecko.com/coins/images/31559/thumb/XGPT_Logo.png?1696530372",
+    "symbol": "XGPT",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x51fe2e572e97bfeb1d719809d743ec2675924edc": {
+    "assetId": "eip155:1/erc20:0x51fe2e572e97bfeb1d719809d743ec2675924edc",
+    "chainId": "eip155:1",
+    "name": "VLaunch",
+    "precision": 18,
+    "color": "#84BF91",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x51FE2E572e97BFEB1D719809d743Ec2675924EDc/logo.png",
+    "symbol": "VPAD",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x5218e472cfcfe0b64a064f055b43b4cdc9efd3a6": {
+    "assetId": "eip155:1/erc20:0x5218e472cfcfe0b64a064f055b43b4cdc9efd3a6",
+    "chainId": "eip155:1",
+    "name": "unFederalReserve",
+    "precision": 18,
+    "color": "#142482",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x5218E472cFCFE0b64A064F055B43b4cdC9EfD3A6/logo.png",
+    "symbol": "ERSDL",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x5224f552f110ec78e6e0468138950ae5f3040942": {
+    "assetId": "eip155:1/erc20:0x5224f552f110ec78e6e0468138950ae5f3040942",
+    "chainId": "eip155:1",
+    "name": "Anomus Coin on Ethereum",
+    "precision": 18,
+    "color": "#420FDA",
+    "icon": "https://assets.coingecko.com/coins/images/20865/thumb/w07_TWqn_400x400.png?1696520259",
+    "symbol": "ANOM",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x52284158e02425290f6b627aeb5fff65edf058ad": {
+    "assetId": "eip155:1/erc20:0x52284158e02425290f6b627aeb5fff65edf058ad",
+    "chainId": "eip155:1",
+    "name": "FlappyMoonbird",
+    "precision": 18,
+    "color": "#F7F7F2",
+    "icon": "https://assets.coingecko.com/coins/images/30659/thumb/200_%282%29.jpg?1696529529",
+    "symbol": "FMB",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x5228a22e72ccc52d415ecfd199f99d0665e7733b": {
+    "assetId": "eip155:1/erc20:0x5228a22e72ccc52d415ecfd199f99d0665e7733b",
+    "chainId": "eip155:1",
+    "name": "pTokens BTC  OLD  on Ethereum",
+    "precision": 18,
+    "color": "#F06060",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x5228a22e72ccC52d415EcFd199F99D0665E7733b/logo.png",
+    "symbol": "PBTC",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x524ebc93beef838f70b4ae54b675d3e971d5884e": {
+    "assetId": "eip155:1/erc20:0x524ebc93beef838f70b4ae54b675d3e971d5884e",
+    "chainId": "eip155:1",
+    "name": "Challenge Coin",
+    "precision": 9,
+    "color": "#120F06",
+    "icon": "https://assets.coingecko.com/coins/images/26567/thumb/bug-CC-200.png?1696525640",
+    "symbol": "HERO",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x525794473f7ab5715c81d06d10f52d11cc052804": {
+    "assetId": "eip155:1/erc20:0x525794473f7ab5715c81d06d10f52d11cc052804",
+    "chainId": "eip155:1",
+    "name": "12Ships",
+    "precision": 18,
+    "color": "#0B338C",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x525794473F7ab5715C81d06d10f52d11cC052804/logo.png",
+    "symbol": "TSHP",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x525a8f6f3ba4752868cde25164382bfbae3990e1": {
+    "assetId": "eip155:1/erc20:0x525a8f6f3ba4752868cde25164382bfbae3990e1",
+    "chainId": "eip155:1",
+    "name": "Nym",
+    "precision": 6,
+    "color": "#BCBCBD",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x525A8F6F3Ba4752868cde25164382BfbaE3990e1/logo.png",
+    "symbol": "NYM",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x52662717e448be36cb54588499d5a8328bd95292": {
+    "assetId": "eip155:1/erc20:0x52662717e448be36cb54588499d5a8328bd95292",
+    "chainId": "eip155:1",
+    "name": "Tenshi",
+    "precision": 18,
+    "color": "#8A81B0",
+    "icon": "https://assets.coingecko.com/coins/images/17170/thumb/TENSHI.png?1696516729",
+    "symbol": "TENSHI",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x5274891bec421b39d23760c04a6755ecb444797c": {
+    "color": "#DCDBDC",
+    "icon": "https://raw.githubusercontent.com/Idle-Labs/idle-dashboard/master/public/images/tokens/USDC.svg",
+    "name": "USDC Senior Best Yield",
+    "precision": 18,
+    "symbol": "idleUSDCYield",
+    "chainId": "eip155:1",
+    "assetId": "eip155:1/erc20:0x5274891bec421b39d23760c04a6755ecb444797c",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x5283d291dbcf85356a21ba090e6db59121208b44": {
+    "assetId": "eip155:1/erc20:0x5283d291dbcf85356a21ba090e6db59121208b44",
+    "chainId": "eip155:1",
+    "name": "Blur",
+    "precision": 18,
+    "color": "#DA581E",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x5283D291DBCF85356A21bA090E6db59121208b44/logo.png",
+    "symbol": "BLUR",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x52928c95c4c7e934e0efcfab08853a0e4558861d": {
+    "assetId": "eip155:1/erc20:0x52928c95c4c7e934e0efcfab08853a0e4558861d",
+    "chainId": "eip155:1",
+    "name": "Hara",
+    "precision": 18,
+    "color": "#ADECD0",
+    "icon": "https://assets.coingecko.com/coins/images/5138/thumb/hara.jpg?1696505657",
+    "symbol": "HART",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x52a047ee205701895ee06a375492490ec9c597ce": {
+    "assetId": "eip155:1/erc20:0x52a047ee205701895ee06a375492490ec9c597ce",
+    "chainId": "eip155:1",
+    "name": "PulseMarkets",
+    "precision": 18,
+    "color": "#F8F5F6",
+    "icon": "https://assets.coingecko.com/coins/images/19011/thumb/photo_2021-11-11_06-24-09.jpg?1696518463",
+    "symbol": "PULSE",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x52a163f4cef6a42fa6b17e0f2a773fc149547c9c": {
+    "assetId": "eip155:1/erc20:0x52a163f4cef6a42fa6b17e0f2a773fc149547c9c",
+    "chainId": "eip155:1",
+    "name": "BANGER",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/32881/thumb/banger200x200.png?1699712080",
+    "symbol": "BANGER",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x52a8845df664d76c69d2eea607cd793565af42b8": {
+    "assetId": "eip155:1/erc20:0x52a8845df664d76c69d2eea607cd793565af42b8",
+    "chainId": "eip155:1",
+    "name": "ApeX on Ethereum",
+    "precision": 18,
+    "color": "#CFA012",
+    "icon": "https://assets.coingecko.com/coins/images/25266/thumb/CxpMECpk_400x400_%281%29.png?1696524406",
+    "symbol": "APEX",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x52b43e3aa47612a80114ac5549ff89c6a64d5f22": {
+    "assetId": "eip155:1/erc20:0x52b43e3aa47612a80114ac5549ff89c6a64d5f22",
+    "chainId": "eip155:1",
+    "name": "Harambe Wisdom",
+    "precision": 18,
+    "color": "#6CCA87",
+    "icon": "https://assets.coingecko.com/coins/images/32114/thumb/RAMBE_LOGGG.PNG?1696585568",
+    "symbol": "RAMBE",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x52d134c6db5889fad3542a09eaf7aa90c0fdf9e4": {
+    "assetId": "eip155:1/erc20:0x52d134c6db5889fad3542a09eaf7aa90c0fdf9e4",
+    "chainId": "eip155:1",
+    "name": "Backed IBTA   Treasury Bond 1 3yr on Ethereum",
+    "precision": 18,
+    "color": "#464C57",
+    "icon": "https://assets.coingecko.com/coins/images/31880/thumb/b-IBTA-200x200.png?1696530692",
+    "symbol": "BIBTA",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x52d30b949bdbc63780e5a263cf436d4df983fe58": {
+    "assetId": "eip155:1/erc20:0x52d30b949bdbc63780e5a263cf436d4df983fe58",
+    "chainId": "eip155:1",
+    "name": "Zenith Wallet",
+    "precision": 18,
+    "color": "#2474DC",
+    "icon": "https://assets.coingecko.com/coins/images/31670/thumb/ZENITH.jpg?1696530486",
+    "symbol": "ZW",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x52dec19feef469d7a683963b7380ecd0b1aff9c7": {
+    "assetId": "eip155:1/erc20:0x52dec19feef469d7a683963b7380ecd0b1aff9c7",
+    "chainId": "eip155:1",
+    "name": "Octo",
+    "precision": 18,
+    "color": "#F0F0F0",
+    "icon": "https://assets.coingecko.com/coins/images/30160/thumb/octo.jpeg?1696529080",
+    "symbol": "OCTO",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x52e7b23e1faba6d83376725e2ccad75efbd8736e": {
+    "assetId": "eip155:1/erc20:0x52e7b23e1faba6d83376725e2ccad75efbd8736e",
+    "chainId": "eip155:1",
+    "name": "BURN",
+    "precision": 18,
+    "color": "#E07839",
+    "icon": "https://assets.coingecko.com/coins/images/30506/thumb/burn.jpg?1696529392",
+    "symbol": "BURN",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x52f4d5ee6c91e01be67ca1f64b11ed0ee370817d": {
+    "assetId": "eip155:1/erc20:0x52f4d5ee6c91e01be67ca1f64b11ed0ee370817d",
+    "chainId": "eip155:1",
+    "name": "CIA",
+    "precision": 9,
+    "color": "#050709",
+    "icon": "https://assets.coingecko.com/coins/images/21569/thumb/Untitled-design-24.png?1696520929",
+    "symbol": "CIA",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x53011e93f21ec7a74cdfbb7e6548f1abce306833": {
+    "assetId": "eip155:1/erc20:0x53011e93f21ec7a74cdfbb7e6548f1abce306833",
+    "chainId": "eip155:1",
+    "name": "LendeXe Finance",
+    "precision": 18,
+    "color": "#242424",
+    "icon": "https://assets.coingecko.com/coins/images/29066/thumb/669fbb3b-8f61-4f3d-8ced-c9d47babcae4.png?1696528033",
+    "symbol": "LEXE",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x53020f42f6da51b50cf6e23e45266ef223122376": {
+    "assetId": "eip155:1/erc20:0x53020f42f6da51b50cf6e23e45266ef223122376",
+    "chainId": "eip155:1",
+    "name": "BlockSpot Network",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/33078/thumb/token_%285%29_%281%29.png?1700550027",
+    "symbol": "SPOT",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x530824da86689c9c17cdc2871ff29b058345b44a": {
+    "assetId": "eip155:1/erc20:0x530824da86689c9c17cdc2871ff29b058345b44a",
+    "chainId": "eip155:1",
+    "name": "Short term T Bill Token",
+    "precision": 18,
+    "color": "#3D3D63",
+    "icon": "https://assets.coingecko.com/coins/images/29239/thumb/STBT_icon.png?1696528196",
+    "symbol": "STBT",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x5319e86f0e41a06e49eb37046b8c11d78bcad68c": {
+    "assetId": "eip155:1/erc20:0x5319e86f0e41a06e49eb37046b8c11d78bcad68c",
+    "chainId": "eip155:1",
+    "name": "Zelwin on Ethereum",
+    "precision": 18,
+    "color": "#FCC40C",
+    "icon": "https://assets.coingecko.com/coins/images/11547/thumb/5614.png?1696511447",
+    "symbol": "ZLW",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x53250b5dfa8c911547afeaf18db025024c8e919a": {
+    "assetId": "eip155:1/erc20:0x53250b5dfa8c911547afeaf18db025024c8e919a",
+    "chainId": "eip155:1",
+    "name": "Kermit",
+    "precision": 9,
+    "color": "#9BBF20",
+    "icon": "https://assets.coingecko.com/coins/images/29858/thumb/Kermit.png?1696528784",
+    "symbol": "KERMIT",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x53263d9ef74db583b15fbc6d5d4e8b83833fa134": {
+    "assetId": "eip155:1/erc20:0x53263d9ef74db583b15fbc6d5d4e8b83833fa134",
+    "chainId": "eip155:1",
+    "name": "LEAP Token on Ethereum",
+    "precision": 18,
+    "color": "#642CE4",
+    "icon": "https://assets.coingecko.com/coins/images/27258/thumb/LEAPtoken_LOGO.png?1696526311",
+    "symbol": "LEAP",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x53340a1ef3a0ddeba1d94bbd1e2ff55936f0ea60": {
+    "assetId": "eip155:1/erc20:0x53340a1ef3a0ddeba1d94bbd1e2ff55936f0ea60",
+    "chainId": "eip155:1",
+    "name": "Bark",
+    "precision": 18,
+    "color": "#DDCEC2",
+    "icon": "https://assets.coingecko.com/coins/images/29341/thumb/BarkLogo200x200.png?1696528290",
+    "symbol": "BARK",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x534d1f5e617e0f72a6b06a04aa599839af776a5e": {
+    "assetId": "eip155:1/erc20:0x534d1f5e617e0f72a6b06a04aa599839af776a5e",
+    "chainId": "eip155:1",
+    "name": "Blockswap Network",
+    "precision": 18,
+    "color": "#17A961",
+    "icon": "https://assets.coingecko.com/coins/images/27023/thumb/BSN_brandmark_in_black_circle_preview.png?1696526075",
+    "symbol": "BSN",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x5358dc7147d8162b74b7944fcfbea23ffa18f93e": {
+    "assetId": "eip155:1/erc20:0x5358dc7147d8162b74b7944fcfbea23ffa18f93e",
+    "chainId": "eip155:1",
+    "name": "Unipoly",
+    "precision": 18,
+    "color": "#FCF3C4",
+    "icon": "https://assets.coingecko.com/coins/images/32510/thumb/20231018_231410.png?1698398961",
+    "symbol": "UNP",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x5362ca75aa3c0e714bc628296640c43dc5cb9ed6": {
+    "assetId": "eip155:1/erc20:0x5362ca75aa3c0e714bc628296640c43dc5cb9ed6",
+    "chainId": "eip155:1",
+    "name": "Dejitaru Hoshi",
+    "precision": 9,
+    "color": "#D2D2D2",
+    "icon": "https://assets.coingecko.com/coins/images/31488/thumb/Hoshi_200x200_-_Copy.png?1696530299",
+    "symbol": "HOSHI",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x536381a8628dbcc8c70ac9a30a7258442eab4c92": {
+    "assetId": "eip155:1/erc20:0x536381a8628dbcc8c70ac9a30a7258442eab4c92",
+    "chainId": "eip155:1",
+    "name": "Pantos",
+    "precision": 8,
+    "color": "#B5688F",
+    "icon": "https://assets.coingecko.com/coins/images/9639/thumb/Pantos-logo-compact.png?1696509709",
+    "symbol": "PAN",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x537edd52ebcb9f48ff2f8a28c51fcdb9d6a6e0d4": {
+    "assetId": "eip155:1/erc20:0x537edd52ebcb9f48ff2f8a28c51fcdb9d6a6e0d4",
+    "chainId": "eip155:1",
+    "name": "Small Doge",
+    "precision": 18,
+    "color": "#EBA57A",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x537edD52ebcb9F48ff2f8a28c51FCdB9D6a6E0D4/logo.png",
+    "symbol": "SDOG",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x5380442d3c4ec4f5777f551f5edd2fa0f691a27c": {
+    "assetId": "eip155:1/erc20:0x5380442d3c4ec4f5777f551f5edd2fa0f691a27c",
+    "chainId": "eip155:1",
+    "name": "UkraineDAO Flag NFT",
+    "precision": 18,
+    "color": "#045CBC",
+    "icon": "https://assets.coingecko.com/coins/images/24092/thumb/download_%282%29.png?1696523285",
+    "symbol": "LOVE",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x53805a76e1f5ebbfe7115f16f9c87c2f7e633726": {
+    "assetId": "eip155:1/erc20:0x53805a76e1f5ebbfe7115f16f9c87c2f7e633726",
+    "chainId": "eip155:1",
+    "name": "f x  Protocol Fractional ETH",
+    "precision": 18,
+    "color": "#424FA3",
+    "icon": "https://assets.coingecko.com/coins/images/32166/thumb/0x53805a76e1f5ebbfe7115f16f9c87c2f7e633726.png?1696724197",
+    "symbol": "FETH",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x53884b61963351c283118a8e1fc05ba464a11959": {
+    "assetId": "eip155:1/erc20:0x53884b61963351c283118a8e1fc05ba464a11959",
+    "chainId": "eip155:1",
+    "name": "Monnos",
+    "precision": 18,
+    "color": "#0404BC",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x53884b61963351C283118a8E1Fc05BA464a11959/logo.png",
+    "symbol": "MNS",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x5394794be8b6ed5572fcd6b27103f46b5f390e8f": {
+    "assetId": "eip155:1/erc20:0x5394794be8b6ed5572fcd6b27103f46b5f390e8f",
+    "chainId": "eip155:1",
+    "name": "Aave AMM UniYFIWETH",
+    "precision": 18,
+    "color": "#3498C4",
+    "icon": "https://assets.coingecko.com/coins/images/17258/thumb/aAmmUniYFIWETH.png?1696516814",
+    "symbol": "AAMMUNIYFIWETH",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x5395df198fcbc9c13bec506004c9a8b6460a7712": {
+    "assetId": "eip155:1/erc20:0x5395df198fcbc9c13bec506004c9a8b6460a7712",
+    "chainId": "eip155:1",
+    "name": "Bubu",
+    "precision": 18,
+    "color": "#E3A621",
+    "icon": "https://assets.coingecko.com/coins/images/30835/thumb/Bubu200x200.png?1696529693",
+    "symbol": "BUBU",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x53bd789f2cdb846b227d8ffc7b46ed4263231fdf": {
+    "assetId": "eip155:1/erc20:0x53bd789f2cdb846b227d8ffc7b46ed4263231fdf",
+    "chainId": "eip155:1",
+    "name": "SimbCoin Swap",
+    "precision": 18,
+    "color": "#CCA85F",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x53Bd789F2cDb846b227d8ffc7B46eD4263231FDf/logo.png",
+    "symbol": "SMBSWAP",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x53c8395465a84955c95159814461466053dedede": {
+    "assetId": "eip155:1/erc20:0x53c8395465a84955c95159814461466053dedede",
+    "chainId": "eip155:1",
+    "name": "DeGate",
+    "precision": 18,
+    "color": "#2494F4",
+    "icon": "https://assets.coingecko.com/coins/images/14415/thumb/DG_token_brand_web_rgb_blue.png?1696514106",
+    "symbol": "DG",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x53dfea0a8cc2a2a2e425e1c174bc162999723ea0": {
+    "assetId": "eip155:1/erc20:0x53dfea0a8cc2a2a2e425e1c174bc162999723ea0",
+    "chainId": "eip155:1",
+    "name": "Jarvis Synthetic Swiss Franc on Ethereum",
+    "precision": 18,
+    "color": "#DC1235",
+    "icon": "https://assets.coingecko.com/coins/images/15727/thumb/jCHF.png?1696515353",
+    "symbol": "JCHF",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x53fd2342b43ecd24aef1535bc3797f509616ce8c": {
+    "assetId": "eip155:1/erc20:0x53fd2342b43ecd24aef1535bc3797f509616ce8c",
+    "chainId": "eip155:1",
+    "name": "Anarchy",
+    "precision": 9,
+    "color": "#E9D8D8",
+    "icon": "https://assets.coingecko.com/coins/images/26583/thumb/90EWu8yp_400x400.jpg?1696525658",
+    "symbol": "ANARCHY",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x54012cdf4119de84218f7eb90eeb87e25ae6ebd7": {
+    "assetId": "eip155:1/erc20:0x54012cdf4119de84218f7eb90eeb87e25ae6ebd7",
+    "chainId": "eip155:1",
+    "name": "Luffy on Ethereum",
+    "precision": 9,
+    "color": "#C5882B",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x54012cDF4119DE84218F7EB90eEB87e25aE6EBd7/logo.png",
+    "symbol": "LUFFY",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x5408245a4d7c685f59ce6d3b8b35916dd6c11a99": {
+    "assetId": "eip155:1/erc20:0x5408245a4d7c685f59ce6d3b8b35916dd6c11a99",
+    "chainId": "eip155:1",
+    "name": "AnonZK",
+    "precision": 18,
+    "color": "#AAAAAC",
+    "icon": "https://assets.coingecko.com/coins/images/29491/thumb/200x200.png?1696528435",
+    "symbol": "AZK",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x543ff227f64aa17ea132bf9886cab5db55dcaddf": {
+    "assetId": "eip155:1/erc20:0x543ff227f64aa17ea132bf9886cab5db55dcaddf",
+    "chainId": "eip155:1",
+    "name": "DAOstack",
+    "precision": 18,
+    "color": "#242424",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x543Ff227F64Aa17eA132Bf9886cAb5DB55DCAddf/logo.png",
+    "symbol": "GEN",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x544c42fbb96b39b21df61cf322b5edc285ee7429": {
+    "assetId": "eip155:1/erc20:0x544c42fbb96b39b21df61cf322b5edc285ee7429",
+    "chainId": "eip155:1",
+    "name": "InsurAce on Ethereum",
+    "precision": 18,
+    "color": "#73BB47",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x544c42fBB96B39B21DF61cf322b5EDC285EE7429/logo.png",
+    "symbol": "INSUR",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x544d230f0362f3843fda5caa99b94cb2b336e384": {
+    "assetId": "eip155:1/erc20:0x544d230f0362f3843fda5caa99b94cb2b336e384",
+    "chainId": "eip155:1",
+    "name": "Magnesium",
+    "precision": 9,
+    "color": "#B4B4B4",
+    "icon": "https://assets.coingecko.com/coins/images/32056/thumb/WhatsApp_Image_2023-09-29_at_15.29.08.jpeg?1696530853",
+    "symbol": "MAG",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x545bd6c032efdde65a377a6719def2796c8e0f2e": {
+    "assetId": "eip155:1/erc20:0x545bd6c032efdde65a377a6719def2796c8e0f2e",
+    "chainId": "eip155:1",
+    "name": "Aave v3 ENS",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/32907/thumb/ens.png?1699816992",
+    "symbol": "AENS",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x547b2f82cecfab9c2b1d36fdda96ef9f58c63b8c": {
+    "assetId": "eip155:1/erc20:0x547b2f82cecfab9c2b1d36fdda96ef9f58c63b8c",
+    "chainId": "eip155:1",
+    "name": "Taxa Network",
+    "precision": 18,
+    "color": "#24A4DC",
+    "icon": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAIAAAACACAMAAAD04JH5AAADAFBMVEUtN0gmpNj///8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADKYaWDAAABAHRSTlP/////AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAf6K/dgAAQItJREFUeNoBgEB/vwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgEBAQEBAQECAgICAgICAAAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgEBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgAAAAAAAAAAAAACAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMAAAAAAAAAAAACAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMAAAAAAAAAAAACAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMAAAAAAAAAAAACAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMAAAAAAAAAAAACAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMAAAAAAAAAAAACAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMAAAAAAAAAAAAAAwMDAwMDAwMDAwMDAwICAgICAgIDAwMDAwMDAwMDAwMDAwMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQEBAwMDAwMDAwMDAwMDAwICAgICAgIDAwMDAwMDAwMDAwMDAwMAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgIDAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgIDAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgIDAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgIDAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgIDAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgIDAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgIDAQEBAQEBAQEBAQEBAQEBAQEBAQEBAwMDAwMDAgICAgICAgAAAAAAAAACAgICAgICAQMDAwMDAwMBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgIDAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgIDAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgIDAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgIDAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgIDAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgIDAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgIDAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAMDAwMDAwICAgICAgIAAwMDAwMDAwEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgIDAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAICAgICAgIDAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgIDAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAICAgICAgIDAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgIDAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAICAgICAgIDAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgIDAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAICAgICAgIDAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgIDAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAICAgICAgIDAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgIDAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAICAgICAgIDAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgIDAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgADAwMDAwMCAgICAgICAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgIDAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgIDAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgIDAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgIDAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgIDAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgIDAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgIDAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAAMDAwMDAwMAAAAAAAAAAwMDAwMDAgICAgICAgEBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgIDAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgIDAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgIDAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgIDAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgIDAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgIDAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgIDAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgIDAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgIDAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgIDAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgIDAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgIDAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgIDAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEDAwMDAwMDAQEBAQEBAQEBAQEBAQEBAQEBAQEBAwMDAwMDAwAAAAAAAAAAAAAAAAAAAAAAAAEBAQMDAwMDAwMBAQEBAQEBAQEBAQEBAQEBAQEBAQEDAwMDAwMDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH5nLV01HBwPAAAAAElFTkSuQmCC",
+    "symbol": "TXT",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x549020a9cb845220d66d3e9c6d9f9ef61c981102": {
+    "assetId": "eip155:1/erc20:0x549020a9cb845220d66d3e9c6d9f9ef61c981102",
+    "chainId": "eip155:1",
+    "name": "Sidus",
+    "precision": 18,
+    "color": "#041BD4",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x549020a9Cb845220D66d3E9c6D9F9eF61C981102/logo.png",
+    "symbol": "SIDUS",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x54a3017754bfba73f71f37d893a368814cbff457": {
+    "assetId": "eip155:1/erc20:0x54a3017754bfba73f71f37d893a368814cbff457",
+    "chainId": "eip155:1",
+    "name": "Wrapped Widecoin",
+    "precision": 8,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/17523/thumb/wwcn-logo-200x200.png?1696517061",
+    "symbol": "WWCN",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x54b8d105aa09342fad6b352d41a0bad3e1a9aa9d": {
+    "assetId": "eip155:1/erc20:0x54b8d105aa09342fad6b352d41a0bad3e1a9aa9d",
+    "chainId": "eip155:1",
+    "name": "Pantomime",
+    "precision": 18,
+    "color": "#909090",
+    "icon": "https://assets.coingecko.com/coins/images/29670/thumb/Pantomime_logo.jpeg?1696528605",
+    "symbol": "PANTO",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x54d1c019c53501f76361bb656542fec427bf13aa": {
+    "assetId": "eip155:1/erc20:0x54d1c019c53501f76361bb656542fec427bf13aa",
+    "chainId": "eip155:1",
+    "name": "Peer to Peer",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/33123/thumb/IMG_7077.PNG?1700794851",
+    "symbol": "P2P",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x54da724e13d64619a36e1ee6f4bf92d5a410da41": {
+    "assetId": "eip155:1/erc20:0x54da724e13d64619a36e1ee6f4bf92d5a410da41",
+    "chainId": "eip155:1",
+    "name": "Secured On Blockchain",
+    "precision": 9,
+    "color": "#8654A4",
+    "icon": "https://assets.coingecko.com/coins/images/32511/thumb/IMG_20230914_104422_780_%281%29.png?1698399012",
+    "symbol": "SOB",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x5510d26c504b21ef22ca85b7125390bc23ca50e7": {
+    "assetId": "eip155:1/erc20:0x5510d26c504b21ef22ca85b7125390bc23ca50e7",
+    "chainId": "eip155:1",
+    "name": "Homer",
+    "precision": 9,
+    "color": "#E1BA36",
+    "icon": "https://assets.coingecko.com/coins/images/30882/thumb/1111.png?1696529729",
+    "symbol": "SIMPSON20",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x5516ac1aaca7bb2fd5b7bdde1549ef1ea242953d": {
+    "assetId": "eip155:1/erc20:0x5516ac1aaca7bb2fd5b7bdde1549ef1ea242953d",
+    "chainId": "eip155:1",
+    "name": "Decentralized ETF",
+    "precision": 18,
+    "color": "#F4F8F7",
+    "icon": "https://assets.coingecko.com/coins/images/24232/thumb/DETF.png?1697123799",
+    "symbol": "DETF",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x5526f0cab9f260023e94cf01e353e70d2f45ed81": {
+    "assetId": "eip155:1/erc20:0x5526f0cab9f260023e94cf01e353e70d2f45ed81",
+    "chainId": "eip155:1",
+    "name": "CockBoxing",
+    "precision": 9,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/32699/thumb/IMG_20231031_171642_092.png?1698984813",
+    "symbol": "COCKS",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x55296f69f40ea6d20e478533c15a6b08b654e758": {
+    "assetId": "eip155:1/erc20:0x55296f69f40ea6d20e478533c15a6b08b654e758",
+    "chainId": "eip155:1",
+    "name": "XYO Network",
+    "precision": 18,
+    "color": "#8E91C4",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x55296f69f40Ea6d20E478533C15A6B08B654E758/logo.png",
+    "symbol": "XYO",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x5543862ba50b6bbc198222a34d30e93a62adce24": {
+    "assetId": "eip155:1/erc20:0x5543862ba50b6bbc198222a34d30e93a62adce24",
+    "chainId": "eip155:1",
+    "name": "Build With Pepe",
+    "precision": 8,
+    "color": "#3C4A38",
+    "icon": "https://assets.coingecko.com/coins/images/31057/thumb/bwp_logo.png?1696529892",
+    "symbol": "BWP",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x5549394cfeef53b08fa41317019f474bfc588528": {
+    "assetId": "eip155:1/erc20:0x5549394cfeef53b08fa41317019f474bfc588528",
+    "chainId": "eip155:1",
+    "name": "Rapid Stakes",
+    "precision": 9,
+    "color": "#E1EEEF",
+    "icon": "https://assets.coingecko.com/coins/images/31166/thumb/D9npeRtv_400x400.jpg?1696529994",
+    "symbol": "RAPID",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x5552e5a89a70cb2ef5adbbc45a6be442fe7160ec": {
+    "assetId": "eip155:1/erc20:0x5552e5a89a70cb2ef5adbbc45a6be442fe7160ec",
+    "chainId": "eip155:1",
+    "name": "Kawakami",
+    "precision": 9,
+    "color": "#D05B51",
+    "icon": "https://assets.coingecko.com/coins/images/16369/thumb/kawakami-2022-red-logo.png?1696515968",
+    "symbol": "KAWA",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x556713e6a6a928af55bf3967f847c62402acbadc": {
+    "assetId": "eip155:1/erc20:0x556713e6a6a928af55bf3967f847c62402acbadc",
+    "chainId": "eip155:1",
+    "name": "Stick Man",
+    "precision": 9,
+    "color": "#6D6D6D",
+    "icon": "https://assets.coingecko.com/coins/images/30173/thumb/logo.png?1696529093",
+    "symbol": "STICK",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x556d4f40982cb95e0714989e0c229c42be8b1499": {
+    "assetId": "eip155:1/erc20:0x556d4f40982cb95e0714989e0c229c42be8b1499",
+    "chainId": "eip155:1",
+    "name": "Golteum",
+    "precision": 18,
+    "color": "#9A8052",
+    "icon": "https://assets.coingecko.com/coins/images/28597/thumb/_GLTM-Token-Border200.png?1696527584",
+    "symbol": "GLTM",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x5579699a6e1da7d924d3bfde38a427be5fc93812": {
+    "assetId": "eip155:1/erc20:0x5579699a6e1da7d924d3bfde38a427be5fc93812",
+    "chainId": "eip155:1",
+    "name": "GodBot",
+    "precision": 9,
+    "color": "#DEEBEE",
+    "icon": "https://assets.coingecko.com/coins/images/31843/thumb/Twitter__avatar-1_%281%29.png?1696530657",
+    "symbol": "GODBOT",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x557b933a7c2c45672b610f8954a3deb39a51a8ca": {
+    "assetId": "eip155:1/erc20:0x557b933a7c2c45672b610f8954a3deb39a51a8ca",
+    "chainId": "eip155:1",
+    "name": "REVV on Ethereum",
+    "precision": 18,
+    "color": "#050505",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x557B933a7C2c45672B610F8954A3deB39a51A8Ca/logo.png",
+    "symbol": "REVV",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x5582a479f0c403e207d2578963ccef5d03ba636f": {
+    "assetId": "eip155:1/erc20:0x5582a479f0c403e207d2578963ccef5d03ba636f",
+    "chainId": "eip155:1",
+    "name": "Salad",
+    "precision": 18,
+    "color": "#142C47",
+    "icon": "https://assets.coingecko.com/coins/images/29936/thumb/RJV4r-hN_400x400.jpg?1696528864",
+    "symbol": "SALD",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x558a64e0652c3a4b7fa1ff9a589425bf42c9179d": {
+    "assetId": "eip155:1/erc20:0x558a64e0652c3a4b7fa1ff9a589425bf42c9179d",
+    "chainId": "eip155:1",
+    "name": "House of Degenerates",
+    "precision": 18,
+    "color": "#9915C8",
+    "icon": "https://assets.coingecko.com/coins/images/32074/thumb/House_of_Degenerates.png?1696530871",
+    "symbol": "HOD",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x558ec3152e2eb2174905cd19aea4e34a23de9ad6": {
+    "assetId": "eip155:1/erc20:0x558ec3152e2eb2174905cd19aea4e34a23de9ad6",
+    "chainId": "eip155:1",
+    "name": "Bread",
+    "precision": 18,
+    "color": "#FB7D6B",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x558EC3152e2eb2174905cd19AeA4e34A23DE9aD6/logo.png",
+    "symbol": "BRD",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x559b7bfc48a5274754b08819f75c5f27af53d53b": {
+    "assetId": "eip155:1/erc20:0x559b7bfc48a5274754b08819f75c5f27af53d53b",
+    "chainId": "eip155:1",
+    "name": "Qi Dao",
+    "precision": 18,
+    "color": "#E56E6F",
+    "icon": "https://assets.coingecko.com/coins/images/15329/thumb/qidao.jpeg?1697093140",
+    "symbol": "QI",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x55a380d134d722006a5ce2d510562e1239d225b1": {
+    "assetId": "eip155:1/erc20:0x55a380d134d722006a5ce2d510562e1239d225b1",
+    "chainId": "eip155:1",
+    "name": "Marvin Inu",
+    "precision": 18,
+    "color": "#9FBF94",
+    "icon": "https://assets.coingecko.com/coins/images/22039/thumb/lVshyCp.png?1696521384",
+    "symbol": "MARVIN",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x55af2344088e2fbca58cacc36b4b2815675a3f98": {
+    "assetId": "eip155:1/erc20:0x55af2344088e2fbca58cacc36b4b2815675a3f98",
+    "chainId": "eip155:1",
+    "name": "Vehicle Mining System",
+    "precision": 18,
+    "color": "#E8B82C",
+    "icon": "https://assets.coingecko.com/coins/images/32229/thumb/VMS.png?1696931883",
+    "symbol": "VMS",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x55af5865807b196bd0197e0902746f31fbccfa58": {
+    "assetId": "eip155:1/erc20:0x55af5865807b196bd0197e0902746f31fbccfa58",
+    "chainId": "eip155:1",
+    "name": "Spookyswap on Ethereum",
+    "precision": 18,
+    "color": "#E6D4E4",
+    "icon": "https://assets.coingecko.com/coins/images/15223/thumb/logo_200x200.png?1696514878",
+    "symbol": "BOO",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x55b2cfcfe99110c773f00b023560dd9ef6c8a13b": {
+    "assetId": "eip155:1/erc20:0x55b2cfcfe99110c773f00b023560dd9ef6c8a13b",
+    "chainId": "eip155:1",
+    "name": "Index Coop CoinDesk ETH Trend Index",
+    "precision": 18,
+    "color": "#0EC85E",
+    "icon": "https://assets.coingecko.com/coins/images/32358/thumb/cdETI-logo.png?1697940129",
+    "symbol": "CDETI",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x55c08ca52497e2f1534b59e2917bf524d4765257": {
+    "assetId": "eip155:1/erc20:0x55c08ca52497e2f1534b59e2917bf524d4765257",
+    "chainId": "eip155:1",
+    "name": "UwU Lend",
+    "precision": 18,
+    "color": "#262669",
+    "icon": "https://assets.coingecko.com/coins/images/27408/thumb/uwu_logo_no-bg_1024.png?1696526449",
+    "symbol": "UWU",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x55c5bd14ec3b3e24fd8c5e8b8eb9a52e876e5a06": {
+    "assetId": "eip155:1/erc20:0x55c5bd14ec3b3e24fd8c5e8b8eb9a52e876e5a06",
+    "chainId": "eip155:1",
+    "name": "NitroBots",
+    "precision": 18,
+    "color": "#9F6ADC",
+    "icon": "https://assets.coingecko.com/coins/images/32526/thumb/Nitro.png?1698411154",
+    "symbol": "NITRO",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x55fb228730ed971269ebf284c7500d5ff572a141": {
+    "assetId": "eip155:1/erc20:0x55fb228730ed971269ebf284c7500d5ff572a141",
+    "chainId": "eip155:1",
+    "name": "Pepecola",
+    "precision": 9,
+    "color": "#E3E6E2",
+    "icon": "https://assets.coingecko.com/coins/images/30181/thumb/200.png?1696529100",
+    "symbol": "PEPECOLA",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x56015bbe3c01fe05bc30a8a9a9fd9a88917e7db3": {
+    "assetId": "eip155:1/erc20:0x56015bbe3c01fe05bc30a8a9a9fd9a88917e7db3",
+    "chainId": "eip155:1",
+    "name": "Mooncat CAT",
+    "precision": 18,
+    "color": "#E4EBE6",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x56015BBE3C01fE05bc30A8a9a9Fd9A88917e7dB3/logo.png",
+    "symbol": "CAT",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x560363bda52bc6a44ca6c8c9b4a5fadbda32fa60": {
+    "assetId": "eip155:1/erc20:0x560363bda52bc6a44ca6c8c9b4a5fadbda32fa60",
+    "chainId": "eip155:1",
+    "name": "Seedify fund on Ethereum",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/14614/thumb/Favicon_Icon.png?1696514292",
+    "symbol": "SFUND",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x561cf9121e89926c27fa1cfc78dfcc4c422937a4": {
+    "assetId": "eip155:1/erc20:0x561cf9121e89926c27fa1cfc78dfcc4c422937a4",
+    "chainId": "eip155:1",
+    "name": "Squid Game on Ethereum",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/33074/thumb/photo_2023-11-17_14.18.23.jpeg?1700542677",
+    "symbol": "SQUID",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x56263bde26b72b3e3d26d8e03399a275aa8bbfb2": {
+    "color": "#FFFFFF",
+    "icon": "https://raw.githubusercontent.com/Idle-Labs/idle-dashboard/master/public/images/tokens/DAI.svg",
+    "name": "EulerStaking DAI Junior Tranche",
+    "precision": 18,
+    "symbol": "BB_idleEulStk_eUSDC",
+    "chainId": "eip155:1",
+    "assetId": "eip155:1/erc20:0x56263bde26b72b3e3d26d8e03399a275aa8bbfb2",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x562d8e607bed7fc183ca84c0362c853680b99638": {
+    "assetId": "eip155:1/erc20:0x562d8e607bed7fc183ca84c0362c853680b99638",
+    "chainId": "eip155:1",
+    "name": "Rewardz  Network",
+    "precision": 18,
+    "color": "#2D344C",
+    "icon": "https://assets.coingecko.com/coins/images/30396/thumb/token_logo_etc-200px.png?1696529285",
+    "symbol": "RAYN",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x562e12e1e792643d168c1fa01c1b7198a0f83c9f": {
+    "assetId": "eip155:1/erc20:0x562e12e1e792643d168c1fa01c1b7198a0f83c9f",
+    "chainId": "eip155:1",
+    "name": "BookieBot",
+    "precision": 18,
+    "color": "#090E0B",
+    "icon": "https://assets.coingecko.com/coins/images/31546/thumb/photo_2023-08-23_17-48-35_200x200.jpg?1696530359",
+    "symbol": "BB",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x562e362876c8aee4744fc2c6aac8394c312d215d": {
+    "assetId": "eip155:1/erc20:0x562e362876c8aee4744fc2c6aac8394c312d215d",
+    "chainId": "eip155:1",
+    "name": "Optimus AI",
+    "precision": 9,
+    "color": "#696A6D",
+    "icon": "https://assets.coingecko.com/coins/images/29328/thumb/photo_2023-11-14_22-41-11.png?1700091127",
+    "symbol": "OPTI",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x565d3902d6a5a2d5ce28ff427423e88933334dd2": {
+    "assetId": "eip155:1/erc20:0x565d3902d6a5a2d5ce28ff427423e88933334dd2",
+    "chainId": "eip155:1",
+    "name": "Adult Playground",
+    "precision": 18,
+    "color": "#A414C4",
+    "icon": "https://assets.coingecko.com/coins/images/32053/thumb/0x565d3902d6a5a2d5ce28ff427423e88933334dd2.png?1696530850",
+    "symbol": "ADULT",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x56694577564fdd577a0abb20fe95c1e2756c2a11": {
+    "assetId": "eip155:1/erc20:0x56694577564fdd577a0abb20fe95c1e2756c2a11",
+    "chainId": "eip155:1",
+    "name": "AdaSwap",
+    "precision": 18,
+    "color": "#AEB4B4",
+    "icon": "https://assets.coingecko.com/coins/images/24453/thumb/rA5cmPtX_400x400.jpg?1696523633",
+    "symbol": "ASW",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x569424c5ee13884a193773fdc5d1c5f79c443a51": {
+    "assetId": "eip155:1/erc20:0x569424c5ee13884a193773fdc5d1c5f79c443a51",
+    "chainId": "eip155:1",
+    "name": "Pine on Ethereum",
+    "precision": 18,
+    "color": "#7CFCB4",
+    "icon": "https://assets.coingecko.com/coins/images/25660/thumb/Logomark-Colour.png?1696524788",
+    "symbol": "PINE",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x56978e609f2cab06f77c5c8fd75166fcd8f09bd8": {
+    "assetId": "eip155:1/erc20:0x56978e609f2cab06f77c5c8fd75166fcd8f09bd8",
+    "chainId": "eip155:1",
+    "name": "GenieBot",
+    "precision": 18,
+    "color": "#D5D5D5",
+    "icon": "https://assets.coingecko.com/coins/images/30874/thumb/IMG_0334.jpeg?1696529722",
+    "symbol": "GENIE",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x56b4f8c39e07d4d5d91692acf9d0f6d4d3493763": {
+    "assetId": "eip155:1/erc20:0x56b4f8c39e07d4d5d91692acf9d0f6d4d3493763",
+    "chainId": "eip155:1",
+    "name": "Trism",
+    "precision": 18,
+    "color": "#404BCD",
+    "icon": "https://assets.coingecko.com/coins/images/13549/thumb/76106366.png?1696513308",
+    "symbol": "TRISM",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x56c03b8c4fa80ba37f5a7b60caaaef749bb5b220": {
+    "assetId": "eip155:1/erc20:0x56c03b8c4fa80ba37f5a7b60caaaef749bb5b220",
+    "chainId": "eip155:1",
+    "name": "CANTO",
+    "precision": 18,
+    "color": "#04FC9C",
+    "icon": "https://assets.coingecko.com/coins/images/26959/thumb/canto-network.png?1696526014",
+    "symbol": "CANTO",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x56c9d5f1e727de03643af220b5ce52de23d4d973": {
+    "assetId": "eip155:1/erc20:0x56c9d5f1e727de03643af220b5ce52de23d4d973",
+    "chainId": "eip155:1",
+    "name": "Decentra Box",
+    "precision": 18,
+    "color": "#DA4EBA",
+    "icon": "https://assets.coingecko.com/coins/images/29513/thumb/decentrabox.png?1696528457",
+    "symbol": "DBOX",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x56d811088235f11c8920698a204a5010a788f4b3": {
+    "assetId": "eip155:1/erc20:0x56d811088235f11c8920698a204a5010a788f4b3",
+    "chainId": "eip155:1",
+    "name": "bZx Protocol",
+    "precision": 18,
+    "color": "#0F6CD6",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x56d811088235F11C8920698a204A5010a788f4b3/logo.png",
+    "symbol": "BZRX",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x56de8bc61346321d4f2211e3ac3c0a7f00db9b76": {
+    "assetId": "eip155:1/erc20:0x56de8bc61346321d4f2211e3ac3c0a7f00db9b76",
+    "chainId": "eip155:1",
+    "name": "RENA Finance",
+    "precision": 18,
+    "color": "#EBD7ED",
+    "icon": "https://assets.coingecko.com/coins/images/15667/thumb/photo_2021-05-21_17-31-35.png?1696515297",
+    "symbol": "RENA",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x570147337f1a2313fc35573f6a123ceb109eb901": {
+    "assetId": "eip155:1/erc20:0x570147337f1a2313fc35573f6a123ceb109eb901",
+    "chainId": "eip155:1",
+    "name": "0xFriend",
+    "precision": 9,
+    "color": "#E9F7F5",
+    "icon": "https://assets.coingecko.com/coins/images/31414/thumb/0xfriendlive.jpg?1696530229",
+    "symbol": "0XF",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x570936840fa942c96ca4c57a170dda494dd9b9c6": {
+    "assetId": "eip155:1/erc20:0x570936840fa942c96ca4c57a170dda494dd9b9c6",
+    "chainId": "eip155:1",
+    "name": "Decentral ART on Ethereum",
+    "precision": 18,
+    "color": "#D0CFC3",
+    "icon": "https://assets.coingecko.com/coins/images/29398/thumb/E58AC31F-1B46-4BAD-B8D8-E01551303E09.jpeg?1696528348",
+    "symbol": "ART",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x571e21a545842c6ce596663cda5caa8196ac1c7a": {
+    "assetId": "eip155:1/erc20:0x571e21a545842c6ce596663cda5caa8196ac1c7a",
+    "chainId": "eip155:1",
+    "name": "Champignons of Arborethia",
+    "precision": 8,
+    "color": "#253F40",
+    "icon": "https://assets.coingecko.com/coins/images/31124/thumb/ChampzSquare200x200.png?1696529954",
+    "symbol": "CHAMPZ",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x5732046a883704404f284ce41ffadd5b007fd668": {
+    "assetId": "eip155:1/erc20:0x5732046a883704404f284ce41ffadd5b007fd668",
+    "chainId": "eip155:1",
+    "name": "Bluzelle on Ethereum",
+    "precision": 18,
+    "color": "#1B548C",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x5732046A883704404F284Ce41FfADd5b007FD668/logo.png",
+    "symbol": "BLZ",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x574d22e2555cac0ce71e44778f6de2e7487ae229": {
+    "assetId": "eip155:1/erc20:0x574d22e2555cac0ce71e44778f6de2e7487ae229",
+    "chainId": "eip155:1",
+    "name": "SoonVerse",
+    "precision": 18,
+    "color": "#B1C7A8",
+    "icon": "https://assets.coingecko.com/coins/images/29448/thumb/1.png?1696528395",
+    "symbol": "SOON",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x575b57ca64d2de54fe78fae6d952251bbb6d251a": {
+    "assetId": "eip155:1/erc20:0x575b57ca64d2de54fe78fae6d952251bbb6d251a",
+    "chainId": "eip155:1",
+    "name": "BlockJack",
+    "precision": 18,
+    "color": "#2C1939",
+    "icon": "https://assets.coingecko.com/coins/images/31104/thumb/BJ-NEW-NB.png?1696529935",
+    "symbol": "JACK",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x576e2bed8f7b46d34016198911cdf9886f78bea7": {
+    "assetId": "eip155:1/erc20:0x576e2bed8f7b46d34016198911cdf9886f78bea7",
+    "chainId": "eip155:1",
+    "name": "MAGA",
+    "precision": 9,
+    "color": "#25426C",
+    "icon": "https://assets.coingecko.com/coins/images/31498/thumb/Maga-Trump-Logo-200px.png?1696530309",
+    "symbol": "TRUMP",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x57700244b20f84799a31c6c96dadff373ca9d6c5": {
+    "assetId": "eip155:1/erc20:0x57700244b20f84799a31c6c96dadff373ca9d6c5",
+    "chainId": "eip155:1",
+    "name": "TrustDAO",
+    "precision": 18,
+    "color": "#F0F0F0",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x57700244B20f84799a31c6C96DadFF373ca9D6c5/logo.png",
+    "symbol": "TRUST",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x577fee283e776eec29c9e4d258431982780a38a8": {
+    "assetId": "eip155:1/erc20:0x577fee283e776eec29c9e4d258431982780a38a8",
+    "chainId": "eip155:1",
+    "name": "Pepa ERC",
+    "precision": 9,
+    "color": "#C69DA0",
+    "icon": "https://assets.coingecko.com/coins/images/29866/thumb/3iGdoyL.png?1696528791",
+    "symbol": "PEPA",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x579cea1889991f68acc35ff5c3dd0621ff29b0c9": {
+    "assetId": "eip155:1/erc20:0x579cea1889991f68acc35ff5c3dd0621ff29b0c9",
+    "chainId": "eip155:1",
+    "name": "IQ on Ethereum",
+    "precision": 18,
+    "color": "#FB5CAC",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x579CEa1889991f68aCc35Ff5c3dd0621fF29b0C9/logo.png",
+    "symbol": "IQ",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x57ab1ec28d129707052df4df418d58a2d46d5f51": {
+    "assetId": "eip155:1/erc20:0x57ab1ec28d129707052df4df418d58a2d46d5f51",
+    "chainId": "eip155:1",
+    "name": "sUSD on Ethereum",
+    "precision": 18,
+    "color": "#1C1B33",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x57Ab1ec28D129707052df4dF418D58a2D46d5f51/logo.png",
+    "symbol": "SUSD",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x57b59f981730c6257df57cf6f0d98283749a9eeb": {
+    "assetId": "eip155:1/erc20:0x57b59f981730c6257df57cf6f0d98283749a9eeb",
+    "chainId": "eip155:1",
+    "name": "BUILD on Ethereum",
+    "precision": 18,
+    "color": "#EC1C24",
+    "icon": "https://assets.coingecko.com/coins/images/26533/thumb/BUILD.png?1696525607",
+    "symbol": "BUILD",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x57b946008913b82e4df85f501cbaed910e58d26c": {
+    "assetId": "eip155:1/erc20:0x57b946008913b82e4df85f501cbaed910e58d26c",
+    "chainId": "eip155:1",
+    "name": "Marlin on Ethereum",
+    "precision": 18,
+    "color": "#3B43C4",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x57B946008913B82E4dF85f501cbAeD910e58D26C/logo.png",
+    "symbol": "POND",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x57d579f483854c62fef850b8a5332b0d8424b7e2": {
+    "assetId": "eip155:1/erc20:0x57d579f483854c62fef850b8a5332b0d8424b7e2",
+    "chainId": "eip155:1",
+    "name": "OpenSwap One on Ethereum",
+    "precision": 18,
+    "color": "#56BCC4",
+    "icon": "https://assets.coingecko.com/coins/images/19274/thumb/X_color.png?1696518717",
+    "symbol": "OPENX",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x58002a6b6e659a16de9f02f529b10536e307b0d9": {
+    "assetId": "eip155:1/erc20:0x58002a6b6e659a16de9f02f529b10536e307b0d9",
+    "chainId": "eip155:1",
+    "name": "Crypto Holding Frank",
+    "precision": 18,
+    "color": "#C1B694",
+    "icon": "https://assets.coingecko.com/coins/images/11184/thumb/chft.png?1696511117",
+    "symbol": "CHFT",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x58083b54013631bacc0bbb6d4efa543fee1d9ce0": {
+    "assetId": "eip155:1/erc20:0x58083b54013631bacc0bbb6d4efa543fee1d9ce0",
+    "chainId": "eip155:1",
+    "name": "Force",
+    "precision": 18,
+    "color": "#DACFFA",
+    "icon": "https://assets.coingecko.com/coins/images/30917/thumb/force_token_1000.png?1696529762",
+    "symbol": "FRC",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x580c8520deda0a441522aeae0f9f7a5f29629afa": {
+    "assetId": "eip155:1/erc20:0x580c8520deda0a441522aeae0f9f7a5f29629afa",
+    "chainId": "eip155:1",
+    "name": "Dawn Protocol",
+    "precision": 18,
+    "color": "#35296D",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x580c8520dEDA0a441522AEAe0f9F7A5f29629aFa/logo.png",
+    "symbol": "DAWN",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x580e933d90091b9ce380740e3a4a39c67eb85b4c": {
+    "assetId": "eip155:1/erc20:0x580e933d90091b9ce380740e3a4a39c67eb85b4c",
+    "chainId": "eip155:1",
+    "name": "GameSwift on Ethereum",
+    "precision": 18,
+    "color": "#1D252A",
+    "icon": "https://assets.coingecko.com/coins/images/30949/thumb/GameSwift_Token.png?1696529788",
+    "symbol": "GSWIFT",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x581911b360b6eb3a14ef295a83a91dc2bce2d6f7": {
+    "assetId": "eip155:1/erc20:0x581911b360b6eb3a14ef295a83a91dc2bce2d6f7",
+    "chainId": "eip155:1",
+    "name": "MileVerse",
+    "precision": 18,
+    "color": "#774F71",
+    "icon": "https://assets.coingecko.com/coins/images/13146/thumb/kXSdwuxD_400x400.jpg?1696512931",
+    "symbol": "MVC",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x581dafeba7bf8fa69e4387eff5eae9eb6401657c": {
+    "assetId": "eip155:1/erc20:0x581dafeba7bf8fa69e4387eff5eae9eb6401657c",
+    "chainId": "eip155:1",
+    "name": "Threads",
+    "precision": 18,
+    "color": "#E6E6E6",
+    "icon": "https://assets.coingecko.com/coins/images/30970/thumb/2neo02_N_400x400.jpg?1696529810",
+    "symbol": "THREADS",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x582d872a1b094fc48f5de31d3b73f2d9be47def1": {
+    "assetId": "eip155:1/erc20:0x582d872a1b094fc48f5de31d3b73f2d9be47def1",
+    "chainId": "eip155:1",
+    "name": "Toncoin on Ethereum",
+    "precision": 9,
+    "color": "#548FB4",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x582d872A1B094FC48F5DE31D3B73F2D9bE47def1/logo.png",
+    "symbol": "TON",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x583019ff0f430721ada9cfb4fac8f06ca104d0b4": {
+    "assetId": "eip155:1/erc20:0x583019ff0f430721ada9cfb4fac8f06ca104d0b4",
+    "chainId": "eip155:1",
+    "name": "Staked Yearn Ether",
+    "precision": 18,
+    "color": "#C0BDDD",
+    "icon": "https://assets.coingecko.com/coins/images/32222/thumb/st-yETH-128px.png?1696914941",
+    "symbol": "ST-YETH",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x5833dbb0749887174b254ba4a5df747ff523a905": {
+    "assetId": "eip155:1/erc20:0x5833dbb0749887174b254ba4a5df747ff523a905",
+    "chainId": "eip155:1",
+    "name": "XRun",
+    "precision": 18,
+    "color": "#22A1BC",
+    "icon": "https://assets.coingecko.com/coins/images/25272/thumb/19787.png?1696524411",
+    "symbol": "XRUN",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x583cc692aefe93c57cd55b6cd11d39cf1aa98c8f": {
+    "assetId": "eip155:1/erc20:0x583cc692aefe93c57cd55b6cd11d39cf1aa98c8f",
+    "chainId": "eip155:1",
+    "name": "NCAT",
+    "precision": 18,
+    "color": "#422076",
+    "icon": "https://assets.coingecko.com/coins/images/31021/thumb/200x200.png?1696529857",
+    "symbol": "NCAT",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x584bc13c7d411c00c01a62e8019472de68768430": {
+    "assetId": "eip155:1/erc20:0x584bc13c7d411c00c01a62e8019472de68768430",
+    "chainId": "eip155:1",
+    "name": "Hegic on Ethereum",
+    "precision": 18,
+    "color": "#93F6F7",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x584bC13c7D411c00c01A62e8019472dE68768430/logo.png",
+    "symbol": "HEGIC",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x586a7cfe21e55ec0e24f0bfb118f77fe4ca87bab": {
+    "assetId": "eip155:1/erc20:0x586a7cfe21e55ec0e24f0bfb118f77fe4ca87bab",
+    "chainId": "eip155:1",
+    "name": "BetbuInu",
+    "precision": 18,
+    "color": "#342F2E",
+    "icon": "https://assets.coingecko.com/coins/images/31298/thumb/Betbu.jpeg?1696530118",
+    "symbol": "CRYPTO",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x5888641e3e6cbea6d84ba81edb217bd691d3be38": {
+    "assetId": "eip155:1/erc20:0x5888641e3e6cbea6d84ba81edb217bd691d3be38",
+    "chainId": "eip155:1",
+    "name": "Bobo",
+    "precision": 9,
+    "color": "#B92C18",
+    "icon": "https://assets.coingecko.com/coins/images/29875/thumb/BOBO_200.png?1696528799",
+    "symbol": "BOBO",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x5891599664ed15c6e88041b4f5bc08594f026f0e": {
+    "assetId": "eip155:1/erc20:0x5891599664ed15c6e88041b4f5bc08594f026f0e",
+    "chainId": "eip155:1",
+    "name": "JPGoldCoin",
+    "precision": 18,
+    "color": "#18150D",
+    "icon": "https://assets.coingecko.com/coins/images/27321/thumb/JPGC_LOGO-_Coingecko.png?1696526370",
+    "symbol": "JPGC",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x58b6a8a3302369daec383334672404ee733ab239": {
+    "assetId": "eip155:1/erc20:0x58b6a8a3302369daec383334672404ee733ab239",
+    "chainId": "eip155:1",
+    "name": "Livepeer on Ethereum",
+    "precision": 18,
+    "color": "#040404",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x58b6A8A3302369DAEc383334672404Ee733aB239/logo.png",
+    "symbol": "LPT",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x58f7345b5295e43aa454911571f13be186655be9": {
+    "assetId": "eip155:1/erc20:0x58f7345b5295e43aa454911571f13be186655be9",
+    "chainId": "eip155:1",
+    "name": "Garlicoin on Ethereum",
+    "precision": 8,
+    "color": "#F5D56A",
+    "icon": "https://assets.coingecko.com/coins/images/2699/thumb/garlicoin.png?1696503483",
+    "symbol": "GRLC",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x58f9102bf53cf186682bd9a281d3cd3c616eec41": {
+    "assetId": "eip155:1/erc20:0x58f9102bf53cf186682bd9a281d3cd3c616eec41",
+    "chainId": "eip155:1",
+    "name": "Triall on Ethereum",
+    "precision": 18,
+    "color": "#2D7E97",
+    "icon": "https://assets.coingecko.com/coins/images/18679/thumb/-B7ftfN8_400x400.png?1696518148",
+    "symbol": "TRL",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x58fad9e3c3ae54c9ba98c3f0e4bf88ab3e8cf3c5": {
+    "assetId": "eip155:1/erc20:0x58fad9e3c3ae54c9ba98c3f0e4bf88ab3e8cf3c5",
+    "chainId": "eip155:1",
+    "name": "SpaceY 2025 on Ethereum",
+    "precision": 18,
+    "color": "#F4DDFC",
+    "icon": "https://assets.coingecko.com/coins/images/20499/thumb/spacey2025.PNG?1696519906",
+    "symbol": "SPAY",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x58fb30a61c218a3607e9273d52995a49ff2697ee": {
+    "assetId": "eip155:1/erc20:0x58fb30a61c218a3607e9273d52995a49ff2697ee",
+    "chainId": "eip155:1",
+    "name": "PintSwap",
+    "precision": 18,
+    "color": "#221A22",
+    "icon": "https://assets.coingecko.com/coins/images/32396/thumb/Pint_token_logo.jpg?1698054159",
+    "symbol": "PINT",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x58fcaa970339a9b1f8c0a5b4f3fcd7af2ba3075e": {
+    "assetId": "eip155:1/erc20:0x58fcaa970339a9b1f8c0a5b4f3fcd7af2ba3075e",
+    "chainId": "eip155:1",
+    "name": "Polar Sync",
+    "precision": 18,
+    "color": "#DFD4E0",
+    "icon": "https://assets.coingecko.com/coins/images/18102/thumb/polar-sync-logo-200.jpeg?1696517607",
+    "symbol": "POLAR",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x590f820444fa3638e022776752c5eef34e2f89a6": {
+    "assetId": "eip155:1/erc20:0x590f820444fa3638e022776752c5eef34e2f89a6",
+    "chainId": "eip155:1",
+    "name": "Alephium",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/21598/thumb/Alephium-Logo_200x200_listing.png?1696520959",
+    "symbol": "ALPH",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x5919dea604631016c15c805e3d948a0384879892": {
+    "assetId": "eip155:1/erc20:0x5919dea604631016c15c805e3d948a0384879892",
+    "chainId": "eip155:1",
+    "name": "The People s Coin",
+    "precision": 9,
+    "color": "#515D7A",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x5919DeA604631016c15c805e3D948A0384879892/logo.png",
+    "symbol": "PEEP",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x59276455177429ae2af1cc62b77ae31b34ec3890": {
+    "assetId": "eip155:1/erc20:0x59276455177429ae2af1cc62b77ae31b34ec3890",
+    "chainId": "eip155:1",
+    "name": "Sturdy",
+    "precision": 18,
+    "color": "#242C44",
+    "icon": "https://assets.coingecko.com/coins/images/30581/thumb/SF-Dark-Logomark.png?1696529445",
+    "symbol": "STRDY",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x593114f03a0a575aece9ed675e52ed68d2172b8c": {
+    "assetId": "eip155:1/erc20:0x593114f03a0a575aece9ed675e52ed68d2172b8c",
+    "chainId": "eip155:1",
+    "name": "BidiPass",
+    "precision": 18,
+    "color": "#B04CE1",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x593114f03A0A575aece9ED675e52Ed68D2172B8c/logo.png",
+    "symbol": "BDP",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x5957c351946d45f74d1a6f034cd9b6ac6654e0d7": {
+    "assetId": "eip155:1/erc20:0x5957c351946d45f74d1a6f034cd9b6ac6654e0d7",
+    "chainId": "eip155:1",
+    "name": "Chart Roulette",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/33111/thumb/IMG_20231121_180645_701.jpg?1700707947",
+    "symbol": "CR",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x595832f8fc6bf59c85c527fec3740a1b7a361269": {
+    "assetId": "eip155:1/erc20:0x595832f8fc6bf59c85c527fec3740a1b7a361269",
+    "chainId": "eip155:1",
+    "name": "Power Ledger",
+    "precision": 6,
+    "color": "#21B5A5",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x595832F8FC6BF59c85C527fEC3740A1b7a361269/logo.png",
+    "symbol": "POWR",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x597981eac8a293054a1826c7b60cbf92972a36c1": {
+    "assetId": "eip155:1/erc20:0x597981eac8a293054a1826c7b60cbf92972a36c1",
+    "chainId": "eip155:1",
+    "name": "Caacon",
+    "precision": 9,
+    "color": "#0C0404",
+    "icon": "https://assets.coingecko.com/coins/images/31023/thumb/Caacon_logo.png?1696529859",
+    "symbol": "CC",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x59b44e9ac4ab8e29db6faf7bacd726c6b7bc94b9": {
+    "assetId": "eip155:1/erc20:0x59b44e9ac4ab8e29db6faf7bacd726c6b7bc94b9",
+    "chainId": "eip155:1",
+    "name": "Black Eyed Dragon",
+    "precision": 9,
+    "color": "#0F0E10",
+    "icon": "https://assets.coingecko.com/coins/images/29432/thumb/C4B58A54-53A3-4644-8F61-2B86BF006122.jpeg?1696528380",
+    "symbol": "BLEYD",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x59c6766de1dc50a9c9db86cb0461b5ce07408ab7": {
+    "assetId": "eip155:1/erc20:0x59c6766de1dc50a9c9db86cb0461b5ce07408ab7",
+    "chainId": "eip155:1",
+    "name": "Spurdo",
+    "precision": 8,
+    "color": "#F4F4E2",
+    "icon": "https://assets.coingecko.com/coins/images/31342/thumb/photo_2023-08-16_19-23-12_%281%29.png?1696530160",
+    "symbol": "SPURDO",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x59d1e836f7b7210a978b25a855085cc46fd090b5": {
+    "assetId": "eip155:1/erc20:0x59d1e836f7b7210a978b25a855085cc46fd090b5",
+    "chainId": "eip155:1",
+    "name": "AssangeDAO",
+    "precision": 18,
+    "color": "#E6E6E6",
+    "icon": "https://assets.coingecko.com/coins/images/23555/thumb/JUSTICE_token_logo.png?1696522761",
+    "symbol": "JUSTICE",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x59d9356e565ab3a36dd77763fc0d87feaf85508c": {
+    "assetId": "eip155:1/erc20:0x59d9356e565ab3a36dd77763fc0d87feaf85508c",
+    "chainId": "eip155:1",
+    "name": "Mountain Protocol USD on Ethereum",
+    "precision": 18,
+    "color": "#171717",
+    "icon": "https://assets.coingecko.com/coins/images/31719/thumb/usdm.png?1696530540",
+    "symbol": "USDM",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x59e9261255644c411afdd00bd89162d09d862e38": {
+    "assetId": "eip155:1/erc20:0x59e9261255644c411afdd00bd89162d09d862e38",
+    "chainId": "eip155:1",
+    "name": "ETHA Lend",
+    "precision": 18,
+    "color": "#D2D4DC",
+    "icon": "https://assets.coingecko.com/coins/images/14141/thumb/etha_logo200x200.png?1696513861",
+    "symbol": "ETHA",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x59f7b6bb42cb9c47f16fb0fbb15f154f1046ec60": {
+    "assetId": "eip155:1/erc20:0x59f7b6bb42cb9c47f16fb0fbb15f154f1046ec60",
+    "chainId": "eip155:1",
+    "name": "ThunderBot",
+    "precision": 18,
+    "color": "#8D9030",
+    "icon": "https://assets.coingecko.com/coins/images/32045/thumb/0x59f7b6bb42cb9c47f16fb0fbb15f154f1046ec60.png?1696530842",
+    "symbol": "THUND",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x5a035e3f1551a15230d0cde3357fb1bf89369261": {
+    "assetId": "eip155:1/erc20:0x5a035e3f1551a15230d0cde3357fb1bf89369261",
+    "chainId": "eip155:1",
+    "name": "Wooonen",
+    "precision": 18,
+    "color": "#D55A6C",
+    "icon": "https://assets.coingecko.com/coins/images/30909/thumb/SGpzsmu.jpg?1696529754",
+    "symbol": "WOOO",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x5a0fcd6247f37154b6ab433ab72dc2ac7b3ebb8b": {
+    "assetId": "eip155:1/erc20:0x5a0fcd6247f37154b6ab433ab72dc2ac7b3ebb8b",
+    "chainId": "eip155:1",
+    "name": "DPRK Coin",
+    "precision": 8,
+    "color": "#5F514B",
+    "icon": "https://assets.coingecko.com/coins/images/31481/thumb/dprk-logo-200x200.png?1696530293",
+    "symbol": "DPRK",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x5a338f22b798490ec3e70cd5e64d0cc0754241c0": {
+    "assetId": "eip155:1/erc20:0x5a338f22b798490ec3e70cd5e64d0cc0754241c0",
+    "chainId": "eip155:1",
+    "name": "Null Social Finance",
+    "precision": 18,
+    "color": "#040404",
+    "icon": "https://assets.coingecko.com/coins/images/32485/thumb/logo-1.png?1698291028",
+    "symbol": "NSF",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x5a3e6a77ba2f983ec0d371ea3b475f8bc0811ad5": {
+    "assetId": "eip155:1/erc20:0x5a3e6a77ba2f983ec0d371ea3b475f8bc0811ad5",
+    "chainId": "eip155:1",
+    "name": "0x0 ai  AI Smart Contract",
+    "precision": 9,
+    "color": "#CCCCCC",
+    "icon": "https://assets.coingecko.com/coins/images/28880/thumb/0x0.png?1696527857",
+    "symbol": "0X0",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x5a666c7d92e5fa7edcb6390e4efd6d0cdd69cf37": {
+    "assetId": "eip155:1/erc20:0x5a666c7d92e5fa7edcb6390e4efd6d0cdd69cf37",
+    "chainId": "eip155:1",
+    "name": "Unmarshal on Ethereum",
+    "precision": 18,
+    "color": "#34D49C",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x5a666c7d92E5fA7Edcb6390E4efD6d0CDd69cF37/logo.png",
+    "symbol": "MARSH",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x5a98fcbea516cf06857215779fd812ca3bef1b32": {
+    "assetId": "eip155:1/erc20:0x5a98fcbea516cf06857215779fd812ca3bef1b32",
+    "chainId": "eip155:1",
+    "name": "Lido DAO on Ethereum",
+    "precision": 18,
+    "color": "#51AEEA",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x5A98FcBEA516Cf06857215779Fd812CA3beF1B32/logo.png",
+    "symbol": "LDO",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x5aa158404fed6b4730c13f49d3a7f820e14a636f": {
+    "assetId": "eip155:1/erc20:0x5aa158404fed6b4730c13f49d3a7f820e14a636f",
+    "chainId": "eip155:1",
+    "name": "ULTRON on Ethereum",
+    "precision": 18,
+    "color": "#E9E2F4",
+    "icon": "https://assets.coingecko.com/coins/images/26977/thumb/ULTRON-Profile-Pic.jpg?1696526031",
+    "symbol": "ULX",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x5aaefe84e0fb3dd1f0fcff6fa7468124986b91bd": {
+    "assetId": "eip155:1/erc20:0x5aaefe84e0fb3dd1f0fcff6fa7468124986b91bd",
+    "chainId": "eip155:1",
+    "name": "Evedo",
+    "precision": 18,
+    "color": "#EA3A6E",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x5aaEFe84E0fB3DD1f0fCfF6fA7468124986B91bd/logo.png",
+    "symbol": "EVED",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x5abf88cf3444611d13f6d1b39f3f3ee8575c91a2": {
+    "assetId": "eip155:1/erc20:0x5abf88cf3444611d13f6d1b39f3f3ee8575c91a2",
+    "chainId": "eip155:1",
+    "name": "Super Athletes Token",
+    "precision": 18,
+    "color": "#719CFB",
+    "icon": "https://assets.coingecko.com/coins/images/27761/thumb/SAT_200.png?1696526784",
+    "symbol": "SAT",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x5ac83bfbfcebb3397a40fd259dbe7a4be04237d3": {
+    "assetId": "eip155:1/erc20:0x5ac83bfbfcebb3397a40fd259dbe7a4be04237d3",
+    "chainId": "eip155:1",
+    "name": "Lyfebloc",
+    "precision": 18,
+    "color": "#160E10",
+    "icon": "https://assets.coingecko.com/coins/images/30021/thumb/LBT_Token.png?1696528945",
+    "symbol": "LBT",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x5acd02940d2e56d9402b8d224e56bd800c544466": {
+    "assetId": "eip155:1/erc20:0x5acd02940d2e56d9402b8d224e56bd800c544466",
+    "chainId": "eip155:1",
+    "name": "Real Strawberry Elephant",
+    "precision": 9,
+    "color": "#5A703E",
+    "icon": "https://assets.coingecko.com/coins/images/32591/thumb/sqQV944d_400x400.jpg?1698632639",
+    "symbol": "",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x5ad02305ba9a4985390170337582986e419f1a2c": {
+    "assetId": "eip155:1/erc20:0x5ad02305ba9a4985390170337582986e419f1a2c",
+    "chainId": "eip155:1",
+    "name": "Crypto X",
+    "precision": 9,
+    "color": "#0E0E0E",
+    "icon": "https://assets.coingecko.com/coins/images/31084/thumb/Logo_W_kBG_%281%29.png?1696529917",
+    "symbol": "CX",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x5aef5bba19e6a1644805bd4f5c93c8557b87c62c": {
+    "assetId": "eip155:1/erc20:0x5aef5bba19e6a1644805bd4f5c93c8557b87c62c",
+    "chainId": "eip155:1",
+    "name": "DeepFakeAI",
+    "precision": 18,
+    "color": "#131313",
+    "icon": "https://assets.coingecko.com/coins/images/30633/thumb/Safeimagekit-resized-img_%286%29.png?1696529506",
+    "symbol": "FAKEAI",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x5afff9876c1f98b7d2b53bcb69eb57e92408319f": {
+    "assetId": "eip155:1/erc20:0x5afff9876c1f98b7d2b53bcb69eb57e92408319f",
+    "chainId": "eip155:1",
+    "name": "metavisa",
+    "precision": 18,
+    "color": "#101018",
+    "icon": "https://assets.coingecko.com/coins/images/23246/thumb/twitteravatar_circle.png?1696522466",
+    "symbol": "MESA",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x5b02ac27767b9bc8f5379ba7a835094aa81bf26f": {
+    "assetId": "eip155:1/erc20:0x5b02ac27767b9bc8f5379ba7a835094aa81bf26f",
+    "chainId": "eip155:1",
+    "name": "Uniwar",
+    "precision": 18,
+    "color": "#B5A189",
+    "icon": "https://assets.coingecko.com/coins/images/31998/thumb/Uni-logo.png?1696530799",
+    "symbol": "UNIWAR",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x5b060754b27844dbc3578382886828be224b804f": {
+    "assetId": "eip155:1/erc20:0x5b060754b27844dbc3578382886828be224b804f",
+    "chainId": "eip155:1",
+    "name": "Loong",
+    "precision": 18,
+    "color": "#1C0F0A",
+    "icon": "https://assets.coingecko.com/coins/images/32308/thumb/Ow2kjQo7_400x400.jpg?1697188397",
+    "symbol": "LOONG",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x5b1d655c93185b06b00f7925791106132cb3ad75": {
+    "assetId": "eip155:1/erc20:0x5b1d655c93185b06b00f7925791106132cb3ad75",
+    "chainId": "eip155:1",
+    "name": "DarkMatter",
+    "precision": 18,
+    "color": "#615237",
+    "icon": "https://assets.coingecko.com/coins/images/23989/thumb/dmt.png?1696523184",
+    "symbol": "DMT",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x5b322514ff727253292637d9054301600c2c81e8": {
+    "assetId": "eip155:1/erc20:0x5b322514ff727253292637d9054301600c2c81e8",
+    "chainId": "eip155:1",
+    "name": "DAD",
+    "precision": 9,
+    "color": "#06E5F6",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x5B322514FF727253292637D9054301600c2C81e8/logo.png",
+    "symbol": "DAD",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x5b502e3796385e1e9755d7043b9c945c3accec9c": {
+    "assetId": "eip155:1/erc20:0x5b502e3796385e1e9755d7043b9c945c3accec9c",
+    "chainId": "eip155:1",
+    "name": "Aave v3 KNC",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/32908/thumb/kyber.png?1699817281",
+    "symbol": "AKNC",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x5b5065a95842ca8d51274ba9adf57861d60e8e19": {
+    "assetId": "eip155:1/erc20:0x5b5065a95842ca8d51274ba9adf57861d60e8e19",
+    "chainId": "eip155:1",
+    "name": "Evermars",
+    "precision": 18,
+    "color": "#CC2728",
+    "icon": "https://assets.coingecko.com/coins/images/30856/thumb/RrS02WTo_400x400.jpg?1696529703",
+    "symbol": "EMARS",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x5b52bfb8062ce664d74bbcd4cd6dc7df53fd7233": {
+    "assetId": "eip155:1/erc20:0x5b52bfb8062ce664d74bbcd4cd6dc7df53fd7233",
+    "chainId": "eip155:1",
+    "name": "ZENIQ on Ethereum",
+    "precision": 18,
+    "color": "#B4B4B4",
+    "icon": "https://assets.coingecko.com/coins/images/29284/thumb/zeniq.png?1696528236",
+    "symbol": "ZENIQ",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x5b649c07e7ba0a1c529deaabed0b47699919b4a2": {
+    "assetId": "eip155:1/erc20:0x5b649c07e7ba0a1c529deaabed0b47699919b4a2",
+    "chainId": "eip155:1",
+    "name": "Suzuverse",
+    "precision": 8,
+    "color": "#BCBCC4",
+    "icon": "https://assets.coingecko.com/coins/images/30549/thumb/Suzuverse.png?1696529421",
+    "symbol": "SGT",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x5b685863494c33f344081f75e5430c260c224a32": {
+    "assetId": "eip155:1/erc20:0x5b685863494c33f344081f75e5430c260c224a32",
+    "chainId": "eip155:1",
+    "name": "CORE MultiChain on Ethereum",
+    "precision": 18,
+    "color": "#F47256",
+    "icon": "https://assets.coingecko.com/coins/images/18848/thumb/O4IzY2CQ_400x400.png?1696518309",
+    "symbol": "CMCX",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x5b71bee9d961b1b848f8485eec8d8787f80217f5": {
+    "assetId": "eip155:1/erc20:0x5b71bee9d961b1b848f8485eec8d8787f80217f5",
+    "chainId": "eip155:1",
+    "name": "Bitforex",
+    "precision": 18,
+    "color": "#04BEAB",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x5b71BEE9D961b1B848f8485EEC8d8787f80217F5/logo.png",
+    "symbol": "BF",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x5b7533812759b45c2b44c19e320ba2cd2681b542": {
+    "assetId": "eip155:1/erc20:0x5b7533812759b45c2b44c19e320ba2cd2681b542",
+    "chainId": "eip155:1",
+    "name": "SingularityNET",
+    "precision": 8,
+    "color": "#BAB7C7",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x5B7533812759B45C2B44C19e320ba2cD2681b542/logo.png",
+    "symbol": "AGIX",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x5b8650cd999b23cf39ab12e3213fbc8709c7f5cb": {
+    "assetId": "eip155:1/erc20:0x5b8650cd999b23cf39ab12e3213fbc8709c7f5cb",
+    "chainId": "eip155:1",
+    "name": "MaziMatic on Ethereum",
+    "precision": 18,
+    "color": "#A7E4FC",
+    "icon": "https://assets.coingecko.com/coins/images/30490/thumb/4de906d9d4104a16b4334d8ec8f75284.png?1696529377",
+    "symbol": "MAZI",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x5ba19d656b65f1684cfea4af428c23b9f3628f97": {
+    "assetId": "eip155:1/erc20:0x5ba19d656b65f1684cfea4af428c23b9f3628f97",
+    "chainId": "eip155:1",
+    "name": "AAG",
+    "precision": 18,
+    "color": "#685BCF",
+    "icon": "https://assets.coingecko.com/coins/images/21382/thumb/aag-token-icon.png?1696520747",
+    "symbol": "AAG",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x5bb15141bb6def6d2bafeed8ff84bf889c0c573b": {
+    "assetId": "eip155:1/erc20:0x5bb15141bb6def6d2bafeed8ff84bf889c0c573b",
+    "chainId": "eip155:1",
+    "name": "LakeViewMeta",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/27097/thumb/200x200logo.png?1696526146",
+    "symbol": "LVM",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x5bb29c33c4a3c29f56f8aca40b4db91d8a5fe2c5": {
+    "assetId": "eip155:1/erc20:0x5bb29c33c4a3c29f56f8aca40b4db91d8a5fe2c5",
+    "chainId": "eip155:1",
+    "name": "One Share",
+    "precision": 18,
+    "color": "#F5BE04",
+    "icon": "https://assets.coingecko.com/coins/images/13531/thumb/bss.a1671c75.png?1696513292",
+    "symbol": "ONS",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x5bbe36152d3cd3eb7183a82470b39b29eedf068b": {
+    "assetId": "eip155:1/erc20:0x5bbe36152d3cd3eb7183a82470b39b29eedf068b",
+    "chainId": "eip155:1",
+    "name": "Hord hETH",
+    "precision": 18,
+    "color": "#DC2474",
+    "icon": "https://assets.coingecko.com/coins/images/29624/thumb/hETH_TOKEN.png?1698343953",
+    "symbol": "HETH",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x5bdc32663ec75e85ff4abc2cae7ae8b606a2cfca": {
+    "assetId": "eip155:1/erc20:0x5bdc32663ec75e85ff4abc2cae7ae8b606a2cfca",
+    "chainId": "eip155:1",
+    "name": "Cookies Protocol on Ethereum",
+    "precision": 18,
+    "color": "#CBA45B",
+    "icon": "https://assets.coingecko.com/coins/images/28432/thumb/IMG_20221207_200805_897.jpg?1696527429",
+    "symbol": "CP",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x5befbb272290dd5b8521d4a938f6c4757742c430": {
+    "assetId": "eip155:1/erc20:0x5befbb272290dd5b8521d4a938f6c4757742c430",
+    "chainId": "eip155:1",
+    "name": "Xfinance",
+    "precision": 18,
+    "color": "#6CE4FC",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x5BEfBB272290dD5b8521D4a938f6c4757742c430/logo.png",
+    "symbol": "XFI",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x5bffe8ddff21ca52d8371b14a6c39d6ae3c5d2c7": {
+    "assetId": "eip155:1/erc20:0x5bffe8ddff21ca52d8371b14a6c39d6ae3c5d2c7",
+    "chainId": "eip155:1",
+    "name": "Hola Token",
+    "precision": 18,
+    "color": "#F5F1F5",
+    "icon": "https://assets.coingecko.com/coins/images/31412/thumb/Hola_Logo.jpg?1696530227",
+    "symbol": "HOLA",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x5c0217e4e126d501896594bec409898a9afc5970": {
+    "assetId": "eip155:1/erc20:0x5c0217e4e126d501896594bec409898a9afc5970",
+    "chainId": "eip155:1",
+    "name": "Frens Coin",
+    "precision": 18,
+    "color": "#1F1035",
+    "icon": "https://assets.coingecko.com/coins/images/30470/thumb/Frens_200x200.png?1696529356",
+    "symbol": "FRENS",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x5c0590cde44569bf39ef79e859b367e39cb000f1": {
+    "assetId": "eip155:1/erc20:0x5c0590cde44569bf39ef79e859b367e39cb000f1",
+    "chainId": "eip155:1",
+    "name": "hiVALHALLA",
+    "precision": 18,
+    "color": "#9C9C9C",
+    "icon": "https://assets.coingecko.com/coins/images/28911/thumb/hiVALHALLA.png?1696527887",
+    "symbol": "HIVALHALLA",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x5c147e74d63b1d31aa3fd78eb229b65161983b2b": {
+    "assetId": "eip155:1/erc20:0x5c147e74d63b1d31aa3fd78eb229b65161983b2b",
+    "chainId": "eip155:1",
+    "name": "Wrapped Flow",
+    "precision": 18,
+    "color": "#040806",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x5c147e74D63B1D31AA3Fd78Eb229B65161983B2b/logo.png",
+    "symbol": "WFLOW",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x5c1a467e12150864ea15bd394dac3801c2ca3cb0": {
+    "assetId": "eip155:1/erc20:0x5c1a467e12150864ea15bd394dac3801c2ca3cb0",
+    "chainId": "eip155:1",
+    "name": "Gamma Wallet",
+    "precision": 9,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/33221/thumb/GammaWallet.png?1701088418",
+    "symbol": "GAMMA",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x5c1d187ac11b9f7f8e974dde7bf5c69d3c6f6075": {
+    "assetId": "eip155:1/erc20:0x5c1d187ac11b9f7f8e974dde7bf5c69d3c6f6075",
+    "chainId": "eip155:1",
+    "name": "Etheraid",
+    "precision": 9,
+    "color": "#641CFC",
+    "icon": "https://assets.coingecko.com/coins/images/32136/thumb/200x200.png?1696589070",
+    "symbol": "ETRA",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x5c1d9aa868a30795f92fae903edc9eff269044bf": {
+    "assetId": "eip155:1/erc20:0x5c1d9aa868a30795f92fae903edc9eff269044bf",
+    "chainId": "eip155:1",
+    "name": "Changer",
+    "precision": 18,
+    "color": "#08D5D6",
+    "icon": "https://assets.coingecko.com/coins/images/21786/thumb/cng.png?1696521140",
+    "symbol": "CNG",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x5c2975269e74cb3a8514e5b800a1e66c694d4df8": {
+    "assetId": "eip155:1/erc20:0x5c2975269e74cb3a8514e5b800a1e66c694d4df8",
+    "chainId": "eip155:1",
+    "name": "Caroline",
+    "precision": 18,
+    "color": "#EDEDED",
+    "icon": "https://assets.coingecko.com/coins/images/30146/thumb/caroline.jpeg?1696529067",
+    "symbol": "HER",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x5c559f3ee9a81da83e069c0093471cb05d84052a": {
+    "assetId": "eip155:1/erc20:0x5c559f3ee9a81da83e069c0093471cb05d84052a",
+    "chainId": "eip155:1",
+    "name": "BabyPepe",
+    "precision": 18,
+    "color": "#0FF4C3",
+    "icon": "https://assets.coingecko.com/coins/images/29869/thumb/BabyPepe200.png?1696528794",
+    "symbol": "BABYPEPE",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x5c59a5b139b0538cb106d775a022cad98dd14b5a": {
+    "assetId": "eip155:1/erc20:0x5c59a5b139b0538cb106d775a022cad98dd14b5a",
+    "chainId": "eip155:1",
+    "name": "XREATORS",
+    "precision": 18,
+    "color": "#C9EAEC",
+    "icon": "https://assets.coingecko.com/coins/images/25678/thumb/XREATORS_ORT_Logo.png?1696524806",
+    "symbol": "ORT",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x5c6ee304399dbdb9c8ef030ab642b10820db8f56": {
+    "assetId": "eip155:1/erc20:0x5c6ee304399dbdb9c8ef030ab642b10820db8f56",
+    "chainId": "eip155:1",
+    "name": "Balancer 80 BAL 20 WETH",
+    "precision": 18,
+    "color": "#DCE4FC",
+    "icon": "https://assets.coingecko.com/coins/images/26452/thumb/0x5c6ee304399dbdb9c8ef030ab642b10820db8f56.png?1696525525",
+    "symbol": "B-80BAL-20WETH",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x5c8190b76e90b4dd0702740cf6eb0f7ee01ab5e9": {
+    "assetId": "eip155:1/erc20:0x5c8190b76e90b4dd0702740cf6eb0f7ee01ab5e9",
+    "chainId": "eip155:1",
+    "name": "Archive AI",
+    "precision": 9,
+    "color": "#D5CFD5",
+    "icon": "https://assets.coingecko.com/coins/images/28939/thumb/pp.JPG?1696527913",
+    "symbol": "ARCAI",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x5c872500c00565505f3624ab435c222e558e9ff8": {
+    "assetId": "eip155:1/erc20:0x5c872500c00565505f3624ab435c222e558e9ff8",
+    "chainId": "eip155:1",
+    "name": "CoTrader on Ethereum",
+    "precision": 18,
+    "color": "#070707",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x5c872500c00565505F3624AB435c222E558E9ff8/logo.png",
+    "symbol": "COT",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x5c8c8d560048f34e5f7f8ad71f2f81a89dbd273e": {
+    "assetId": "eip155:1/erc20:0x5c8c8d560048f34e5f7f8ad71f2f81a89dbd273e",
+    "chainId": "eip155:1",
+    "name": "CryptoArt Ai",
+    "precision": 18,
+    "color": "#2C3CEE",
+    "icon": "https://assets.coingecko.com/coins/images/17583/thumb/logo-64.png?1696517117",
+    "symbol": "CART",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x5c99a6c14f8dc0c2c3655c64a2cef68ff9f771ba": {
+    "assetId": "eip155:1/erc20:0x5c99a6c14f8dc0c2c3655c64a2cef68ff9f771ba",
+    "chainId": "eip155:1",
+    "name": "Larry the Llama",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/32791/thumb/Larry_the_Llama_Logo_200x200.png?1699427698",
+    "symbol": "LARRY",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x5c9c7554ab2b302a0a3e943377acb30e9a70f9f7": {
+    "assetId": "eip155:1/erc20:0x5c9c7554ab2b302a0a3e943377acb30e9a70f9f7",
+    "chainId": "eip155:1",
+    "name": "Addiction",
+    "precision": 18,
+    "color": "#F9F0F6",
+    "icon": "https://assets.coingecko.com/coins/images/31855/thumb/xukIbp0o_400x400.jpg?1696530668",
+    "symbol": "ADD",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x5ca135cb8527d76e932f34b5145575f9d8cbe08e": {
+    "assetId": "eip155:1/erc20:0x5ca135cb8527d76e932f34b5145575f9d8cbe08e",
+    "chainId": "eip155:1",
+    "name": "Frax Price Index on Ethereum",
+    "precision": 18,
+    "color": "#090909",
+    "icon": "https://assets.coingecko.com/coins/images/24945/thumb/FPI_icon.png?1696524100",
+    "symbol": "FPI",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x5ca381bbfb58f0092df149bd3d243b08b9a8386e": {
+    "assetId": "eip155:1/erc20:0x5ca381bbfb58f0092df149bd3d243b08b9a8386e",
+    "chainId": "eip155:1",
+    "name": "MXC",
+    "precision": 18,
+    "color": "#04EBD3",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x5Ca381bBfb58f0092df149bD3D243b08B9a8386e/logo.png",
+    "symbol": "MXC",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x5ca9a71b1d01849c0a95490cc00559717fcf0d1d": {
+    "assetId": "eip155:1/erc20:0x5ca9a71b1d01849c0a95490cc00559717fcf0d1d",
+    "chainId": "eip155:1",
+    "name": "Aeternity",
+    "precision": 18,
+    "color": "#CC3464",
+    "icon": "https://assets.coingecko.com/coins/images/1091/thumb/aeternity.png?1696502190",
+    "symbol": "AE",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x5cac718a3ae330d361e39244bf9e67ab17514ce8": {
+    "assetId": "eip155:1/erc20:0x5cac718a3ae330d361e39244bf9e67ab17514ce8",
+    "chainId": "eip155:1",
+    "name": "Cosplay Token on Ethereum",
+    "precision": 18,
+    "color": "#E082A0",
+    "icon": "https://assets.coingecko.com/coins/images/21294/thumb/brave_ZxsjzUc8xn.png?1696520664",
+    "symbol": "COT",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x5caf454ba92e6f2c929df14667ee360ed9fd5b26": {
+    "assetId": "eip155:1/erc20:0x5caf454ba92e6f2c929df14667ee360ed9fd5b26",
+    "chainId": "eip155:1",
+    "name": "Dev Protocol",
+    "precision": 18,
+    "color": "#E321B0",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x5cAf454Ba92e6F2c929DF14667Ee360eD9fD5b26/logo.png",
+    "symbol": "DEV",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x5cb3ce6d081fb00d5f6677d196f2d70010ea3f4a": {
+    "assetId": "eip155:1/erc20:0x5cb3ce6d081fb00d5f6677d196f2d70010ea3f4a",
+    "chainId": "eip155:1",
+    "name": "Busy",
+    "precision": 18,
+    "color": "#2B75A0",
+    "icon": "https://assets.coingecko.com/coins/images/14966/thumb/busy.PNG?1696514627",
+    "symbol": "BUSY",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x5cb888182fbffdb62c08fb4b5a343914f00fdfee": {
+    "assetId": "eip155:1/erc20:0x5cb888182fbffdb62c08fb4b5a343914f00fdfee",
+    "chainId": "eip155:1",
+    "name": "Moneybrain BiPS",
+    "precision": 18,
+    "color": "#7C1CE4",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x5Cb888182fBfFdb62C08fb4B5a343914F00FdfeE/logo.png",
+    "symbol": "BIPS",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x5cd8adec25af71f038c54bf580fc04d06b5f12ab": {
+    "assetId": "eip155:1/erc20:0x5cd8adec25af71f038c54bf580fc04d06b5f12ab",
+    "chainId": "eip155:1",
+    "name": "Suave",
+    "precision": 18,
+    "color": "#04B46C",
+    "icon": "https://assets.coingecko.com/coins/images/32476/thumb/suave_logo.png?1698286252",
+    "symbol": "CCE",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x5ceaa82ffd3b1c0193ff65fc93510846dd56f22c": {
+    "assetId": "eip155:1/erc20:0x5ceaa82ffd3b1c0193ff65fc93510846dd56f22c",
+    "chainId": "eip155:1",
+    "name": "Strider Bot",
+    "precision": 9,
+    "color": "#8D8D8D",
+    "icon": "https://assets.coingecko.com/coins/images/30739/thumb/IMG_20230611_130538_872.jpg?1696529609",
+    "symbol": "STRIDR",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x5cf04716ba20127f1e2297addcf4b5035000c9eb": {
+    "assetId": "eip155:1/erc20:0x5cf04716ba20127f1e2297addcf4b5035000c9eb",
+    "chainId": "eip155:1",
+    "name": "NKN",
+    "precision": 18,
+    "color": "#304384",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x5Cf04716BA20127F1E2297AdDCf4B5035000c9eb/logo.png",
+    "symbol": "NKN",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x5d0ebc4ec5ac18d30512fb6287886245061b3dbd": {
+    "assetId": "eip155:1/erc20:0x5d0ebc4ec5ac18d30512fb6287886245061b3dbd",
+    "chainId": "eip155:1",
+    "name": "Gatsby Inu",
+    "precision": 9,
+    "color": "#19191B",
+    "icon": "https://assets.coingecko.com/coins/images/30578/thumb/gatsby.jpeg?1696529442",
+    "symbol": "GATSBY",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x5d285f735998f36631f678ff41fb56a10a4d0429": {
+    "assetId": "eip155:1/erc20:0x5d285f735998f36631f678ff41fb56a10a4d0429",
+    "chainId": "eip155:1",
+    "name": "MixMarvel on Ethereum",
+    "precision": 18,
+    "color": "#A783E0",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x5d285F735998F36631F678FF41fb56A10A4d0429/logo.png",
+    "symbol": "MIX",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x5d30ad9c6374bf925d0a75454fa327aacf778492": {
+    "assetId": "eip155:1/erc20:0x5d30ad9c6374bf925d0a75454fa327aacf778492",
+    "chainId": "eip155:1",
+    "name": "PERI Finance on Ethereum",
+    "precision": 18,
+    "color": "#140C5C",
+    "icon": "https://assets.coingecko.com/coins/images/15313/thumb/6xVEMS1.png?1696514963",
+    "symbol": "PERI",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x5d39957fc88566f14ae7e8ab8971d7c603f0ce5e": {
+    "assetId": "eip155:1/erc20:0x5d39957fc88566f14ae7e8ab8971d7c603f0ce5e",
+    "chainId": "eip155:1",
+    "name": "Eye Labs",
+    "precision": 9,
+    "color": "#31344B",
+    "icon": "https://assets.coingecko.com/coins/images/31071/thumb/_EYE_logo.png?1696529905",
+    "symbol": "EYE",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x5d3a4f62124498092ce665f865e0b38ff6f5fbea": {
+    "assetId": "eip155:1/erc20:0x5d3a4f62124498092ce665f865e0b38ff6f5fbea",
+    "chainId": "eip155:1",
+    "name": "Ideaology",
+    "precision": 18,
+    "color": "#2C2C2C",
+    "icon": "https://assets.coingecko.com/coins/images/13938/thumb/idea_logo.png?1696513676",
+    "symbol": "IDEA",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x5d3a536e4d6dbd6114cc1ead35777bab948e3643": {
+    "assetId": "eip155:1/erc20:0x5d3a536e4d6dbd6114cc1ead35777bab948e3643",
+    "chainId": "eip155:1",
+    "name": "cDAI",
+    "precision": 8,
+    "color": "#5299C0",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x5d3a536E4D6DbD6114cc1Ead35777bAB948E3643/logo.png",
+    "symbol": "CDAI",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x5d43b66da68706d39f6c97f7f1415615672b446b": {
+    "assetId": "eip155:1/erc20:0x5d43b66da68706d39f6c97f7f1415615672b446b",
+    "chainId": "eip155:1",
+    "name": "ROGin AI",
+    "precision": 18,
+    "color": "#C1EEFC",
+    "icon": "https://assets.coingecko.com/coins/images/25922/thumb/20490.png?1696525002",
+    "symbol": "ROG",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x5d5e244660ca05c42073c9a526616d99f2c99516": {
+    "assetId": "eip155:1/erc20:0x5d5e244660ca05c42073c9a526616d99f2c99516",
+    "chainId": "eip155:1",
+    "name": "Game Tree",
+    "precision": 18,
+    "color": "#F2F7F3",
+    "icon": "https://assets.coingecko.com/coins/images/24719/thumb/hUEmunGU_400x400.jpg?1696523883",
+    "symbol": "GTCOIN",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x5d60d8d7ef6d37e16ebabc324de3be57f135e0bc": {
+    "assetId": "eip155:1/erc20:0x5d60d8d7ef6d37e16ebabc324de3be57f135e0bc",
+    "chainId": "eip155:1",
+    "name": "MyBit",
+    "precision": 18,
+    "color": "#2AA6F4",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x5d60d8d7eF6d37E16EBABc324de3bE57f135e0BC/logo.png",
+    "symbol": "MYB",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x5d6310984776583f58d29e45340f14ad3e8bbb98": {
+    "assetId": "eip155:1/erc20:0x5d6310984776583f58d29e45340f14ad3e8bbb98",
+    "chainId": "eip155:1",
+    "name": "Viralsniper",
+    "precision": 18,
+    "color": "#9D36BA",
+    "icon": "https://assets.coingecko.com/coins/images/31756/thumb/Viralsniper.png?1696530575",
+    "symbol": "VIRAL",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x5d64d850c8368008afb39224e92ad0dceff3cf38": {
+    "assetId": "eip155:1/erc20:0x5d64d850c8368008afb39224e92ad0dceff3cf38",
+    "chainId": "eip155:1",
+    "name": "MINDOL",
+    "precision": 18,
+    "color": "#B0B0B1",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x5D64D850c8368008aFB39224E92aD0DcEFf3CF38/logo.png",
+    "symbol": "MIN",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x5d65d971895edc438f465c17db6992698a52318d": {
+    "assetId": "eip155:1/erc20:0x5d65d971895edc438f465c17db6992698a52318d",
+    "chainId": "eip155:1",
+    "name": "Nebulas",
+    "precision": 18,
+    "color": "#040404",
+    "icon": "https://assets.coingecko.com/coins/images/2431/thumb/193394331.png?1696503264",
+    "symbol": "NAS",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x5d74468b69073f809d4fae90afec439e69bf6263": {
+    "assetId": "eip155:1/erc20:0x5d74468b69073f809d4fae90afec439e69bf6263",
+    "chainId": "eip155:1",
+    "name": "ClayStack Staked ETH",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/33205/thumb/csETH-coingecko.png?1701080702",
+    "symbol": "CSETH",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x5d843fa9495d23de997c394296ac7b4d721e841c": {
+    "assetId": "eip155:1/erc20:0x5d843fa9495d23de997c394296ac7b4d721e841c",
+    "chainId": "eip155:1",
+    "name": "Relay Chain on Ethereum",
+    "precision": 18,
+    "color": "#0CA4EC",
+    "icon": "https://assets.coingecko.com/coins/images/17816/thumb/relay-logo-200.png?1696517336",
+    "symbol": "RELAY",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x5d858bcd53e085920620549214a8b27ce2f04670": {
+    "assetId": "eip155:1/erc20:0x5d858bcd53e085920620549214a8b27ce2f04670",
+    "chainId": "eip155:1",
+    "name": "POP Network on Ethereum",
+    "precision": 18,
+    "color": "#9494FC",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x5D858bcd53E085920620549214a8b27CE2f04670/logo.png",
+    "symbol": "POP",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x5d929aa919e489505ccaad8a199619c6dca0c2de": {
+    "assetId": "eip155:1/erc20:0x5d929aa919e489505ccaad8a199619c6dca0c2de",
+    "chainId": "eip155:1",
+    "name": "BaaSid",
+    "precision": 18,
+    "color": "#04A4F4",
+    "icon": "https://assets.coingecko.com/coins/images/5463/thumb/baasid.png?1696505940",
+    "symbol": "BAAS",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x5dc60c4d5e75d22588fa17ffeb90a63e535efce0": {
+    "assetId": "eip155:1/erc20:0x5dc60c4d5e75d22588fa17ffeb90a63e535efce0",
+    "chainId": "eip155:1",
+    "name": "dKargo",
+    "precision": 18,
+    "color": "#04C4DC",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x5dc60C4D5e75D22588FA17fFEB90A63E535efCE0/logo.png",
+    "symbol": "DKA",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x5dcd6272c3cbb250823f0b7e6c618bce11b21f90": {
+    "assetId": "eip155:1/erc20:0x5dcd6272c3cbb250823f0b7e6c618bce11b21f90",
+    "chainId": "eip155:1",
+    "name": "Pear Swap",
+    "precision": 18,
+    "color": "#CFFAE3",
+    "icon": "https://assets.coingecko.com/coins/images/30409/thumb/9zYlZj3H_400x400.jpg?1696529298",
+    "symbol": "PEAR",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x5dd0d493ea59d512efc13d5c1f9d325775192877": {
+    "assetId": "eip155:1/erc20:0x5dd0d493ea59d512efc13d5c1f9d325775192877",
+    "chainId": "eip155:1",
+    "name": "Pusuke Inu",
+    "precision": 18,
+    "color": "#C1B7AA",
+    "icon": "https://assets.coingecko.com/coins/images/28674/thumb/Pusuke_Inu.jpg?1696527658",
+    "symbol": "PUSUKE",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x5dd57da40e6866c9fcc34f4b6ddc89f1ba740dfe": {
+    "assetId": "eip155:1/erc20:0x5dd57da40e6866c9fcc34f4b6ddc89f1ba740dfe",
+    "chainId": "eip155:1",
+    "name": "BrightID on Ethereum",
+    "precision": 18,
+    "color": "#FC8F66",
+    "icon": "https://assets.coingecko.com/coins/images/18415/thumb/bright.PNG?1696517905",
+    "symbol": "BRIGHT",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x5de597849cf72c72f073e9085bdd0dadd8e6c199": {
+    "assetId": "eip155:1/erc20:0x5de597849cf72c72f073e9085bdd0dadd8e6c199",
+    "chainId": "eip155:1",
+    "name": "Finblox",
+    "precision": 18,
+    "color": "#CEE5FB",
+    "icon": "https://assets.coingecko.com/coins/images/27087/thumb/fbx.png?1696526136",
+    "symbol": "FBX",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x5de8ab7e27f6e7a1fff3e5b337584aa43961beef": {
+    "assetId": "eip155:1/erc20:0x5de8ab7e27f6e7a1fff3e5b337584aa43961beef",
+    "chainId": "eip155:1",
+    "name": "SmarDex on Ethereum",
+    "precision": 18,
+    "color": "#05F4AE",
+    "icon": "https://assets.coingecko.com/coins/images/29470/thumb/SDEX_logo_transparent_outside_240x240.png?1696930070",
+    "symbol": "SDEX",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x5df2aa6d903410b2a747c90dbf2de0de7b15ac60": {
+    "assetId": "eip155:1/erc20:0x5df2aa6d903410b2a747c90dbf2de0de7b15ac60",
+    "chainId": "eip155:1",
+    "name": "0xgambit",
+    "precision": 8,
+    "color": "#04F470",
+    "icon": "https://assets.coingecko.com/coins/images/32579/thumb/logo.png?1698558743",
+    "symbol": "0XG",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x5dfc78c4d073fd343bc6661668948178522a0de5": {
+    "assetId": "eip155:1/erc20:0x5dfc78c4d073fd343bc6661668948178522a0de5",
+    "chainId": "eip155:1",
+    "name": "Derp",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/33069/thumb/derpdex_%281%29.png?1700793428",
+    "symbol": "DERP",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x5dfe42eea70a3e6f93ee54ed9c321af07a85535c": {
+    "assetId": "eip155:1/erc20:0x5dfe42eea70a3e6f93ee54ed9c321af07a85535c",
+    "chainId": "eip155:1",
+    "name": "Union Finance",
+    "precision": 18,
+    "color": "#2C2424",
+    "icon": "https://assets.coingecko.com/coins/images/30556/thumb/Mark.png?1696529427",
+    "symbol": "UNION",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x5e27e384acbba20982f991893b9970aaf3f43181": {
+    "assetId": "eip155:1/erc20:0x5e27e384acbba20982f991893b9970aaf3f43181",
+    "chainId": "eip155:1",
+    "name": "Tyrion finance",
+    "precision": 18,
+    "color": "#1B2B11",
+    "icon": "https://assets.coingecko.com/coins/images/31856/thumb/tyrionlogo.jpg?1696530669",
+    "symbol": "TYRION",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x5e3346444010135322268a4630d2ed5f8d09446c": {
+    "assetId": "eip155:1/erc20:0x5e3346444010135322268a4630d2ed5f8d09446c",
+    "chainId": "eip155:1",
+    "name": "LockTrip",
+    "precision": 18,
+    "color": "#050505",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x5e3346444010135322268a4630d2ED5F8D09446c/logo.png",
+    "symbol": "LOC",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x5e67e49a95b8ccc7a46b68bcdc1c35dc799ef9e0": {
+    "assetId": "eip155:1/erc20:0x5e67e49a95b8ccc7a46b68bcdc1c35dc799ef9e0",
+    "chainId": "eip155:1",
+    "name": "DigiFund",
+    "precision": 9,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/32951/thumb/photo_2023-11-08_13-27-36.jpg?1699935822",
+    "symbol": "DFUND",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x5e74c9036fb86bd7ecdcb084a0673efc32ea31cb": {
+    "assetId": "eip155:1/erc20:0x5e74c9036fb86bd7ecdcb084a0673efc32ea31cb",
+    "chainId": "eip155:1",
+    "name": "sETH on Ethereum",
+    "precision": 18,
+    "color": "#439B2B",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x5e74C9036fb86BD7eCdcb084a0673EFc32eA31cb/logo.png",
+    "symbol": "SETH",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x5e7f20e72c21f6d0bf0a2814fd4164176401cf8e": {
+    "assetId": "eip155:1/erc20:0x5e7f20e72c21f6d0bf0a2814fd4164176401cf8e",
+    "chainId": "eip155:1",
+    "name": "Demeter",
+    "precision": 18,
+    "color": "#26A68D",
+    "icon": "https://assets.coingecko.com/coins/images/25582/thumb/7zyskNC.png?1696524714",
+    "symbol": "DEO",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x5e8422345238f34275888049021821e8e08caa1f": {
+    "assetId": "eip155:1/erc20:0x5e8422345238f34275888049021821e8e08caa1f",
+    "chainId": "eip155:1",
+    "name": "Frax Ether on Ethereum",
+    "precision": 18,
+    "color": "#141414",
+    "icon": "https://assets.coingecko.com/coins/images/28284/thumb/frxETH_icon.png?1696527284",
+    "symbol": "FRXETH",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x5e8c8a7243651db1384c0ddfdbe39761e8e7e51a": {
+    "assetId": "eip155:1/erc20:0x5e8c8a7243651db1384c0ddfdbe39761e8e7e51a",
+    "chainId": "eip155:1",
+    "name": "Aave v3 LINK on Ethereum",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/32888/thumb/link.png?1699773900",
+    "symbol": "ALINK",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x5ea82c27efc7634f1c5ad20a3561c453433a2f3a": {
+    "assetId": "eip155:1/erc20:0x5ea82c27efc7634f1c5ad20a3561c453433a2f3a",
+    "chainId": "eip155:1",
+    "name": "BTRIPS",
+    "precision": 18,
+    "color": "#C2E0F2",
+    "icon": "https://assets.coingecko.com/coins/images/19273/thumb/btr.png?1696518716",
+    "symbol": "BTR",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x5eaa69b29f99c84fe5de8200340b4e9b4ab38eac": {
+    "assetId": "eip155:1/erc20:0x5eaa69b29f99c84fe5de8200340b4e9b4ab38eac",
+    "chainId": "eip155:1",
+    "name": "Raze Network on Ethereum",
+    "precision": 18,
+    "color": "#CA3D6A",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x5Eaa69B29f99C84Fe5dE8200340b4e9b4Ab38EaC/logo.png",
+    "symbol": "RAZE",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x5ebffc53c3b8a71120789a211f9b91c79c78d1e0": {
+    "assetId": "eip155:1/erc20:0x5ebffc53c3b8a71120789a211f9b91c79c78d1e0",
+    "chainId": "eip155:1",
+    "name": "SOJUDAO",
+    "precision": 18,
+    "color": "#D9D9C0",
+    "icon": "https://assets.coingecko.com/coins/images/31627/thumb/1.png?1696530443",
+    "symbol": "SOJU",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x5eca7b975e34567d9460fa613013a7a6993ad185": {
+    "assetId": "eip155:1/erc20:0x5eca7b975e34567d9460fa613013a7a6993ad185",
+    "chainId": "eip155:1",
+    "name": "Blacksmith Token",
+    "precision": 18,
+    "color": "#BD5234",
+    "icon": "https://assets.coingecko.com/coins/images/30806/thumb/roGLhC57_400x400.jpg?1696529664",
+    "symbol": "BS",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x5ee5bf7ae06d1be5997a1a72006fe6c607ec6de8": {
+    "assetId": "eip155:1/erc20:0x5ee5bf7ae06d1be5997a1a72006fe6c607ec6de8",
+    "chainId": "eip155:1",
+    "name": "Aave v3 WBTC on Ethereum",
+    "precision": 8,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/32883/thumb/wbtc.png?1699719908",
+    "symbol": "AWBTC",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x5ee84583f67d5ecea5420dbb42b462896e7f8d06": {
+    "assetId": "eip155:1/erc20:0x5ee84583f67d5ecea5420dbb42b462896e7f8d06",
+    "chainId": "eip155:1",
+    "name": "PulseBitcoin",
+    "precision": 12,
+    "color": "#1E7FFC",
+    "icon": "https://assets.coingecko.com/coins/images/28690/thumb/%E2%82%BF.png?1696527673",
+    "symbol": "PLSB",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x5eeaa2dcb23056f4e8654a349e57ebe5e76b5e6e": {
+    "assetId": "eip155:1/erc20:0x5eeaa2dcb23056f4e8654a349e57ebe5e76b5e6e",
+    "chainId": "eip155:1",
+    "name": "Virtue Poker Points on Ethereum",
+    "precision": 18,
+    "color": "#29BBE4",
+    "icon": "https://assets.coingecko.com/coins/images/3386/thumb/vp-logo-200x200.png?1696504084",
+    "symbol": "VPP",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x5efcea234f7547de4569aad1215fa5d2adaced38": {
+    "assetId": "eip155:1/erc20:0x5efcea234f7547de4569aad1215fa5d2adaced38",
+    "chainId": "eip155:1",
+    "name": "Clown Pepe",
+    "precision": 18,
+    "color": "#D33A39",
+    "icon": "https://assets.coingecko.com/coins/images/29890/thumb/Honk.png?1696528814",
+    "symbol": "HONK",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x5f018e73c185ab23647c82bd039e762813877f0e": {
+    "assetId": "eip155:1/erc20:0x5f018e73c185ab23647c82bd039e762813877f0e",
+    "chainId": "eip155:1",
+    "name": "Shack on Ethereum",
+    "precision": 18,
+    "color": "#EC1C24",
+    "icon": "https://assets.coingecko.com/coins/images/25699/thumb/shack_no_bg_no_pad3.png?1696524826",
+    "symbol": "SHACK",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x5f0bc16d50f72d10b719dbf6845de2e599eb5624": {
+    "assetId": "eip155:1/erc20:0x5f0bc16d50f72d10b719dbf6845de2e599eb5624",
+    "chainId": "eip155:1",
+    "name": "Vent Finance on Ethereum",
+    "precision": 18,
+    "color": "#040404",
+    "icon": "https://assets.coingecko.com/coins/images/17925/thumb/Artboard_29.png?1696517445",
+    "symbol": "VENT",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x5f0e628b693018f639d10e4a4f59bd4d8b2b6b44": {
+    "assetId": "eip155:1/erc20:0x5f0e628b693018f639d10e4a4f59bd4d8b2b6b44",
+    "chainId": "eip155:1",
+    "name": "Whiteheart",
+    "precision": 18,
+    "color": "#D4D4D4",
+    "icon": "https://assets.coingecko.com/coins/images/13484/thumb/whiteheart.png?1696513245",
+    "symbol": "WHITE",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x5f18ea482ad5cc6bc65803817c99f477043dce85": {
+    "assetId": "eip155:1/erc20:0x5f18ea482ad5cc6bc65803817c99f477043dce85",
+    "chainId": "eip155:1",
+    "name": "Agility",
+    "precision": 18,
+    "color": "#343434",
+    "icon": "https://assets.coingecko.com/coins/images/29781/thumb/14csBMea_400x400.jpg?1696528711",
+    "symbol": "AGI",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x5f190f9082878ca141f858c1c90b4c59fe2782c5": {
+    "assetId": "eip155:1/erc20:0x5f190f9082878ca141f858c1c90b4c59fe2782c5",
+    "chainId": "eip155:1",
+    "name": "Kudoe",
+    "precision": 18,
+    "color": "#E6DBFA",
+    "icon": "https://assets.coingecko.com/coins/images/28709/thumb/CG.png?1696527691",
+    "symbol": "KDOE",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x5f1f11a3dd7a0c39da1baa3c7b8585b52a77f435": {
+    "assetId": "eip155:1/erc20:0x5f1f11a3dd7a0c39da1baa3c7b8585b52a77f435",
+    "chainId": "eip155:1",
+    "name": "ASAN VERSE",
+    "precision": 18,
+    "color": "#056D9D",
+    "icon": "https://assets.coingecko.com/coins/images/28189/thumb/200200_copy.png?1696527192",
+    "symbol": "ASAN",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x5f32de250329b97aad84aae4cd3af548aff1ed37": {
+    "assetId": "eip155:1/erc20:0x5f32de250329b97aad84aae4cd3af548aff1ed37",
+    "chainId": "eip155:1",
+    "name": "BerylTrioChain",
+    "precision": 18,
+    "color": "#4662C8",
+    "icon": "https://assets.coingecko.com/coins/images/30632/thumb/beryl.png?1696529505",
+    "symbol": "BRIBIT",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x5f3b3c37f47d8532836c800f75e7f262623aa3bb": {
+    "assetId": "eip155:1/erc20:0x5f3b3c37f47d8532836c800f75e7f262623aa3bb",
+    "chainId": "eip155:1",
+    "name": "Jarvis AI",
+    "precision": 18,
+    "color": "#151515",
+    "icon": "https://assets.coingecko.com/coins/images/29757/thumb/logo200x200PNG.png?1696528689",
+    "symbol": "JAI",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x5f4361971667c8198706dec8c59cf7607e405c6e": {
+    "assetId": "eip155:1/erc20:0x5f4361971667c8198706dec8c59cf7607e405c6e",
+    "chainId": "eip155:1",
+    "name": "Fileshare Platform",
+    "precision": 8,
+    "color": "#FCF2C9",
+    "icon": "https://assets.coingecko.com/coins/images/28190/thumb/fsc.png?1696527193",
+    "symbol": "FSC",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x5f474906637bdcda05f29c74653f6962bb0f8eda": {
+    "assetId": "eip155:1/erc20:0x5f474906637bdcda05f29c74653f6962bb0f8eda",
+    "chainId": "eip155:1",
+    "name": "DeFinity on Ethereum",
+    "precision": 18,
+    "color": "#0494AC",
+    "icon": "https://assets.coingecko.com/coins/images/15875/thumb/definity-listing-logo.png?1696515490",
+    "symbol": "DEFX",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x5f48d1fd6814cd1cd38aeb895755e57d519196d1": {
+    "assetId": "eip155:1/erc20:0x5f48d1fd6814cd1cd38aeb895755e57d519196d1",
+    "chainId": "eip155:1",
+    "name": "Wins on Ethereum",
+    "precision": 18,
+    "color": "#180E07",
+    "icon": "https://assets.coingecko.com/coins/images/31007/thumb/icon_wins.png?1696529844",
+    "symbol": "WINS",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x5f4c148d17effd165c2e2d46b46d2bd6e3ebdc3e": {
+    "assetId": "eip155:1/erc20:0x5f4c148d17effd165c2e2d46b46d2bd6e3ebdc3e",
+    "chainId": "eip155:1",
+    "name": "5KM RUN",
+    "precision": 18,
+    "color": "#24300C",
+    "icon": "https://assets.coingecko.com/coins/images/26072/thumb/logo-200.png?1696525156",
+    "symbol": "RUN",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x5f64ab1544d28732f0a24f4713c2c8ec0da089f0": {
+    "assetId": "eip155:1/erc20:0x5f64ab1544d28732f0a24f4713c2c8ec0da089f0",
+    "chainId": "eip155:1",
+    "name": "Domani Protocol on Ethereum",
+    "precision": 18,
+    "color": "#3A8724",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x5F64Ab1544D28732F0A24F4713c2C8ec0dA089f0/logo.png",
+    "symbol": "DEXTF",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x5f9123d661459af6f398b6f1566f53222612541e": {
+    "assetId": "eip155:1/erc20:0x5f9123d661459af6f398b6f1566f53222612541e",
+    "chainId": "eip155:1",
+    "name": "MaranBet",
+    "precision": 18,
+    "color": "#23201A",
+    "icon": "https://assets.coingecko.com/coins/images/29787/thumb/token_maran-01_1_%281%29.png?1696528717",
+    "symbol": "MARAN",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x5f944b0c4315cb7c3a846b025ab4045da44abf6c": {
+    "assetId": "eip155:1/erc20:0x5f944b0c4315cb7c3a846b025ab4045da44abf6c",
+    "chainId": "eip155:1",
+    "name": "Pancake Games on Ethereum",
+    "precision": 18,
+    "color": "#F5FAF5",
+    "icon": "https://assets.coingecko.com/coins/images/20217/thumb/6oc-L2UC_400x400.png?1696519627",
+    "symbol": "GCAKE",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x5f98805a4e8be255a32880fdec7f6728c6568ba0": {
+    "assetId": "eip155:1/erc20:0x5f98805a4e8be255a32880fdec7f6728c6568ba0",
+    "chainId": "eip155:1",
+    "name": "Liquity USD on Ethereum",
+    "precision": 18,
+    "color": "#2CB4EC",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x5f98805A4E8be255a32880FDeC7F6728C6568bA0/logo.png",
+    "symbol": "LUSD",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x5fa54fddf1870c344dbfabb37dfab8700ec0def1": {
+    "assetId": "eip155:1/erc20:0x5fa54fddf1870c344dbfabb37dfab8700ec0def1",
+    "chainId": "eip155:1",
+    "name": "FrogeX on Ethereum",
+    "precision": 9,
+    "color": "#77A043",
+    "icon": "https://assets.coingecko.com/coins/images/14775/thumb/-p8cz7Bk_400x400.png?1696514444",
+    "symbol": "FROGEX",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x5faa989af96af85384b8a938c2ede4a7378d9875": {
+    "assetId": "eip155:1/erc20:0x5faa989af96af85384b8a938c2ede4a7378d9875",
+    "chainId": "eip155:1",
+    "name": "Galxe on Ethereum",
+    "precision": 18,
+    "color": "#E2EAFC",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x5fAa989Af96Af85384b8a938c2EdE4A7378D9875/logo.png",
+    "symbol": "GAL",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x5fab9761d60419c9eeebe3915a8fa1ed7e8d2e1b": {
+    "assetId": "eip155:1/erc20:0x5fab9761d60419c9eeebe3915a8fa1ed7e8d2e1b",
+    "chainId": "eip155:1",
+    "name": "DIMO on Ethereum",
+    "precision": 18,
+    "color": "#BFBFBF",
+    "icon": "https://assets.coingecko.com/coins/images/28383/thumb/Token_Logo.png?1696527383",
+    "symbol": "DIMO",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x5fbc2ffe91ac74e3e286bd7504b233f0e5291c69": {
+    "assetId": "eip155:1/erc20:0x5fbc2ffe91ac74e3e286bd7504b233f0e5291c69",
+    "chainId": "eip155:1",
+    "name": "EarnBet",
+    "precision": 8,
+    "color": "#26CED9",
+    "icon": "https://assets.coingecko.com/coins/images/32032/thumb/logo.png?1696530829",
+    "symbol": "EBET",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x5fbc3cb8b428cc00a04808870295d39962cc7fee": {
+    "assetId": "eip155:1/erc20:0x5fbc3cb8b428cc00a04808870295d39962cc7fee",
+    "chainId": "eip155:1",
+    "name": "Bitazza",
+    "precision": 18,
+    "color": "#14F48C",
+    "icon": "https://assets.coingecko.com/coins/images/24597/thumb/BTZ_Logo_%28200x200%29.png?1696523771",
+    "symbol": "BTZ",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x5fe72ed557d8a02fff49b3b826792c765d5ce162": {
+    "assetId": "eip155:1/erc20:0x5fe72ed557d8a02fff49b3b826792c765d5ce162",
+    "chainId": "eip155:1",
+    "name": "Shezmu",
+    "precision": 18,
+    "color": "#0D0C06",
+    "icon": "https://assets.coingecko.com/coins/images/31772/thumb/ShezmuPlainblk.png?1696530590",
+    "symbol": "SHEZMU",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x6006fc2a849fedaba8330ce36f5133de01f96189": {
+    "assetId": "eip155:1/erc20:0x6006fc2a849fedaba8330ce36f5133de01f96189",
+    "chainId": "eip155:1",
+    "name": "Spaceswap SHAKE on Ethereum",
+    "precision": 18,
+    "color": "#040C8C",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x6006FC2a849fEdABa8330ce36F5133DE01F96189/logo.png",
+    "symbol": "SHAKE",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x602f65bb8b8098ad804e99db6760fd36208cd967": {
+    "assetId": "eip155:1/erc20:0x602f65bb8b8098ad804e99db6760fd36208cd967",
+    "chainId": "eip155:1",
+    "name": "Mops",
+    "precision": 18,
+    "color": "#2C2421",
+    "icon": "https://assets.coingecko.com/coins/images/26900/thumb/mops.png?1696525958",
+    "symbol": "MOPS",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x6034e0d6999741f07cb6fb1162cbaa46a1d33d36": {
+    "assetId": "eip155:1/erc20:0x6034e0d6999741f07cb6fb1162cbaa46a1d33d36",
+    "chainId": "eip155:1",
+    "name": "Molecules of Korolchuk IP NFT",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/33055/thumb/Vita-FAST_1024px.png?1700475313",
+    "symbol": "VITA-FAST",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x604026696fdb3c6720ae3049c46d59ac604dea0a": {
+    "assetId": "eip155:1/erc20:0x604026696fdb3c6720ae3049c46d59ac604dea0a",
+    "chainId": "eip155:1",
+    "name": "eXciting Japan Coin",
+    "precision": 18,
+    "color": "#329CCE",
+    "icon": "https://assets.coingecko.com/coins/images/11963/thumb/XJP_LOGO.png?1696511822",
+    "symbol": "XJP",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x6069c9223e8a5da1ec49ac5525d4bb757af72cd8": {
+    "assetId": "eip155:1/erc20:0x6069c9223e8a5da1ec49ac5525d4bb757af72cd8",
+    "chainId": "eip155:1",
+    "name": "MUSK Gold",
+    "precision": 18,
+    "color": "#B2231A",
+    "icon": "https://assets.coingecko.com/coins/images/21696/thumb/musk-icon-200x200.png?1696521051",
+    "symbol": "MUSK",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x607229db773fa901215175aeb09a3a5695f813c7": {
+    "assetId": "eip155:1/erc20:0x607229db773fa901215175aeb09a3a5695f813c7",
+    "chainId": "eip155:1",
+    "name": "Dex Sniffer  OLD ",
+    "precision": 9,
+    "color": "#6E3B46",
+    "icon": "https://assets.coingecko.com/coins/images/31262/thumb/DexSniffer_kepala.png?1696530086",
+    "symbol": "DS",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x607f4c5bb672230e8672085532f7e901544a7375": {
+    "assetId": "eip155:1/erc20:0x607f4c5bb672230e8672085532f7e901544a7375",
+    "chainId": "eip155:1",
+    "name": "iExec RLC",
+    "precision": 9,
+    "color": "#040404",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x607F4C5BB672230e8672085532f7e901544a7375/logo.png",
+    "symbol": "RLC",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x60867b79a68abecb78351b2dbb5fdec4282c5acb": {
+    "assetId": "eip155:1/erc20:0x60867b79a68abecb78351b2dbb5fdec4282c5acb",
+    "chainId": "eip155:1",
+    "name": "VZZN",
+    "precision": 9,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/33101/thumb/f5040863b9414c388fdad66039175828.png?1700639092",
+    "symbol": "VZZN",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x60a26c05c5372dcded66940d2b56076bce925152": {
+    "assetId": "eip155:1/erc20:0x60a26c05c5372dcded66940d2b56076bce925152",
+    "chainId": "eip155:1",
+    "name": "SILVER",
+    "precision": 9,
+    "color": "#464646",
+    "icon": "https://assets.coingecko.com/coins/images/32273/thumb/LOGO1.png?1697179980",
+    "symbol": "SILVER",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x60bb16c4a931b1a0b8a7d945c651dd90f41d42cf": {
+    "assetId": "eip155:1/erc20:0x60bb16c4a931b1a0b8a7d945c651dd90f41d42cf",
+    "chainId": "eip155:1",
+    "name": "Finance Blocks",
+    "precision": 18,
+    "color": "#585A5A",
+    "icon": "https://assets.coingecko.com/coins/images/24117/thumb/financeblocksshadow.png?1696523309",
+    "symbol": "FBX",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x60be1e1fe41c1370adaf5d8e66f07cf1c2df2268": {
+    "assetId": "eip155:1/erc20:0x60be1e1fe41c1370adaf5d8e66f07cf1c2df2268",
+    "chainId": "eip155:1",
+    "name": "Perion",
+    "precision": 18,
+    "color": "#34B4B4",
+    "icon": "https://assets.coingecko.com/coins/images/23302/thumb/PERC.png?1696522520",
+    "symbol": "PERC",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x60c24407d01782c2175d32fe7c8921ed732371d1": {
+    "assetId": "eip155:1/erc20:0x60c24407d01782c2175d32fe7c8921ed732371d1",
+    "chainId": "eip155:1",
+    "name": "LemoChain",
+    "precision": 18,
+    "color": "#606DEA",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x60C24407d01782C2175D32fe7C8921ed732371D1/logo.png",
+    "symbol": "LEMO",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x60eb57d085c59932d5faa6c6026268a4386927d0": {
+    "assetId": "eip155:1/erc20:0x60eb57d085c59932d5faa6c6026268a4386927d0",
+    "chainId": "eip155:1",
+    "name": "LOCG",
+    "precision": 18,
+    "color": "#BABBBB",
+    "icon": "https://assets.coingecko.com/coins/images/15175/thumb/LOC_GAME.png?1696514830",
+    "symbol": "LOCG",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x60f5672a271c7e39e787427a18353ba59a4a3578": {
+    "assetId": "eip155:1/erc20:0x60f5672a271c7e39e787427a18353ba59a4a3578",
+    "chainId": "eip155:1",
+    "name": "Pika on Ethereum",
+    "precision": 18,
+    "color": "#843C05",
+    "icon": "https://assets.coingecko.com/coins/images/14419/thumb/pika-logo-2022-nbg.png?1696514110",
+    "symbol": "PIKA",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x60f63b76e2fc1649e57a3489162732a90acf59fe": {
+    "assetId": "eip155:1/erc20:0x60f63b76e2fc1649e57a3489162732a90acf59fe",
+    "chainId": "eip155:1",
+    "name": "Flurry Finance on Ethereum",
+    "precision": 18,
+    "color": "#0CA1FC",
+    "icon": "https://assets.coingecko.com/coins/images/16235/thumb/flurry_logo_only_200x200.png?1696515836",
+    "symbol": "FLURRY",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x6100dd79fcaa88420750dcee3f735d168abcb771": {
+    "assetId": "eip155:1/erc20:0x6100dd79fcaa88420750dcee3f735d168abcb771",
+    "chainId": "eip155:1",
+    "name": "Ethereans",
+    "precision": 18,
+    "color": "#CED1FC",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x6100dd79fCAA88420750DceE3F735d168aBcB771/logo.png",
+    "symbol": "OS",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x61035ed28081c1acc38e399c416bfc08fd6e73a1": {
+    "assetId": "eip155:1/erc20:0x61035ed28081c1acc38e399c416bfc08fd6e73a1",
+    "chainId": "eip155:1",
+    "name": "FrouBot",
+    "precision": 9,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/32987/thumb/wepik-export-20231029191457FW3V_%281%29.png?1700094955",
+    "symbol": "FROBOT",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x61107a409fffe1965126aa456af679719695c69c": {
+    "assetId": "eip155:1/erc20:0x61107a409fffe1965126aa456af679719695c69c",
+    "chainId": "eip155:1",
+    "name": "Umi Digital",
+    "precision": 18,
+    "color": "#228CBC",
+    "icon": "https://assets.coingecko.com/coins/images/17874/thumb/Umi-200-x-200.png?1696517396",
+    "symbol": "UMI",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x6123b0049f904d730db3c36a31167d9d4121fa6b": {
+    "assetId": "eip155:1/erc20:0x6123b0049f904d730db3c36a31167d9d4121fa6b",
+    "chainId": "eip155:1",
+    "name": "Ribbon Finance",
+    "precision": 18,
+    "color": "#FCE4EC",
+    "icon": "https://assets.coingecko.com/coins/images/15823/thumb/RBN_64x64.png?1696515442",
+    "symbol": "RBN",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x612e1726435fe38dd49a0b35b4065b56f49c8f11": {
+    "assetId": "eip155:1/erc20:0x612e1726435fe38dd49a0b35b4065b56f49c8f11",
+    "chainId": "eip155:1",
+    "name": "CryptoCart V2 on Ethereum",
+    "precision": 18,
+    "color": "#051A28",
+    "icon": "https://assets.coingecko.com/coins/images/15210/thumb/DP7-T6rox-400x400_%281%29.png?1696514866",
+    "symbol": "CCV2",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x6149c26cd2f7b5ccdb32029af817123f6e37df5b": {
+    "assetId": "eip155:1/erc20:0x6149c26cd2f7b5ccdb32029af817123f6e37df5b",
+    "chainId": "eip155:1",
+    "name": "Launchpool on Ethereum",
+    "precision": 18,
+    "color": "#FCC51C",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x6149C26Cd2f7b5CCdb32029aF817123F6E37Df5B/logo.png",
+    "symbol": "LPOOL",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x614d7f40701132e25fe6fc17801fbd34212d2eda": {
+    "assetId": "eip155:1/erc20:0x614d7f40701132e25fe6fc17801fbd34212d2eda",
+    "chainId": "eip155:1",
+    "name": "SafeBlast on Ethereum",
+    "precision": 9,
+    "color": "#EC0505",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x614D7f40701132E25fe6fc17801Fbd34212d2Eda/logo.png",
+    "symbol": "BLAST",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x614da3b37b6f66f7ce69b4bbbcf9a55ce6168707": {
+    "assetId": "eip155:1/erc20:0x614da3b37b6f66f7ce69b4bbbcf9a55ce6168707",
+    "chainId": "eip155:1",
+    "name": "MMX",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/33161/thumb/mmx.png?1700830276",
+    "symbol": "MMX",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x616e8bfa43f920657b3497dbf40d6b1a02d4608d": {
+    "assetId": "eip155:1/erc20:0x616e8bfa43f920657b3497dbf40d6b1a02d4608d",
+    "chainId": "eip155:1",
+    "name": "Aura BAL",
+    "precision": 18,
+    "color": "#D0BAEC",
+    "icon": "https://assets.coingecko.com/coins/images/26538/thumb/auraBAL.png?1696525612",
+    "symbol": "AURABAL",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x616ef40d55c0d2c506f4d6873bda8090b79bf8fc": {
+    "assetId": "eip155:1/erc20:0x616ef40d55c0d2c506f4d6873bda8090b79bf8fc",
+    "chainId": "eip155:1",
+    "name": "Kounotori",
+    "precision": 9,
+    "color": "#A84354",
+    "icon": "https://assets.coingecko.com/coins/images/21251/thumb/KTO.png?1696520624",
+    "symbol": "KTO",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x617ead3c59ded3ea1bb17881118cf310144b450f": {
+    "assetId": "eip155:1/erc20:0x617ead3c59ded3ea1bb17881118cf310144b450f",
+    "chainId": "eip155:1",
+    "name": "The Secret Coin",
+    "precision": 18,
+    "color": "#A32C2C",
+    "icon": "https://assets.coingecko.com/coins/images/32545/thumb/IMG_2160.jpeg?1698474245",
+    "symbol": "TSC",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x618679df9efcd19694bb1daa8d00718eacfa2883": {
+    "assetId": "eip155:1/erc20:0x618679df9efcd19694bb1daa8d00718eacfa2883",
+    "chainId": "eip155:1",
+    "name": "Universe XYZ",
+    "precision": 18,
+    "color": "#98ED2C",
+    "icon": "https://assets.coingecko.com/coins/images/15809/thumb/universexyz.png?1696515429",
+    "symbol": "XYZ",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x618e75ac90b12c6049ba3b27f5d5f8651b0037f6": {
+    "assetId": "eip155:1/erc20:0x618e75ac90b12c6049ba3b27f5d5f8651b0037f6",
+    "chainId": "eip155:1",
+    "name": "QASH",
+    "precision": 6,
+    "color": "#34ABF3",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x618E75Ac90b12c6049Ba3b27f5d5F8651b0037F6/logo.png",
+    "symbol": "QASH",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x61a35258107563f6b6f102ae25490901c8760b12": {
+    "assetId": "eip155:1/erc20:0x61a35258107563f6b6f102ae25490901c8760b12",
+    "chainId": "eip155:1",
+    "name": "Kitty Inu",
+    "precision": 18,
+    "color": "#ECE3DD",
+    "icon": "https://assets.coingecko.com/coins/images/19385/thumb/KITTY.png?1696518825",
+    "symbol": "KITTY",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x61b57bdc01e3072fab3e9e2f3c7b88d482734e05": {
+    "assetId": "eip155:1/erc20:0x61b57bdc01e3072fab3e9e2f3c7b88d482734e05",
+    "chainId": "eip155:1",
+    "name": "MetaZooMee",
+    "precision": 18,
+    "color": "#B22574",
+    "icon": "https://assets.coingecko.com/coins/images/31708/thumb/MZM-200px_%281%29.png?1696530531",
+    "symbol": "MZM",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x61e90a50137e1f645c9ef4a0d3a4f01477738406": {
+    "assetId": "eip155:1/erc20:0x61e90a50137e1f645c9ef4a0d3a4f01477738406",
+    "chainId": "eip155:1",
+    "name": "League of Kingdoms",
+    "precision": 18,
+    "color": "#4489FA",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x61E90A50137E1F645c9eF4a0d3A4f01477738406/logo.png",
+    "symbol": "LOKA",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x61f7fdaae910f3ed65fb1a3ab59354e38b06cf8e": {
+    "assetId": "eip155:1/erc20:0x61f7fdaae910f3ed65fb1a3ab59354e38b06cf8e",
+    "chainId": "eip155:1",
+    "name": "BitcoinPepe",
+    "precision": 18,
+    "color": "#5C760C",
+    "icon": "https://assets.coingecko.com/coins/images/30193/thumb/Logo_BTCPepe-200x200.png?1696529108",
+    "symbol": "BTCPEP",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x61fd1c62551850d0c04c76fce614cbced0094498": {
+    "assetId": "eip155:1/erc20:0x61fd1c62551850d0c04c76fce614cbced0094498",
+    "chainId": "eip155:1",
+    "name": "IDK",
+    "precision": 8,
+    "color": "#FCD9D9",
+    "icon": "https://assets.coingecko.com/coins/images/9301/thumb/idk-logo.png?1696509408",
+    "symbol": "IDK",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x6213f40e00f4595aa038fa710e3f837b492d6757": {
+    "assetId": "eip155:1/erc20:0x6213f40e00f4595aa038fa710e3f837b492d6757",
+    "chainId": "eip155:1",
+    "name": "The Pond",
+    "precision": 12,
+    "color": "#5C6F4C",
+    "icon": "https://assets.coingecko.com/coins/images/31846/thumb/The_Pond_Token.png?1696530660",
+    "symbol": "THEPOND",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x62199b909fb8b8cf870f97bef2ce6783493c4908": {
+    "assetId": "eip155:1/erc20:0x62199b909fb8b8cf870f97bef2ce6783493c4908",
+    "chainId": "eip155:1",
+    "name": "pTokens BTC on Ethereum",
+    "precision": 18,
+    "color": "#F17069",
+    "icon": "https://assets.coingecko.com/coins/images/25861/thumb/wMTpRljt_400x400.png?1696524945",
+    "symbol": "PBTC",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x6226e00bcac68b0fe55583b90a1d727c14fab77f": {
+    "assetId": "eip155:1/erc20:0x6226e00bcac68b0fe55583b90a1d727c14fab77f",
+    "chainId": "eip155:1",
+    "name": "MultiVAC on Ethereum",
+    "precision": 18,
+    "color": "#76E0F8",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x6226e00bCAc68b0Fe55583B90A1d727C14fAB77f/logo.png",
+    "symbol": "MTV",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x622dffcc4e83c64ba959530a5a5580687a57581b": {
+    "assetId": "eip155:1/erc20:0x622dffcc4e83c64ba959530a5a5580687a57581b",
+    "chainId": "eip155:1",
+    "name": "Cube Intelligence",
+    "precision": 18,
+    "color": "#F3B334",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x622dFfCc4e83C64ba959530A5a5580687a57581b/logo.png",
+    "symbol": "AUTO",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x6230f552a1c825d02e1140ccc0d3f5eeec81ca84": {
+    "assetId": "eip155:1/erc20:0x6230f552a1c825d02e1140ccc0d3f5eeec81ca84",
+    "chainId": "eip155:1",
+    "name": "FusionBot",
+    "precision": 9,
+    "color": "#EDEDED",
+    "icon": "https://assets.coingecko.com/coins/images/31125/thumb/logo.png?1696529955",
+    "symbol": "FUSION",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x62359ed7505efc61ff1d56fef82158ccaffa23d7": {
+    "assetId": "eip155:1/erc20:0x62359ed7505efc61ff1d56fef82158ccaffa23d7",
+    "chainId": "eip155:1",
+    "name": "cVault finance",
+    "precision": 18,
+    "color": "#0404FC",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x62359Ed7505Efc61FF1D56fEF82158CcaffA23D7/logo.png",
+    "symbol": "CORE",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x62406995cafd18f57e7375e8e0060725acebce58": {
+    "assetId": "eip155:1/erc20:0x62406995cafd18f57e7375e8e0060725acebce58",
+    "chainId": "eip155:1",
+    "name": "Firulais Wallet",
+    "precision": 18,
+    "color": "#352248",
+    "icon": "https://assets.coingecko.com/coins/images/20716/thumb/FIWT-Logo.png?1696520115",
+    "symbol": "FIWT",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x6243d8cea23066d098a15582d81a598b4e8391f4": {
+    "assetId": "eip155:1/erc20:0x6243d8cea23066d098a15582d81a598b4e8391f4",
+    "chainId": "eip155:1",
+    "name": "Reflexer Ungovernance",
+    "precision": 18,
+    "color": "#6ADCDC",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x6243d8CEA23066d098a15582d81a598b4e8391F4/logo.png",
+    "symbol": "FLX",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x6247c86b016bc4d9ae141849c0a9eb38c004b742": {
+    "assetId": "eip155:1/erc20:0x6247c86b016bc4d9ae141849c0a9eb38c004b742",
+    "chainId": "eip155:1",
+    "name": "Hotelium",
+    "precision": 18,
+    "color": "#F4F4FC",
+    "icon": "https://assets.coingecko.com/coins/images/8812/thumb/hotelium.PNG?1696508966",
+    "symbol": "HTL",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x624d520bab2e4ad83935fa503fb130614374e850": {
+    "assetId": "eip155:1/erc20:0x624d520bab2e4ad83935fa503fb130614374e850",
+    "chainId": "eip155:1",
+    "name": "Smartshare",
+    "precision": 4,
+    "color": "#645CF4",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x624d520BAB2E4aD83935Fa503fB130614374E850/logo.png",
+    "symbol": "SSP",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x624dfe05202b66d871b8b7c0e14ab29fc3a5120c": {
+    "color": "#FFFFFF",
+    "icon": "https://raw.githubusercontent.com/Idle-Labs/idle-dashboard/master/public/images/tokens/AGEUR.svg",
+    "name": "Euler AGEUR Senior Tranche",
+    "precision": 18,
+    "symbol": "AA_eagEUR",
+    "chainId": "eip155:1",
+    "assetId": "eip155:1/erc20:0x624dfe05202b66d871b8b7c0e14ab29fc3a5120c",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x6251e725cd45fb1af99354035a414a2c0890b929": {
+    "assetId": "eip155:1/erc20:0x6251e725cd45fb1af99354035a414a2c0890b929",
+    "chainId": "eip155:1",
+    "name": "MixTrust",
+    "precision": 18,
+    "color": "#04C3EA",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x6251E725CD45Fb1AF99354035a414A2C0890B929/logo.png",
+    "symbol": "MXT",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x625ae63000f46200499120b906716420bd059240": {
+    "assetId": "eip155:1/erc20:0x625ae63000f46200499120b906716420bd059240",
+    "chainId": "eip155:1",
+    "name": "Aave SUSD v1",
+    "precision": 18,
+    "color": "#100F33",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x625aE63000f46200499120B906716420bd059240/logo.png",
+    "symbol": "ASUSD",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x626e8036deb333b408be468f951bdb42433cbf18": {
+    "assetId": "eip155:1/erc20:0x626e8036deb333b408be468f951bdb42433cbf18",
+    "chainId": "eip155:1",
+    "name": "AIOZ Network on Ethereum",
+    "precision": 18,
+    "color": "#1C5CEC",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x626E8036dEB333b408Be468F951bdB42433cBF18/logo.png",
+    "symbol": "AIOZ",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x6286a9e6f7e745a6d884561d88f94542d6715698": {
+    "assetId": "eip155:1/erc20:0x6286a9e6f7e745a6d884561d88f94542d6715698",
+    "chainId": "eip155:1",
+    "name": "Cryptomeda on Ethereum",
+    "precision": 18,
+    "color": "#F6B738",
+    "icon": "https://assets.coingecko.com/coins/images/17983/thumb/tech.png?1696517501",
+    "symbol": "TECH",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x628a3b2e302c7e896acc432d2d0dd22b6cb9bc88": {
+    "assetId": "eip155:1/erc20:0x628a3b2e302c7e896acc432d2d0dd22b6cb9bc88",
+    "chainId": "eip155:1",
+    "name": "LimeWire",
+    "precision": 18,
+    "color": "#D9F58C",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x628A3b2E302C7e896AcC432D2d0dD22B6cb9bc88/logo.png",
+    "symbol": "LMWR",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x628ab8b061fea2af1239b68efa5e46135d186666": {
+    "assetId": "eip155:1/erc20:0x628ab8b061fea2af1239b68efa5e46135d186666",
+    "chainId": "eip155:1",
+    "name": "XBullion Silver",
+    "precision": 8,
+    "color": "#2950A6",
+    "icon": "https://assets.coingecko.com/coins/images/24171/thumb/SILV_Logo_%28transparent_circle%29.png?1646816506",
+    "symbol": "SILV",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x62939f78a9a1cc4f9f1ea41cff95cd4f6b912d1b": {
+    "assetId": "eip155:1/erc20:0x62939f78a9a1cc4f9f1ea41cff95cd4f6b912d1b",
+    "chainId": "eip155:1",
+    "name": "Numisme2",
+    "precision": 18,
+    "color": "#515151",
+    "icon": "https://assets.coingecko.com/coins/images/31009/thumb/NUME2.jpg?1696529846",
+    "symbol": "NUME2",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x6293bbe52c3682057163172850002f18f993da6a": {
+    "assetId": "eip155:1/erc20:0x6293bbe52c3682057163172850002f18f993da6a",
+    "chainId": "eip155:1",
+    "name": "TruthGPT  ETH ",
+    "precision": 18,
+    "color": "#6480D5",
+    "icon": "https://assets.coingecko.com/coins/images/30993/thumb/LOGO_200.png?1696529831",
+    "symbol": "TRUTH",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x62959c699a52ec647622c91e79ce73344e4099f5": {
+    "assetId": "eip155:1/erc20:0x62959c699a52ec647622c91e79ce73344e4099f5",
+    "chainId": "eip155:1",
+    "name": "DeFine",
+    "precision": 18,
+    "color": "#8E3CC8",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x62959c699A52eC647622c91e79CE73344e4099f5/logo.png",
+    "symbol": "DFA",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x62a0369c6bb00054e589d12aad7ad81ed789514b": {
+    "color": "#FFFFFF",
+    "icon": "https://raw.githubusercontent.com/Idle-Labs/idle-dashboard/master/public/images/tokens/WETH.svg",
+    "name": "WETH Junior Best Yield",
+    "precision": 18,
+    "symbol": "idleWETHJunior",
+    "chainId": "eip155:1",
+    "assetId": "eip155:1/erc20:0x62a0369c6bb00054e589d12aad7ad81ed789514b",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x62a8c2818bd7034dc24cd22368c3e53e8eb47c18": {
+    "assetId": "eip155:1/erc20:0x62a8c2818bd7034dc24cd22368c3e53e8eb47c18",
+    "chainId": "eip155:1",
+    "name": "InnitForTheTECH",
+    "precision": 18,
+    "color": "#040505",
+    "icon": "https://assets.coingecko.com/coins/images/26724/thumb/INNITlogo.jpg?1696525794",
+    "symbol": "INNIT",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x62b9c7356a2dc64a1969e19c23e4f579f9810aa7": {
+    "assetId": "eip155:1/erc20:0x62b9c7356a2dc64a1969e19c23e4f579f9810aa7",
+    "chainId": "eip155:1",
+    "name": "Convex CRV",
+    "precision": 18,
+    "color": "#1EA9D5",
+    "icon": "https://assets.coingecko.com/coins/images/15586/thumb/convex-crv.png?1696515222",
+    "symbol": "CVXCRV",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x62d04c79c1f3a2d7230ffcd3ab01794e1d153239": {
+    "assetId": "eip155:1/erc20:0x62d04c79c1f3a2d7230ffcd3ab01794e1d153239",
+    "chainId": "eip155:1",
+    "name": "CryptoPirates",
+    "precision": 18,
+    "color": "#040404",
+    "icon": "https://assets.coingecko.com/coins/images/30442/thumb/cryptopirates.png?1696529329",
+    "symbol": "OGMF",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x62d0a8458ed7719fdaf978fe5929c6d342b0bfce": {
+    "assetId": "eip155:1/erc20:0x62d0a8458ed7719fdaf978fe5929c6d342b0bfce",
+    "chainId": "eip155:1",
+    "name": "Beam on Ethereum",
+    "precision": 18,
+    "color": "#FC5354",
+    "icon": "https://assets.coingecko.com/coins/images/32417/thumb/chain-logo.png?1698114384",
+    "symbol": "BEAM",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x62d3c05b9c3d916fbc111819bbd3cee52906c1ae": {
+    "assetId": "eip155:1/erc20:0x62d3c05b9c3d916fbc111819bbd3cee52906c1ae",
+    "chainId": "eip155:1",
+    "name": "Every Game",
+    "precision": 18,
+    "color": "#CFE3FC",
+    "icon": "https://assets.coingecko.com/coins/images/20758/thumb/egame.png?1696520153",
+    "symbol": "EGAME",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x62dc4817588d53a056cbbd18231d91ffccd34b2a": {
+    "assetId": "eip155:1/erc20:0x62dc4817588d53a056cbbd18231d91ffccd34b2a",
+    "chainId": "eip155:1",
+    "name": "DeHive on Ethereum",
+    "precision": 18,
+    "color": "#14141C",
+    "icon": "https://assets.coingecko.com/coins/images/14926/thumb/logo_200x200.png?1696514587",
+    "symbol": "DHV",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x62eb6a8c7a555eae3e0b17d42ca9a3299af2787e": {
+    "color": "#FFFFFF",
+    "icon": "https://raw.githubusercontent.com/Idle-Labs/idle-dashboard/master/public/images/tokens/DAI.svg",
+    "name": "EulerStaking DAI Senior Tranche",
+    "precision": 18,
+    "symbol": "AA_idleEulStk_eUSDC",
+    "chainId": "eip155:1",
+    "assetId": "eip155:1/erc20:0x62eb6a8c7a555eae3e0b17d42ca9a3299af2787e",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x6307b25a665efc992ec1c1bc403c38f3ddd7c661": {
+    "assetId": "eip155:1/erc20:0x6307b25a665efc992ec1c1bc403c38f3ddd7c661",
+    "chainId": "eip155:1",
+    "name": "Global Coin Research on Ethereum",
+    "precision": 4,
+    "color": "#2747ED",
+    "icon": "https://assets.coingecko.com/coins/images/14815/thumb/gcr.jpeg?1696514483",
+    "symbol": "GCR",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x630d98424efe0ea27fb1b3ab7741907dffeaad78": {
+    "assetId": "eip155:1/erc20:0x630d98424efe0ea27fb1b3ab7741907dffeaad78",
+    "chainId": "eip155:1",
+    "name": "PEAKDEFI on Ethereum",
+    "precision": 8,
+    "color": "#353230",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x630d98424eFe0Ea27fB1b3Ab7741907DFFEaAd78/logo.png",
+    "symbol": "PEAK",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x6311fcfef61e75e11c6e78949d7849f3b07e3a15": {
+    "assetId": "eip155:1/erc20:0x6311fcfef61e75e11c6e78949d7849f3b07e3a15",
+    "chainId": "eip155:1",
+    "name": "ZeusAiTrading",
+    "precision": 9,
+    "color": "#628385",
+    "icon": "https://assets.coingecko.com/coins/images/31570/thumb/IMG_20230831_172406_376.png?1696530382",
+    "symbol": "ZAT",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x634239cfa331df0291653139d1a6083b9cf705e3": {
+    "assetId": "eip155:1/erc20:0x634239cfa331df0291653139d1a6083b9cf705e3",
+    "chainId": "eip155:1",
+    "name": "DeSpace Protocol on Ethereum",
+    "precision": 18,
+    "color": "#1E1520",
+    "icon": "https://assets.coingecko.com/coins/images/18517/thumb/NQQu-EsT_400x400.jpg?1696517998",
+    "symbol": "DES",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x635f15eb7aa2e62d122f6b1f9f519fdccf4abdda": {
+    "assetId": "eip155:1/erc20:0x635f15eb7aa2e62d122f6b1f9f519fdccf4abdda",
+    "chainId": "eip155:1",
+    "name": "hiMAYC",
+    "precision": 18,
+    "color": "#202024",
+    "icon": "https://assets.coingecko.com/coins/images/27602/thumb/himayc.png?1696526633",
+    "symbol": "HIMAYC",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x6368e1e18c4c419ddfc608a0bed1ccb87b9250fc": {
+    "assetId": "eip155:1/erc20:0x6368e1e18c4c419ddfc608a0bed1ccb87b9250fc",
+    "chainId": "eip155:1",
+    "name": "Tap",
+    "precision": 18,
+    "color": "#045492",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x6368e1E18c4C419DDFC608A0BEd1ccb87b9250fc/logo.png",
+    "symbol": "XTP",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x6369c3dadfc00054a42ba8b2c09c48131dd4aa38": {
+    "assetId": "eip155:1/erc20:0x6369c3dadfc00054a42ba8b2c09c48131dd4aa38",
+    "chainId": "eip155:1",
+    "name": "Morpher",
+    "precision": 18,
+    "color": "#04C484",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x6369c3DadfC00054A42BA8B2c09c48131dd4Aa38/logo.png",
+    "symbol": "MPH",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x636d585f40a7a445da7403fcf92e03f89dc3ebd0": {
+    "assetId": "eip155:1/erc20:0x636d585f40a7a445da7403fcf92e03f89dc3ebd0",
+    "chainId": "eip155:1",
+    "name": "pepeGPT",
+    "precision": 18,
+    "color": "#3F5829",
+    "icon": "https://assets.coingecko.com/coins/images/30010/thumb/2002002006khlFpye_400x400.jpg?1696528934",
+    "symbol": "PEPEGPT",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x6399c842dd2be3de30bf99bc7d1bbf6fa3650e70": {
+    "assetId": "eip155:1/erc20:0x6399c842dd2be3de30bf99bc7d1bbf6fa3650e70",
+    "chainId": "eip155:1",
+    "name": "Premia on Ethereum",
+    "precision": 18,
+    "color": "#C4DDFB",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x6399C842dD2bE3dE30BF99Bc7D1bBF6Fa3650E70/logo.png",
+    "symbol": "PREMIA",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x63a60c5469379149757cc3e58453202ebdb7e933": {
+    "assetId": "eip155:1/erc20:0x63a60c5469379149757cc3e58453202ebdb7e933",
+    "chainId": "eip155:1",
+    "name": "Wager",
+    "precision": 18,
+    "color": "#3C91BC",
+    "icon": "https://assets.coingecko.com/coins/images/31357/thumb/WagerCashLogo.png?1696530174",
+    "symbol": "VS",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x63b4f3e3fa4e438698ce330e365e831f7ccd1ef4": {
+    "assetId": "eip155:1/erc20:0x63b4f3e3fa4e438698ce330e365e831f7ccd1ef4",
+    "chainId": "eip155:1",
+    "name": "CyberFi on Ethereum",
+    "precision": 18,
+    "color": "#040404",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x63b4f3e3fa4e438698CE330e365E831F7cCD1eF4/logo.png",
+    "symbol": "CFI",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x63f314c44d164d5be423199afbfbe129d72d3ea6": {
+    "assetId": "eip155:1/erc20:0x63f314c44d164d5be423199afbfbe129d72d3ea6",
+    "chainId": "eip155:1",
+    "name": "Battleground",
+    "precision": 18,
+    "color": "#242425",
+    "icon": "https://assets.coingecko.com/coins/images/31517/thumb/battle_200x200.jpg?1696530327",
+    "symbol": "BATTLE",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x63f584fa56e60e4d0fe8802b27c7e6e3b33e007f": {
+    "assetId": "eip155:1/erc20:0x63f584fa56e60e4d0fe8802b27c7e6e3b33e007f",
+    "chainId": "eip155:1",
+    "name": "ContentBox",
+    "precision": 18,
+    "color": "#FCAE65",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x63f584FA56E60e4D0fE8802b27C7e6E3b33E007f/logo.png",
+    "symbol": "BOX",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x63f7b1b538a78cb699e5399621b3d2e047c40de4": {
+    "assetId": "eip155:1/erc20:0x63f7b1b538a78cb699e5399621b3d2e047c40de4",
+    "chainId": "eip155:1",
+    "name": "Maxity",
+    "precision": 18,
+    "color": "#58C496",
+    "icon": "https://assets.coingecko.com/coins/images/26933/thumb/MAX_token_200.png?1696525989",
+    "symbol": "MAX",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x63f88a2298a5c4aee3c216aa6d926b184a4b2437": {
+    "assetId": "eip155:1/erc20:0x63f88a2298a5c4aee3c216aa6d926b184a4b2437",
+    "chainId": "eip155:1",
+    "name": "GameCredits on Ethereum",
+    "precision": 18,
+    "color": "#35A845",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x63f88A2298a5c4AEE3c216Aa6D926B184a4b2437/logo.png",
+    "symbol": "GAME",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x6400b5522f8d448c0803e6245436dd1c81df09ce": {
+    "assetId": "eip155:1/erc20:0x6400b5522f8d448c0803e6245436dd1c81df09ce",
+    "chainId": "eip155:1",
+    "name": "Conscious Value Network",
+    "precision": 8,
+    "color": "#5C74EC",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x6400B5522f8D448C0803e6245436DD1c81dF09ce/logo.png",
+    "symbol": "CVNT",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x641927e970222b10b2e8cdbc96b1b4f427316f16": {
+    "assetId": "eip155:1/erc20:0x641927e970222b10b2e8cdbc96b1b4f427316f16",
+    "chainId": "eip155:1",
+    "name": "MEEB Vault  NFTX ",
+    "precision": 18,
+    "color": "#FB5061",
+    "icon": "https://assets.coingecko.com/coins/images/17044/thumb/Meebs.png?1696516607",
+    "symbol": "MEEB",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x642ac912a58428767fa14a26a749f9a1b001ba92": {
+    "assetId": "eip155:1/erc20:0x642ac912a58428767fa14a26a749f9a1b001ba92",
+    "chainId": "eip155:1",
+    "name": "XX",
+    "precision": 9,
+    "color": "#F0F0F0",
+    "icon": "https://assets.coingecko.com/coins/images/31972/thumb/200.png?1696530777",
+    "symbol": "XX",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x642b62daebd3b46b03208a5e590a9d87a88fbdac": {
+    "assetId": "eip155:1/erc20:0x642b62daebd3b46b03208a5e590a9d87a88fbdac",
+    "chainId": "eip155:1",
+    "name": "All In Coin",
+    "precision": 9,
+    "color": "#217F1F",
+    "icon": "https://assets.coingecko.com/coins/images/31223/thumb/allinlogo_200x200.jpg?1696530049",
+    "symbol": "ALLIN",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x6431fa4b812a2dcc062a38cb55cc7d18135adead": {
+    "assetId": "eip155:1/erc20:0x6431fa4b812a2dcc062a38cb55cc7d18135adead",
+    "chainId": "eip155:1",
+    "name": "RankerDao",
+    "precision": 18,
+    "color": "#939393",
+    "icon": "https://assets.coingecko.com/coins/images/23902/thumb/ranker.png?1696523102",
+    "symbol": "RANKER",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x64323d606cfcb1b50998636a182334ad97637987": {
+    "assetId": "eip155:1/erc20:0x64323d606cfcb1b50998636a182334ad97637987",
+    "chainId": "eip155:1",
+    "name": "xperp",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/33107/thumb/xperp-logo.png?1700663572",
+    "symbol": "XPERP",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x644192291cc835a93d6330b24ea5f5fedd0eef9e": {
+    "assetId": "eip155:1/erc20:0x644192291cc835a93d6330b24ea5f5fedd0eef9e",
+    "chainId": "eip155:1",
+    "name": "AllianceBlock Nexera on Ethereum",
+    "precision": 18,
+    "color": "#A5B4FC",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x644192291cc835A93d6330b24EA5f5FEdD0eEF9e/logo.png",
+    "symbol": "NXRA",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x64551fa4093c2d6c298cf1792740f884084a8f69": {
+    "assetId": "eip155:1/erc20:0x64551fa4093c2d6c298cf1792740f884084a8f69",
+    "chainId": "eip155:1",
+    "name": "SPGBB",
+    "precision": 18,
+    "color": "#DBBC2D",
+    "icon": "https://assets.coingecko.com/coins/images/30089/thumb/spgbb.jpg?1696529013",
+    "symbol": "SPGBB",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x6468e79a80c0eab0f9a2b574c8d5bc374af59414": {
+    "assetId": "eip155:1/erc20:0x6468e79a80c0eab0f9a2b574c8d5bc374af59414",
+    "chainId": "eip155:1",
+    "name": "e Radix",
+    "precision": 18,
+    "color": "#3BC98B",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x6468e79A80C0eaB0F9A2B574c8d5bC374Af59414/logo.png",
+    "symbol": "EXRD",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x64a60493d888728cf42616e034a0dfeae38efcf0": {
+    "assetId": "eip155:1/erc20:0x64a60493d888728cf42616e034a0dfeae38efcf0",
+    "chainId": "eip155:1",
+    "name": "OneLedger",
+    "precision": 18,
+    "color": "#F0F1F4",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x64A60493D888728Cf42616e034a0dfEAe38EFCF0/logo.png",
+    "symbol": "OLT",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x64a77277e37d44957fe5815d6ff442ab8b16cc29": {
+    "assetId": "eip155:1/erc20:0x64a77277e37d44957fe5815d6ff442ab8b16cc29",
+    "chainId": "eip155:1",
+    "name": "SpaceDawgs on Ethereum",
+    "precision": 9,
+    "color": "#1F2D3F",
+    "icon": "https://assets.coingecko.com/coins/images/17076/thumb/twitter-facebook-Instagram-pfp.png?1696516638",
+    "symbol": "DAWGS",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x64aa3364f17a4d01c6f1751fd97c2bd3d7e7f1d5": {
+    "assetId": "eip155:1/erc20:0x64aa3364f17a4d01c6f1751fd97c2bd3d7e7f1d5",
+    "chainId": "eip155:1",
+    "name": "Olympus on Ethereum",
+    "precision": 9,
+    "color": "#738C94",
+    "icon": "https://assets.coingecko.com/coins/images/14483/thumb/token_OHM_%281%29.png?1696514169",
+    "symbol": "OHM",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x64b5a241b829bca14eb42d00097ba8fd8135841e": {
+    "assetId": "eip155:1/erc20:0x64b5a241b829bca14eb42d00097ba8fd8135841e",
+    "chainId": "eip155:1",
+    "name": "MEFLEX",
+    "precision": 18,
+    "color": "#C6C6C6",
+    "icon": "https://assets.coingecko.com/coins/images/28752/thumb/_200x200_%28png%29white_logo_meflex.png?1696527732",
+    "symbol": "MEF",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x64b78325d7495d6d4be92f234fa3f3b8d8964b8b": {
+    "assetId": "eip155:1/erc20:0x64b78325d7495d6d4be92f234fa3f3b8d8964b8b",
+    "chainId": "eip155:1",
+    "name": "Shopping io",
+    "precision": 18,
+    "color": "#8EE1FC",
+    "icon": "https://assets.coingecko.com/coins/images/27242/thumb/shop.png?1696526292",
+    "symbol": "SHOP",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x64bc2ca1be492be7185faa2c8835d9b824c8a194": {
+    "assetId": "eip155:1/erc20:0x64bc2ca1be492be7185faa2c8835d9b824c8a194",
+    "chainId": "eip155:1",
+    "name": "Big Time",
+    "precision": 18,
+    "color": "#A9A9A9",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x64Bc2cA1Be492bE7185FAA2c8835d9b824c8a194/logo.png",
+    "symbol": "BIGTIME",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x64c79c8c59a2be17c8d651f73e5ee7942eebdc9e": {
+    "assetId": "eip155:1/erc20:0x64c79c8c59a2be17c8d651f73e5ee7942eebdc9e",
+    "chainId": "eip155:1",
+    "name": "Elon Cat on Ethereum",
+    "precision": 18,
+    "color": "#6F5843",
+    "icon": "https://assets.coingecko.com/coins/images/31893/thumb/png_%285%29_%281%29.png?1696530704",
+    "symbol": "SCHRODINGE",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x64d0f55cd8c7133a9d7102b13987235f486f2224": {
+    "assetId": "eip155:1/erc20:0x64d0f55cd8c7133a9d7102b13987235f486f2224",
+    "chainId": "eip155:1",
+    "name": "SwissBorg",
+    "precision": 18,
+    "color": "#97ECD8",
+    "icon": "https://assets.coingecko.com/coins/images/2117/thumb/YJUrRy7r_400x400.png?1696503083",
+    "symbol": "BORG",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x64d91f12ece7362f91a6f8e7940cd55f05060b92": {
+    "assetId": "eip155:1/erc20:0x64d91f12ece7362f91a6f8e7940cd55f05060b92",
+    "chainId": "eip155:1",
+    "name": "ASH",
+    "precision": 18,
+    "color": "#646464",
+    "icon": "https://assets.coingecko.com/coins/images/15714/thumb/omnPqaTY.png?1696515341",
+    "symbol": "ASH",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x64df3aab3b21cc275bb76c4a581cf8b726478ee0": {
+    "assetId": "eip155:1/erc20:0x64df3aab3b21cc275bb76c4a581cf8b726478ee0",
+    "chainId": "eip155:1",
+    "name": "Cramer Coin",
+    "precision": 18,
+    "color": "#6CC83C",
+    "icon": "https://assets.coingecko.com/coins/images/27463/thumb/cramercoin.jpg?1696526502",
+    "symbol": "CRAMER",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x64e8cc11ddccea70cc800231a62f0d9ea46c94ac": {
+    "assetId": "eip155:1/erc20:0x64e8cc11ddccea70cc800231a62f0d9ea46c94ac",
+    "chainId": "eip155:1",
+    "name": "XApis",
+    "precision": 18,
+    "color": "#141C21",
+    "icon": "https://assets.coingecko.com/coins/images/32477/thumb/photo_2023-10-18_16.45.53.jpeg?1698286327",
+    "symbol": "WAX",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x65032604dab202aff9adf89300cdb4bd0d059f55": {
+    "assetId": "eip155:1/erc20:0x65032604dab202aff9adf89300cdb4bd0d059f55",
+    "chainId": "eip155:1",
+    "name": "SOBA",
+    "precision": 18,
+    "color": "#D0D0D0",
+    "icon": "https://assets.coingecko.com/coins/images/14673/thumb/soba-logo-black.png?1696514347",
+    "symbol": "SOBA",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x651e44d0df89055c00513d0efb9e8d1a0c843378": {
+    "assetId": "eip155:1/erc20:0x651e44d0df89055c00513d0efb9e8d1a0c843378",
+    "chainId": "eip155:1",
+    "name": "HappyBear",
+    "precision": 18,
+    "color": "#C87A8E",
+    "icon": "https://assets.coingecko.com/coins/images/29029/thumb/HappyCG.png?1696527999",
+    "symbol": "HAPPY",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x6524b87960c2d573ae514fd4181777e7842435d4": {
+    "assetId": "eip155:1/erc20:0x6524b87960c2d573ae514fd4181777e7842435d4",
+    "chainId": "eip155:1",
+    "name": "Benzene",
+    "precision": 18,
+    "color": "#5953E5",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x6524B87960c2d573AE514fd4181777E7842435d4/logo.png",
+    "symbol": "BZN",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x656c00e1bcd96f256f224ad9112ff426ef053733": {
+    "assetId": "eip155:1/erc20:0x656c00e1bcd96f256f224ad9112ff426ef053733",
+    "chainId": "eip155:1",
+    "name": "Efinity",
+    "precision": 18,
+    "color": "#4C6CDC",
+    "icon": "https://assets.coingecko.com/coins/images/16558/thumb/efi-200px_%281%29.png?1696516119",
+    "symbol": "EFI",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x6570ffe19da7e2b425329b157d9109b87f18304b": {
+    "assetId": "eip155:1/erc20:0x6570ffe19da7e2b425329b157d9109b87f18304b",
+    "chainId": "eip155:1",
+    "name": "UNIUM",
+    "precision": 18,
+    "color": "#D2A8CE",
+    "icon": "https://assets.coingecko.com/coins/images/24567/thumb/Unium_logo.png?1696523743",
+    "symbol": "UNM",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x657b83a0336561c8f64389a6f5ade675c04b0c3b": {
+    "assetId": "eip155:1/erc20:0x657b83a0336561c8f64389a6f5ade675c04b0c3b",
+    "chainId": "eip155:1",
+    "name": "Playcent on Ethereum",
+    "precision": 18,
+    "color": "#746CA4",
+    "icon": "https://assets.coingecko.com/coins/images/14335/thumb/1_B5bFcgBld5poUj_c-_K1Jw.png?1696514023",
+    "symbol": "PCNT",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x6595b8fd9c920c81500dca94e53cdc712513fb1f": {
+    "assetId": "eip155:1/erc20:0x6595b8fd9c920c81500dca94e53cdc712513fb1f",
+    "chainId": "eip155:1",
+    "name": "Olyverse",
+    "precision": 18,
+    "color": "#B23CB8",
+    "icon": "https://assets.coingecko.com/coins/images/13983/thumb/OLY-LOGO.png?1696513715",
+    "symbol": "OLY",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x65a8fba02f641a13bb7b01d5e1129b0521004f52": {
+    "assetId": "eip155:1/erc20:0x65a8fba02f641a13bb7b01d5e1129b0521004f52",
+    "chainId": "eip155:1",
+    "name": "Amasa",
+    "precision": 18,
+    "color": "#0F32FC",
+    "icon": "https://assets.coingecko.com/coins/images/18799/thumb/agmqWjv8_400x400.png?1696518261",
+    "symbol": "AMAS",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x65ad6a2288b2dd23e466226397c8f5d1794e58fc": {
+    "assetId": "eip155:1/erc20:0x65ad6a2288b2dd23e466226397c8f5d1794e58fc",
+    "chainId": "eip155:1",
+    "name": "GamyFi on Ethereum",
+    "precision": 18,
+    "color": "#DCD9FA",
+    "icon": "https://assets.coingecko.com/coins/images/14559/thumb/circle-cropped_%281%29.png?1696514241",
+    "symbol": "GFX",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x65ccd72c0813ce6f2703593b633202a0f3ca6a0c": {
+    "assetId": "eip155:1/erc20:0x65ccd72c0813ce6f2703593b633202a0f3ca6a0c",
+    "chainId": "eip155:1",
+    "name": "Nestree",
+    "precision": 18,
+    "color": "#9AF5FA",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x65cCD72c0813CE6f2703593B633202a0F3Ca6a0c/logo.png",
+    "symbol": "EGG",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x65def5029a0e7591e46b38742bfedd1fb7b24436": {
+    "assetId": "eip155:1/erc20:0x65def5029a0e7591e46b38742bfedd1fb7b24436",
+    "chainId": "eip155:1",
+    "name": "Kanpeki",
+    "precision": 18,
+    "color": "#1CC474",
+    "icon": "https://assets.coingecko.com/coins/images/18833/thumb/kanpeki-logo-square_2.png?1696518294",
+    "symbol": "KAE",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x65e6b60ea01668634d68d0513fe814679f925bad": {
+    "assetId": "eip155:1/erc20:0x65e6b60ea01668634d68d0513fe814679f925bad",
+    "chainId": "eip155:1",
+    "name": "PixelVerse on Ethereum",
+    "precision": 18,
+    "color": "#28171A",
+    "icon": "https://assets.coingecko.com/coins/images/19934/thumb/pixelverse.PNG?1696519352",
+    "symbol": "PIXEL",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x65ef703f5594d2573eb71aaf55bc0cb548492df4": {
+    "assetId": "eip155:1/erc20:0x65ef703f5594d2573eb71aaf55bc0cb548492df4",
+    "chainId": "eip155:1",
+    "name": "Multichain on Ethereum",
+    "precision": 18,
+    "color": "#D6D2FA",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x65Ef703f5594D2573eb71Aaf55BC0CB548492df4/logo.png",
+    "symbol": "MULTI",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x65f9a292f1aeed5d755aa2fd2fb17ab2e9431447": {
+    "assetId": "eip155:1/erc20:0x65f9a292f1aeed5d755aa2fd2fb17ab2e9431447",
+    "chainId": "eip155:1",
+    "name": "SoMee Social",
+    "precision": 18,
+    "color": "#B2C6D2",
+    "icon": "https://assets.coingecko.com/coins/images/16406/thumb/SoMeeBallLogo200x200.png?1696516003",
+    "symbol": "SOMEE",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x66186008c1050627f979d464eabb258860563dbe": {
+    "assetId": "eip155:1/erc20:0x66186008c1050627f979d464eabb258860563dbe",
+    "chainId": "eip155:1",
+    "name": "MediShares",
+    "precision": 18,
+    "color": "#040404",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x66186008C1050627F979d464eABb258860563dbE/logo.png",
+    "symbol": "MDS",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x661ab0ed68000491d98c796146bcf28c20d7c559": {
+    "assetId": "eip155:1/erc20:0x661ab0ed68000491d98c796146bcf28c20d7c559",
+    "chainId": "eip155:1",
+    "name": "Shadows on Ethereum",
+    "precision": 18,
+    "color": "#040404",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x661Ab0Ed68000491d98C796146bcF28c20d7c559/logo.png",
+    "symbol": "DOWS",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x6628606c321faf52b7230a57b26c01b19aa68e82": {
+    "assetId": "eip155:1/erc20:0x6628606c321faf52b7230a57b26c01b19aa68e82",
+    "chainId": "eip155:1",
+    "name": "BitHash",
+    "precision": 18,
+    "color": "#F9363F",
+    "icon": "https://assets.coingecko.com/coins/images/13224/thumb/bt.png?1696513003",
+    "symbol": "BT",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x6629baa8c7c6a84290bf9a885825e3540875219d": {
+    "color": "#FFFFFF",
+    "icon": "https://raw.githubusercontent.com/Idle-Labs/idle-dashboard/master/public/images/tokens/DAI.svg",
+    "name": "Euler DAI Junior Tranche",
+    "precision": 18,
+    "symbol": "BB_eDAI",
+    "chainId": "eip155:1",
+    "assetId": "eip155:1/erc20:0x6629baa8c7c6a84290bf9a885825e3540875219d",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x662b67d00a13faf93254714dd601f5ed49ef2f51": {
+    "assetId": "eip155:1/erc20:0x662b67d00a13faf93254714dd601f5ed49ef2f51",
+    "chainId": "eip155:1",
+    "name": "Orbit Chain",
+    "precision": 18,
+    "color": "#5CA9C4",
+    "icon": "https://assets.coingecko.com/coins/images/9782/thumb/-p1Br7oh_400x400.png?1696509841",
+    "symbol": "ORC",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x664c6e221c77313307467b121528ad563107bd01": {
+    "assetId": "eip155:1/erc20:0x664c6e221c77313307467b121528ad563107bd01",
+    "chainId": "eip155:1",
+    "name": "Tax Haven Inu",
+    "precision": 9,
+    "color": "#676B4F",
+    "icon": "https://assets.coingecko.com/coins/images/27362/thumb/tax_haven_inu.png?1696526406",
+    "symbol": "TAXHAVENINU",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x66580f80a00deafab4519dc33c35bf44d8a12b00": {
+    "assetId": "eip155:1/erc20:0x66580f80a00deafab4519dc33c35bf44d8a12b00",
+    "chainId": "eip155:1",
+    "name": "LiqWrap",
+    "precision": 18,
+    "color": "#A6DEFA",
+    "icon": "https://assets.coingecko.com/coins/images/31584/thumb/logo_1.png?1696530401",
+    "symbol": "LQW",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x666cbfaa3baa2faccfac8854fea1e5db140fb104": {
+    "assetId": "eip155:1/erc20:0x666cbfaa3baa2faccfac8854fea1e5db140fb104",
+    "chainId": "eip155:1",
+    "name": "PLUMS",
+    "precision": 18,
+    "color": "#ABABB0",
+    "icon": "https://assets.coingecko.com/coins/images/30097/thumb/logoPlums.png?1696529021",
+    "symbol": "PLUMS",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x666d875c600aa06ac1cf15641361dec3b00432ef": {
+    "assetId": "eip155:1/erc20:0x666d875c600aa06ac1cf15641361dec3b00432ef",
+    "chainId": "eip155:1",
+    "name": "BTSE Token",
+    "precision": 8,
+    "color": "#116CC8",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x666d875C600AA06AC1cf15641361dEC3b00432Ef/logo.png",
+    "symbol": "BTSE",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x667102bd3413bfeaa3dffb48fa8288819e480a88": {
+    "assetId": "eip155:1/erc20:0x667102bd3413bfeaa3dffb48fa8288819e480a88",
+    "chainId": "eip155:1",
+    "name": "Tokenize Xchange",
+    "precision": 8,
+    "color": "#F4AE40",
+    "icon": "https://assets.coingecko.com/coins/images/4984/thumb/TKX_-_Logo_-_RGB-15.png?1696505519",
+    "symbol": "TKX",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x667210a731447f8b385e068205759be2311b86d4": {
+    "assetId": "eip155:1/erc20:0x667210a731447f8b385e068205759be2311b86d4",
+    "chainId": "eip155:1",
+    "name": "ETF The Token",
+    "precision": 18,
+    "color": "#94EAC2",
+    "icon": "https://assets.coingecko.com/coins/images/31892/thumb/%E2%96%B2_%282%29.png?1696530703",
+    "symbol": "ETF",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x66761fa41377003622aee3c7675fc7b5c1c2fac5": {
+    "assetId": "eip155:1/erc20:0x66761fa41377003622aee3c7675fc7b5c1c2fac5",
+    "chainId": "eip155:1",
+    "name": "Clearpool",
+    "precision": 18,
+    "color": "#202633",
+    "icon": "https://assets.coingecko.com/coins/images/19252/thumb/photo_2022-08-31_12.45.02.jpeg?1696518697",
+    "symbol": "CPOOL",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x667fd83e24ca1d935d36717d305d54fa0cac991c": {
+    "assetId": "eip155:1/erc20:0x667fd83e24ca1d935d36717d305d54fa0cac991c",
+    "chainId": "eip155:1",
+    "name": "Collector Coin on Ethereum",
+    "precision": 18,
+    "color": "#101113",
+    "icon": "https://assets.coingecko.com/coins/images/16918/thumb/AGS.png?1696516489",
+    "symbol": "AGS",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x66861d5f0fbfb7b2711712fef2172c560d08d0ab": {
+    "assetId": "eip155:1/erc20:0x66861d5f0fbfb7b2711712fef2172c560d08d0ab",
+    "chainId": "eip155:1",
+    "name": "A Fund Baby",
+    "precision": 18,
+    "color": "#65655F",
+    "icon": "https://assets.coingecko.com/coins/images/30955/thumb/fund_baby.jpg?1696529794",
+    "symbol": "FUND",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x668c50b1c7f46effbe3f242687071d7908aab00a": {
+    "assetId": "eip155:1/erc20:0x668c50b1c7f46effbe3f242687071d7908aab00a",
+    "chainId": "eip155:1",
+    "name": "CoShi Inu",
+    "precision": 9,
+    "color": "#45E3F9",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x668C50B1c7f46EFFBE3f242687071d7908AAB00A/logo.png",
+    "symbol": "COSHI",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x668dbf100635f593a3847c0bdaf21f0a09380188": {
+    "assetId": "eip155:1/erc20:0x668dbf100635f593a3847c0bdaf21f0a09380188",
+    "chainId": "eip155:1",
+    "name": "BNSD Finance on Ethereum",
+    "precision": 18,
+    "color": "#6425E2",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x668DbF100635f593A3847c0bDaF21f0a09380188/logo.png",
+    "symbol": "BNSD",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x6692de64716a177c15360d8d010bc522bbc530a0": {
+    "assetId": "eip155:1/erc20:0x6692de64716a177c15360d8d010bc522bbc530a0",
+    "chainId": "eip155:1",
+    "name": "Talent",
+    "precision": 18,
+    "color": "#F3AA30",
+    "icon": "https://assets.coingecko.com/coins/images/25563/thumb/tnt.png?1696524696",
+    "symbol": "TNT",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x669c01caf0edcad7c2b8dc771474ad937a7ca4af": {
+    "assetId": "eip155:1/erc20:0x669c01caf0edcad7c2b8dc771474ad937a7ca4af",
+    "chainId": "eip155:1",
+    "name": "Wrapped Minima",
+    "precision": 18,
+    "color": "#C4C4C4",
+    "icon": "https://assets.coingecko.com/coins/images/29011/thumb/CoinGeko_icon_%28500x500%29.png?1696527982",
+    "symbol": "WMINIMA",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x669db4c47f89f21554ebd825a744888725fd9491": {
+    "assetId": "eip155:1/erc20:0x669db4c47f89f21554ebd825a744888725fd9491",
+    "chainId": "eip155:1",
+    "name": "hiPENGUINS",
+    "precision": 18,
+    "color": "#76A0F2",
+    "icon": "https://assets.coingecko.com/coins/images/28381/thumb/63856bebcd8c700001b23c42_hiPENGUINS-_Logo.png?1696527381",
+    "symbol": "HIPENGUINS",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x66a0f676479cee1d7373f3dc2e2952778bff5bd6": {
+    "assetId": "eip155:1/erc20:0x66a0f676479cee1d7373f3dc2e2952778bff5bd6",
+    "chainId": "eip155:1",
+    "name": "Wise",
+    "precision": 18,
+    "color": "#141C3C",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x66a0f676479Cee1d7373f3DC2e2952778BfF5bd6/logo.png",
+    "symbol": "WISE",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x66a39d581961d4cfa9bd3953ccc4e7ec7bd56716": {
+    "assetId": "eip155:1/erc20:0x66a39d581961d4cfa9bd3953ccc4e7ec7bd56716",
+    "chainId": "eip155:1",
+    "name": "Yellow Team",
+    "precision": 9,
+    "color": "#E8B40B",
+    "icon": "https://assets.coingecko.com/coins/images/31441/thumb/yellowteamclick.jpeg?1696530255",
+    "symbol": "YELLOW",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x66a3a58f812d0f433daaf1d96e14fd72d1d03d67": {
+    "assetId": "eip155:1/erc20:0x66a3a58f812d0f433daaf1d96e14fd72d1d03d67",
+    "chainId": "eip155:1",
+    "name": "YAMA Inu",
+    "precision": 18,
+    "color": "#B5B6B6",
+    "icon": "https://assets.coingecko.com/coins/images/31636/thumb/Yama_Inu_Coin_3.png?1696530451",
+    "symbol": "YAMA",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x66a64a8a9cdc54ef97e45a051ba1c8f3d4b41a1d": {
+    "assetId": "eip155:1/erc20:0x66a64a8a9cdc54ef97e45a051ba1c8f3d4b41a1d",
+    "chainId": "eip155:1",
+    "name": "Baby Shiba Coin",
+    "precision": 18,
+    "color": "#B36D41",
+    "icon": "https://assets.coingecko.com/coins/images/22707/thumb/9CmjzSIW_400x400.jpg?1696522017",
+    "symbol": "BABYSHIBA",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x66d4e39c355a911f6d19b3612785b63184a57c72": {
+    "assetId": "eip155:1/erc20:0x66d4e39c355a911f6d19b3612785b63184a57c72",
+    "chainId": "eip155:1",
+    "name": "Aardvark",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/32678/thumb/VARK.jpg?1698929830",
+    "symbol": "VARK",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x66eff5221ca926636224650fd3b9c497ff828f7d": {
+    "assetId": "eip155:1/erc20:0x66eff5221ca926636224650fd3b9c497ff828f7d",
+    "chainId": "eip155:1",
+    "name": "MultiBTC on Ethereum",
+    "precision": 8,
+    "color": "#E7E5F7",
+    "icon": "https://assets.coingecko.com/coins/images/29495/thumb/MultiBTC.png?1696528438",
+    "symbol": "MULTIBTC",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x66f73d0fd4161cfad4302dc145ff994375c13475": {
+    "assetId": "eip155:1/erc20:0x66f73d0fd4161cfad4302dc145ff994375c13475",
+    "chainId": "eip155:1",
+    "name": "DexGame",
+    "precision": 18,
+    "color": "#36499C",
+    "icon": "https://assets.coingecko.com/coins/images/21084/thumb/dxgm-token.png?1696520466",
+    "symbol": "DXGM",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x66fd97a78d8854fec445cd1c80a07896b0b4851f": {
+    "assetId": "eip155:1/erc20:0x66fd97a78d8854fec445cd1c80a07896b0b4851f",
+    "chainId": "eip155:1",
+    "name": "Lunch Money",
+    "precision": 18,
+    "color": "#C8B174",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x66fD97a78d8854fEc445cd1C80a07896B0b4851f/logo.png",
+    "symbol": "LMY",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x6706e05f3bafdba97de268483bc3a54bf92a883c": {
+    "assetId": "eip155:1/erc20:0x6706e05f3bafdba97de268483bc3a54bf92a883c",
+    "chainId": "eip155:1",
+    "name": "HYPE",
+    "precision": 9,
+    "color": "#060A07",
+    "icon": "https://assets.coingecko.com/coins/images/29777/thumb/irWZlil-_400x400-2.jpg?1696528707",
+    "symbol": "HYPE",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x670b73820441b54c118ae4546aaee401d4dc7aa0": {
+    "assetId": "eip155:1/erc20:0x670b73820441b54c118ae4546aaee401d4dc7aa0",
+    "chainId": "eip155:1",
+    "name": "AppifySite",
+    "precision": 9,
+    "color": "#34628C",
+    "icon": "https://assets.coingecko.com/coins/images/32082/thumb/5_200x200.png?1696530881",
+    "symbol": "APP",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x670ec8893da9c339d52fa70189756a92cafbe654": {
+    "assetId": "eip155:1/erc20:0x670ec8893da9c339d52fa70189756a92cafbe654",
+    "chainId": "eip155:1",
+    "name": "Potter Predator",
+    "precision": 18,
+    "color": "#273F46",
+    "icon": "https://assets.coingecko.com/coins/images/31394/thumb/Potter_Predator.png?1696530210",
+    "symbol": "VOLDEMORT",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x670f9d9a26d3d42030794ff035d35a67aa092ead": {
+    "assetId": "eip155:1/erc20:0x670f9d9a26d3d42030794ff035d35a67aa092ead",
+    "chainId": "eip155:1",
+    "name": "XBullion",
+    "precision": 8,
+    "color": "#5765B1",
+    "icon": "https://assets.coingecko.com/coins/images/15658/thumb/WhatsApp_Image_2021-05-17_at_2.24.16_PM.jpeg?1696515289",
+    "symbol": "GOLD",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x6710c63432a2de02954fc0f851db07146a6c0312": {
+    "assetId": "eip155:1/erc20:0x6710c63432a2de02954fc0f851db07146a6c0312",
+    "chainId": "eip155:1",
+    "name": "Smart MFG",
+    "precision": 18,
+    "color": "#FCBC14",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x6710c63432A2De02954fc0f851db07146a6c0312/logo.png",
+    "symbol": "MFG",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x671a912c10bba0cfa74cfc2d6fba9ba1ed9530b2": {
+    "assetId": "eip155:1/erc20:0x671a912c10bba0cfa74cfc2d6fba9ba1ed9530b2",
+    "chainId": "eip155:1",
+    "name": "LINK yVault",
+    "precision": 18,
+    "color": "#276BDB",
+    "icon": "https://assets.coingecko.com/coins/images/28791/thumb/yvLINK-128-0x671a912C10bba0CFA74Cfc2d6Fba9BA1ed9530B2.png?1696527769",
+    "symbol": "YVLINK",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x672f4fa517894496b8a958b4b3fca068ce513a39": {
+    "assetId": "eip155:1/erc20:0x672f4fa517894496b8a958b4b3fca068ce513a39",
+    "chainId": "eip155:1",
+    "name": "DexCheck on Ethereum",
+    "precision": 18,
+    "color": "#06283B",
+    "icon": "https://assets.coingecko.com/coins/images/26412/thumb/DexCheck_logo_%282%29.png?1696525488",
+    "symbol": "DCK",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x6731827cb6879a2091ce3ab3423f7bf20539b579": {
+    "assetId": "eip155:1/erc20:0x6731827cb6879a2091ce3ab3423f7bf20539b579",
+    "chainId": "eip155:1",
+    "name": "Empower on Ethereum",
+    "precision": 18,
+    "color": "#040708",
+    "icon": "https://assets.coingecko.com/coins/images/25456/thumb/MPWR_200x200.png?1696524587",
+    "symbol": "MPWR",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x6732efaf6f39926346bef8b821a04b6361c4f3e5": {
+    "assetId": "eip155:1/erc20:0x6732efaf6f39926346bef8b821a04b6361c4f3e5",
+    "chainId": "eip155:1",
+    "name": "Simple Asymmetry ETH",
+    "precision": 18,
+    "color": "#74ECAC",
+    "icon": "https://assets.coingecko.com/coins/images/30426/thumb/safETH_Logo_200_200.png?1699479265",
+    "symbol": "SAFETH",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x674c6ad92fd080e4004b2312b45f796a192d27a0": {
+    "assetId": "eip155:1/erc20:0x674c6ad92fd080e4004b2312b45f796a192d27a0",
+    "chainId": "eip155:1",
+    "name": "Neutrino Index Token on Ethereum",
+    "precision": 18,
+    "color": "#04FBB4",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x674C6Ad92Fd080e4004b2312b45f796a192D27a0/logo.png",
+    "symbol": "XTN",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x674c964ac0e89d847d6b0abd144b797bf78ba56b": {
+    "assetId": "eip155:1/erc20:0x674c964ac0e89d847d6b0abd144b797bf78ba56b",
+    "chainId": "eip155:1",
+    "name": "GreenWorld",
+    "precision": 6,
+    "color": "#1C341C",
+    "icon": "https://assets.coingecko.com/coins/images/27771/thumb/200x200logo.png?1696526792",
+    "symbol": "GWD",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x675ababd3a210566a5e213547523b740be80041a": {
+    "assetId": "eip155:1/erc20:0x675ababd3a210566a5e213547523b740be80041a",
+    "chainId": "eip155:1",
+    "name": "Entropy",
+    "precision": 18,
+    "color": "#A4BBD1",
+    "icon": "https://assets.coingecko.com/coins/images/30102/thumb/Entropy_bi_symbol_200x200.png?1696529025",
+    "symbol": "ENT",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x675bbc7514013e2073db7a919f6e4cbef576de37": {
+    "assetId": "eip155:1/erc20:0x675bbc7514013e2073db7a919f6e4cbef576de37",
+    "chainId": "eip155:1",
+    "name": "Coldstack on Ethereum",
+    "precision": 18,
+    "color": "#0454F4",
+    "icon": "https://assets.coingecko.com/coins/images/15499/thumb/logo_200x200.png?1696515143",
+    "symbol": "CLS",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x6781a0f84c7e9e846dcb84a9a5bd49333067b104": {
+    "assetId": "eip155:1/erc20:0x6781a0f84c7e9e846dcb84a9a5bd49333067b104",
+    "chainId": "eip155:1",
+    "name": "Zap on Ethereum",
+    "precision": 18,
+    "color": "#0495FB",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x6781a0F84c7E9e846DCb84A9a5bd49333067b104/logo.png",
+    "symbol": "ZAP",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x678e840c640f619e17848045d23072844224dd37": {
+    "assetId": "eip155:1/erc20:0x678e840c640f619e17848045d23072844224dd37",
+    "chainId": "eip155:1",
+    "name": "Cratos on Ethereum",
+    "precision": 18,
+    "color": "#2C8BC4",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x678e840C640F619E17848045D23072844224dD37/logo.png",
+    "symbol": "CRTS",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x67954768e721fad0f0f21e33e874497c73ed6a82": {
+    "assetId": "eip155:1/erc20:0x67954768e721fad0f0f21e33e874497c73ed6a82",
+    "chainId": "eip155:1",
+    "name": "KeKChain",
+    "precision": 18,
+    "color": "#396C27",
+    "icon": "https://assets.coingecko.com/coins/images/27061/thumb/20220816_155427.png?1696526111",
+    "symbol": "KEK",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x6796fcd41e4fb26855bb9bdd7cad41128da1fd59": {
+    "color": "#FFFFFF",
+    "icon": "https://raw.githubusercontent.com/Idle-Labs/idle-dashboard/master/public/images/tokens/USDT.svg",
+    "name": "EulerStaking USDT Senior Tranche",
+    "precision": 18,
+    "symbol": "AA_idleEulStk_eUSDT",
+    "chainId": "eip155:1",
+    "assetId": "eip155:1/erc20:0x6796fcd41e4fb26855bb9bdd7cad41128da1fd59",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x679badc551626e01b23ceecefbc9b877ea18fc46": {
+    "assetId": "eip155:1/erc20:0x679badc551626e01b23ceecefbc9b877ea18fc46",
+    "chainId": "eip155:1",
+    "name": "Ccore",
+    "precision": 18,
+    "color": "#435669",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x679BADc551626e01B23CeecEFBc9B877EA18fc46/logo.png",
+    "symbol": "CCO",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x67b66c99d3eb37fa76aa3ed1ff33e8e39f0b9c7a": {
+    "assetId": "eip155:1/erc20:0x67b66c99d3eb37fa76aa3ed1ff33e8e39f0b9c7a",
+    "chainId": "eip155:1",
+    "name": "Interest Bearing ETH",
+    "precision": 18,
+    "color": "#7BBBF3",
+    "icon": "https://assets.coingecko.com/coins/images/13131/thumb/7675.png?1696512918",
+    "symbol": "IBETH",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x67c5870b4a41d4ebef24d2456547a03f1f3e094b": {
+    "assetId": "eip155:1/erc20:0x67c5870b4a41d4ebef24d2456547a03f1f3e094b",
+    "chainId": "eip155:1",
+    "name": "GoodDollar",
+    "precision": 2,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/14782/thumb/G__Coin_%281%29.png?1696514451",
+    "symbol": "G",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x67cc621ab2d086a101cff3340df0a065ac75827c": {
+    "assetId": "eip155:1/erc20:0x67cc621ab2d086a101cff3340df0a065ac75827c",
+    "chainId": "eip155:1",
+    "name": "Floki Musk",
+    "precision": 18,
+    "color": "#BF1E1F",
+    "icon": "https://assets.coingecko.com/coins/images/18850/thumb/1632145919586.png?1696518311",
+    "symbol": "FLOKI",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x67d85a291fcdc862a78812a3c26d55e28ffb2701": {
+    "assetId": "eip155:1/erc20:0x67d85a291fcdc862a78812a3c26d55e28ffb2701",
+    "chainId": "eip155:1",
+    "name": "Asymetrix",
+    "precision": 18,
+    "color": "#242424",
+    "icon": "https://assets.coingecko.com/coins/images/29984/thumb/Asymetrix_Logo_Only_Square_w200.png?1696528909",
+    "symbol": "ASX",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x67f3086f7823eaf35f5aaadfb2e9b9c5b09578cf": {
+    "assetId": "eip155:1/erc20:0x67f3086f7823eaf35f5aaadfb2e9b9c5b09578cf",
+    "chainId": "eip155:1",
+    "name": "InsightX",
+    "precision": 18,
+    "color": "#BCBCBC",
+    "icon": "https://assets.coingecko.com/coins/images/32552/thumb/android-chrome-192x192.png?1698480297",
+    "symbol": "INX",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x67f4c72a50f8df6487720261e188f2abe83f57d7": {
+    "assetId": "eip155:1/erc20:0x67f4c72a50f8df6487720261e188f2abe83f57d7",
+    "chainId": "eip155:1",
+    "name": "Wrapped POKT",
+    "precision": 6,
+    "color": "#1C8CEC",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x67F4C72a50f8Df6487720261E188F2abE83F57D7/logo.png",
+    "symbol": "WPOKT",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x68037790a0229e9ce6eaa8a99ea92964106c4703": {
+    "assetId": "eip155:1/erc20:0x68037790a0229e9ce6eaa8a99ea92964106c4703",
+    "chainId": "eip155:1",
+    "name": "Parallel on Ethereum",
+    "precision": 18,
+    "color": "#0424FC",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x68037790A0229e9Ce6EaA8A99ea92964106C4703/logo.png",
+    "symbol": "PAR",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x6810e776880c02933d47db1b9fc05908e5386b96": {
+    "assetId": "eip155:1/erc20:0x6810e776880c02933d47db1b9fc05908e5386b96",
+    "chainId": "eip155:1",
+    "name": "Gnosis on Ethereum",
+    "precision": 18,
+    "color": "#041C3C",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x6810e776880C02933D47DB1b9fc05908e5386b96/logo.png",
+    "symbol": "GNO",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x68592c5c98c4f4a8a4bc6da2121e65da3d1c0917": {
+    "assetId": "eip155:1/erc20:0x68592c5c98c4f4a8a4bc6da2121e65da3d1c0917",
+    "chainId": "eip155:1",
+    "name": "Stable USDLR",
+    "precision": 6,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/33115/thumb/0x68592c5c98c4f4a8a4bc6da2121e65da3d1c0917.png?1700731571",
+    "symbol": "USDLR",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x685fb6960ea7f7b24f02e17c8d893b8c33239d48": {
+    "assetId": "eip155:1/erc20:0x685fb6960ea7f7b24f02e17c8d893b8c33239d48",
+    "chainId": "eip155:1",
+    "name": "Saiko   The Revival",
+    "precision": 9,
+    "color": "#546561",
+    "icon": "https://assets.coingecko.com/coins/images/28932/thumb/200x200.png?1696527907",
+    "symbol": "SAIKO",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x686d1596e5632fe0471961e7977e8efe371b0b21": {
+    "assetId": "eip155:1/erc20:0x686d1596e5632fe0471961e7977e8efe371b0b21",
+    "chainId": "eip155:1",
+    "name": "SurrealVerse",
+    "precision": 18,
+    "color": "#0D0D0D",
+    "icon": "https://assets.coingecko.com/coins/images/32448/thumb/IMG_3734.jpeg?1698239938",
+    "symbol": "AZEE",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x686f2404e77ab0d9070a46cdfb0b7fecdd2318b0": {
+    "assetId": "eip155:1/erc20:0x686f2404e77ab0d9070a46cdfb0b7fecdd2318b0",
+    "chainId": "eip155:1",
+    "name": "LORDS",
+    "precision": 18,
+    "color": "#999999",
+    "icon": "https://assets.coingecko.com/coins/images/22171/thumb/Frame_1.png?1696521515",
+    "symbol": "LORDS",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x68749665ff8d2d112fa859aa293f07a622782f38": {
+    "assetId": "eip155:1/erc20:0x68749665ff8d2d112fa859aa293f07a622782f38",
+    "chainId": "eip155:1",
+    "name": "Tether Gold",
+    "precision": 6,
+    "color": "#E0BF69",
+    "icon": "https://assets.coingecko.com/coins/images/10481/thumb/Tether_Gold.png?1696510471",
+    "symbol": "XAUT",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x6876eba317272fe221c67405c5e8eb3b24535547": {
+    "assetId": "eip155:1/erc20:0x6876eba317272fe221c67405c5e8eb3b24535547",
+    "chainId": "eip155:1",
+    "name": "MicroTuber on Ethereum",
+    "precision": 18,
+    "color": "#FB6029",
+    "icon": "https://assets.coingecko.com/coins/images/15489/thumb/mct.PNG?1696515134",
+    "symbol": "MCT",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x68a47fe1cf42eba4a030a10cd4d6a1031ca3ca0a": {
+    "assetId": "eip155:1/erc20:0x68a47fe1cf42eba4a030a10cd4d6a1031ca3ca0a",
+    "chainId": "eip155:1",
+    "name": "Tectum",
+    "precision": 8,
+    "color": "#4C7BFB",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x68A47Fe1CF42eBa4a030a10CD4D6a1031Ca3CA0a/logo.png",
+    "symbol": "TET",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x68b36248477277865c64dfc78884ef80577078f3": {
+    "assetId": "eip155:1/erc20:0x68b36248477277865c64dfc78884ef80577078f3",
+    "chainId": "eip155:1",
+    "name": "Everybody",
+    "precision": 18,
+    "color": "#07DA0E",
+    "icon": "https://assets.coingecko.com/coins/images/32272/thumb/HOLD_logo_final_%282%29.png?1697179882",
+    "symbol": "HOLD",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x68b429161ec09a6c1d65ba70727ab1faa5bc4026": {
+    "assetId": "eip155:1/erc20:0x68b429161ec09a6c1d65ba70727ab1faa5bc4026",
+    "chainId": "eip155:1",
+    "name": "Ordinal Doge",
+    "precision": 18,
+    "color": "#F0E7AD",
+    "icon": "https://assets.coingecko.com/coins/images/29323/thumb/o-DOGE-200x200.png?1696528274",
+    "symbol": "ODOGE",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x68c85b9f78f30a0df5ac5723e4e700037f185415": {
+    "assetId": "eip155:1/erc20:0x68c85b9f78f30a0df5ac5723e4e700037f185415",
+    "chainId": "eip155:1",
+    "name": "AiWork",
+    "precision": 18,
+    "color": "#B2DBE9",
+    "icon": "https://assets.coingecko.com/coins/images/15373/thumb/aiwork.PNG?1696515021",
+    "symbol": "AWO",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x68d57c9a1c35f63e2c83ee8e49a64e9d70528d25": {
+    "assetId": "eip155:1/erc20:0x68d57c9a1c35f63e2c83ee8e49a64e9d70528d25",
+    "chainId": "eip155:1",
+    "name": "Sirin Labs",
+    "precision": 18,
+    "color": "#2C2B2C",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x68d57c9a1C35f63E2c83eE8e49A64e9d70528D25/logo.png",
+    "symbol": "SRN",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x68ddd6812684ff87d483342b69db5a89c2af711b": {
+    "assetId": "eip155:1/erc20:0x68ddd6812684ff87d483342b69db5a89c2af711b",
+    "chainId": "eip155:1",
+    "name": "PINGU",
+    "precision": 18,
+    "color": "#1F343C",
+    "icon": "https://assets.coingecko.com/coins/images/32275/thumb/PINGU.png?1697180139",
+    "symbol": "NOOTNOOT",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x68ffb43026cedc070bfc01b2203d90cab62ccf30": {
+    "assetId": "eip155:1/erc20:0x68ffb43026cedc070bfc01b2203d90cab62ccf30",
+    "chainId": "eip155:1",
+    "name": "Turk Shiba",
+    "precision": 18,
+    "color": "#E40919",
+    "icon": "https://assets.coingecko.com/coins/images/29131/thumb/IMG_20230220_215553_755.jpg?1696528092",
+    "symbol": "TUSHI",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x6911f552842236bd9e8ea8ddbb3fb414e2c5fa9d": {
+    "assetId": "eip155:1/erc20:0x6911f552842236bd9e8ea8ddbb3fb414e2c5fa9d",
+    "chainId": "eip155:1",
+    "name": "Synapse Network on Ethereum",
+    "precision": 18,
+    "color": "#14143C",
+    "icon": "https://assets.coingecko.com/coins/images/17962/thumb/Webp-net-resizeimage_%282%29.png?1696517481",
+    "symbol": "SNP",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x69168908793294d0a9ea938673e12c36ecae6969": {
+    "assetId": "eip155:1/erc20:0x69168908793294d0a9ea938673e12c36ecae6969",
+    "chainId": "eip155:1",
+    "name": "NICE",
+    "precision": 9,
+    "color": "#3D4B24",
+    "icon": "https://assets.coingecko.com/coins/images/31883/thumb/7zrgw7.jpg?1696530694",
+    "symbol": "6969",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x6923f9b683111dcc0e20124e9a031deeae5dad93": {
+    "assetId": "eip155:1/erc20:0x6923f9b683111dcc0e20124e9a031deeae5dad93",
+    "chainId": "eip155:1",
+    "name": "Crypto Hub",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/32705/thumb/Untitled_design_%285%29.png?1698985521",
+    "symbol": "HUB",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x692accdd8b86692427e0aa4752ae917df01cc56f": {
+    "assetId": "eip155:1/erc20:0x692accdd8b86692427e0aa4752ae917df01cc56f",
+    "chainId": "eip155:1",
+    "name": "Sunrise",
+    "precision": 18,
+    "color": "#0CB4B4",
+    "icon": "https://assets.coingecko.com/coins/images/17601/thumb/ticker_sunc_200_200.png?1696517134",
+    "symbol": "SUNC",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x693c216aa181ebf776730d16c7ba06842548415e": {
+    "assetId": "eip155:1/erc20:0x693c216aa181ebf776730d16c7ba06842548415e",
+    "chainId": "eip155:1",
+    "name": "PAPI",
+    "precision": 18,
+    "color": "#C03134",
+    "icon": "https://assets.coingecko.com/coins/images/30584/thumb/FC39248F-E051-42B1-93BD-EE3839DEA999.jpeg?1696529448",
+    "symbol": "PAPI",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x69570f3e84f51ea70b7b68055c8d667e77735a25": {
+    "assetId": "eip155:1/erc20:0x69570f3e84f51ea70b7b68055c8d667e77735a25",
+    "chainId": "eip155:1",
+    "name": "Betswap gg on Ethereum",
+    "precision": 18,
+    "color": "#29241E",
+    "icon": "https://assets.coingecko.com/coins/images/22496/thumb/betswap.jpg?1696521820",
+    "symbol": "BSGG",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x695afdb42edff97af470a15920a66df81a234c0e": {
+    "assetId": "eip155:1/erc20:0x695afdb42edff97af470a15920a66df81a234c0e",
+    "chainId": "eip155:1",
+    "name": "Wrapped MOXY",
+    "precision": 18,
+    "color": "#FCF6DE",
+    "icon": "https://assets.coingecko.com/coins/images/31221/thumb/Moxy_200x_200_Logo.png?1696530047",
+    "symbol": "WMOXY",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x697a79af2de4af9e9aa0d08905374556ad1353bb": {
+    "assetId": "eip155:1/erc20:0x697a79af2de4af9e9aa0d08905374556ad1353bb",
+    "chainId": "eip155:1",
+    "name": "NinaPumps",
+    "precision": 18,
+    "color": "#E3DDDC",
+    "icon": "https://assets.coingecko.com/coins/images/31910/thumb/pqT9YDIi_400x400-removebg-preview_%281%29.png?1696530718",
+    "symbol": "NINA",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x697ef32b4a3f5a4c39de1cb7563f24ca7bfc5947": {
+    "assetId": "eip155:1/erc20:0x697ef32b4a3f5a4c39de1cb7563f24ca7bfc5947",
+    "chainId": "eip155:1",
+    "name": "Insula",
+    "precision": 18,
+    "color": "#C21E3D",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x697eF32B4a3F5a4C39dE1cB7563f24CA7BfC5947/logo.png",
+    "symbol": "ISLA",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x6982508145454ce325ddbe47a25d4ec3d2311933": {
+    "assetId": "eip155:1/erc20:0x6982508145454ce325ddbe47a25d4ec3d2311933",
+    "chainId": "eip155:1",
+    "name": "Pepe on Ethereum",
+    "precision": 18,
+    "color": "#D51C1D",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x6982508145454Ce325dDbE47a25d4ec3d2311933/logo.png",
+    "symbol": "PEPE",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x6988a804c74fd04f37da1ea4781cea68c9c00f86": {
+    "assetId": "eip155:1/erc20:0x6988a804c74fd04f37da1ea4781cea68c9c00f86",
+    "chainId": "eip155:1",
+    "name": "Tribal Token",
+    "precision": 18,
+    "color": "#72EBB4",
+    "icon": "https://assets.coingecko.com/coins/images/27774/thumb/PFP_black_%281%29.png?1696526795",
+    "symbol": "TRIBL",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x69948cc03f478b95283f7dbf1ce764d0fc7ec54c": {
+    "assetId": "eip155:1/erc20:0x69948cc03f478b95283f7dbf1ce764d0fc7ec54c",
+    "chainId": "eip155:1",
+    "name": "Aave REN v1",
+    "precision": 18,
+    "color": "#B188B8",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x69948cC03f478B95283F7dbf1CE764d0fc7EC54C/logo.png",
+    "symbol": "AREN",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x6995923faa52f1d0cd3ed7870eb273ebb1b0970b": {
+    "assetId": "eip155:1/erc20:0x6995923faa52f1d0cd3ed7870eb273ebb1b0970b",
+    "chainId": "eip155:1",
+    "name": "MixerBot",
+    "precision": 18,
+    "color": "#9D9D9D",
+    "icon": "https://assets.coingecko.com/coins/images/31677/thumb/mixer_logo200.jpg?1696530493",
+    "symbol": "MXRBOT",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x69a95185ee2a045cdc4bcd1b1df10710395e4e23": {
+    "assetId": "eip155:1/erc20:0x69a95185ee2a045cdc4bcd1b1df10710395e4e23",
+    "chainId": "eip155:1",
+    "name": "Poolz Finance  OLD  on Ethereum",
+    "precision": 18,
+    "color": "#201A48",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x69A95185ee2a045CDC4bCd1b1Df10710395e4e23/logo.png",
+    "symbol": "POOLZ",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x69af81e73a73b40adf4f3d4223cd9b1ece623074": {
+    "assetId": "eip155:1/erc20:0x69af81e73a73b40adf4f3d4223cd9b1ece623074",
+    "chainId": "eip155:1",
+    "name": "Mask Network on Ethereum",
+    "precision": 18,
+    "color": "#1C6CF4",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x69af81e73A73B40adF4f3d4223Cd9b1ECE623074/logo.png",
+    "symbol": "MASK",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x69bbc3f8787d573f1bbdd0a5f40c7ba0aee9bcc9": {
+    "assetId": "eip155:1/erc20:0x69bbc3f8787d573f1bbdd0a5f40c7ba0aee9bcc9",
+    "chainId": "eip155:1",
+    "name": "Yup on Ethereum",
+    "precision": 18,
+    "color": "#F2F7F2",
+    "icon": "https://assets.coingecko.com/coins/images/12322/thumb/photo_2021-10-26_00-47-35.jpg?1696512151",
+    "symbol": "YUP",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x69c2fcae7e30b429166bd616a322e32bec036bcf": {
+    "assetId": "eip155:1/erc20:0x69c2fcae7e30b429166bd616a322e32bec036bcf",
+    "chainId": "eip155:1",
+    "name": "MuratiAI on Ethereum",
+    "precision": 18,
+    "color": "#D26B97",
+    "icon": "https://assets.coingecko.com/coins/images/30433/thumb/Muratilogo.png?1696529321",
+    "symbol": "MURATIAI",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x69cbaf6c147086c3c234385556f8a0c6488d3420": {
+    "assetId": "eip155:1/erc20:0x69cbaf6c147086c3c234385556f8a0c6488d3420",
+    "chainId": "eip155:1",
+    "name": "69420",
+    "precision": 9,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/32830/thumb/bg_f8f8f8-flat_750x_075_f-pad_750x1000_f8f8f8.jpg?1699585611",
+    "symbol": "69420",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x69cd13d248830602a60b1f20ab11f5049385877d": {
+    "assetId": "eip155:1/erc20:0x69cd13d248830602a60b1f20ab11f5049385877d",
+    "chainId": "eip155:1",
+    "name": "Baby Pepe on Ethereum",
+    "precision": 18,
+    "color": "#7FAC29",
+    "icon": "https://assets.coingecko.com/coins/images/31417/thumb/output-onlinepngtools_%281%29.png?1696530232",
+    "symbol": "BABYPEPE",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x69d29f1b0cc37d8d3b61583c99ad0ab926142069": {
+    "assetId": "eip155:1/erc20:0x69d29f1b0cc37d8d3b61583c99ad0ab926142069",
+    "chainId": "eip155:1",
+    "name": "Pepe Inverted",
+    "precision": 9,
+    "color": "#27643F",
+    "icon": "https://assets.coingecko.com/coins/images/31948/thumb/photo_2023-09-25_14-05-49.jpg?1696530754",
+    "symbol": "",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x69d47846bb7b884062fabc08a4a7deadcd98c45b": {
+    "assetId": "eip155:1/erc20:0x69d47846bb7b884062fabc08a4a7deadcd98c45b",
+    "chainId": "eip155:1",
+    "name": "AlphaRushAI",
+    "precision": 18,
+    "color": "#100F0F",
+    "icon": "https://assets.coingecko.com/coins/images/29536/thumb/logo200x200png.png?1696528478",
+    "symbol": "RUSHAI",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x69d57d410e72eb21fb83fa3dbf090ba07dbe0e76": {
+    "assetId": "eip155:1/erc20:0x69d57d410e72eb21fb83fa3dbf090ba07dbe0e76",
+    "chainId": "eip155:1",
+    "name": "Ante Casino",
+    "precision": 18,
+    "color": "#1C0D23",
+    "icon": "https://assets.coingecko.com/coins/images/31778/thumb/Chance_Token.jpg?1696530596",
+    "symbol": "CHANCE",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x69d87d0056256e3df7be9b4c8d6429b4b8207c5e": {
+    "color": "#FFFFFF",
+    "icon": "https://raw.githubusercontent.com/Idle-Labs/idle-dashboard/master/public/images/tokens/DAI.svg",
+    "name": "MorphoAave DAI Senior Tranche",
+    "precision": 18,
+    "symbol": "AA_maDAI",
+    "chainId": "eip155:1",
+    "assetId": "eip155:1/erc20:0x69d87d0056256e3df7be9b4c8d6429b4b8207c5e",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x69d9905b2e5f6f5433212b7f3c954433f23c1572": {
+    "assetId": "eip155:1/erc20:0x69d9905b2e5f6f5433212b7f3c954433f23c1572",
+    "chainId": "eip155:1",
+    "name": "Onooks",
+    "precision": 18,
+    "color": "#1C3860",
+    "icon": "https://assets.coingecko.com/coins/images/16281/thumb/onooks-logo.png?1696515879",
+    "symbol": "OOKS",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x69e37422cb87d963367f73a119c8ce9a4d529b72": {
+    "assetId": "eip155:1/erc20:0x69e37422cb87d963367f73a119c8ce9a4d529b72",
+    "chainId": "eip155:1",
+    "name": "Advantis",
+    "precision": 9,
+    "color": "#76A6CC",
+    "icon": "https://assets.coingecko.com/coins/images/28549/thumb/advantis.jpg?1696527540",
+    "symbol": "ADVT",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x69e8b9528cabda89fe846c67675b5d73d463a916": {
+    "assetId": "eip155:1/erc20:0x69e8b9528cabda89fe846c67675b5d73d463a916",
+    "chainId": "eip155:1",
+    "name": "OPEN Governance on Ethereum",
+    "precision": 18,
+    "color": "#24249C",
+    "icon": "https://assets.coingecko.com/coins/images/13233/thumb/opendao_logo.png?1696513011",
+    "symbol": "OPEN",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x69ed89ecd35082e031fe52b75123f801db083306": {
+    "assetId": "eip155:1/erc20:0x69ed89ecd35082e031fe52b75123f801db083306",
+    "chainId": "eip155:1",
+    "name": "Kaeri",
+    "precision": 9,
+    "color": "#282A2B",
+    "icon": "https://assets.coingecko.com/coins/images/27977/thumb/63370e2a1f2bea31fc7f6977_512x512_v2-p-500-2.png?1696526995",
+    "symbol": "KAERI",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x69fa0fee221ad11012bab0fdb45d444d3d2ce71c": {
+    "assetId": "eip155:1/erc20:0x69fa0fee221ad11012bab0fdb45d444d3d2ce71c",
+    "chainId": "eip155:1",
+    "name": "Thorstarter",
+    "precision": 18,
+    "color": "#040404",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x69fa0feE221AD11012BAb0FdB45d444D3D2Ce71c/logo.png",
+    "symbol": "XRUNE",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x69fa10cac03047a47ff32d7cddd6085ff1583d03": {
+    "assetId": "eip155:1/erc20:0x69fa10cac03047a47ff32d7cddd6085ff1583d03",
+    "chainId": "eip155:1",
+    "name": "Hyper",
+    "precision": 18,
+    "color": "#959596",
+    "icon": "https://assets.coingecko.com/coins/images/30255/thumb/Hyper.png?1696529164",
+    "symbol": "HYPER",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x69fa8e7f6bf1ca1fb0de61e1366f7412b827cc51": {
+    "assetId": "eip155:1/erc20:0x69fa8e7f6bf1ca1fb0de61e1366f7412b827cc51",
+    "chainId": "eip155:1",
+    "name": "Enreach on Ethereum",
+    "precision": 9,
+    "color": "#0B2589",
+    "icon": "https://assets.coingecko.com/coins/images/14694/thumb/enreachdao.jpg?1696514366",
+    "symbol": "NRCH",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x6a1d3d36e1be3da88a2268ebeb1a055758bdd9a9": {
+    "assetId": "eip155:1/erc20:0x6a1d3d36e1be3da88a2268ebeb1a055758bdd9a9",
+    "chainId": "eip155:1",
+    "name": "RFK Coin",
+    "precision": 18,
+    "color": "#183688",
+    "icon": "https://assets.coingecko.com/coins/images/31572/thumb/RFKCoin_100px.png?1696530384",
+    "symbol": "RFKC",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x6a36481af18289f80af4a1b21e4f6d323fabc712": {
+    "assetId": "eip155:1/erc20:0x6a36481af18289f80af4a1b21e4f6d323fabc712",
+    "chainId": "eip155:1",
+    "name": "PVPTrading",
+    "precision": 9,
+    "color": "#080808",
+    "icon": "https://assets.coingecko.com/coins/images/31613/thumb/pvplogo.png?1696530429",
+    "symbol": "PVPBOT",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x6a445e9f40e0b97c92d0b8a3366cef1d67f700bf": {
+    "assetId": "eip155:1/erc20:0x6a445e9f40e0b97c92d0b8a3366cef1d67f700bf",
+    "chainId": "eip155:1",
+    "name": "Fidu",
+    "precision": 18,
+    "color": "#EFE8E8",
+    "icon": "https://assets.coingecko.com/coins/images/25944/thumb/GFI-asset-icon.png?1696525023",
+    "symbol": "FIDU",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x6a4c76874e686a7d080d173987a35a9c48905583": {
+    "assetId": "eip155:1/erc20:0x6a4c76874e686a7d080d173987a35a9c48905583",
+    "chainId": "eip155:1",
+    "name": "Luxurious Pro Network",
+    "precision": 18,
+    "color": "#EC3C64",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x6a4C76874e686A7d080D173987A35A9c48905583/logo.png",
+    "symbol": "LPNT",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x6a68de599e8e0b1856e322ce5bd11c5c3c79712b": {
+    "assetId": "eip155:1/erc20:0x6a68de599e8e0b1856e322ce5bd11c5c3c79712b",
+    "chainId": "eip155:1",
+    "name": "iBetYou",
+    "precision": 18,
+    "color": "#27AA86",
+    "icon": "https://assets.coingecko.com/coins/images/16423/thumb/qvrS5aNM_400x400.jpg?1696516019",
+    "symbol": "IBY",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x6a6aa13393b7d1100c00a57c76c39e8b6c835041": {
+    "assetId": "eip155:1/erc20:0x6a6aa13393b7d1100c00a57c76c39e8b6c835041",
+    "chainId": "eip155:1",
+    "name": "OpenAI ERC",
+    "precision": 9,
+    "color": "#0D0D0D",
+    "icon": "https://assets.coingecko.com/coins/images/28412/thumb/OpenAI.jpeg?1696527410",
+    "symbol": "OPENAIERC",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x6a6c2ada3ce053561c2fbc3ee211f23d9b8c520a": {
+    "assetId": "eip155:1/erc20:0x6a6c2ada3ce053561c2fbc3ee211f23d9b8c520a",
+    "chainId": "eip155:1",
+    "name": "TON Community",
+    "precision": 18,
+    "color": "#F2FAF8",
+    "icon": "https://assets.coingecko.com/coins/images/12334/thumb/ton.jpg?1696512162",
+    "symbol": "TON",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x6a7ef4998eb9d0f706238756949f311a59e05745": {
+    "assetId": "eip155:1/erc20:0x6a7ef4998eb9d0f706238756949f311a59e05745",
+    "chainId": "eip155:1",
+    "name": "Keysians Network",
+    "precision": 18,
+    "color": "#F2EFF8",
+    "icon": "https://assets.coingecko.com/coins/images/12141/thumb/Keysians_logo.jpg?1696511982",
+    "symbol": "KEN",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x6a8fee0e33cb65a7e8d21badca62e87639ef74b3": {
+    "assetId": "eip155:1/erc20:0x6a8fee0e33cb65a7e8d21badca62e87639ef74b3",
+    "chainId": "eip155:1",
+    "name": "PDX Coin",
+    "precision": 18,
+    "color": "#BCA769",
+    "icon": "https://assets.coingecko.com/coins/images/25095/thumb/vBi23nWw_400x400.jpg?1696524246",
+    "symbol": "PDX",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x6a969d379700b2e5ea4e684d273d63c1c050ba49": {
+    "assetId": "eip155:1/erc20:0x6a969d379700b2e5ea4e684d273d63c1c050ba49",
+    "chainId": "eip155:1",
+    "name": "Pacific",
+    "precision": 18,
+    "color": "#D2C3F5",
+    "icon": "https://assets.coingecko.com/coins/images/20915/thumb/paf.png?1696520306",
+    "symbol": "PAF",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x6aa40d02115090d40dc33c7c5f3cf05112fa4f83": {
+    "assetId": "eip155:1/erc20:0x6aa40d02115090d40dc33c7c5f3cf05112fa4f83",
+    "chainId": "eip155:1",
+    "name": "PWRCASH",
+    "precision": 18,
+    "color": "#06D491",
+    "icon": "https://assets.coingecko.com/coins/images/29571/thumb/our_logo.png?1696528511",
+    "symbol": "PWRC",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x6ab4a7d75b0a42b6bc83e852dab9e121f9c610aa": {
+    "assetId": "eip155:1/erc20:0x6ab4a7d75b0a42b6bc83e852dab9e121f9c610aa",
+    "chainId": "eip155:1",
+    "name": "Elitium",
+    "precision": 18,
+    "color": "#59D26C",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x6aB4A7d75B0A42B6Bc83E852daB9E121F9C610Aa/logo.png",
+    "symbol": "EUM",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x6ad9a31f02f1e790ff85584ea3c3d0001e45cd64": {
+    "assetId": "eip155:1/erc20:0x6ad9a31f02f1e790ff85584ea3c3d0001e45cd64",
+    "chainId": "eip155:1",
+    "name": "Ethane",
+    "precision": 9,
+    "color": "#040D15",
+    "icon": "https://assets.coingecko.com/coins/images/31118/thumb/Ethane200x200.png?1696529948",
+    "symbol": "C2H6",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x6adb2e268de2aa1abf6578e4a8119b960e02928f": {
+    "assetId": "eip155:1/erc20:0x6adb2e268de2aa1abf6578e4a8119b960e02928f",
+    "chainId": "eip155:1",
+    "name": "ShibaDoge",
+    "precision": 9,
+    "color": "#BD852A",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x6ADb2E268de2aA1aBF6578E4a8119b960E02928F/logo.png",
+    "symbol": "SHIBDOGE",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x6aeb95f06cda84ca345c2de0f3b7f96923a44f4c": {
+    "assetId": "eip155:1/erc20:0x6aeb95f06cda84ca345c2de0f3b7f96923a44f4c",
+    "chainId": "eip155:1",
+    "name": "Rentberry",
+    "precision": 14,
+    "color": "#0D9FED",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x6aEB95F06CDA84cA345c2dE0F3B7f96923a44f4c/logo.png",
+    "symbol": "BERRY",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x6afcff9189e8ed3fcc1cffa184feb1276f6a82a5": {
+    "assetId": "eip155:1/erc20:0x6afcff9189e8ed3fcc1cffa184feb1276f6a82a5",
+    "chainId": "eip155:1",
+    "name": "PolkaPet World",
+    "precision": 18,
+    "color": "#ECE9EA",
+    "icon": "https://assets.coingecko.com/coins/images/19409/thumb/pets_polka.PNG?1696518848",
+    "symbol": "PETS",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x6b0956258ff7bd7645aa35369b55b61b8e6d6140": {
+    "assetId": "eip155:1/erc20:0x6b0956258ff7bd7645aa35369b55b61b8e6d6140",
+    "chainId": "eip155:1",
+    "name": "Maximus LUCKY",
+    "precision": 8,
+    "color": "#14E35C",
+    "icon": "https://assets.coingecko.com/coins/images/27685/thumb/IMG_1129.PNG?1696526713",
+    "symbol": "LUCKY",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x6b0b3a982b4634ac68dd83a4dbf02311ce324181": {
+    "assetId": "eip155:1/erc20:0x6b0b3a982b4634ac68dd83a4dbf02311ce324181",
+    "chainId": "eip155:1",
+    "name": "Artificial Liquid Intelligence on Ethereum",
+    "precision": 18,
+    "color": "#18A1AF",
+    "icon": "https://assets.coingecko.com/coins/images/22062/thumb/Logo_Circle_720_%281%29.png?1696521405",
+    "symbol": "ALI",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x6b175474e89094c44da98b954eedeac495271d0f": {
+    "assetId": "eip155:1/erc20:0x6b175474e89094c44da98b954eedeac495271d0f",
+    "chainId": "eip155:1",
+    "name": "Dai on Ethereum",
+    "precision": 18,
+    "color": "#FCB831",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x6B175474E89094C44Da98b954EedeAC495271d0F/logo.png",
+    "symbol": "DAI",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x6b1a8f210ec6b7b6643cea3583fb0c079f367898": {
+    "assetId": "eip155:1/erc20:0x6b1a8f210ec6b7b6643cea3583fb0c079f367898",
+    "chainId": "eip155:1",
+    "name": "Baanx",
+    "precision": 18,
+    "color": "#2367BE",
+    "icon": "https://assets.coingecko.com/coins/images/17108/thumb/BXX_Token_logo.png?1696516669",
+    "symbol": "BXX",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x6b32022693210cd2cfc466b9ac0085de8fc34ea6": {
+    "assetId": "eip155:1/erc20:0x6b32022693210cd2cfc466b9ac0085de8fc34ea6",
+    "chainId": "eip155:1",
+    "name": "Maximus DECI",
+    "precision": 8,
+    "color": "#F90404",
+    "icon": "https://assets.coingecko.com/coins/images/27693/thumb/Deci.png?1696526720",
+    "symbol": "DECI",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x6b3595068778dd592e39a122f4f5a5cf09c90fe2": {
+    "assetId": "eip155:1/erc20:0x6b3595068778dd592e39a122f4f5a5cf09c90fe2",
+    "chainId": "eip155:1",
+    "name": "Sushi on Ethereum",
+    "precision": 18,
+    "color": "#0F172F",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x6B3595068778DD592e39A122f4f5a5cF09C90fE2/logo.png",
+    "symbol": "SUSHI",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x6b431b8a964bfcf28191b07c91189ff4403957d0": {
+    "assetId": "eip155:1/erc20:0x6b431b8a964bfcf28191b07c91189ff4403957d0",
+    "chainId": "eip155:1",
+    "name": "CorgiAI",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/30933/thumb/Token.png?1696529775",
+    "symbol": "CORGIAI",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x6b4c7a5e3f0b99fcd83e9c089bddd6c7fce5c611": {
+    "assetId": "eip155:1/erc20:0x6b4c7a5e3f0b99fcd83e9c089bddd6c7fce5c611",
+    "chainId": "eip155:1",
+    "name": "Million on Ethereum",
+    "precision": 18,
+    "color": "#F1A604",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x6B4c7A5e3f0B99FCD83e9c089BDDD6c7FCe5c611/logo.png",
+    "symbol": "MM",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x6b4ceb0beb0dcf0043c9389e01e3f1c84b422e4f": {
+    "assetId": "eip155:1/erc20:0x6b4ceb0beb0dcf0043c9389e01e3f1c84b422e4f",
+    "chainId": "eip155:1",
+    "name": "Ultimate Tipbot",
+    "precision": 9,
+    "color": "#64A084",
+    "icon": "https://assets.coingecko.com/coins/images/31402/thumb/IMG_20230809_232903_907.png?1696530218",
+    "symbol": "ULTIMATEBO",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x6b785a0322126826d8226d77e173d75dafb84d11": {
+    "assetId": "eip155:1/erc20:0x6b785a0322126826d8226d77e173d75dafb84d11",
+    "chainId": "eip155:1",
+    "name": "Bankroll Vault",
+    "precision": 18,
+    "color": "#843B7C",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x6b785a0322126826d8226d77e173d75DAfb84d11/logo.png",
+    "symbol": "VLT",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x6b89b97169a797d94f057f4a0b01e2ca303155e4": {
+    "assetId": "eip155:1/erc20:0x6b89b97169a797d94f057f4a0b01e2ca303155e4",
+    "chainId": "eip155:1",
+    "name": "Chad Coin",
+    "precision": 18,
+    "color": "#1F1D2E",
+    "icon": "https://assets.coingecko.com/coins/images/29863/thumb/UfTmUNWv_400x400.png?1696528788",
+    "symbol": "CHAD",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x6b985d38b1fc891bb57bff59573626b1896d4aa1": {
+    "assetId": "eip155:1/erc20:0x6b985d38b1fc891bb57bff59573626b1896d4aa1",
+    "chainId": "eip155:1",
+    "name": "Fido",
+    "precision": 9,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/32943/thumb/FIDO200.png?1699874553",
+    "symbol": "FIDO",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x6b9f031d718dded0d681c20cb754f97b3bb81b78": {
+    "assetId": "eip155:1/erc20:0x6b9f031d718dded0d681c20cb754f97b3bb81b78",
+    "chainId": "eip155:1",
+    "name": "GEEQ",
+    "precision": 18,
+    "color": "#FAFAFB",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x6B9f031D718dDed0d681c20cB754F97b3BB81b78/logo.png",
+    "symbol": "GEEQ",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x6ba75d640bebfe5da1197bb5a2aff3327789b5d3": {
+    "assetId": "eip155:1/erc20:0x6ba75d640bebfe5da1197bb5a2aff3327789b5d3",
+    "chainId": "eip155:1",
+    "name": "VNX EURO on Ethereum",
+    "precision": 18,
+    "color": "#DFD088",
+    "icon": "https://assets.coingecko.com/coins/images/29351/thumb/VNXEUR_%281%29.png?1696528300",
+    "symbol": "VEUR",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x6bb61215298f296c55b19ad842d3df69021da2ef": {
+    "assetId": "eip155:1/erc20:0x6bb61215298f296c55b19ad842d3df69021da2ef",
+    "chainId": "eip155:1",
+    "name": "Drops Ownership Power",
+    "precision": 18,
+    "color": "#311EAB",
+    "icon": "https://assets.coingecko.com/coins/images/15696/thumb/dop.png?1696515325",
+    "symbol": "DOP",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x6bba316c48b49bd1eac44573c5c871ff02958469": {
+    "assetId": "eip155:1/erc20:0x6bba316c48b49bd1eac44573c5c871ff02958469",
+    "chainId": "eip155:1",
+    "name": "Gas DAO",
+    "precision": 18,
+    "color": "#1D7FE7",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x6Bba316c48b49BD1eAc44573c5c871ff02958469/logo.png",
+    "symbol": "GAS",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x6bc08509b36a98e829dffad49fde5e412645d0a3": {
+    "assetId": "eip155:1/erc20:0x6bc08509b36a98e829dffad49fde5e412645d0a3",
+    "chainId": "eip155:1",
+    "name": "WoofWork io",
+    "precision": 18,
+    "color": "#663E2C",
+    "icon": "https://assets.coingecko.com/coins/images/28903/thumb/WWlogoTransparent_200x200.png?1696527879",
+    "symbol": "WOOF",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x6bc40d4099f9057b23af309c08d935b890d7adc0": {
+    "assetId": "eip155:1/erc20:0x6bc40d4099f9057b23af309c08d935b890d7adc0",
+    "chainId": "eip155:1",
+    "name": "SnailBrook",
+    "precision": 18,
+    "color": "#250D6A",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x6Bc40d4099f9057b23aF309C08d935b890d7Adc0/logo.png",
+    "symbol": "SNAIL",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x6bd361e10c1afed0d95259e7c0115f3a60e4ea99": {
+    "assetId": "eip155:1/erc20:0x6bd361e10c1afed0d95259e7c0115f3a60e4ea99",
+    "chainId": "eip155:1",
+    "name": "BollyCoin on Ethereum",
+    "precision": 18,
+    "color": "#F0B249",
+    "icon": "https://assets.coingecko.com/coins/images/21610/thumb/IMG-20211208-124337-701.jpg?1696520970",
+    "symbol": "BOLLY",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x6be61833fc4381990e82d7d4a9f4c9b3f67ea941": {
+    "assetId": "eip155:1/erc20:0x6be61833fc4381990e82d7d4a9f4c9b3f67ea941",
+    "chainId": "eip155:1",
+    "name": "Hotbit",
+    "precision": 18,
+    "color": "#1CB494",
+    "icon": "https://assets.coingecko.com/coins/images/5990/thumb/hotbit-token.png?1696506407",
+    "symbol": "HTB",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x6bea7cfef803d1e3d5f7c0103f7ded065644e197": {
+    "assetId": "eip155:1/erc20:0x6bea7cfef803d1e3d5f7c0103f7ded065644e197",
+    "chainId": "eip155:1",
+    "name": "Gamma Strategies",
+    "precision": 18,
+    "color": "#FCBCC4",
+    "icon": "https://assets.coingecko.com/coins/images/21975/thumb/gamma-token-200.png?1696521323",
+    "symbol": "GAMMA",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x6bf765c43030387a983f429c1438e9d2025b7e12": {
+    "assetId": "eip155:1/erc20:0x6bf765c43030387a983f429c1438e9d2025b7e12",
+    "chainId": "eip155:1",
+    "name": "McPepe s",
+    "precision": 18,
+    "color": "#721C18",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x6BF765C43030387a983f429c1438e9D2025B7E12/logo.png",
+    "symbol": "PEPES",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x6c059413686565d5ad6cce6eed7742c42dbc44ca": {
+    "assetId": "eip155:1/erc20:0x6c059413686565d5ad6cce6eed7742c42dbc44ca",
+    "chainId": "eip155:1",
+    "name": "Laelaps",
+    "precision": 18,
+    "color": "#CBB67D",
+    "icon": "https://assets.coingecko.com/coins/images/30986/thumb/laelaps.png?1696529825",
+    "symbol": "LAELAPS",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x6c0c8708e2fd507b7057762739cb04cf01b98d7b": {
+    "color": "#FFFFFF",
+    "icon": "https://raw.githubusercontent.com/Idle-Labs/idle-dashboard/master/public/images/tokens/WETH.svg",
+    "name": "MorphoAave WETH Senior Tranche",
+    "precision": 18,
+    "symbol": "AA_maWETH",
+    "chainId": "eip155:1",
+    "assetId": "eip155:1/erc20:0x6c0c8708e2fd507b7057762739cb04cf01b98d7b",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x6c22910c6f75f828b305e57c6a54855d8adeabf8": {
+    "assetId": "eip155:1/erc20:0x6c22910c6f75f828b305e57c6a54855d8adeabf8",
+    "chainId": "eip155:1",
+    "name": "Satoshis Vision",
+    "precision": 9,
+    "color": "#C7385A",
+    "icon": "https://assets.coingecko.com/coins/images/29303/thumb/SATS_123-removebg-preview_%281%29.png?1696528255",
+    "symbol": "SATS",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x6c249b6f6492864d914361308601a7abb32e68f8": {
+    "assetId": "eip155:1/erc20:0x6c249b6f6492864d914361308601a7abb32e68f8",
+    "chainId": "eip155:1",
+    "name": "Brillion on Ethereum",
+    "precision": 18,
+    "color": "#AFF441",
+    "icon": "https://assets.coingecko.com/coins/images/27976/thumb/Screenshot_2023-06-13_at_11.58.02_AM.png?1696526994",
+    "symbol": "DUA",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x6c28aef8977c9b773996d0e8376d2ee379446f2f": {
+    "assetId": "eip155:1/erc20:0x6c28aef8977c9b773996d0e8376d2ee379446f2f",
+    "chainId": "eip155:1",
+    "name": "Quickswap  OLD  on Ethereum",
+    "precision": 18,
+    "color": "#1C265A",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x6c28AeF8977c9B773996d0e8376d2EE379446F2f/logo.png",
+    "symbol": "QUICK",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x6c2adc2073994fb2ccc5032cc2906fa221e9b391": {
+    "assetId": "eip155:1/erc20:0x6c2adc2073994fb2ccc5032cc2906fa221e9b391",
+    "chainId": "eip155:1",
+    "name": "Delphy",
+    "precision": 18,
+    "color": "#385CB5",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x6C2adC2073994fb2CCC5032cC2906Fa221e9B391/logo.png",
+    "symbol": "DPY",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x6c3be406174349cfa4501654313d97e6a31072e1": {
+    "assetId": "eip155:1/erc20:0x6c3be406174349cfa4501654313d97e6a31072e1",
+    "chainId": "eip155:1",
+    "name": "CNNS",
+    "precision": 18,
+    "color": "#040404",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x6c3BE406174349cfa4501654313d97e6a31072e1/logo.png",
+    "symbol": "CNNS",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x6c3ea9036406852006290770bedfcaba0e23a0e8": {
+    "assetId": "eip155:1/erc20:0x6c3ea9036406852006290770bedfcaba0e23a0e8",
+    "chainId": "eip155:1",
+    "name": "PayPal USD",
+    "precision": 6,
+    "color": "#3D6DEC",
+    "icon": "https://assets.coingecko.com/coins/images/31212/thumb/PYUSD_Logo_%282%29.png?1696530039",
+    "symbol": "PYUSD",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x6c3f90f043a72fa612cbac8115ee7e52bde6e490": {
+    "assetId": "eip155:1/erc20:0x6c3f90f043a72fa612cbac8115ee7e52bde6e490",
+    "chainId": "eip155:1",
+    "name": "LP 3pool Curve on Ethereum",
+    "precision": 18,
+    "color": "#18E87A",
+    "icon": "https://assets.coingecko.com/coins/images/12972/thumb/3pool_128.png?1696512759",
+    "symbol": "3CRV",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x6c4c193bff0a117f0c2b516802abba961a1eeb12": {
+    "assetId": "eip155:1/erc20:0x6c4c193bff0a117f0c2b516802abba961a1eeb12",
+    "chainId": "eip155:1",
+    "name": "Papa",
+    "precision": 18,
+    "color": "#725F30",
+    "icon": "https://assets.coingecko.com/coins/images/29971/thumb/logo-dex.png?1696528897",
+    "symbol": "PAPA",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x6c5024cd4f8a59110119c56f8933403a539555eb": {
+    "assetId": "eip155:1/erc20:0x6c5024cd4f8a59110119c56f8933403a539555eb",
+    "chainId": "eip155:1",
+    "name": "Aave SUSD on Ethereum",
+    "precision": 18,
+    "color": "#0F0E33",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x6C5024Cd4F8A59110119C56f8933403A539555EB/logo.png",
+    "symbol": "ASUSD",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x6c5ba91642f10282b576d91922ae6448c9d52f4e": {
+    "assetId": "eip155:1/erc20:0x6c5ba91642f10282b576d91922ae6448c9d52f4e",
+    "chainId": "eip155:1",
+    "name": "Phala",
+    "precision": 18,
+    "color": "#040404",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x6c5bA91642F10282b576d91922Ae6448C9d52f4E/logo.png",
+    "symbol": "PHA",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x6c6ee5e31d828de241282b9606c8e98ea48526e2": {
+    "assetId": "eip155:1/erc20:0x6c6ee5e31d828de241282b9606c8e98ea48526e2",
+    "chainId": "eip155:1",
+    "name": "Holo",
+    "precision": 18,
+    "color": "#04848B",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x6c6EE5e31d828De241282B9606C8e98Ea48526E2/logo.png",
+    "symbol": "HOT",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x6c74ebb3d9b4a1e77558f1871cd9c8ef07b4dfb2": {
+    "assetId": "eip155:1/erc20:0x6c74ebb3d9b4a1e77558f1871cd9c8ef07b4dfb2",
+    "chainId": "eip155:1",
+    "name": "The Autism Token",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/32794/thumb/tism_logo_resized.png?1699445572",
+    "symbol": "TISM",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x6c7b97c7e09e790d161769a52f155125fac6d5a1": {
+    "assetId": "eip155:1/erc20:0x6c7b97c7e09e790d161769a52f155125fac6d5a1",
+    "chainId": "eip155:1",
+    "name": "Polylauncher on Ethereum",
+    "precision": 18,
+    "color": "#040534",
+    "icon": "https://assets.coingecko.com/coins/images/17739/thumb/Polylauncher_-_200_x_200.png?1696517266",
+    "symbol": "ANGEL",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x6c862f803ff42a97d4a483ab761256ad8c90f4f8": {
+    "assetId": "eip155:1/erc20:0x6c862f803ff42a97d4a483ab761256ad8c90f4f8",
+    "chainId": "eip155:1",
+    "name": "ELIS",
+    "precision": 18,
+    "color": "#CCE4DC",
+    "icon": "https://assets.coingecko.com/coins/images/13613/thumb/Elis-Symbol-Green.png?1696513363",
+    "symbol": "XLS",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x6c8c6b02e7b2be14d4fa6022dfd6d75921d90e4e": {
+    "assetId": "eip155:1/erc20:0x6c8c6b02e7b2be14d4fa6022dfd6d75921d90e4e",
+    "chainId": "eip155:1",
+    "name": "cBAT",
+    "precision": 8,
+    "color": "#5DAFCF",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x6C8c6b02E7b2BE14d4fA6022Dfd6d75921D90E4E/logo.png",
+    "symbol": "CBAT",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x6c936d4ae98e6d2172db18c16c4b601c99918ee6": {
+    "assetId": "eip155:1/erc20:0x6c936d4ae98e6d2172db18c16c4b601c99918ee6",
+    "chainId": "eip155:1",
+    "name": "Life Crypto on Ethereum",
+    "precision": 18,
+    "color": "#04ECB4",
+    "icon": "https://assets.coingecko.com/coins/images/18245/thumb/communityIcon_t3kzc5skazh81.png?1696517741",
+    "symbol": "LIFE",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x6cacdb97e3fc8136805a9e7c342d866ab77d0957": {
+    "assetId": "eip155:1/erc20:0x6cacdb97e3fc8136805a9e7c342d866ab77d0957",
+    "chainId": "eip155:1",
+    "name": "Swapr on Ethereum",
+    "precision": 18,
+    "color": "#D1D0D6",
+    "icon": "https://assets.coingecko.com/coins/images/18740/thumb/swapr.jpg?1696518206",
+    "symbol": "SWPR",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x6cadf6abbceb53e631c288778daacf125481c1bb": {
+    "assetId": "eip155:1/erc20:0x6cadf6abbceb53e631c288778daacf125481c1bb",
+    "chainId": "eip155:1",
+    "name": "The Citadel",
+    "precision": 18,
+    "color": "#273844",
+    "icon": "https://assets.coingecko.com/coins/images/20445/thumb/2023-03-16_22.55.22.jpg?1696519851",
+    "symbol": "CITADEL",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x6cb7d80bdefef3f820a3a77ee56f06afcb20ea7e": {
+    "assetId": "eip155:1/erc20:0x6cb7d80bdefef3f820a3a77ee56f06afcb20ea7e",
+    "chainId": "eip155:1",
+    "name": "HUNDRED  ETH ",
+    "precision": 18,
+    "color": "#DADADA",
+    "icon": "https://assets.coingecko.com/coins/images/31992/thumb/mQM7_dCk_400x400.jpg?1696530793",
+    "symbol": "HUNDRED",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x6cd079f296c10eb84a64239b893d4edfa2e1d779": {
+    "assetId": "eip155:1/erc20:0x6cd079f296c10eb84a64239b893d4edfa2e1d779",
+    "chainId": "eip155:1",
+    "name": "PulseCrypt",
+    "precision": 18,
+    "color": "#1D286A",
+    "icon": "https://assets.coingecko.com/coins/images/29776/thumb/PulseCrypt.jpg?1696528707",
+    "symbol": "PLSCX",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x6cd7fc3118a8ffa40af0f99f3cbda54b0c6d4d1d": {
+    "assetId": "eip155:1/erc20:0x6cd7fc3118a8ffa40af0f99f3cbda54b0c6d4d1d",
+    "chainId": "eip155:1",
+    "name": "Flooring Protocol  Milady",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/32768/thumb/milady_logo.9816562c.png?1699337545",
+    "symbol": "MIL",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x6cf9788cda282aeb729477f6bda9c4db082b5746": {
+    "assetId": "eip155:1/erc20:0x6cf9788cda282aeb729477f6bda9c4db082b5746",
+    "chainId": "eip155:1",
+    "name": "KingdomGame",
+    "precision": 0,
+    "color": "#44858A",
+    "icon": "https://assets.coingecko.com/coins/images/32147/thumb/Kingdom200x200.png?1696596846",
+    "symbol": "KINGDOM",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x6d0f5149c502faf215c89ab306ec3e50b15e2892": {
+    "assetId": "eip155:1/erc20:0x6d0f5149c502faf215c89ab306ec3e50b15e2892",
+    "chainId": "eip155:1",
+    "name": "Portion on Ethereum",
+    "precision": 18,
+    "color": "#0F455C",
+    "icon": "https://assets.coingecko.com/coins/images/13617/thumb/OKeO2FI.png?1696513366",
+    "symbol": "PRT",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x6d10e0194400a04600881057787eb9e9c063dca0": {
+    "assetId": "eip155:1/erc20:0x6d10e0194400a04600881057787eb9e9c063dca0",
+    "chainId": "eip155:1",
+    "name": "Proton Project",
+    "precision": 18,
+    "color": "#FBCB07",
+    "icon": "https://assets.coingecko.com/coins/images/14888/thumb/Golden-PRTN-Logo.jpeg?1696514552",
+    "symbol": "PRTN",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x6d1dc3928604b00180bb570bdae94b9698d33b79": {
+    "assetId": "eip155:1/erc20:0x6d1dc3928604b00180bb570bdae94b9698d33b79",
+    "chainId": "eip155:1",
+    "name": "UnitedCrowd on Ethereum",
+    "precision": 18,
+    "color": "#444444",
+    "icon": "https://assets.coingecko.com/coins/images/14956/thumb/eUvRU9wm.png?1696514614",
+    "symbol": "UCT",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x6d3d490964205c8bc8ded39e48e88e8fde45b41f": {
+    "assetId": "eip155:1/erc20:0x6d3d490964205c8bc8ded39e48e88e8fde45b41f",
+    "chainId": "eip155:1",
+    "name": "Gooch",
+    "precision": 18,
+    "color": "#B1EAF0",
+    "icon": "https://assets.coingecko.com/coins/images/30290/thumb/gooch.jpg?1696529195",
+    "symbol": "GOOCH",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x6d4695f7e8d7f9615314a743335702d7eaba4575": {
+    "assetId": "eip155:1/erc20:0x6d4695f7e8d7f9615314a743335702d7eaba4575",
+    "chainId": "eip155:1",
+    "name": "LiquiShield",
+    "precision": 18,
+    "color": "#EBF7F8",
+    "icon": "https://assets.coingecko.com/coins/images/30919/thumb/IMG_0508.jpeg?1696529764",
+    "symbol": "LIQS",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x6d47a7be5d410910eef7ee2a3d34931f98f36812": {
+    "assetId": "eip155:1/erc20:0x6d47a7be5d410910eef7ee2a3d34931f98f36812",
+    "chainId": "eip155:1",
+    "name": "INDEX20",
+    "precision": 18,
+    "color": "#249CDC",
+    "icon": "https://assets.coingecko.com/coins/images/31737/thumb/200px.jpg?1696530556",
+    "symbol": "I20",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x6d48206b97b164555c8fc7a40d59a7230e055166": {
+    "assetId": "eip155:1/erc20:0x6d48206b97b164555c8fc7a40d59a7230e055166",
+    "chainId": "eip155:1",
+    "name": "Sendpicks",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/32824/thumb/Sendpicks.png?1699582373",
+    "symbol": "SEND",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x6d4ca1177087924edfe0908ef655169ea766fdc3": {
+    "assetId": "eip155:1/erc20:0x6d4ca1177087924edfe0908ef655169ea766fdc3",
+    "chainId": "eip155:1",
+    "name": "Hedgehog",
+    "precision": 18,
+    "color": "#5A3929",
+    "icon": "https://assets.coingecko.com/coins/images/28552/thumb/hedgie.png?1696527543",
+    "symbol": "HEDGEHOG",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x6d52dfefb16bb9cdc78bfca09061e44574886626": {
+    "assetId": "eip155:1/erc20:0x6d52dfefb16bb9cdc78bfca09061e44574886626",
+    "chainId": "eip155:1",
+    "name": "CPUcoin",
+    "precision": 18,
+    "color": "#D6E1FC",
+    "icon": "https://assets.coingecko.com/coins/images/9544/thumb/uaz.ms.png?1696509626",
+    "symbol": "CPU",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x6d56cddd23a693ed3851fa0a5d8c67a8739537c8": {
+    "assetId": "eip155:1/erc20:0x6d56cddd23a693ed3851fa0a5d8c67a8739537c8",
+    "chainId": "eip155:1",
+    "name": "Hedgehog Racer",
+    "precision": 9,
+    "color": "#0D1025",
+    "icon": "https://assets.coingecko.com/coins/images/31108/thumb/LOGO.png?1696529938",
+    "symbol": "SONIC",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x6d5777dce2541175adf6d49cadd666f3ab0ac142": {
+    "assetId": "eip155:1/erc20:0x6d5777dce2541175adf6d49cadd666f3ab0ac142",
+    "chainId": "eip155:1",
+    "name": "Cartman",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/32797/thumb/2023-11-02_20.50.51.jpg?1699445925",
+    "symbol": "CARTMAN",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x6d57b2e05f26c26b549231c866bdd39779e4a488": {
+    "assetId": "eip155:1/erc20:0x6d57b2e05f26c26b549231c866bdd39779e4a488",
+    "chainId": "eip155:1",
+    "name": "VNX Gold on Ethereum",
+    "precision": 18,
+    "color": "#C6BC97",
+    "icon": "https://assets.coingecko.com/coins/images/28019/thumb/VNX_Token_logo_%283%29.png?1696527035",
+    "symbol": "VNXAU",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x6d60a8dfb16d09f67d46fcd36a0cd310078257ca": {
+    "assetId": "eip155:1/erc20:0x6d60a8dfb16d09f67d46fcd36a0cd310078257ca",
+    "chainId": "eip155:1",
+    "name": "Centurion Invest",
+    "precision": 18,
+    "color": "#1A1B2B",
+    "icon": "https://assets.coingecko.com/coins/images/28483/thumb/PHOTO-2022-05-27-11-34-42.jpg?1696527476",
+    "symbol": "CIX",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x6d614686550b9e1c1df4b2cd8f91c9d4df66c810": {
+    "assetId": "eip155:1/erc20:0x6d614686550b9e1c1df4b2cd8f91c9d4df66c810",
+    "chainId": "eip155:1",
+    "name": "Skeb",
+    "precision": 18,
+    "color": "#34B494",
+    "icon": "https://assets.coingecko.com/coins/images/27155/thumb/skebcoin-cmc.png?1696526206",
+    "symbol": "SKEB",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x6d6554939d646f274d0fc3cecb7dab5d76bc908f": {
+    "assetId": "eip155:1/erc20:0x6d6554939d646f274d0fc3cecb7dab5d76bc908f",
+    "chainId": "eip155:1",
+    "name": "Morphswap on Ethereum",
+    "precision": 18,
+    "color": "#E3358C",
+    "icon": "https://assets.coingecko.com/coins/images/28114/thumb/mslogo200.png?1696527122",
+    "symbol": "MS",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x6d765cbe5bc922694afe112c140b8878b9fb0390": {
+    "assetId": "eip155:1/erc20:0x6d765cbe5bc922694afe112c140b8878b9fb0390",
+    "chainId": "eip155:1",
+    "name": "SUSHI yVault",
+    "precision": 18,
+    "color": "#CD83BD",
+    "icon": "https://assets.coingecko.com/coins/images/28789/thumb/yvSUSHI-128-0x6d765CbE5bC922694afE112C140b8878b9FB0390.png?1696527767",
+    "symbol": "YVSUSHI",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x6d791ff76d2780f7c0403b8ad52de7b369a6154b": {
+    "assetId": "eip155:1/erc20:0x6d791ff76d2780f7c0403b8ad52de7b369a6154b",
+    "chainId": "eip155:1",
+    "name": "AFK Trading Bot",
+    "precision": 9,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/32813/thumb/AFK_Trading_Bot.png?1699578505",
+    "symbol": "AFK",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x6d8f7ac13e8c2944d27e0f9bc6aa0122f2ec1384": {
+    "assetId": "eip155:1/erc20:0x6d8f7ac13e8c2944d27e0f9bc6aa0122f2ec1384",
+    "chainId": "eip155:1",
+    "name": "SuperMarket",
+    "precision": 18,
+    "color": "#1B82AB",
+    "icon": "https://assets.coingecko.com/coins/images/31623/thumb/SuperMarket.png?1696530439",
+    "symbol": "SUPER",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x6dc02164d75651758ac74435806093e421b64605": {
+    "assetId": "eip155:1/erc20:0x6dc02164d75651758ac74435806093e421b64605",
+    "chainId": "eip155:1",
+    "name": "XAYA on Ethereum",
+    "precision": 8,
+    "color": "#CC0404",
+    "icon": "https://assets.coingecko.com/coins/images/2091/thumb/xaya200x200.png?1696503058",
+    "symbol": "WCHI",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x6dca182ac5e3f99985bc4ee0f726d6472ab1ec55": {
+    "assetId": "eip155:1/erc20:0x6dca182ac5e3f99985bc4ee0f726d6472ab1ec55",
+    "chainId": "eip155:1",
+    "name": "Ushi",
+    "precision": 18,
+    "color": "#ECF1F5",
+    "icon": "https://assets.coingecko.com/coins/images/27865/thumb/photo_2022-10-17_22-21-01.jpg?1696526883",
+    "symbol": "USHI",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x6dda263994aab33f5ed612294e26f2a13df0da05": {
+    "assetId": "eip155:1/erc20:0x6dda263994aab33f5ed612294e26f2a13df0da05",
+    "chainId": "eip155:1",
+    "name": "IQ Protocol",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/23274/thumb/-zCkqMuQ.jpeg?1700084588",
+    "symbol": "IQT",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x6dde4ffd6db302bc9a46850f61399e082f6c2122": {
+    "assetId": "eip155:1/erc20:0x6dde4ffd6db302bc9a46850f61399e082f6c2122",
+    "chainId": "eip155:1",
+    "name": "inheritance Art",
+    "precision": 18,
+    "color": "#F6F6F1",
+    "icon": "https://assets.coingecko.com/coins/images/24221/thumb/iAI.jpg?1696523407",
+    "symbol": "IAI",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x6de037ef9ad2725eb40118bb1702ebb27e4aeb24": {
+    "assetId": "eip155:1/erc20:0x6de037ef9ad2725eb40118bb1702ebb27e4aeb24",
+    "chainId": "eip155:1",
+    "name": "Render on Ethereum",
+    "precision": 18,
+    "color": "#E9EFF1",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x6De037ef9aD2725EB40118Bb1702EBb27e4Aeb24/logo.png",
+    "symbol": "RNDR",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x6dea81c8171d0ba574754ef6f8b412f2ed88c54d": {
+    "assetId": "eip155:1/erc20:0x6dea81c8171d0ba574754ef6f8b412f2ed88c54d",
+    "chainId": "eip155:1",
+    "name": "Liquity on Ethereum",
+    "precision": 18,
+    "color": "#1445CC",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x6DEA81C8171D0bA574754EF6F8b412F2Ed88c54D/logo.png",
+    "symbol": "LQTY",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x6dfd6668ee53b414b3b92dd5ed0b3c6e9facae04": {
+    "assetId": "eip155:1/erc20:0x6dfd6668ee53b414b3b92dd5ed0b3c6e9facae04",
+    "chainId": "eip155:1",
+    "name": "BONEX",
+    "precision": 18,
+    "color": "#060905",
+    "icon": "https://assets.coingecko.com/coins/images/32144/thumb/cmcg200x200.png?1696592593",
+    "symbol": "BONEX",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x6e0615a03ed9527a6013fcd5b556e36ef4dab1ff": {
+    "assetId": "eip155:1/erc20:0x6e0615a03ed9527a6013fcd5b556e36ef4dab1ff",
+    "chainId": "eip155:1",
+    "name": "HNB Protocol",
+    "precision": 18,
+    "color": "#CEF2EF",
+    "icon": "https://assets.coingecko.com/coins/images/26182/thumb/newhnblogo.png?1696525269",
+    "symbol": "HNB",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x6e0dade58d2d89ebbe7afc384e3e4f15b70b14d8": {
+    "assetId": "eip155:1/erc20:0x6e0dade58d2d89ebbe7afc384e3e4f15b70b14d8",
+    "chainId": "eip155:1",
+    "name": "QuiverX",
+    "precision": 18,
+    "color": "#040404",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x6e0daDE58D2d89eBBe7aFc384e3E4f15b70b14D8/logo.png",
+    "symbol": "QRX",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x6e109e9dd7fa1a58bc3eff667e8e41fc3cc07aef": {
+    "assetId": "eip155:1/erc20:0x6e109e9dd7fa1a58bc3eff667e8e41fc3cc07aef",
+    "chainId": "eip155:1",
+    "name": "CNH Tether",
+    "precision": 6,
+    "color": "#69E4EC",
+    "icon": "https://assets.coingecko.com/coins/images/5251/thumb/cny-tether-logo.png?1696505755",
+    "symbol": "CNHT",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x6e2a43be0b1d33b726f0ca3b8de60b3482b8b050": {
+    "assetId": "eip155:1/erc20:0x6e2a43be0b1d33b726f0ca3b8de60b3482b8b050",
+    "chainId": "eip155:1",
+    "name": "Arkham",
+    "precision": 18,
+    "color": "#0F0F0F",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x6E2a43be0B1d33b726f0CA3b8de60b3482b8b050/logo.png",
+    "symbol": "ARKM",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x6e39a587691b8c9d4341ce0a960998ed6f537af6": {
+    "assetId": "eip155:1/erc20:0x6e39a587691b8c9d4341ce0a960998ed6f537af6",
+    "chainId": "eip155:1",
+    "name": "Meta Masters Guild",
+    "precision": 18,
+    "color": "#ECE5E6",
+    "icon": "https://assets.coingecko.com/coins/images/29329/thumb/Meta_Masters_Guild_Logo_%283%29.png?1696528279",
+    "symbol": "MEMAG",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x6e3f7d6f0eab61f161551c60096aa559d2cf46cd": {
+    "assetId": "eip155:1/erc20:0x6e3f7d6f0eab61f161551c60096aa559d2cf46cd",
+    "chainId": "eip155:1",
+    "name": "Coinhiba",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/32632/thumb/Coinhiba.png?1698826000",
+    "symbol": "HIBA",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x6e5970dbd6fc7eb1f29c6d2edf2bc4c36124c0c1": {
+    "assetId": "eip155:1/erc20:0x6e5970dbd6fc7eb1f29c6d2edf2bc4c36124c0c1",
+    "chainId": "eip155:1",
+    "name": "Polytrade on Ethereum",
+    "precision": 18,
+    "color": "#4CB4C4",
+    "icon": "https://assets.coingecko.com/coins/images/16416/thumb/Logo_colored_200.png?1696516012",
+    "symbol": "TRADE",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x6e605c269e0c92e70beeb85486f1fc550f9380bd": {
+    "assetId": "eip155:1/erc20:0x6e605c269e0c92e70beeb85486f1fc550f9380bd",
+    "chainId": "eip155:1",
+    "name": "Catex",
+    "precision": 18,
+    "color": "#548BBC",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x6E605c269E0C92e70BEeB85486f1fC550f9380BD/logo.png",
+    "symbol": "CATT",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x6e765d26388a17a6e86c49a8e41df3f58abcd337": {
+    "assetId": "eip155:1/erc20:0x6e765d26388a17a6e86c49a8e41df3f58abcd337",
+    "chainId": "eip155:1",
+    "name": "Kangal on Ethereum",
+    "precision": 18,
+    "color": "#191C26",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x6E765D26388A17A6e86c49A8E41DF3F58aBcd337/logo.png",
+    "symbol": "KANGAL",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x6e8908cfa881c9f6f2c64d3436e7b80b1bf0093f": {
+    "assetId": "eip155:1/erc20:0x6e8908cfa881c9f6f2c64d3436e7b80b1bf0093f",
+    "chainId": "eip155:1",
+    "name": "Bistroo on Ethereum",
+    "precision": 18,
+    "color": "#F9A42F",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x6e8908cfa881C9f6f2C64d3436E7b80b1bf0093F/logo.png",
+    "symbol": "BIST",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x6e9730ecffbed43fd876a264c982e254ef05a0de": {
+    "assetId": "eip155:1/erc20:0x6e9730ecffbed43fd876a264c982e254ef05a0de",
+    "chainId": "eip155:1",
+    "name": "Nord Finance on Ethereum",
+    "precision": 18,
+    "color": "#142484",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x6e9730EcFfBed43fD876A264C982e254ef05a0DE/logo.png",
+    "symbol": "NORD",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x6e98e5401adcb0d76f4debfc3d794b3031f48790": {
+    "assetId": "eip155:1/erc20:0x6e98e5401adcb0d76f4debfc3d794b3031f48790",
+    "chainId": "eip155:1",
+    "name": "Aurix",
+    "precision": 18,
+    "color": "#D4A664",
+    "icon": "https://assets.coingecko.com/coins/images/14372/thumb/gold-brown-2.png?1696514064",
+    "symbol": "AUR",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x6ec8a24cabdc339a06a172f8223ea557055adaa5": {
+    "assetId": "eip155:1/erc20:0x6ec8a24cabdc339a06a172f8223ea557055adaa5",
+    "chainId": "eip155:1",
+    "name": "Genaro Network",
+    "precision": 9,
+    "color": "#1F5776",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x6EC8a24CaBdc339A06a172F8223ea557055aDAa5/logo.png",
+    "symbol": "GNX",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x6ee0f7bb50a54ab5253da0667b0dc2ee526c30a8": {
+    "assetId": "eip155:1/erc20:0x6ee0f7bb50a54ab5253da0667b0dc2ee526c30a8",
+    "chainId": "eip155:1",
+    "name": "Aave BUSD v1",
+    "precision": 18,
+    "color": "#F4BC0C",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x6Ee0f7BB50a54AB5253dA0667B0Dc2ee526C30a8/logo.png",
+    "symbol": "ABUSD",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x6ee9742d17b527e682248dca85952e4fe190061d": {
+    "assetId": "eip155:1/erc20:0x6ee9742d17b527e682248dca85952e4fe190061d",
+    "chainId": "eip155:1",
+    "name": "Neon Coin",
+    "precision": 18,
+    "color": "#78CDE2",
+    "icon": "https://assets.coingecko.com/coins/images/30686/thumb/neon.png?1696529555",
+    "symbol": "NEON",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x6ef460eb3563cfcc73f8147b0a77daffee71f867": {
+    "assetId": "eip155:1/erc20:0x6ef460eb3563cfcc73f8147b0a77daffee71f867",
+    "chainId": "eip155:1",
+    "name": "Zeus AI",
+    "precision": 18,
+    "color": "#162B41",
+    "icon": "https://assets.coingecko.com/coins/images/29593/thumb/ZEUS.png?1696528532",
+    "symbol": "ZEUS",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x6ef6610d24593805144d73b13d4405e00a4e4ac7": {
+    "assetId": "eip155:1/erc20:0x6ef6610d24593805144d73b13d4405e00a4e4ac7",
+    "chainId": "eip155:1",
+    "name": "Die Protocol",
+    "precision": 18,
+    "color": "#060606",
+    "icon": "https://assets.coingecko.com/coins/images/27903/thumb/newlogo.jpg?1696526924",
+    "symbol": "DIE",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x6eff556748ee452cbdaf31bcb8c76a28651509bd": {
+    "assetId": "eip155:1/erc20:0x6eff556748ee452cbdaf31bcb8c76a28651509bd",
+    "chainId": "eip155:1",
+    "name": "TiUSD",
+    "precision": 18,
+    "color": "#3ACDB5",
+    "icon": "https://assets.coingecko.com/coins/images/30697/thumb/TIUDS.png?1696529566",
+    "symbol": "TIUSD",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x6f222e04f6c53cc688ffb0abe7206aac66a8ff98": {
+    "assetId": "eip155:1/erc20:0x6f222e04f6c53cc688ffb0abe7206aac66a8ff98",
+    "chainId": "eip155:1",
+    "name": "Roko Network",
+    "precision": 18,
+    "color": "#CCCCCC",
+    "icon": "https://assets.coingecko.com/coins/images/29427/thumb/1.618_200.jpg?1696528376",
+    "symbol": "ROKO",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x6f259637dcd74c767781e37bc6133cd6a68aa161": {
+    "assetId": "eip155:1/erc20:0x6f259637dcd74c767781e37bc6133cd6a68aa161",
+    "chainId": "eip155:1",
+    "name": "Huobi",
+    "precision": 18,
+    "color": "#2AAEE3",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x6f259637dcD74C767781E37Bc6133cd6A68aa161/logo.png",
+    "symbol": "HT",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x6f2dec5da475333b0af4a3ffc9a33b0211a9a452": {
+    "assetId": "eip155:1/erc20:0x6f2dec5da475333b0af4a3ffc9a33b0211a9a452",
+    "chainId": "eip155:1",
+    "name": "CryptoTwitter",
+    "precision": 18,
+    "color": "#1C9AEE",
+    "icon": "https://assets.coingecko.com/coins/images/30237/thumb/200x200px.png?1696529147",
+    "symbol": "CT",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x6f3277ad0782a7da3eb676b85a8346a100bf9c1c": {
+    "assetId": "eip155:1/erc20:0x6f3277ad0782a7da3eb676b85a8346a100bf9c1c",
+    "chainId": "eip155:1",
+    "name": "DogPad Finance",
+    "precision": 18,
+    "color": "#E4372A",
+    "icon": "https://assets.coingecko.com/coins/images/28845/thumb/DogPad.png?1696527821",
+    "symbol": "DOGPAD",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x6f38e0f1a73c96cb3f42598613ea3474f09cb200": {
+    "assetId": "eip155:1/erc20:0x6f38e0f1a73c96cb3f42598613ea3474f09cb200",
+    "chainId": "eip155:1",
+    "name": "Draggable Aktionariat AG",
+    "precision": 0,
+    "color": "#E6E6E6",
+    "icon": "https://assets.coingecko.com/coins/images/28988/thumb/AKS.png?1696527961",
+    "symbol": "DAKS",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x6f3cbe18e9381dec6026e6cb8166c13944fcfee1": {
+    "assetId": "eip155:1/erc20:0x6f3cbe18e9381dec6026e6cb8166c13944fcfee1",
+    "chainId": "eip155:1",
+    "name": "FELIX",
+    "precision": 9,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/32897/thumb/200photo_2023-11-11_02-25-13.jpg?1699790963",
+    "symbol": "FELIX",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x6f40d4a6237c257fff2db00fa0510deeecd303eb": {
+    "assetId": "eip155:1/erc20:0x6f40d4a6237c257fff2db00fa0510deeecd303eb",
+    "chainId": "eip155:1",
+    "name": "Instadapp on Ethereum",
+    "precision": 18,
+    "color": "#3C74FC",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x6f40d4A6237C257fff2dB00FA0510DeEECd303eb/logo.png",
+    "symbol": "INST",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x6f620ec89b8479e97a6985792d0c64f237566746": {
+    "assetId": "eip155:1/erc20:0x6f620ec89b8479e97a6985792d0c64f237566746",
+    "chainId": "eip155:1",
+    "name": "WePiggy Coin on Ethereum",
+    "precision": 18,
+    "color": "#FC589E",
+    "icon": "https://assets.coingecko.com/coins/images/21914/thumb/WPC200.png?1696521265",
+    "symbol": "WPC",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x6f80310ca7f2c654691d1383149fa1a57d8ab1f8": {
+    "assetId": "eip155:1/erc20:0x6f80310ca7f2c654691d1383149fa1a57d8ab1f8",
+    "chainId": "eip155:1",
+    "name": "Silo Finance on Ethereum",
+    "precision": 18,
+    "color": "#B4B4B4",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x6f80310CA7F2C654691D1383149Fa1A57d8AB1f8/logo.png",
+    "symbol": "SILO",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x6f85e53b3c563d82925dc9ee1f37897afdc912e3": {
+    "assetId": "eip155:1/erc20:0x6f85e53b3c563d82925dc9ee1f37897afdc912e3",
+    "chainId": "eip155:1",
+    "name": "FRESH Bot",
+    "precision": 9,
+    "color": "#6E9458",
+    "icon": "https://assets.coingecko.com/coins/images/31261/thumb/Untitled-1_1x_1-1.png?1696530085",
+    "symbol": "FRESH",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x6f87d756daf0503d08eb8993686c7fc01dc44fb1": {
+    "assetId": "eip155:1/erc20:0x6f87d756daf0503d08eb8993686c7fc01dc44fb1",
+    "chainId": "eip155:1",
+    "name": "Unitrade on Ethereum",
+    "precision": 18,
+    "color": "#8C74EC",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x6F87D756DAf0503d08Eb8993686c7Fc01Dc44fB1/logo.png",
+    "symbol": "TRADE",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x6f8b23296394d20ec048fbdec8ebc0ca90f5c8f1": {
+    "assetId": "eip155:1/erc20:0x6f8b23296394d20ec048fbdec8ebc0ca90f5c8f1",
+    "chainId": "eip155:1",
+    "name": "TUF Token",
+    "precision": 18,
+    "color": "#0C3646",
+    "icon": "https://assets.coingecko.com/coins/images/28410/thumb/2022-12-06_10.10.16.jpg?1696527408",
+    "symbol": "TUF",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x6f91d21de4e40b3b80636b6b3ba425b636b798cf": {
+    "assetId": "eip155:1/erc20:0x6f91d21de4e40b3b80636b6b3ba425b636b798cf",
+    "chainId": "eip155:1",
+    "name": "Wall Street Bets",
+    "precision": 9,
+    "color": "#311C11",
+    "icon": "https://assets.coingecko.com/coins/images/32095/thumb/GOoZ5azT_400x400.jpg?1696530893",
+    "symbol": "WSB",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x6fa5e1c43b5a466cbd1cae7993b67c982400d481": {
+    "assetId": "eip155:1/erc20:0x6fa5e1c43b5a466cbd1cae7993b67c982400d481",
+    "chainId": "eip155:1",
+    "name": "CoinBot",
+    "precision": 18,
+    "color": "#D7CBC1",
+    "icon": "https://assets.coingecko.com/coins/images/31234/thumb/1-removebg-preview_%282%29.png?1696530060",
+    "symbol": "COINBT",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x6fb0855c404e09c47c3fbca25f08d4e41f9f062f": {
+    "assetId": "eip155:1/erc20:0x6fb0855c404e09c47c3fbca25f08d4e41f9f062f",
+    "chainId": "eip155:1",
+    "name": "Aave ZRX v1",
+    "precision": 18,
+    "color": "#678EB5",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x6Fb0855c404E09c47C3fBCA25f08d4E41f9F062f/logo.png",
+    "symbol": "AZRX",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x6fb3e0a217407efff7ca062d46c26e5d60a14d69": {
+    "assetId": "eip155:1/erc20:0x6fb3e0a217407efff7ca062d46c26e5d60a14d69",
+    "chainId": "eip155:1",
+    "name": "IoTeX",
+    "precision": 18,
+    "color": "#08B7A9",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x6fB3e0A217407EFFf7Ca062D46c26E5d60a14d69/logo.png",
+    "symbol": "IOTX",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x6fc13eace26590b80cccab1ba5d51890577d83b2": {
+    "assetId": "eip155:1/erc20:0x6fc13eace26590b80cccab1ba5d51890577d83b2",
+    "chainId": "eip155:1",
+    "name": "Umbrella Network on Ethereum",
+    "precision": 18,
+    "color": "#056BB7",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x6fC13EACE26590B80cCCAB1ba5d51890577D83B2/logo.png",
+    "symbol": "UMB",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x6fc73113fc1afab4c28d3dd4c537a1da6045d47d": {
+    "assetId": "eip155:1/erc20:0x6fc73113fc1afab4c28d3dd4c537a1da6045d47d",
+    "chainId": "eip155:1",
+    "name": "TrendAI",
+    "precision": 18,
+    "color": "#566A86",
+    "icon": "https://assets.coingecko.com/coins/images/29369/thumb/coingecko.png?1696528316",
+    "symbol": "TRENDAI",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x6fce4a401b6b80ace52baaefe4421bd188e76f6f": {
+    "assetId": "eip155:1/erc20:0x6fce4a401b6b80ace52baaefe4421bd188e76f6f",
+    "chainId": "eip155:1",
+    "name": "Aave MANA v1",
+    "precision": 18,
+    "color": "#549CBA",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x6FCE4A401B6B80ACe52baAefE4421Bd188e76F6f/logo.png",
+    "symbol": "AMANA",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x6fdb90535c09b82825e38d41edf5e66211d4b442": {
+    "assetId": "eip155:1/erc20:0x6fdb90535c09b82825e38d41edf5e66211d4b442",
+    "chainId": "eip155:1",
+    "name": "Yield Magnet",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/32821/thumb/IMG_0410.jpeg?1699582097",
+    "symbol": "MAGNET",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x6fe56c0bcdd471359019fcbc48863d6c3e9d4f41": {
+    "assetId": "eip155:1/erc20:0x6fe56c0bcdd471359019fcbc48863d6c3e9d4f41",
+    "chainId": "eip155:1",
+    "name": "Props",
+    "precision": 18,
+    "color": "#04D4FC",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x6fe56C0bcdD471359019FcBC48863d6c3e9d4F41/logo.png",
+    "symbol": "PROPS",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x6ff1bfa14a57594a5874b37ff6ac5efbd9f9599a": {
+    "assetId": "eip155:1/erc20:0x6ff1bfa14a57594a5874b37ff6ac5efbd9f9599a",
+    "chainId": "eip155:1",
+    "name": "TotemFi on Ethereum",
+    "precision": 18,
+    "color": "#EAF2F3",
+    "icon": "https://assets.coingecko.com/coins/images/14680/thumb/TOTM.png?1696514353",
+    "symbol": "TOTM",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x6ff2241756549b5816a177659e766eaf14b34429": {
+    "assetId": "eip155:1/erc20:0x6ff2241756549b5816a177659e766eaf14b34429",
+    "chainId": "eip155:1",
+    "name": "AQTIS",
+    "precision": 18,
+    "color": "#040404",
+    "icon": "https://assets.coingecko.com/coins/images/29910/thumb/Screenshot_2023-04-14_at_17.23.46.png?1696528839",
+    "symbol": "AQTIS",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x6ffcc20d3b4d506870225109edb5a332e6c94529": {
+    "assetId": "eip155:1/erc20:0x6ffcc20d3b4d506870225109edb5a332e6c94529",
+    "chainId": "eip155:1",
+    "name": "Agri",
+    "precision": 18,
+    "color": "#15402A",
+    "icon": "https://assets.coingecko.com/coins/images/32351/thumb/agri.jpg?1697474949",
+    "symbol": "AGRI",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x70008f18fc58928dce982b0a69c2c21ff80dca54": {
+    "assetId": "eip155:1/erc20:0x70008f18fc58928dce982b0a69c2c21ff80dca54",
+    "chainId": "eip155:1",
+    "name": "X7R",
+    "precision": 18,
+    "color": "#131313",
+    "icon": "https://assets.coingecko.com/coins/images/27710/thumb/X7R.png?1696526736",
+    "symbol": "X7R",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x7016c6f4dba9a9a48a47a2fe73a1b9271432d1d5": {
+    "assetId": "eip155:1/erc20:0x7016c6f4dba9a9a48a47a2fe73a1b9271432d1d5",
+    "chainId": "eip155:1",
+    "name": "Fanbase",
+    "precision": 18,
+    "color": "#0464D4",
+    "icon": "https://assets.coingecko.com/coins/images/32445/thumb/Fanbase.png?1698238933",
+    "symbol": "WFNB",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x701c244b988a513c945973defa05de933b23fe1d": {
+    "assetId": "eip155:1/erc20:0x701c244b988a513c945973defa05de933b23fe1d",
+    "chainId": "eip155:1",
+    "name": "OAX",
+    "precision": 18,
+    "color": "#23437B",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x701C244b988a513c945973dEFA05de933b23Fe1D/logo.png",
+    "symbol": "OAX",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x703293d32aea894cca91d6c282db9efffe47c308": {
+    "assetId": "eip155:1/erc20:0x703293d32aea894cca91d6c282db9efffe47c308",
+    "chainId": "eip155:1",
+    "name": "Aerie",
+    "precision": 18,
+    "color": "#942A90",
+    "icon": "https://assets.coingecko.com/coins/images/30977/thumb/icon.png?1696529816",
+    "symbol": "AER",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x70401dfd142a16dc7031c56e862fc88cb9537ce0": {
+    "assetId": "eip155:1/erc20:0x70401dfd142a16dc7031c56e862fc88cb9537ce0",
+    "chainId": "eip155:1",
+    "name": "Bird Money on Ethereum",
+    "precision": 18,
+    "color": "#AC0404",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x70401dFD142A16dC7031c56E862Fc88Cb9537Ce0/logo.png",
+    "symbol": "BIRD",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x7051faed0775f664a0286af4f75ef5ed74e02754": {
+    "assetId": "eip155:1/erc20:0x7051faed0775f664a0286af4f75ef5ed74e02754",
+    "chainId": "eip155:1",
+    "name": "Changex",
+    "precision": 18,
+    "color": "#04A6FC",
+    "icon": "https://assets.coingecko.com/coins/images/26487/thumb/Changex-mark-200x200.png?1696525560",
+    "symbol": "CHANGE",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x70881d5c8a5950ceedf1f1b4b5d4105718642548": {
+    "assetId": "eip155:1/erc20:0x70881d5c8a5950ceedf1f1b4b5d4105718642548",
+    "chainId": "eip155:1",
+    "name": "Bagholder",
+    "precision": 18,
+    "color": "#47713D",
+    "icon": "https://assets.coingecko.com/coins/images/30503/thumb/rsz_bagholdrpepecut-sq%281%29.png?1696529389",
+    "symbol": "BAG",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x70b790d0948a760e80bc3f892b142f7779b538b2": {
+    "assetId": "eip155:1/erc20:0x70b790d0948a760e80bc3f892b142f7779b538b2",
+    "chainId": "eip155:1",
+    "name": "Dora Factory",
+    "precision": 18,
+    "color": "#F5EAD8",
+    "icon": "https://assets.coingecko.com/coins/images/31552/thumb/DORA.jpg?1696530364",
+    "symbol": "DORA",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x70be04312f5f66d03708f0a1d6353b3e0f80ddbb": {
+    "assetId": "eip155:1/erc20:0x70be04312f5f66d03708f0a1d6353b3e0f80ddbb",
+    "chainId": "eip155:1",
+    "name": "BetBot",
+    "precision": 9,
+    "color": "#2331C0",
+    "icon": "https://assets.coingecko.com/coins/images/31076/thumb/BetBot.png?1696529910",
+    "symbol": "BBOT",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x70bef3bb2f001da2fddb207dae696cd9faff3f5d": {
+    "assetId": "eip155:1/erc20:0x70bef3bb2f001da2fddb207dae696cd9faff3f5d",
+    "chainId": "eip155:1",
+    "name": "Ninja Squad",
+    "precision": 18,
+    "color": "#E49A1A",
+    "icon": "https://assets.coingecko.com/coins/images/22248/thumb/unnamed.jpg?1696521593",
+    "symbol": "NST",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x70d0ff0d3b3f5e69220c09befc70606fa5f89293": {
+    "assetId": "eip155:1/erc20:0x70d0ff0d3b3f5e69220c09befc70606fa5f89293",
+    "chainId": "eip155:1",
+    "name": "hiUNDEAD",
+    "precision": 18,
+    "color": "#28B4B2",
+    "icon": "https://assets.coingecko.com/coins/images/29031/thumb/hiundead.png?1696528001",
+    "symbol": "HIUNDEAD",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x70d2b7c19352bb76e4409858ff5746e500f2b67c": {
+    "assetId": "eip155:1/erc20:0x70d2b7c19352bb76e4409858ff5746e500f2b67c",
+    "chainId": "eip155:1",
+    "name": "Pawtocol on Ethereum",
+    "precision": 18,
+    "color": "#E86538",
+    "icon": "https://assets.coingecko.com/coins/images/12186/thumb/pawtocol.jpg?1696512023",
+    "symbol": "UPI",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x70e36f6bf80a52b3b46b3af8e106cc0ed743e8e4": {
+    "assetId": "eip155:1/erc20:0x70e36f6bf80a52b3b46b3af8e106cc0ed743e8e4",
+    "chainId": "eip155:1",
+    "name": "cCOMP",
+    "precision": 8,
+    "color": "#15D79D",
+    "icon": "https://assets.coingecko.com/coins/images/12840/thumb/1_z8UrVtod3bme4-J_pXAQQA_2x.png?1696512631",
+    "symbol": "CCOMP",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x70e8de73ce538da2beed35d14187f6959a8eca96": {
+    "assetId": "eip155:1/erc20:0x70e8de73ce538da2beed35d14187f6959a8eca96",
+    "chainId": "eip155:1",
+    "name": "XSGD on Ethereum",
+    "precision": 6,
+    "color": "#144CE4",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x70e8dE73cE538DA2bEEd35d14187F6959a8ecA96/logo.png",
+    "symbol": "XSGD",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x70edf1c215d0ce69e7f16fd4e6276ba0d99d4de7": {
+    "assetId": "eip155:1/erc20:0x70edf1c215d0ce69e7f16fd4e6276ba0d99d4de7",
+    "chainId": "eip155:1",
+    "name": "CHEQD Network",
+    "precision": 9,
+    "color": "#B6561F",
+    "icon": "https://assets.coingecko.com/coins/images/20855/thumb/79901197.png?1696520250",
+    "symbol": "CHEQ",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x70efdc485a10210b056ef8e0a32993bc6529995e": {
+    "assetId": "eip155:1/erc20:0x70efdc485a10210b056ef8e0a32993bc6529995e",
+    "chainId": "eip155:1",
+    "name": "Blaze Network",
+    "precision": 18,
+    "color": "#F4BA29",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x70eFDc485a10210B056eF8e0A32993Bc6529995E/logo.png",
+    "symbol": "BLZN",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x7101a9392eac53b01e7c07ca3baca945a56ee105": {
+    "assetId": "eip155:1/erc20:0x7101a9392eac53b01e7c07ca3baca945a56ee105",
+    "chainId": "eip155:1",
+    "name": "X7101",
+    "precision": 18,
+    "color": "#0B0B0B",
+    "icon": "https://assets.coingecko.com/coins/images/28419/thumb/X7101_LOGO_black_back_200_x_200_px.png?1696527417",
+    "symbol": "X7101",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x7102dc82ef61bfb0410b1b1bf8ea74575bf0a105": {
+    "assetId": "eip155:1/erc20:0x7102dc82ef61bfb0410b1b1bf8ea74575bf0a105",
+    "chainId": "eip155:1",
+    "name": "X7102",
+    "precision": 18,
+    "color": "#0B0B0B",
+    "icon": "https://assets.coingecko.com/coins/images/28420/thumb/X7102_LOGO_black_back_200_x_200_px.png?1696527417",
+    "symbol": "X7102",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x7103ebdbf1f89be2d53eff9b3cf996c9e775c105": {
+    "assetId": "eip155:1/erc20:0x7103ebdbf1f89be2d53eff9b3cf996c9e775c105",
+    "chainId": "eip155:1",
+    "name": "X7103",
+    "precision": 18,
+    "color": "#101010",
+    "icon": "https://assets.coingecko.com/coins/images/28421/thumb/X7103_LOGO_black_back_200_x_200_px.png?1696527418",
+    "symbol": "X7103",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x7104d1f179cc9cc7fb5c79be6da846e3fbc4c105": {
+    "assetId": "eip155:1/erc20:0x7104d1f179cc9cc7fb5c79be6da846e3fbc4c105",
+    "chainId": "eip155:1",
+    "name": "X7104",
+    "precision": 18,
+    "color": "#8B8B8B",
+    "icon": "https://assets.coingecko.com/coins/images/28422/thumb/X7104_LOGO_black_back_200_x_200_px.png?1696527419",
+    "symbol": "X7104",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x7105e64bf67eca3ae9b123f0e5ca2b83b2ef2da0": {
+    "assetId": "eip155:1/erc20:0x7105e64bf67eca3ae9b123f0e5ca2b83b2ef2da0",
+    "chainId": "eip155:1",
+    "name": "X7DAO",
+    "precision": 18,
+    "color": "#131313",
+    "icon": "https://assets.coingecko.com/coins/images/27709/thumb/X7DAO.png?1696526735",
+    "symbol": "X7DAO",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x7105faa4a26ed1c67b8b2b41bec98f06ee21d105": {
+    "assetId": "eip155:1/erc20:0x7105faa4a26ed1c67b8b2b41bec98f06ee21d105",
+    "chainId": "eip155:1",
+    "name": "X7105",
+    "precision": 18,
+    "color": "#222222",
+    "icon": "https://assets.coingecko.com/coins/images/28423/thumb/X7105_LOGO_black_back_200_x_200_px.png?1696527420",
+    "symbol": "X7105",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x7118057ff0f4fd0994fb9d2d94de8231d5cca79e": {
+    "assetId": "eip155:1/erc20:0x7118057ff0f4fd0994fb9d2d94de8231d5cca79e",
+    "chainId": "eip155:1",
+    "name": "ReSource Protocol on Ethereum",
+    "precision": 18,
+    "color": "#BA6AFA",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x7118057ff0F4Fd0994fb9d2D94de8231d5cca79E/logo.png",
+    "symbol": "SOURCE",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x712db54daa836b53ef1ecbb9c6ba3b9efb073f40": {
+    "assetId": "eip155:1/erc20:0x712db54daa836b53ef1ecbb9c6ba3b9efb073f40",
+    "chainId": "eip155:1",
+    "name": "Aave ENJ v1",
+    "precision": 18,
+    "color": "#7489DF",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x712DB54daA836B53Ef1EcBb9c6ba3b9Efb073F40/logo.png",
+    "symbol": "AENJ",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x7138eb0d563f3f6722500936a11dcae99d738a2c": {
+    "assetId": "eip155:1/erc20:0x7138eb0d563f3f6722500936a11dcae99d738a2c",
+    "chainId": "eip155:1",
+    "name": "Lif3 on Ethereum",
+    "precision": 18,
+    "color": "#E8EAF0",
+    "icon": "https://assets.coingecko.com/coins/images/31291/thumb/Tokens.png?1696530112",
+    "symbol": "LIF3",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x7163436b8efffb469f6bb81cc908b1661d4795e6": {
+    "assetId": "eip155:1/erc20:0x7163436b8efffb469f6bb81cc908b1661d4795e6",
+    "chainId": "eip155:1",
+    "name": "Esco Coin",
+    "precision": 18,
+    "color": "#EDD00F",
+    "icon": "https://assets.coingecko.com/coins/images/30405/thumb/escocoin-06.png?1696529294",
+    "symbol": "ESCO",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x7169ba45cf03e0377b464462aacbccdf1f721125": {
+    "assetId": "eip155:1/erc20:0x7169ba45cf03e0377b464462aacbccdf1f721125",
+    "chainId": "eip155:1",
+    "name": "1peco",
+    "precision": 18,
+    "color": "#47425B",
+    "icon": "https://assets.coingecko.com/coins/images/22312/thumb/1PECO_200x200.png?1696521657",
+    "symbol": "1PECO",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x7199b5a15c7fb79aa861780230adc65fff99ec73": {
+    "assetId": "eip155:1/erc20:0x7199b5a15c7fb79aa861780230adc65fff99ec73",
+    "chainId": "eip155:1",
+    "name": "0xAnon",
+    "precision": 8,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/32836/thumb/IMG_20231108_161217_519.jpg?1699587007",
+    "symbol": "0XANON",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x7199f1dffe926c8fd36567d8df6f41edb01bf632": {
+    "assetId": "eip155:1/erc20:0x7199f1dffe926c8fd36567d8df6f41edb01bf632",
+    "chainId": "eip155:1",
+    "name": "Okiku",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/32683/thumb/200.png?1698937633",
+    "symbol": "OKIKU",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x719e7f0dadfdea25b78595da944f44d15d7e6795": {
+    "assetId": "eip155:1/erc20:0x719e7f0dadfdea25b78595da944f44d15d7e6795",
+    "chainId": "eip155:1",
+    "name": "MUSK DAO",
+    "precision": 18,
+    "color": "#D4A44A",
+    "icon": "https://assets.coingecko.com/coins/images/29464/thumb/musk.png?1696528410",
+    "symbol": "MUSK",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x71a28feaee902966dc8d355e7b8aa427d421e7e0": {
+    "assetId": "eip155:1/erc20:0x71a28feaee902966dc8d355e7b8aa427d421e7e0",
+    "chainId": "eip155:1",
+    "name": "LunchDAO",
+    "precision": 18,
+    "color": "#E44C34",
+    "icon": "https://assets.coingecko.com/coins/images/25808/thumb/200x200.png?1696524893",
+    "symbol": "LUNCH",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x71ab77b7dbb4fa7e017bc15090b2163221420282": {
+    "assetId": "eip155:1/erc20:0x71ab77b7dbb4fa7e017bc15090b2163221420282",
+    "chainId": "eip155:1",
+    "name": "Highstreet on Ethereum",
+    "precision": 18,
+    "color": "#0FDEFC",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x71Ab77b7dbB4fa7e017BC15090b2163221420282/logo.png",
+    "symbol": "HIGH",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x71aef7b30728b9bb371578f36c5a1f1502a5723e": {
+    "assetId": "eip155:1/erc20:0x71aef7b30728b9bb371578f36c5a1f1502a5723e",
+    "chainId": "eip155:1",
+    "name": "Aave v3 1INCH",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/32906/thumb/1INCH.png?1699804523",
+    "symbol": "A1INCH",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x71dc40668682a124231301414167e4cf7f55383c": {
+    "assetId": "eip155:1/erc20:0x71dc40668682a124231301414167e4cf7f55383c",
+    "chainId": "eip155:1",
+    "name": "Mimir on Ethereum",
+    "precision": 18,
+    "color": "#F7F9FA",
+    "icon": "https://assets.coingecko.com/coins/images/19551/thumb/xaq5Xlzg_400x400.jpg?1696518984",
+    "symbol": "MIMIR",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x71dc640b99faaf03544bdbce87018c2ae8ebe849": {
+    "assetId": "eip155:1/erc20:0x71dc640b99faaf03544bdbce87018c2ae8ebe849",
+    "chainId": "eip155:1",
+    "name": "OmniaVerse",
+    "precision": 8,
+    "color": "#17C8A5",
+    "icon": "https://assets.coingecko.com/coins/images/25543/thumb/OMNIA.png?1696524676",
+    "symbol": "OMNIA",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x71eeba415a523f5c952cc2f06361d5443545ad28": {
+    "assetId": "eip155:1/erc20:0x71eeba415a523f5c952cc2f06361d5443545ad28",
+    "chainId": "eip155:1",
+    "name": "XDAO on Ethereum",
+    "precision": 18,
+    "color": "#045CFC",
+    "icon": "https://assets.coingecko.com/coins/images/27363/thumb/token_2.png?1696526408",
+    "symbol": "XDAO",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x71fc1f555a39e0b698653ab0b475488ec3c34d57": {
+    "assetId": "eip155:1/erc20:0x71fc1f555a39e0b698653ab0b475488ec3c34d57",
+    "chainId": "eip155:1",
+    "name": "Rainmaker Games on Ethereum",
+    "precision": 18,
+    "color": "#8289AE",
+    "icon": "https://assets.coingecko.com/coins/images/21485/thumb/Final-Flip-Rain-Makers-44-1.png?1696520845",
+    "symbol": "RAIN",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x71fc860f7d3a592a4a98740e39db31d25db65ae8": {
+    "assetId": "eip155:1/erc20:0x71fc860f7d3a592a4a98740e39db31d25db65ae8",
+    "chainId": "eip155:1",
+    "name": "Aave USDT v1",
+    "precision": 6,
+    "color": "#53AA9C",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x71fc860F7D3A592A4a98740e39dB31d25db65ae8/logo.png",
+    "symbol": "AUSDT",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x72108a8cc3254813c6be2f1b77be53e185abfdd9": {
+    "assetId": "eip155:1/erc20:0x72108a8cc3254813c6be2f1b77be53e185abfdd9",
+    "chainId": "eip155:1",
+    "name": "Era Swap",
+    "precision": 18,
+    "color": "#AE4538",
+    "icon": "https://assets.coingecko.com/coins/images/6031/thumb/era_swap.PNG?1696506442",
+    "symbol": "ES",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x721a1b990699ee9d90b6327faad0a3e840ae8335": {
+    "assetId": "eip155:1/erc20:0x721a1b990699ee9d90b6327faad0a3e840ae8335",
+    "chainId": "eip155:1",
+    "name": "Lootex on Ethereum",
+    "precision": 18,
+    "color": "#35415D",
+    "icon": "https://assets.coingecko.com/coins/images/22895/thumb/loot.png?1696522192",
+    "symbol": "LOOT",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x7220e92d418e2eb59d0c25d195fa004bfd3afc42": {
+    "assetId": "eip155:1/erc20:0x7220e92d418e2eb59d0c25d195fa004bfd3afc42",
+    "chainId": "eip155:1",
+    "name": "Ad Flex",
+    "precision": 18,
+    "color": "#3881FC",
+    "icon": "https://assets.coingecko.com/coins/images/5620/thumb/ad-flex-token.png?1696506082",
+    "symbol": "ADF",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x722f97a435278b7383a1e3c47f41773bebf3232c": {
+    "assetId": "eip155:1/erc20:0x722f97a435278b7383a1e3c47f41773bebf3232c",
+    "chainId": "eip155:1",
+    "name": "UCROWDME",
+    "precision": 18,
+    "color": "#2A8FE8",
+    "icon": "https://assets.coingecko.com/coins/images/12079/thumb/UKm2qXh.png?1696511926",
+    "symbol": "UCM",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x723696965f47b990dff00064fcaca95f0ee01123": {
+    "assetId": "eip155:1/erc20:0x723696965f47b990dff00064fcaca95f0ee01123",
+    "chainId": "eip155:1",
+    "name": "Alpha Radar Bot",
+    "precision": 18,
+    "color": "#758DB0",
+    "icon": "https://assets.coingecko.com/coins/images/31873/thumb/ARBOT_logo_200*200.png?1696530685",
+    "symbol": "ARBOT",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x7236a7ad67976ee07961ab26ed6f4cd23f7a9bd1": {
+    "assetId": "eip155:1/erc20:0x7236a7ad67976ee07961ab26ed6f4cd23f7a9bd1",
+    "chainId": "eip155:1",
+    "name": "TXN Club",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/33157/thumb/200x200.png?1700827374",
+    "symbol": "TXN",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x72377f31e30a405282b522d588aebbea202b4f23": {
+    "assetId": "eip155:1/erc20:0x72377f31e30a405282b522d588aebbea202b4f23",
+    "chainId": "eip155:1",
+    "name": "Varen",
+    "precision": 18,
+    "color": "#141733",
+    "icon": "https://assets.coingecko.com/coins/images/17633/thumb/vrn.png?1696517164",
+    "symbol": "VRN",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x7237c0b30b1355f1b76355582f182f6f04b08740": {
+    "assetId": "eip155:1/erc20:0x7237c0b30b1355f1b76355582f182f6f04b08740",
+    "chainId": "eip155:1",
+    "name": "MetaGaming Guild on Ethereum",
+    "precision": 18,
+    "color": "#090807",
+    "icon": "https://assets.coingecko.com/coins/images/23287/thumb/mgg.png?1696522506",
+    "symbol": "MGG",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x723bd1f87a327e94ceabf68d8f022e0f54b9cc1a": {
+    "assetId": "eip155:1/erc20:0x723bd1f87a327e94ceabf68d8f022e0f54b9cc1a",
+    "chainId": "eip155:1",
+    "name": "Philcoin on Ethereum",
+    "precision": 18,
+    "color": "#EC7E28",
+    "icon": "https://assets.coingecko.com/coins/images/24178/thumb/2ZFyoMSk.png?1696523366",
+    "symbol": "PHL",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x723cbfc05e2cfcc71d3d89e770d32801a5eef5ab": {
+    "assetId": "eip155:1/erc20:0x723cbfc05e2cfcc71d3d89e770d32801a5eef5ab",
+    "chainId": "eip155:1",
+    "name": "Bitcoin Pro",
+    "precision": 8,
+    "color": "#2D69EF",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x723CbfC05e2cfcc71d3d89e770D32801A5eEf5Ab/logo.png",
+    "symbol": "BTCP",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x7240ac91f01233baaf8b064248e80feaa5912ba3": {
+    "assetId": "eip155:1/erc20:0x7240ac91f01233baaf8b064248e80feaa5912ba3",
+    "chainId": "eip155:1",
+    "name": "OctoFi",
+    "precision": 18,
+    "color": "#A3BCF2",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x7240aC91f01233BaAf8b064248E80feaA5912BA3/logo.png",
+    "symbol": "OCTO",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x725c263e32c72ddc3a19bea12c5a0479a81ee688": {
+    "assetId": "eip155:1/erc20:0x725c263e32c72ddc3a19bea12c5a0479a81ee688",
+    "chainId": "eip155:1",
+    "name": "Bridge Mutual",
+    "precision": 18,
+    "color": "#243434",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x725C263e32c72dDC3A19bEa12C5a0479a81eE688/logo.png",
+    "symbol": "BMI",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x72630b1e3b42874bf335020ba0249e3e9e47bafc": {
+    "assetId": "eip155:1/erc20:0x72630b1e3b42874bf335020ba0249e3e9e47bafc",
+    "chainId": "eip155:1",
+    "name": "Paypolitan",
+    "precision": 18,
+    "color": "#A43C84",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x72630B1e3B42874bf335020Ba0249e3E9e47Bafc/logo.png",
+    "symbol": "EPAN",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x727f064a78dc734d33eec18d5370aef32ffd46e4": {
+    "assetId": "eip155:1/erc20:0x727f064a78dc734d33eec18d5370aef32ffd46e4",
+    "chainId": "eip155:1",
+    "name": "Orion Money on Ethereum",
+    "precision": 18,
+    "color": "#04BC74",
+    "icon": "https://assets.coingecko.com/coins/images/18630/thumb/YtrqPIWc.png?1696518102",
+    "symbol": "ORION",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x728f30fa2f100742c7949d1961804fa8e0b1387d": {
+    "assetId": "eip155:1/erc20:0x728f30fa2f100742c7949d1961804fa8e0b1387d",
+    "chainId": "eip155:1",
+    "name": "GamerCoin on Ethereum",
+    "precision": 18,
+    "color": "#FBF4F4",
+    "icon": "https://assets.coingecko.com/coins/images/14714/thumb/ghx_icon.png?1696514385",
+    "symbol": "GHX",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x72953a5c32413614d24c29c84a66ae4b59581bbf": {
+    "assetId": "eip155:1/erc20:0x72953a5c32413614d24c29c84a66ae4b59581bbf",
+    "chainId": "eip155:1",
+    "name": "CLever",
+    "precision": 18,
+    "color": "#D7D7FC",
+    "icon": "https://assets.coingecko.com/coins/images/27727/thumb/%E6%88%AA%E5%B1%8F2022-10-12_%E4%B8%8A%E5%8D%8810.40.19.png?1696526751",
+    "symbol": "CLEV",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x72955ecff76e48f2c8abcce11d54e5734d6f3657": {
+    "assetId": "eip155:1/erc20:0x72955ecff76e48f2c8abcce11d54e5734d6f3657",
+    "chainId": "eip155:1",
+    "name": "TrustVerse",
+    "precision": 18,
+    "color": "#0573C2",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x72955eCFf76E48F2C8AbCCe11d54e5734D6f3657/logo.png",
+    "symbol": "TRV",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x72a66e54b66892ae3bbe54df7bb7dd5ae927a6f9": {
+    "assetId": "eip155:1/erc20:0x72a66e54b66892ae3bbe54df7bb7dd5ae927a6f9",
+    "chainId": "eip155:1",
+    "name": "Crypto Village Accelerator CVAG",
+    "precision": 18,
+    "color": "#103C8D",
+    "icon": "https://assets.coingecko.com/coins/images/17124/thumb/cvag.PNG?1696516684",
+    "symbol": "CVAG",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x72adadb447784dd7ab1f472467750fc485e4cb2d": {
+    "assetId": "eip155:1/erc20:0x72adadb447784dd7ab1f472467750fc485e4cb2d",
+    "chainId": "eip155:1",
+    "name": "Worldcore",
+    "precision": 6,
+    "color": "#04C4C4",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x72aDadb447784dd7AB1F472467750fC485e4cb2d/logo.png",
+    "symbol": "WRC",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x72b886d09c117654ab7da13a14d603001de0b777": {
+    "assetId": "eip155:1/erc20:0x72b886d09c117654ab7da13a14d603001de0b777",
+    "chainId": "eip155:1",
+    "name": "XDEFI",
+    "precision": 18,
+    "color": "#1D3BC2",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x72B886d09C117654aB7dA13A14d603001dE0B777/logo.png",
+    "symbol": "XDEFI",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x72bab498fa50a33a03362d0024bb27efbc50a7b7": {
+    "assetId": "eip155:1/erc20:0x72bab498fa50a33a03362d0024bb27efbc50a7b7",
+    "chainId": "eip155:1",
+    "name": "BlockEscrow",
+    "precision": 18,
+    "color": "#5C34EB",
+    "icon": "https://assets.coingecko.com/coins/images/30965/thumb/gzKF1YgJ_400x400.jpg?1696529805",
+    "symbol": "BET",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x72c60bfffef18dca51db32b52b819a951b6ddbed": {
+    "assetId": "eip155:1/erc20:0x72c60bfffef18dca51db32b52b819a951b6ddbed",
+    "chainId": "eip155:1",
+    "name": "Shido",
+    "precision": 18,
+    "color": "#046CD6",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x72c60bFffEF18dCa51db32b52b819A951b6Ddbed/logo.png",
+    "symbol": "SHIDO",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x72dd4b6bd852a3aa172be4d6c5a6dbec588cf131": {
+    "assetId": "eip155:1/erc20:0x72dd4b6bd852a3aa172be4d6c5a6dbec588cf131",
+    "chainId": "eip155:1",
+    "name": "NAGA",
+    "precision": 18,
+    "color": "#F90404",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x72dD4b6bd852A3AA172Be4d6C5a6dbEc588cf131/logo.png",
+    "symbol": "NGC",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x72e203a17add19a3099137c9d7015fd3e2b7dba9": {
+    "assetId": "eip155:1/erc20:0x72e203a17add19a3099137c9d7015fd3e2b7dba9",
+    "chainId": "eip155:1",
+    "name": "BlockchainPoland",
+    "precision": 18,
+    "color": "#5A86BB",
+    "icon": "https://assets.coingecko.com/coins/images/8143/thumb/43Stz1Tw.png?1696508359",
+    "symbol": "BCP",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x72e364f2abdc788b7e918bc238b21f109cd634d7": {
+    "assetId": "eip155:1/erc20:0x72e364f2abdc788b7e918bc238b21f109cd634d7",
+    "chainId": "eip155:1",
+    "name": "Metaverse Index on Ethereum",
+    "precision": 18,
+    "color": "#6BD3E4",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x72e364F2ABdC788b7E918bc238B21f109Cd634D7/logo.png",
+    "symbol": "MVI",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x72e4f9f808c49a2a61de9c5896298920dc4eeea9": {
+    "assetId": "eip155:1/erc20:0x72e4f9f808c49a2a61de9c5896298920dc4eeea9",
+    "chainId": "eip155:1",
+    "name": "HarryPotterObamaSonic10Inu  ETH ",
+    "precision": 8,
+    "color": "#AD6528",
+    "icon": "https://assets.coingecko.com/coins/images/30323/thumb/hpos10i_logo_casino_night-dexview.png?1696529224",
+    "symbol": "BITCOIN",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x72e5390edb7727e3d4e3436451dadaff675dbcc0": {
+    "assetId": "eip155:1/erc20:0x72e5390edb7727e3d4e3436451dadaff675dbcc0",
+    "chainId": "eip155:1",
+    "name": "Hanu Yokia on Ethereum",
+    "precision": 12,
+    "color": "#12AC9A",
+    "icon": "https://assets.coingecko.com/coins/images/17161/thumb/Goji_Hanu_Logo_200x200.png?1696516720",
+    "symbol": "HANU",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x72e9d9038ce484ee986fea183f8d8df93f9ada13": {
+    "assetId": "eip155:1/erc20:0x72e9d9038ce484ee986fea183f8d8df93f9ada13",
+    "chainId": "eip155:1",
+    "name": "SmartCredit",
+    "precision": 18,
+    "color": "#54CCF4",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x72e9D9038cE484EE986FEa183f8d8Df93f9aDA13/logo.png",
+    "symbol": "SMARTCREDIT",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x72f020f8f3e8fd9382705723cd26380f8d0c66bb": {
+    "assetId": "eip155:1/erc20:0x72f020f8f3e8fd9382705723cd26380f8d0c66bb",
+    "chainId": "eip155:1",
+    "name": "PlotX on Ethereum",
+    "precision": 18,
+    "color": "#04142C",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x72F020f8f3E8fd9382705723Cd26380f8D0c66Bb/logo.png",
+    "symbol": "PLOT",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x72fd1648f34ddb747acd00ae114e805c7b81422d": {
+    "assetId": "eip155:1/erc20:0x72fd1648f34ddb747acd00ae114e805c7b81422d",
+    "chainId": "eip155:1",
+    "name": "PEPEBEAST",
+    "precision": 9,
+    "color": "#598B3D",
+    "icon": "https://assets.coingecko.com/coins/images/32366/thumb/pepebeast.jpg?1698030307",
+    "symbol": "PEPEBEAST",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x730f8c56c709c5f5b4a6e91f98fa7a7c410e990d": {
+    "assetId": "eip155:1/erc20:0x730f8c56c709c5f5b4a6e91f98fa7a7c410e990d",
+    "chainId": "eip155:1",
+    "name": "Ether Futures",
+    "precision": 18,
+    "color": "#B8B8B8",
+    "icon": "https://assets.coingecko.com/coins/images/31578/thumb/lo.png?1696530395",
+    "symbol": "ETHF",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x7321a13bbf58220bca94a605eff3e24daee86376": {
+    "assetId": "eip155:1/erc20:0x7321a13bbf58220bca94a605eff3e24daee86376",
+    "chainId": "eip155:1",
+    "name": "Robin Hood",
+    "precision": 18,
+    "color": "#1B2B14",
+    "icon": "https://assets.coingecko.com/coins/images/32388/thumb/IMG_20231017_095500_002.jpg?1698051071",
+    "symbol": "HOOD",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x73374ea518de7addd4c2b624c0e8b113955ee041": {
+    "assetId": "eip155:1/erc20:0x73374ea518de7addd4c2b624c0e8b113955ee041",
+    "chainId": "eip155:1",
+    "name": "Juggernaut on Ethereum",
+    "precision": 18,
+    "color": "#CEC9BF",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x73374Ea518De7adDD4c2B624C0e8B113955ee041/logo.png",
+    "symbol": "JGN",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x733b5056a0697e7a4357305fe452999a0c409feb": {
+    "assetId": "eip155:1/erc20:0x733b5056a0697e7a4357305fe452999a0c409feb",
+    "chainId": "eip155:1",
+    "name": "IMVU",
+    "precision": 18,
+    "color": "#100D08",
+    "icon": "https://assets.coingecko.com/coins/images/30682/thumb/VCORE_Logo_200x200.png?1696529551",
+    "symbol": "VCORE",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x7340ea46360576dc46ef49bce99bc5072c32421d": {
+    "assetId": "eip155:1/erc20:0x7340ea46360576dc46ef49bce99bc5072c32421d",
+    "chainId": "eip155:1",
+    "name": "DollarSqueeze",
+    "precision": 18,
+    "color": "#8D6D38",
+    "icon": "https://assets.coingecko.com/coins/images/30764/thumb/DS.png?1696529632",
+    "symbol": "DSQ",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x73484a262730d1d422610729e828346f9b2ff480": {
+    "assetId": "eip155:1/erc20:0x73484a262730d1d422610729e828346f9b2ff480",
+    "chainId": "eip155:1",
+    "name": "BRCP",
+    "precision": 18,
+    "color": "#EC9424",
+    "icon": "https://assets.coingecko.com/coins/images/14388/thumb/brcp-500x500-verde.png?1696514079",
+    "symbol": "BRCP",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x734c90044a0ba31b3f2e640c10dc5d3540499bfd": {
+    "assetId": "eip155:1/erc20:0x734c90044a0ba31b3f2e640c10dc5d3540499bfd",
+    "chainId": "eip155:1",
+    "name": "TradeStars on Ethereum",
+    "precision": 18,
+    "color": "#1D5772",
+    "icon": "https://assets.coingecko.com/coins/images/15229/thumb/WsO9siKG_400x400.png?1696514884",
+    "symbol": "TSX",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x735fa792e731a2e8f83f32eb539841b7b72e6d8f": {
+    "assetId": "eip155:1/erc20:0x735fa792e731a2e8f83f32eb539841b7b72e6d8f",
+    "chainId": "eip155:1",
+    "name": "ARYZE eEUR on Ethereum",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/32421/thumb/ARYZE_eEUR.png?1698118176",
+    "symbol": "EEUR",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x738865301a9b7dd80dc3666dd48cf034ec42bdda": {
+    "assetId": "eip155:1/erc20:0x738865301a9b7dd80dc3666dd48cf034ec42bdda",
+    "chainId": "eip155:1",
+    "name": "Agoras  Currency of Tau",
+    "precision": 8,
+    "color": "#F1D4F4",
+    "icon": "https://assets.coingecko.com/coins/images/399/thumb/agrs.png?1696501692",
+    "symbol": "AGRS",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x73968b9a57c6e53d41345fd57a6e6ae27d6cdb2f": {
+    "assetId": "eip155:1/erc20:0x73968b9a57c6e53d41345fd57a6e6ae27d6cdb2f",
+    "chainId": "eip155:1",
+    "name": "Stake DAO on Ethereum",
+    "precision": 18,
+    "color": "#070707",
+    "icon": "https://assets.coingecko.com/coins/images/13724/thumb/stakedao_logo.jpg?1696513468",
+    "symbol": "SDT",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x73a83269b9bbafc427e76be0a2c1a1db2a26f4c2": {
+    "assetId": "eip155:1/erc20:0x73a83269b9bbafc427e76be0a2c1a1db2a26f4c2",
+    "chainId": "eip155:1",
+    "name": "Civfund Stone",
+    "precision": 18,
+    "color": "#DAD9DC",
+    "icon": "https://assets.coingecko.com/coins/images/25156/thumb/stone.png?1696524304",
+    "symbol": "0NE",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x73a9fb46e228628f8f9bb9004eca4f4f529d3998": {
+    "assetId": "eip155:1/erc20:0x73a9fb46e228628f8f9bb9004eca4f4f529d3998",
+    "chainId": "eip155:1",
+    "name": "Wrapped LEO",
+    "precision": 3,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/12626/thumb/4XfO3w3.png?1696512434",
+    "symbol": "WLEO",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x73b708e84837ffccde2933e3a1531fe61d5e80ef": {
+    "assetId": "eip155:1/erc20:0x73b708e84837ffccde2933e3a1531fe61d5e80ef",
+    "chainId": "eip155:1",
+    "name": "Betero on Ethereum",
+    "precision": 18,
+    "color": "#1C2424",
+    "icon": "https://assets.coingecko.com/coins/images/25153/thumb/B_green200.png?1696524302",
+    "symbol": "BTE",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x73c69d24ad28e2d43d03cbf35f79fe26ebde1011": {
+    "assetId": "eip155:1/erc20:0x73c69d24ad28e2d43d03cbf35f79fe26ebde1011",
+    "chainId": "eip155:1",
+    "name": "Archimedes Finance",
+    "precision": 18,
+    "color": "#6674F4",
+    "icon": "https://assets.coingecko.com/coins/images/28970/thumb/arch.png?1696527943",
+    "symbol": "ARCH",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x73c6a7491d0db90bdb0060308cde0f49dfd1d0b0": {
+    "assetId": "eip155:1/erc20:0x73c6a7491d0db90bdb0060308cde0f49dfd1d0b0",
+    "chainId": "eip155:1",
+    "name": "DogeBonk on Ethereum",
+    "precision": 18,
+    "color": "#2C231A",
+    "icon": "https://assets.coingecko.com/coins/images/31455/thumb/200x200.png?1696530269",
+    "symbol": "DOBO",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x73d7c860998ca3c01ce8c808f5577d94d545d1b4": {
+    "assetId": "eip155:1/erc20:0x73d7c860998ca3c01ce8c808f5577d94d545d1b4",
+    "chainId": "eip155:1",
+    "name": "IX Swap on Ethereum",
+    "precision": 18,
+    "color": "#313131",
+    "icon": "https://assets.coingecko.com/coins/images/18069/thumb/ixswap.PNG?1696517577",
+    "symbol": "IXS",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x73fbd93bfda83b111ddc092aa3a4ca77fd30d380": {
+    "assetId": "eip155:1/erc20:0x73fbd93bfda83b111ddc092aa3a4ca77fd30d380",
+    "chainId": "eip155:1",
+    "name": "SophiaVerse on Ethereum",
+    "precision": 18,
+    "color": "#E4C46C",
+    "icon": "https://assets.coingecko.com/coins/images/30050/thumb/Icon_200x200.png?1696528972",
+    "symbol": "SOPH",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x7409856cae628f5d578b285b45669b36e7005283": {
+    "assetId": "eip155:1/erc20:0x7409856cae628f5d578b285b45669b36e7005283",
+    "chainId": "eip155:1",
+    "name": "Jarvis Synthetic British Pound on Ethereum",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/15726/thumb/jGBP.png?1696515352",
+    "symbol": "JGBP",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x741b0428efdf4372a8df6fb54b018db5e5ab7710": {
+    "assetId": "eip155:1/erc20:0x741b0428efdf4372a8df6fb54b018db5e5ab7710",
+    "chainId": "eip155:1",
+    "name": "ARTX",
+    "precision": 18,
+    "color": "#7C6424",
+    "icon": "https://assets.coingecko.com/coins/images/14652/thumb/logo_black_cmc.png?1696514328",
+    "symbol": "ARTX",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x7420b4b9a0110cdc71fb720908340c03f9bc03ec": {
+    "assetId": "eip155:1/erc20:0x7420b4b9a0110cdc71fb720908340c03f9bc03ec",
+    "chainId": "eip155:1",
+    "name": "JasmyCoin",
+    "precision": 18,
+    "color": "#F4941C",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x7420B4b9a0110cdC71fB720908340C03F9Bc03EC/logo.png",
+    "symbol": "JASMY",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x74232704659ef37c08995e386a2e26cc27a8d7b1": {
+    "assetId": "eip155:1/erc20:0x74232704659ef37c08995e386a2e26cc27a8d7b1",
+    "chainId": "eip155:1",
+    "name": "Strike",
+    "precision": 18,
+    "color": "#247CE4",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x74232704659ef37c08995e386A2E26cc27a8d7B1/logo.png",
+    "symbol": "STRK",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x7448c7456a97769f6cd04f1e83a4a23ccdc46abd": {
+    "assetId": "eip155:1/erc20:0x7448c7456a97769f6cd04f1e83a4a23ccdc46abd",
+    "chainId": "eip155:1",
+    "name": "Maverick Protocol on Ethereum",
+    "precision": 18,
+    "color": "#7A0CFC",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x7448c7456a97769F6cD04F1E83A4a23cCdC46aBD/logo.png",
+    "symbol": "MAV",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x7449c93abe66457e83b3799bcf1a99e92d58a93b": {
+    "assetId": "eip155:1/erc20:0x7449c93abe66457e83b3799bcf1a99e92d58a93b",
+    "chainId": "eip155:1",
+    "name": "CryptMi",
+    "precision": 18,
+    "color": "#0C1A39",
+    "icon": "https://assets.coingecko.com/coins/images/29032/thumb/Screen_Shot_2023-02-10_at_1.22.01_PM.png?1696528001",
+    "symbol": "CYMI",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x744d70fdbe2ba4cf95131626614a1763df805b9e": {
+    "assetId": "eip155:1/erc20:0x744d70fdbe2ba4cf95131626614a1763df805b9e",
+    "chainId": "eip155:1",
+    "name": "Status",
+    "precision": 18,
+    "color": "#4363DC",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x744d70FDBE2Ba4CF95131626614a1763DF805B9E/logo.png",
+    "symbol": "SNT",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x745407c86df8db893011912d3ab28e68b62e49b0": {
+    "assetId": "eip155:1/erc20:0x745407c86df8db893011912d3ab28e68b62e49b0",
+    "chainId": "eip155:1",
+    "name": "MahaDAO on Ethereum",
+    "precision": 18,
+    "color": "#EA4243",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x745407c86DF8DB893011912d3aB28e68B62E49B0/logo.png",
+    "symbol": "MAHA",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x745e005a5df03bde0e55be811350acd6316894e1": {
+    "color": "#FFFFFF",
+    "icon": "https://raw.githubusercontent.com/Idle-Labs/idle-dashboard/master/public/images/tokens/USDT.svg",
+    "name": "MorphoAave USDT Senior Tranche",
+    "precision": 18,
+    "symbol": "AA_maUSDT",
+    "chainId": "eip155:1",
+    "assetId": "eip155:1/erc20:0x745e005a5df03bde0e55be811350acd6316894e1",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x7468d234a8db6f1085dbf4e403553bfed41df95c": {
+    "assetId": "eip155:1/erc20:0x7468d234a8db6f1085dbf4e403553bfed41df95c",
+    "chainId": "eip155:1",
+    "name": "IO",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/32792/thumb/IMG_8756.jpeg?1699429009",
+    "symbol": "IO",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x746dda2ea243400d5a63e0700f190ab79f06489e": {
+    "assetId": "eip155:1/erc20:0x746dda2ea243400d5a63e0700f190ab79f06489e",
+    "chainId": "eip155:1",
+    "name": "BOSagora",
+    "precision": 7,
+    "color": "#0474FC",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x746DdA2ea243400D5a63e0700F190aB79f06489e/logo.png",
+    "symbol": "BOA",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x74a85f68cd947d05585f76118e51b2ed1484a838": {
+    "assetId": "eip155:1/erc20:0x74a85f68cd947d05585f76118e51b2ed1484a838",
+    "chainId": "eip155:1",
+    "name": "Diamault",
+    "precision": 18,
+    "color": "#E4E4E4",
+    "icon": "https://assets.coingecko.com/coins/images/32200/thumb/DVT.jpg?1696745951",
+    "symbol": "DVT",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x74b1af114274335598da72f5c6ed7b954a016eed": {
+    "assetId": "eip155:1/erc20:0x74b1af114274335598da72f5c6ed7b954a016eed",
+    "chainId": "eip155:1",
+    "name": "HitBTC",
+    "precision": 18,
+    "color": "#10536A",
+    "icon": "https://assets.coingecko.com/coins/images/16395/thumb/JgMkz95.png?1696515993",
+    "symbol": "HIT",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x74b988156925937bd4e082f0ed7429da8eaea8db": {
+    "assetId": "eip155:1/erc20:0x74b988156925937bd4e082f0ed7429da8eaea8db",
+    "chainId": "eip155:1",
+    "name": "Meme Inu",
+    "precision": 18,
+    "color": "#F9F4D7",
+    "icon": "https://assets.coingecko.com/coins/images/20755/thumb/photo_2021-11-20_13-39-45.jpg?1696520151",
+    "symbol": "MEME",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x74be64b45d394fa57816c1950e94dbb8d7a7b306": {
+    "assetId": "eip155:1/erc20:0x74be64b45d394fa57816c1950e94dbb8d7a7b306",
+    "chainId": "eip155:1",
+    "name": "Givewell Inu",
+    "precision": 9,
+    "color": "#2B1930",
+    "icon": "https://assets.coingecko.com/coins/images/28323/thumb/5FADC518-3EE8-4914-A627-602B9C3FAFB4.jpeg?1696527330",
+    "symbol": "GINU",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x74e5e53056526b2609d82e85486005ef2a2db001": {
+    "assetId": "eip155:1/erc20:0x74e5e53056526b2609d82e85486005ef2a2db001",
+    "chainId": "eip155:1",
+    "name": "TruMATIC MATIC Stable Pool",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAIAAAACACAMAAAD04JH5AAADAFBMVEUtN0gmRtj///8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADg0OtOAAABAHRSTlP/////AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAf6K/dgAAQItJREFUeNoBgEB/vwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgEBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAQEBAQEBAQEBAQEBAQECAgICAgICAQEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgAAAAAAAAAAAAACAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAAAAwMDAwMDAwMDAwMDAwICAgICAgIDAwMDAwMDAwMDAwMDAwMBAQEBAQECAgICAgICAwMDAwMDAwMDAwMDAwMDAwMDAwMDAgICAgICAgEBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgIDAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgIDAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgIDAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgIDAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgIDAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgIDAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgIDAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgIDAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgIDAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgIDAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgIDAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgIDAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgIDAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgIDAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAQMDAwMDAwMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgIDAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgIDAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgIDAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgIDAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgIDAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgIDAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgIDAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAwMDAwMDAwICAgICAgIDAwMDAwMDAwEBAQEBAQEBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgIDAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAICAgICAgIDAAAAAAEBAQEBAQEBAQEBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgIDAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAICAgICAgIDAAAAAAEBAQEBAQEBAQEBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgIDAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAICAgICAgIDAAAAAAEBAQEBAQEBAQEBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgIDAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAICAgICAgIDAAAAAAEBAQEBAQEBAQEBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgIDAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAICAgICAgIDAAAAAAEBAQEBAQEBAQEBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgIDAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAICAgICAgIDAAAAAAEBAQEBAQEBAQEBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgIDAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAADAwMDAwMCAgICAgICAQEBAQEBAQEBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgIDAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgIDAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgIDAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgIDAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgIDAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgIDAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgIDAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAwMDAwMDAgICAgICAgEBAQEBAQEBAwMDAwMDAgICAgICAgICAgICAgICAgICAgICAAMDAwMDAwMAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgIDAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQEBAQEBAQEBAgICAgICAgICAgICAgICAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgIDAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQEBAQEBAQEBAgICAgICAgICAgICAgICAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgIDAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQEBAQEBAQEBAgICAgICAgICAgICAgICAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgIDAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQEBAQEBAQEBAgICAgICAgICAgICAgICAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgIDAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQEBAQEBAQEBAgICAgICAgICAgICAgICAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgIDAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQEBAQEBAQEBAgICAgICAgICAgICAgICAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEDAwMDAwMDAQEBAQEBAQEBAQEBAQEBAQEBAQEBAwMDAwMDAwAAAAAAAAAAAAAAAAAAAAAAAAEBAQMDAwMDAwMBAQEBAQEBAQEBAQEBAQMDAwMDAwMDAwMDAwMDAwMDAwMDAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPXxMUL6Ex8cAAAAAElFTkSuQmCC",
+    "symbol": "TRUMATIC-MATIC",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x74faab6986560fd1140508e4266d8a7b87274ffd": {
+    "assetId": "eip155:1/erc20:0x74faab6986560fd1140508e4266d8a7b87274ffd",
+    "chainId": "eip155:1",
+    "name": "HyperDAO",
+    "precision": 18,
+    "color": "#3F88C8",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x74faaB6986560fD1140508e4266D8a7b87274Ffd/logo.png",
+    "symbol": "HDAO",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x7512200f2ae3e1625a060d589348716f65923d75": {
+    "assetId": "eip155:1/erc20:0x7512200f2ae3e1625a060d589348716f65923d75",
+    "chainId": "eip155:1",
+    "name": "Arena Deathmatch",
+    "precision": 18,
+    "color": "#BCBECC",
+    "icon": "https://assets.coingecko.com/coins/images/31758/thumb/ArenaLogoMarkText.png?1696530577",
+    "symbol": "ARENA",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x75231f58b43240c9718dd58b4967c5114342a86c": {
+    "assetId": "eip155:1/erc20:0x75231f58b43240c9718dd58b4967c5114342a86c",
+    "chainId": "eip155:1",
+    "name": "OKB",
+    "precision": 18,
+    "color": "#2965EC",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x75231F58b43240C9718Dd58B4967c5114342a86c/logo.png",
+    "symbol": "OKB",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x7533d63a2558965472398ef473908e1320520ae2": {
+    "assetId": "eip155:1/erc20:0x7533d63a2558965472398ef473908e1320520ae2",
+    "chainId": "eip155:1",
+    "name": "INTEXCOIN",
+    "precision": 9,
+    "color": "#F48B14",
+    "icon": "https://assets.coingecko.com/coins/images/11854/thumb/INTX.png?1696511724",
+    "symbol": "INTX",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x75430d0782a443bd4f1c92c69009599dea53a206": {
+    "assetId": "eip155:1/erc20:0x75430d0782a443bd4f1c92c69009599dea53a206",
+    "chainId": "eip155:1",
+    "name": "Pick Or Rick",
+    "precision": 9,
+    "color": "#4E7309",
+    "icon": "https://assets.coingecko.com/coins/images/30653/thumb/Untitled_Artwork_8_%283%29_%281%29.png?1696529523",
+    "symbol": "RICK",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x75459a499a79ccd7c5fae3201738f9e4677d69e4": {
+    "assetId": "eip155:1/erc20:0x75459a499a79ccd7c5fae3201738f9e4677d69e4",
+    "chainId": "eip155:1",
+    "name": "Prometheus Trading",
+    "precision": 18,
+    "color": "#222222",
+    "icon": "https://assets.coingecko.com/coins/images/31073/thumb/Artboard_2_3x.png?1696529906",
+    "symbol": "PROME",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x755be920943ea95e39ee2dc437b268917b580d6e": {
+    "assetId": "eip155:1/erc20:0x755be920943ea95e39ee2dc437b268917b580d6e",
+    "chainId": "eip155:1",
+    "name": "VersoView on Ethereum",
+    "precision": 18,
+    "color": "#A09D98",
+    "icon": "https://assets.coingecko.com/coins/images/13380/thumb/HkfxEtWh_400x400.jpg?1696513143",
+    "symbol": "VVT",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x757c67cb79a4dc8af386cb3abf32359c9a99f652": {
+    "assetId": "eip155:1/erc20:0x757c67cb79a4dc8af386cb3abf32359c9a99f652",
+    "chainId": "eip155:1",
+    "name": "Money Laundering Protocol",
+    "precision": 9,
+    "color": "#0D1D1C",
+    "icon": "https://assets.coingecko.com/coins/images/32502/thumb/IMG_6964.jpeg?1698312926",
+    "symbol": "MLP",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x757da0e5c253082b0f2bd5105119f71817fe0911": {
+    "assetId": "eip155:1/erc20:0x757da0e5c253082b0f2bd5105119f71817fe0911",
+    "chainId": "eip155:1",
+    "name": "Very Special Dragon",
+    "precision": 18,
+    "color": "#B4953E",
+    "icon": "https://assets.coingecko.com/coins/images/28527/thumb/Vito200.png?1696527519",
+    "symbol": "VITO",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x75858677e27c930fb622759feaffee2b754af07f": {
+    "assetId": "eip155:1/erc20:0x75858677e27c930fb622759feaffee2b754af07f",
+    "chainId": "eip155:1",
+    "name": "Phantasma on Ethereum",
+    "precision": 8,
+    "color": "#16B4EC",
+    "icon": "https://assets.coingecko.com/coins/images/4130/thumb/phantasma.png?1696504758",
+    "symbol": "SOUL",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x758b4684be769e92eefea93f60dda0181ea303ec": {
+    "assetId": "eip155:1/erc20:0x758b4684be769e92eefea93f60dda0181ea303ec",
+    "chainId": "eip155:1",
+    "name": "Phonon DAO on Ethereum",
+    "precision": 18,
+    "color": "#44CAC9",
+    "icon": "https://assets.coingecko.com/coins/images/22308/thumb/ezgif-2-e7fb84364d.png?1696521653",
+    "symbol": "PHONON",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x75c97384ca209f915381755c582ec0e2ce88c1ba": {
+    "assetId": "eip155:1/erc20:0x75c97384ca209f915381755c582ec0e2ce88c1ba",
+    "chainId": "eip155:1",
+    "name": "FINE",
+    "precision": 18,
+    "color": "#CDC506",
+    "icon": "https://assets.coingecko.com/coins/images/31703/thumb/05220a_054ff0bb5d7c41db99db6332923ac4fd_mv2.png?1696530527",
+    "symbol": "FINE",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x75cb71325a44fb102a742626b723054acb7e1394": {
+    "assetId": "eip155:1/erc20:0x75cb71325a44fb102a742626b723054acb7e1394",
+    "chainId": "eip155:1",
+    "name": "Anime on Ethereum",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/13792/thumb/ani.png?1696513541",
+    "symbol": "ANI",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x75ce16d11b83605aa039d40d7d846ff23064fb65": {
+    "assetId": "eip155:1/erc20:0x75ce16d11b83605aa039d40d7d846ff23064fb65",
+    "chainId": "eip155:1",
+    "name": "DUBX",
+    "precision": 9,
+    "color": "#D4D4D4",
+    "icon": "https://assets.coingecko.com/coins/images/31605/thumb/dubx200*200.png?1696530421",
+    "symbol": "DUB",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x75ecb52e403c617679fbd3e77a50f9d10a842387": {
+    "assetId": "eip155:1/erc20:0x75ecb52e403c617679fbd3e77a50f9d10a842387",
+    "chainId": "eip155:1",
+    "name": "CSR",
+    "precision": 18,
+    "color": "#D07AA2",
+    "icon": "https://assets.coingecko.com/coins/images/25585/thumb/CSR-LOGO-200x200-1.png?1696524717",
+    "symbol": "CSR",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x760ea31711ac14cb9ba81ac25453c6f378fa5794": {
+    "assetId": "eip155:1/erc20:0x760ea31711ac14cb9ba81ac25453c6f378fa5794",
+    "chainId": "eip155:1",
+    "name": "BOWL SHIBARIUM",
+    "precision": 9,
+    "color": "#E51C1A",
+    "icon": "https://assets.coingecko.com/coins/images/29370/thumb/redbowl_200x200_logo_copy.png?1696528317",
+    "symbol": "BOWL",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x7616113782aadab041d7b10d474f8a0c04eff258": {
+    "assetId": "eip155:1/erc20:0x7616113782aadab041d7b10d474f8a0c04eff258",
+    "chainId": "eip155:1",
+    "name": "Zeeverse",
+    "precision": 18,
+    "color": "#94B564",
+    "icon": "https://assets.coingecko.com/coins/images/29164/thumb/vee.png?1696528122",
+    "symbol": "VEE",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x761a3557184cbc07b7493da0661c41177b2f97fa": {
+    "assetId": "eip155:1/erc20:0x761a3557184cbc07b7493da0661c41177b2f97fa",
+    "chainId": "eip155:1",
+    "name": "ValleyDAO",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/32991/thumb/valleydao_200x200.png?1700168068",
+    "symbol": "GROW",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x761d38e5ddf6ccf6cf7c55759d5210750b5d60f3": {
+    "assetId": "eip155:1/erc20:0x761d38e5ddf6ccf6cf7c55759d5210750b5d60f3",
+    "chainId": "eip155:1",
+    "name": "Dogelon Mars on Ethereum",
+    "precision": 18,
+    "color": "#F6CD9A",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x761D38e5ddf6ccf6Cf7c55759d5210750B5D60F3/logo.png",
+    "symbol": "ELON",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x762fcf5183ae366c0629d0bcd30b40f331496d0f": {
+    "assetId": "eip155:1/erc20:0x762fcf5183ae366c0629d0bcd30b40f331496d0f",
+    "chainId": "eip155:1",
+    "name": "Dice Bot",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/32654/thumb/Twitter_pfp.png?1698965261",
+    "symbol": "DICE",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x76306f029f8f99effe509534037ba7030999e3cf": {
+    "assetId": "eip155:1/erc20:0x76306f029f8f99effe509534037ba7030999e3cf",
+    "chainId": "eip155:1",
+    "name": "Acreage Coin",
+    "precision": 18,
+    "color": "#E5E3E5",
+    "icon": "https://assets.coingecko.com/coins/images/5100/thumb/acreage-coin.jpg?1696505621",
+    "symbol": "ACR",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x7635b612792e4bfb7f2fa12a3e5d5a3f2e3c34bc": {
+    "assetId": "eip155:1/erc20:0x7635b612792e4bfb7f2fa12a3e5d5a3f2e3c34bc",
+    "chainId": "eip155:1",
+    "name": "Alternity CNY",
+    "precision": 18,
+    "color": "#D9DCF9",
+    "icon": "https://assets.coingecko.com/coins/images/31396/thumb/LCNY_logo.png?1696530212",
+    "symbol": "LCNY",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x764104dc24dadff01150253a58c82337984b4319": {
+    "assetId": "eip155:1/erc20:0x764104dc24dadff01150253a58c82337984b4319",
+    "chainId": "eip155:1",
+    "name": "hiCLONEX",
+    "precision": 18,
+    "color": "#887171",
+    "icon": "https://assets.coingecko.com/coins/images/28436/thumb/hiclonex.png?1696527433",
+    "symbol": "HICLONEX",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x7645ddfeeceda57e41f92679c4acd83c56a81d14": {
+    "assetId": "eip155:1/erc20:0x7645ddfeeceda57e41f92679c4acd83c56a81d14",
+    "chainId": "eip155:1",
+    "name": "Flux Protocol on Ethereum",
+    "precision": 18,
+    "color": "#D67C16",
+    "icon": "https://assets.coingecko.com/coins/images/15002/thumb/logo.dabc411c.png?1696514665",
+    "symbol": "FLUX",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x7659ce147d0e714454073a5dd7003544234b6aa0": {
+    "assetId": "eip155:1/erc20:0x7659ce147d0e714454073a5dd7003544234b6aa0",
+    "chainId": "eip155:1",
+    "name": "XCAD Network on Ethereum",
+    "precision": 18,
+    "color": "#B52493",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x7659CE147D0e714454073a5dd7003544234b6Aa0/logo.png",
+    "symbol": "XCAD",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x765f0c16d1ddc279295c1a7c24b0883f62d33f75": {
+    "assetId": "eip155:1/erc20:0x765f0c16d1ddc279295c1a7c24b0883f62d33f75",
+    "chainId": "eip155:1",
+    "name": "DaTa eXchange DTX",
+    "precision": 18,
+    "color": "#9F306E",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x765f0C16D1Ddc279295c1a7C24B0883F62d33F75/logo.png",
+    "symbol": "DTX",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x766a824314bd1d9fa27c8461754c276772bc666a": {
+    "assetId": "eip155:1/erc20:0x766a824314bd1d9fa27c8461754c276772bc666a",
+    "chainId": "eip155:1",
+    "name": "Scam Coin",
+    "precision": 18,
+    "color": "#11181D",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x766a824314BD1D9FA27C8461754C276772BC666A/logo.png",
+    "symbol": "SCAM",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x767fe9edc9e0df98e07454847909b5e959d7ca0e": {
+    "assetId": "eip155:1/erc20:0x767fe9edc9e0df98e07454847909b5e959d7ca0e",
+    "chainId": "eip155:1",
+    "name": "Illuvium",
+    "precision": 18,
+    "color": "#2D1D5E",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x767FE9EDC9E0dF98E07454847909b5E959D7ca0E/logo.png",
+    "symbol": "ILV",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x7690202e2c2297bcd03664e31116d1dffe7e3b73": {
+    "assetId": "eip155:1/erc20:0x7690202e2c2297bcd03664e31116d1dffe7e3b73",
+    "chainId": "eip155:1",
+    "name": "Cat in a Box Ether",
+    "precision": 18,
+    "color": "#060D0B",
+    "icon": "https://assets.coingecko.com/coins/images/29927/thumb/boxETH.png?1696528855",
+    "symbol": "BOXETH",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x76960dccd5a1fe799f7c29be9f19ceb4627aeb2f": {
+    "assetId": "eip155:1/erc20:0x76960dccd5a1fe799f7c29be9f19ceb4627aeb2f",
+    "chainId": "eip155:1",
+    "name": "Red",
+    "precision": 18,
+    "color": "#DD0505",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x76960Dccd5a1fe799F7c29bE9F19ceB4627aEb2f/logo.png",
+    "symbol": "RED",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x7697b462a7c4ff5f8b55bdbc2f4076c2af9cf51a": {
+    "assetId": "eip155:1/erc20:0x7697b462a7c4ff5f8b55bdbc2f4076c2af9cf51a",
+    "chainId": "eip155:1",
+    "name": "Sarcophagus",
+    "precision": 18,
+    "color": "#2A2A2A",
+    "icon": "https://assets.coingecko.com/coins/images/15091/thumb/E2S2-CcUcAAyNxD.jpeg?1696514749",
+    "symbol": "SARCO",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x76af4cb74c8d4da51403d672a799e94b5958c230": {
+    "assetId": "eip155:1/erc20:0x76af4cb74c8d4da51403d672a799e94b5958c230",
+    "chainId": "eip155:1",
+    "name": "Feels Good Man",
+    "precision": 9,
+    "color": "#C2C5C2",
+    "icon": "https://assets.coingecko.com/coins/images/31980/thumb/Feels_Good_Man.png?1696530783",
+    "symbol": "GOOD",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x76bc677d444f1e9d57daf5187ee2b7dc852745ae": {
+    "assetId": "eip155:1/erc20:0x76bc677d444f1e9d57daf5187ee2b7dc852745ae",
+    "chainId": "eip155:1",
+    "name": "Offshift on Ethereum",
+    "precision": 18,
+    "color": "#4F049F",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x76BC677d444f1E9d57dAf5187ee2b7dC852745aE/logo.png",
+    "symbol": "XFT",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x76c81e322fe678f9391029d571453fad9bc9e73e": {
+    "assetId": "eip155:1/erc20:0x76c81e322fe678f9391029d571453fad9bc9e73e",
+    "chainId": "eip155:1",
+    "name": "EdFi",
+    "precision": 18,
+    "color": "#DEF157",
+    "icon": "https://assets.coingecko.com/coins/images/30363/thumb/EDFI_LOGO_200X200_Black_BG_%281%29.png?1696529261",
+    "symbol": "EDFI",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x76dbcba41e11784bfa95ce30e529fa533c3fa4ad": {
+    "assetId": "eip155:1/erc20:0x76dbcba41e11784bfa95ce30e529fa533c3fa4ad",
+    "chainId": "eip155:1",
+    "name": "Smart Marketing",
+    "precision": 18,
+    "color": "#45BC86",
+    "icon": "https://assets.coingecko.com/coins/images/21905/thumb/smt-logo.png?1696521257",
+    "symbol": "SMT",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x76e222b07c53d28b89b0bac18602810fc22b49a8": {
+    "assetId": "eip155:1/erc20:0x76e222b07c53d28b89b0bac18602810fc22b49a8",
+    "chainId": "eip155:1",
+    "name": "Joe Coin",
+    "precision": 18,
+    "color": "#AD8714",
+    "icon": "https://assets.coingecko.com/coins/images/32333/thumb/joe.png?1697452551",
+    "symbol": "JOE",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x76f187059039c13a93d43b6b6dc929f5f9806929": {
+    "assetId": "eip155:1/erc20:0x76f187059039c13a93d43b6b6dc929f5f9806929",
+    "chainId": "eip155:1",
+    "name": "Woofie",
+    "precision": 18,
+    "color": "#4A3B15",
+    "icon": "https://assets.coingecko.com/coins/images/30714/thumb/AD7CA813-D98D-4E1B-AE85-4895645BF1F5.png?1696529585",
+    "symbol": "WOOFIE",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x76fca1adb104770b38581b64d55e67fa5a0f3966": {
+    "assetId": "eip155:1/erc20:0x76fca1adb104770b38581b64d55e67fa5a0f3966",
+    "chainId": "eip155:1",
+    "name": "ZkTsunami",
+    "precision": 9,
+    "color": "#B5D2E0",
+    "icon": "https://assets.coingecko.com/coins/images/29253/thumb/Sa72qYMC_400x400.jpg?1696528207",
+    "symbol": "ZKT",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x7707aada3ce7722ac63b91727daf1999849f6835": {
+    "assetId": "eip155:1/erc20:0x7707aada3ce7722ac63b91727daf1999849f6835",
+    "chainId": "eip155:1",
+    "name": "Bankera",
+    "precision": 8,
+    "color": "#C2EAE4",
+    "icon": "https://assets.coingecko.com/coins/images/1949/thumb/bankera.png?1696502933",
+    "symbol": "BNK",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x7714f320adca62b149df2579361afec729c5fe6a": {
+    "assetId": "eip155:1/erc20:0x7714f320adca62b149df2579361afec729c5fe6a",
+    "chainId": "eip155:1",
+    "name": "Tenup on Ethereum",
+    "precision": 18,
+    "color": "#3481C1",
+    "icon": "https://assets.coingecko.com/coins/images/6254/thumb/uphIf44J_400x400.jpg?1696506637",
+    "symbol": "TUP",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x7717f2828fe4dac8558d23ee4cdfed9544e9321f": {
+    "assetId": "eip155:1/erc20:0x7717f2828fe4dac8558d23ee4cdfed9544e9321f",
+    "chainId": "eip155:1",
+    "name": "OTX EXCHANGE",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/33128/thumb/otx_logo.jpg?1700795823",
+    "symbol": "OTX",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x7721a4cb6190edb11d47f51c20968436eccdafb8": {
+    "assetId": "eip155:1/erc20:0x7721a4cb6190edb11d47f51c20968436eccdafb8",
+    "chainId": "eip155:1",
+    "name": "Guiser",
+    "precision": 18,
+    "color": "#D1DECD",
+    "icon": "https://assets.coingecko.com/coins/images/31426/thumb/GUISE.jpg?1696530241",
+    "symbol": "GUISE",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x772722b55cdc2a086abd064267a17855eb15e8b3": {
+    "assetId": "eip155:1/erc20:0x772722b55cdc2a086abd064267a17855eb15e8b3",
+    "chainId": "eip155:1",
+    "name": "MintMe com Coin on Ethereum",
+    "precision": 18,
+    "color": "#D4B404",
+    "icon": "https://assets.coingecko.com/coins/images/5127/thumb/MINTME_logo.png?1696505647",
+    "symbol": "MINTME",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x772c44b5166647b135bb4836abc4e06c28e94978": {
+    "assetId": "eip155:1/erc20:0x772c44b5166647b135bb4836abc4e06c28e94978",
+    "chainId": "eip155:1",
+    "name": "Normie",
+    "precision": 18,
+    "color": "#BEC2CB",
+    "icon": "https://assets.coingecko.com/coins/images/30395/thumb/normie.png?1696529284",
+    "symbol": "NORMIE",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x77571a64342667f7818520ef004b2b91f47a266b": {
+    "assetId": "eip155:1/erc20:0x77571a64342667f7818520ef004b2b91f47a266b",
+    "chainId": "eip155:1",
+    "name": "SnailMoon",
+    "precision": 18,
+    "color": "#81D0C9",
+    "icon": "https://assets.coingecko.com/coins/images/30401/thumb/SnailMoonCoingecko.png?1696529291",
+    "symbol": "SNM",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x77607588222e01bf892a29abab45796a2047fc7b": {
+    "assetId": "eip155:1/erc20:0x77607588222e01bf892a29abab45796a2047fc7b",
+    "chainId": "eip155:1",
+    "name": "Unagii ETH",
+    "precision": 18,
+    "color": "#ECECF0",
+    "icon": "https://assets.coingecko.com/coins/images/14624/thumb/uETH.png?1696514302",
+    "symbol": "UETH",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x776280f68ad33c4d49e6846507b7dbaf7811c89f": {
+    "assetId": "eip155:1/erc20:0x776280f68ad33c4d49e6846507b7dbaf7811c89f",
+    "chainId": "eip155:1",
+    "name": "ZeroLiquid ETH",
+    "precision": 18,
+    "color": "#5980F5",
+    "icon": "https://assets.coingecko.com/coins/images/31533/thumb/IMG_20230828_212341_351.png?1696530342",
+    "symbol": "ZETH",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x776aaca47ee579ff63f6c00a921377eb21359e59": {
+    "assetId": "eip155:1/erc20:0x776aaca47ee579ff63f6c00a921377eb21359e59",
+    "chainId": "eip155:1",
+    "name": "Coorest on Ethereum",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/30623/thumb/crst-token-1-1.png?1696529497",
+    "symbol": "CRST",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x777172d858dc1599914a1c4c6c9fc48c99a60990": {
+    "assetId": "eip155:1/erc20:0x777172d858dc1599914a1c4c6c9fc48c99a60990",
+    "chainId": "eip155:1",
+    "name": "Solidly",
+    "precision": 18,
+    "color": "#868BA5",
+    "icon": "https://assets.coingecko.com/coins/images/28676/thumb/solid.png?1696527660",
+    "symbol": "SOLID",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x77777777772cf0455fb38ee0e75f38034dfa50de": {
+    "assetId": "eip155:1/erc20:0x77777777772cf0455fb38ee0e75f38034dfa50de",
+    "chainId": "eip155:1",
+    "name": "XY Finance on Ethereum",
+    "precision": 18,
+    "color": "#0C54E2",
+    "icon": "https://assets.coingecko.com/coins/images/21541/thumb/xy.png?1696520900",
+    "symbol": "XY",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x77777feddddffc19ff86db637967013e6c6a116c": {
+    "assetId": "eip155:1/erc20:0x77777feddddffc19ff86db637967013e6c6a116c",
+    "chainId": "eip155:1",
+    "name": "Tornado Cash on Ethereum",
+    "precision": 18,
+    "color": "#040404",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x77777FeDdddFfC19Ff86DB637967013e6C6A116C/logo.png",
+    "symbol": "TORN",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x777e2ae845272a2f540ebf6a3d03734a5a8f618e": {
+    "assetId": "eip155:1/erc20:0x777e2ae845272a2f540ebf6a3d03734a5a8f618e",
+    "chainId": "eip155:1",
+    "name": "Ryoshis Vision",
+    "precision": 18,
+    "color": "#B20D0F",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x777E2ae845272a2F540ebf6a3D03734A5a8f618e/logo.png",
+    "symbol": "RYOSHI",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x777fd20c983d6658c1d50b3958b3a1733d1cd1e1": {
+    "assetId": "eip155:1/erc20:0x777fd20c983d6658c1d50b3958b3a1733d1cd1e1",
+    "chainId": "eip155:1",
+    "name": "PUBLISH",
+    "precision": 9,
+    "color": "#047CFC",
+    "icon": "https://assets.coingecko.com/coins/images/9572/thumb/PUBLISH_Logo_280X280.png?1696509652",
+    "symbol": "NEWS",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x7797c85b46f548eacc07c229f6cd207d6370442f": {
+    "assetId": "eip155:1/erc20:0x7797c85b46f548eacc07c229f6cd207d6370442f",
+    "chainId": "eip155:1",
+    "name": "Dog Tag on Ethereum",
+    "precision": 18,
+    "color": "#F2A006",
+    "icon": "https://assets.coingecko.com/coins/images/26418/thumb/TAG_PNG.png?1696525494",
+    "symbol": "TAG",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x77a1f4e744d810239f465043e35d067ca33de259": {
+    "assetId": "eip155:1/erc20:0x77a1f4e744d810239f465043e35d067ca33de259",
+    "chainId": "eip155:1",
+    "name": "Voice Street on Ethereum",
+    "precision": 18,
+    "color": "#3E4C44",
+    "icon": "https://assets.coingecko.com/coins/images/23147/thumb/LbMUkaD9_400x400.jpg?1696522439",
+    "symbol": "VST",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x77a90b04d64189d4d09508612c09219bc6816bdc": {
+    "assetId": "eip155:1/erc20:0x77a90b04d64189d4d09508612c09219bc6816bdc",
+    "chainId": "eip155:1",
+    "name": "Toshi Tools",
+    "precision": 9,
+    "color": "#64B58A",
+    "icon": "https://assets.coingecko.com/coins/images/28959/thumb/toshi_logo_200_by_200.png?1696527932",
+    "symbol": "TOSHI",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x77c6e4a580c0dce4e5c7a17d0bc077188a83a059": {
+    "assetId": "eip155:1/erc20:0x77c6e4a580c0dce4e5c7a17d0bc077188a83a059",
+    "chainId": "eip155:1",
+    "name": "Swerve fi USD",
+    "precision": 18,
+    "color": "#1C2323",
+    "icon": "https://assets.coingecko.com/coins/images/12918/thumb/swerve.png?1696512706",
+    "symbol": "SWUSD",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x77d0cb0ab54f9e74b9405a5b3f60da06a78f1aad": {
+    "assetId": "eip155:1/erc20:0x77d0cb0ab54f9e74b9405a5b3f60da06a78f1aad",
+    "chainId": "eip155:1",
+    "name": "Wrapped Millix",
+    "precision": 0,
+    "color": "#9944FC",
+    "icon": "https://assets.coingecko.com/coins/images/28703/thumb/wrapped_millix-200x200_300-dpi_GC.png?1696527685",
+    "symbol": "WMLX",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x77d9046ee15faaceb89439ffdde4be071c2f07bd": {
+    "assetId": "eip155:1/erc20:0x77d9046ee15faaceb89439ffdde4be071c2f07bd",
+    "chainId": "eip155:1",
+    "name": "Jiyuu",
+    "precision": 18,
+    "color": "#3D5B7C",
+    "icon": "https://assets.coingecko.com/coins/images/28907/thumb/logo_200.png?1696527883",
+    "symbol": "JIYUU",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x77e06c9eccf2e797fd462a92b6d7642ef85b0a44": {
+    "assetId": "eip155:1/erc20:0x77e06c9eccf2e797fd462a92b6d7642ef85b0a44",
+    "chainId": "eip155:1",
+    "name": "Wrapped TAO",
+    "precision": 9,
+    "color": "#54545C",
+    "icon": "https://assets.coingecko.com/coins/images/29087/thumb/wtao.png?1696528051",
+    "symbol": "WTAO",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x77ebcf0659bbf4e68d8ce6d84bb25c5cde207b97": {
+    "assetId": "eip155:1/erc20:0x77ebcf0659bbf4e68d8ce6d84bb25c5cde207b97",
+    "chainId": "eip155:1",
+    "name": "MOOxMOO",
+    "precision": 18,
+    "color": "#ECECEC",
+    "icon": "https://assets.coingecko.com/coins/images/32493/thumb/MOOX.jpg?1698293551",
+    "symbol": "MOOX",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x77f2be773ca0887ba2b3ef8344c8cf13c98d8ca7": {
+    "assetId": "eip155:1/erc20:0x77f2be773ca0887ba2b3ef8344c8cf13c98d8ca7",
+    "chainId": "eip155:1",
+    "name": "FloraChain on Ethereum",
+    "precision": 18,
+    "color": "#1D8C4A",
+    "icon": "https://assets.coingecko.com/coins/images/29078/thumb/flora.png?1696528044",
+    "symbol": "FYT",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x77f9cf0bd8c500cffdf420e72343893aecc2ec0b": {
+    "assetId": "eip155:1/erc20:0x77f9cf0bd8c500cffdf420e72343893aecc2ec0b",
+    "chainId": "eip155:1",
+    "name": "Laika",
+    "precision": 18,
+    "color": "#A3968F",
+    "icon": "https://assets.coingecko.com/coins/images/26717/thumb/Laikacmcfinal.png?1696525787",
+    "symbol": "LAIKA",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x77fba179c79de5b7653f68b5039af940ada60ce0": {
+    "assetId": "eip155:1/erc20:0x77fba179c79de5b7653f68b5039af940ada60ce0",
+    "chainId": "eip155:1",
+    "name": "Ampleforth Governance",
+    "precision": 18,
+    "color": "#060606",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x77FbA179C79De5B7653F68b5039Af940AdA60ce0/logo.png",
+    "symbol": "FORTH",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x78132543d8e20d2417d8a07d9ae199d458a0d581": {
+    "assetId": "eip155:1/erc20:0x78132543d8e20d2417d8a07d9ae199d458a0d581",
+    "chainId": "eip155:1",
+    "name": "Luna Inu",
+    "precision": 18,
+    "color": "#182240",
+    "icon": "https://assets.coingecko.com/coins/images/25623/thumb/output-onlinepngtools.png?1696524757",
+    "symbol": "LINU",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x7815bda662050d84718b988735218cffd32f75ea": {
+    "assetId": "eip155:1/erc20:0x7815bda662050d84718b988735218cffd32f75ea",
+    "chainId": "eip155:1",
+    "name": "Yel Finance on Ethereum",
+    "precision": 18,
+    "color": "#8E2EBF",
+    "icon": "https://assets.coingecko.com/coins/images/17429/thumb/Logo200.png?1696516976",
+    "symbol": "YEL",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x78223d31298107f3e310b09797b07967832046a6": {
+    "assetId": "eip155:1/erc20:0x78223d31298107f3e310b09797b07967832046a6",
+    "chainId": "eip155:1",
+    "name": "ROYAL SMART FUTURE TOKEN",
+    "precision": 18,
+    "color": "#B2842E",
+    "icon": "https://assets.coingecko.com/coins/images/26630/thumb/RSF200x200.png?1696525703",
+    "symbol": "RSFT",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x7825e833d495f3d1c28872415a4aee339d26ac88": {
+    "assetId": "eip155:1/erc20:0x7825e833d495f3d1c28872415a4aee339d26ac88",
+    "chainId": "eip155:1",
+    "name": "Wrapped Telos on Ethereum",
+    "precision": 18,
+    "color": "#6847B2",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x7825e833D495F3d1c28872415a4aee339D26AC88/logo.png",
+    "symbol": "WTLOS",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x785c34312dfa6b74f6f1829f79ade39042222168": {
+    "assetId": "eip155:1/erc20:0x785c34312dfa6b74f6f1829f79ade39042222168",
+    "chainId": "eip155:1",
+    "name": "Bumper",
+    "precision": 18,
+    "color": "#F76217",
+    "icon": "https://assets.coingecko.com/coins/images/17822/thumb/Bumper-Icon-Inverse-200.png?1696517342",
+    "symbol": "BUMP",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x7865ec47bef9823ad0010c4970ed90a5e8107e53": {
+    "assetId": "eip155:1/erc20:0x7865ec47bef9823ad0010c4970ed90a5e8107e53",
+    "chainId": "eip155:1",
+    "name": "NeoAudit AI",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/33181/thumb/logo-on-black_%282%29.png?1700925393",
+    "symbol": "NAAI",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x7866e48c74cbfb8183cd1a929cd9b95a7a5cb4f4": {
+    "assetId": "eip155:1/erc20:0x7866e48c74cbfb8183cd1a929cd9b95a7a5cb4f4",
+    "chainId": "eip155:1",
+    "name": "DexKit on Ethereum",
+    "precision": 18,
+    "color": "#ECECEC",
+    "icon": "https://assets.coingecko.com/coins/images/13187/thumb/7739.png?1696512969",
+    "symbol": "KIT",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x786e995a975c2ab7c1dd252a9019fb0c91c9ca83": {
+    "assetId": "eip155:1/erc20:0x786e995a975c2ab7c1dd252a9019fb0c91c9ca83",
+    "chainId": "eip155:1",
+    "name": "Landworld",
+    "precision": 18,
+    "color": "#DAF1F8",
+    "icon": "https://assets.coingecko.com/coins/images/25642/thumb/v-MhJXeSQuKSjz5gJRpptF5E5v95862DXJhkSeVabQcVsbBxzryaaQQ-eqwp0hvjrXQQmQRUKYW3gFfzUi3zVjhWoZKg79rmFF5dL6igKT0iWWpDtfNRcr6XA1mL9WiLgg6EOqwfmuLNu1-qan38OQJve32FKgJ7FL_fAyZRHvSuuIwO4qmcLPVqWo08oYELCC5ParMmS7FfNsHtu38u6j0gxw.jpg?1696524776",
+    "symbol": "LWD",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x788b6d2b37aa51d916f2837ae25b05f0e61339d1": {
+    "assetId": "eip155:1/erc20:0x788b6d2b37aa51d916f2837ae25b05f0e61339d1",
+    "chainId": "eip155:1",
+    "name": "Metavault DAO on Ethereum",
+    "precision": 9,
+    "color": "#443784",
+    "icon": "https://assets.coingecko.com/coins/images/23899/thumb/MVD_Coin-simple.png?1696523099",
+    "symbol": "MVD",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x788d86e00ab31db859c3d6b80d5a9375801d7f2a": {
+    "assetId": "eip155:1/erc20:0x788d86e00ab31db859c3d6b80d5a9375801d7f2a",
+    "chainId": "eip155:1",
+    "name": "TENET",
+    "precision": 18,
+    "color": "#1E1E1E",
+    "icon": "https://assets.coingecko.com/coins/images/30108/thumb/tenet_original.png?1696529030",
+    "symbol": "TENET",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x78a0a62fba6fb21a83fe8a3433d44c73a4017a6f": {
+    "assetId": "eip155:1/erc20:0x78a0a62fba6fb21a83fe8a3433d44c73a4017a6f",
+    "chainId": "eip155:1",
+    "name": "Open Exchange Token on Ethereum",
+    "precision": 18,
+    "color": "#0454FC",
+    "icon": "https://assets.coingecko.com/coins/images/30604/thumb/Logo2.png?1696529473",
+    "symbol": "OX",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x78d448a1d1fedaa3e916f467568e86081e0f4df5": {
+    "assetId": "eip155:1/erc20:0x78d448a1d1fedaa3e916f467568e86081e0f4df5",
+    "chainId": "eip155:1",
+    "name": "MetaBET",
+    "precision": 18,
+    "color": "#9A5A58",
+    "icon": "https://assets.coingecko.com/coins/images/22778/thumb/y5TphxL.jpeg?1696522080",
+    "symbol": "MBET",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x79126d32a86e6663f3aaac4527732d0701c1ae6c": {
+    "assetId": "eip155:1/erc20:0x79126d32a86e6663f3aaac4527732d0701c1ae6c",
+    "chainId": "eip155:1",
+    "name": "Dark Matter on Ethereum",
+    "precision": 18,
+    "color": "#BCC4DC",
+    "icon": "https://assets.coingecko.com/coins/images/14223/thumb/dmt.jpg?1696513938",
+    "symbol": "DMT",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x792833b894775bd769b3c602ba7172e59a83ab3f": {
+    "assetId": "eip155:1/erc20:0x792833b894775bd769b3c602ba7172e59a83ab3f",
+    "chainId": "eip155:1",
+    "name": "City Boys",
+    "precision": 18,
+    "color": "#101716",
+    "icon": "https://assets.coingecko.com/coins/images/32586/thumb/photo_2023-10-29_02.57.38.jpeg?1698564589",
+    "symbol": "TOONS",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x793786e2dd4cc492ed366a94b88a3ff9ba5e7546": {
+    "assetId": "eip155:1/erc20:0x793786e2dd4cc492ed366a94b88a3ff9ba5e7546",
+    "chainId": "eip155:1",
+    "name": "Axia on Ethereum",
+    "precision": 18,
+    "color": "#F43B5F",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x793786e2dd4Cc492ed366a94B88a3Ff9ba5E7546/logo.png",
+    "symbol": "AXIAV3",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x794baab6b878467f93ef17e2f2851ce04e3e34c8": {
+    "assetId": "eip155:1/erc20:0x794baab6b878467f93ef17e2f2851ce04e3e34c8",
+    "chainId": "eip155:1",
+    "name": "YIN Finance on Ethereum",
+    "precision": 18,
+    "color": "#1B2028",
+    "icon": "https://assets.coingecko.com/coins/images/18272/thumb/e37387ae6ee756fd.jpg?1696517766",
+    "symbol": "YIN",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x79650799e7899a802cb96c0bc33a6a8d4ce4936c": {
+    "assetId": "eip155:1/erc20:0x79650799e7899a802cb96c0bc33a6a8d4ce4936c",
+    "chainId": "eip155:1",
+    "name": "AICHAIN",
+    "precision": 18,
+    "color": "#069BDD",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x79650799e7899A802cB96C0Bc33a6a8d4CE4936C/logo.png",
+    "symbol": "AIT",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x7968bc6a03017ea2de509aaa816f163db0f35148": {
+    "assetId": "eip155:1/erc20:0x7968bc6a03017ea2de509aaa816f163db0f35148",
+    "chainId": "eip155:1",
+    "name": "Hedget",
+    "precision": 6,
+    "color": "#E8D380",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x7968bc6a03017eA2de509AAA816F163Db0f35148/logo.png",
+    "symbol": "HGET",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x798d1be841a82a273720ce31c822c61a67a601c3": {
+    "assetId": "eip155:1/erc20:0x798d1be841a82a273720ce31c822c61a67a601c3",
+    "chainId": "eip155:1",
+    "name": "DIGG",
+    "precision": 9,
+    "color": "#FBA304",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x798D1bE841a82a273720CE31c822C61a67a601C3/logo.png",
+    "symbol": "DIGG",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x7995ab36bb307afa6a683c24a25d90dc1ea83566": {
+    "assetId": "eip155:1/erc20:0x7995ab36bb307afa6a683c24a25d90dc1ea83566",
+    "chainId": "eip155:1",
+    "name": "HitChain",
+    "precision": 6,
+    "color": "#7C7C7C",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x7995ab36bB307Afa6A683C24a25d90Dc1Ea83566/logo.png",
+    "symbol": "HIT",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x799ebfabe77a6e34311eeee9825190b9ece32824": {
+    "assetId": "eip155:1/erc20:0x799ebfabe77a6e34311eeee9825190b9ece32824",
+    "chainId": "eip155:1",
+    "name": "Braintrust",
+    "precision": 18,
+    "color": "#E5E5E5",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x799ebfABE77a6E34311eeEe9825190B9ECe32824/logo.png",
+    "symbol": "BTRST",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x79b87d52a03ed26a19c1914be4ce37f812e2056c": {
+    "assetId": "eip155:1/erc20:0x79b87d52a03ed26a19c1914be4ce37f812e2056c",
+    "chainId": "eip155:1",
+    "name": "USP Token",
+    "precision": 18,
+    "color": "#D8ECF8",
+    "icon": "https://assets.coingecko.com/coins/images/28855/thumb/USP_Token.png?1696527829",
+    "symbol": "USP",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x79be75ffc64dd58e66787e4eae470c8a1fd08ba4": {
+    "assetId": "eip155:1/erc20:0x79be75ffc64dd58e66787e4eae470c8a1fd08ba4",
+    "chainId": "eip155:1",
+    "name": "Aave AMM DAI",
+    "precision": 18,
+    "color": "#F7B93C",
+    "icon": "https://assets.coingecko.com/coins/images/17197/thumb/aAMMDAI_2x.png?1696516754",
+    "symbol": "AAMMDAI",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x79c9e0410b6615e7ba9dd69614b0519325a2b047": {
+    "assetId": "eip155:1/erc20:0x79c9e0410b6615e7ba9dd69614b0519325a2b047",
+    "chainId": "eip155:1",
+    "name": "hiFLUF",
+    "precision": 18,
+    "color": "#A99AA6",
+    "icon": "https://assets.coingecko.com/coins/images/28602/thumb/hifluf.png?1696527588",
+    "symbol": "HIFLUF",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x79ca240990ec3f11381a8f80529828aad0628658": {
+    "assetId": "eip155:1/erc20:0x79ca240990ec3f11381a8f80529828aad0628658",
+    "chainId": "eip155:1",
+    "name": "DiVinciPay",
+    "precision": 9,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/33091/thumb/DVNCI_Token_Logo_Crop.png?1700603214",
+    "symbol": "DVNCI",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x79d4f0232a66c4c91b89c76362016a1707cfbf4f": {
+    "assetId": "eip155:1/erc20:0x79d4f0232a66c4c91b89c76362016a1707cfbf4f",
+    "chainId": "eip155:1",
+    "name": "VNX Swiss Franc on Ethereum",
+    "precision": 18,
+    "color": "#E3D693",
+    "icon": "https://assets.coingecko.com/coins/images/29547/thumb/VNXCHF_%282%29.png?1696528488",
+    "symbol": "VCHF",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x7a2631aa3590fd6361d2d7afb51d5fe9d33ab2ec": {
+    "assetId": "eip155:1/erc20:0x7a2631aa3590fd6361d2d7afb51d5fe9d33ab2ec",
+    "chainId": "eip155:1",
+    "name": "CHECK DM SER",
+    "precision": 9,
+    "color": "#F4DCD2",
+    "icon": "https://assets.coingecko.com/coins/images/31936/thumb/CHECKDMLOGO-2.png?1696530743",
+    "symbol": "CHECKDM",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x7a29fb472f0e62bce6127f125e8d5ad2a9fa3839": {
+    "assetId": "eip155:1/erc20:0x7a29fb472f0e62bce6127f125e8d5ad2a9fa3839",
+    "chainId": "eip155:1",
+    "name": "Rebirth Protocol",
+    "precision": 18,
+    "color": "#BCBDE0",
+    "icon": "https://assets.coingecko.com/coins/images/32447/thumb/Rebirth.jpg?1698239321",
+    "symbol": "RBH",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x7a2bc711e19ba6aff6ce8246c546e8c4b4944dfd": {
+    "assetId": "eip155:1/erc20:0x7a2bc711e19ba6aff6ce8246c546e8c4b4944dfd",
+    "chainId": "eip155:1",
+    "name": "WAXE",
+    "precision": 8,
+    "color": "#64C034",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x7a2Bc711E19ba6aff6cE8246C546E8c4B4944DFD/logo.png",
+    "symbol": "WAXE",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x7a3f7f6675514d4d611b442a4b76752f6ab77670": {
+    "assetId": "eip155:1/erc20:0x7a3f7f6675514d4d611b442a4b76752f6ab77670",
+    "chainId": "eip155:1",
+    "name": "Tora Inu",
+    "precision": 18,
+    "color": "#976027",
+    "icon": "https://assets.coingecko.com/coins/images/28531/thumb/z9b6m1yS_400x400.png?1696527524",
+    "symbol": "TORA",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x7a41e0517a5eca4fdbc7fbeba4d4c47b9ff6dc63": {
+    "assetId": "eip155:1/erc20:0x7a41e0517a5eca4fdbc7fbeba4d4c47b9ff6dc63",
+    "chainId": "eip155:1",
+    "name": "Zeusshield",
+    "precision": 18,
+    "color": "#146CBC",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x7A41e0517a5ecA4FdbC7FbebA4D4c47B9fF6DC63/logo.png",
+    "symbol": "ZSC",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x7a58c0be72be218b41c608b7fe7c5bb630736c71": {
+    "assetId": "eip155:1/erc20:0x7a58c0be72be218b41c608b7fe7c5bb630736c71",
+    "chainId": "eip155:1",
+    "name": "ConstitutionDAO",
+    "precision": 18,
+    "color": "#593E23",
+    "icon": "https://assets.coingecko.com/coins/images/20612/thumb/GN_UVm3d_400x400.jpg?1696520017",
+    "symbol": "PEOPLE",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x7a5ce6abd131ea6b148a022cb76fc180ae3315a6": {
+    "assetId": "eip155:1/erc20:0x7a5ce6abd131ea6b148a022cb76fc180ae3315a6",
+    "chainId": "eip155:1",
+    "name": "bAlpha",
+    "precision": 18,
+    "color": "#3B4D64",
+    "icon": "https://assets.coingecko.com/coins/images/14224/thumb/logo_bAlpha_200.png?1696513939",
+    "symbol": "BALPHA",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x7a5d3a9dcd33cb8d527f7b5f96eb4fef43d55636": {
+    "assetId": "eip155:1/erc20:0x7a5d3a9dcd33cb8d527f7b5f96eb4fef43d55636",
+    "chainId": "eip155:1",
+    "name": "RadioShack on Ethereum",
+    "precision": 18,
+    "color": "#F5E7E0",
+    "icon": "https://assets.coingecko.com/coins/images/25307/thumb/ZVoPiysPJq6dPIZm_Se-6vjmsBepwhHlTQfdYZRILbHyVVTRUYCO-wmJJ4zT10HXCGv1j-ZyWr2u2sBaVlap5Y-ILqeXZuIquWdBDxxG0E0qDpgH7omLqYdgWWLSM_TUK9d1PiiYdu6bERdCDaucgFjlqwmhVQK4uV4jyUiXzchVUnu8Qt6SnxlNxz88G0mQ_tfiwkFv_vKqtgb1CcPycVZVz9.jpg?1696524444",
+    "symbol": "RADIO",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x7a73839bd0e5cded853cb01aa9773f8989381065": {
+    "assetId": "eip155:1/erc20:0x7a73839bd0e5cded853cb01aa9773f8989381065",
+    "chainId": "eip155:1",
+    "name": "UpBots on Ethereum",
+    "precision": 18,
+    "color": "#F4F4FC",
+    "icon": "https://assets.coingecko.com/coins/images/12476/thumb/UBXT.png?1696512294",
+    "symbol": "UBXN",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x7a786dac1f315c8a0e9962172ad8ae0c04d9c9b6": {
+    "assetId": "eip155:1/erc20:0x7a786dac1f315c8a0e9962172ad8ae0c04d9c9b6",
+    "chainId": "eip155:1",
+    "name": "MemeDAO",
+    "precision": 18,
+    "color": "#C27DED",
+    "icon": "https://assets.coingecko.com/coins/images/30468/thumb/memeDAO_200x200.png?1696529354",
+    "symbol": "MEMD",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x7a83ff237e7870d8d6c3485920ebe654d2841315": {
+    "assetId": "eip155:1/erc20:0x7a83ff237e7870d8d6c3485920ebe654d2841315",
+    "chainId": "eip155:1",
+    "name": "hiOD",
+    "precision": 18,
+    "color": "#10162A",
+    "icon": "https://assets.coingecko.com/coins/images/28238/thumb/hiod.png?1696527241",
+    "symbol": "HIOD",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x7a8adcf432ebcc2311b955d176ee4bfed13bb9a7": {
+    "assetId": "eip155:1/erc20:0x7a8adcf432ebcc2311b955d176ee4bfed13bb9a7",
+    "chainId": "eip155:1",
+    "name": "MandoX",
+    "precision": 9,
+    "color": "#51A19C",
+    "icon": "https://assets.coingecko.com/coins/images/24968/thumb/NmqN8g7.png?1696524121",
+    "symbol": "MANDOX",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x7a939bb714fd2a48ebeb1e495aa9aaa74ba9fa68": {
+    "assetId": "eip155:1/erc20:0x7a939bb714fd2a48ebeb1e495aa9aaa74ba9fa68",
+    "chainId": "eip155:1",
+    "name": "Electric Vehicle Zone",
+    "precision": 18,
+    "color": "#F0EFE0",
+    "icon": "https://assets.coingecko.com/coins/images/9456/thumb/kLohzILUIln6mHFYOlecpWjINVIH-BVghP2vRTeuD0XteaQa7Lpn4sLcuPN4gHw8MU2pKWZCJRNwBmyyl1CYxplCLDcgSVihMC7vvfmkepY-_O_ImWBA27s4pKNlhcBnBYrc8y5WH0ZB2CjmqPh-32nPslrv329tqFWr2DAR8dl4R5LZGgeZ1ubCdtMoUua6gEL3umYShHBxrYLto.jpg?1696509547",
+    "symbol": "EVZ",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x7a9b4f64712aac0cc4a0ae78b35f813c479ec46f": {
+    "assetId": "eip155:1/erc20:0x7a9b4f64712aac0cc4a0ae78b35f813c479ec46f",
+    "chainId": "eip155:1",
+    "name": "Monke",
+    "precision": 18,
+    "color": "#333328",
+    "icon": "https://assets.coingecko.com/coins/images/32054/thumb/monke.jpeg?1696530851",
+    "symbol": "MONKE",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x7aa2f174fbc4d0a17b34adfb9b3e1dc029b46d76": {
+    "assetId": "eip155:1/erc20:0x7aa2f174fbc4d0a17b34adfb9b3e1dc029b46d76",
+    "chainId": "eip155:1",
+    "name": "RADA Foundation",
+    "precision": 18,
+    "color": "#32358F",
+    "icon": "https://assets.coingecko.com/coins/images/31645/thumb/1.png?1696530461",
+    "symbol": "RADA",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x7ac168c81f4f3820fa3f22603ce5864d6ab3c547": {
+    "assetId": "eip155:1/erc20:0x7ac168c81f4f3820fa3f22603ce5864d6ab3c547",
+    "chainId": "eip155:1",
+    "name": "Staked ACME on Ethereum",
+    "precision": 8,
+    "color": "#E5C9F0",
+    "icon": "https://assets.coingecko.com/coins/images/29756/thumb/stacme-avatar.jpg?1696528688",
+    "symbol": "STACME",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x7ae075546e8042dc263fa0eb6519ce0a04eabb93": {
+    "assetId": "eip155:1/erc20:0x7ae075546e8042dc263fa0eb6519ce0a04eabb93",
+    "chainId": "eip155:1",
+    "name": "Metal Tools",
+    "precision": 9,
+    "color": "#858B89",
+    "icon": "https://assets.coingecko.com/coins/images/31340/thumb/logonew.png?1696530158",
+    "symbol": "METAL",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x7ae0d42f23c33338de15bfa89c7405c068d9dc0a": {
+    "assetId": "eip155:1/erc20:0x7ae0d42f23c33338de15bfa89c7405c068d9dc0a",
+    "chainId": "eip155:1",
+    "name": "Shibaverse on Ethereum",
+    "precision": 18,
+    "color": "#DC7714",
+    "icon": "https://assets.coingecko.com/coins/images/18407/thumb/logo_200.png?1696517897",
+    "symbol": "VERSE",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x7ae1d57b58fa6411f32948314badd83583ee0e8c": {
+    "assetId": "eip155:1/erc20:0x7ae1d57b58fa6411f32948314badd83583ee0e8c",
+    "chainId": "eip155:1",
+    "name": "Dope Wars Paper on Ethereum",
+    "precision": 18,
+    "color": "#FCD7DC",
+    "icon": "https://assets.coingecko.com/coins/images/18166/thumb/EQHGcBO__400x400.jpeg?1696517667",
+    "symbol": "PAPER",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x7b123f53421b1bf8533339bfbdc7c98aa94163db": {
+    "assetId": "eip155:1/erc20:0x7b123f53421b1bf8533339bfbdc7c98aa94163db",
+    "chainId": "eip155:1",
+    "name": "dfohub",
+    "precision": 18,
+    "color": "#6404FB",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x7b123f53421b1bF8533339BFBdc7C98aA94163db/logo.png",
+    "symbol": "BUIDL",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x7b37a55ffb30c11d95f943672ae98f28cfb7b087": {
+    "assetId": "eip155:1/erc20:0x7b37a55ffb30c11d95f943672ae98f28cfb7b087",
+    "chainId": "eip155:1",
+    "name": "Fufu Token",
+    "precision": 2,
+    "color": "#EDB448",
+    "icon": "https://assets.coingecko.com/coins/images/32225/thumb/6522723afff7e2e198ce38c6_FufuTokenIcon_250x250.png?1696931163",
+    "symbol": "FUFU",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x7b4328c127b85369d9f82ca0503b000d09cf9180": {
+    "assetId": "eip155:1/erc20:0x7b4328c127b85369d9f82ca0503b000d09cf9180",
+    "chainId": "eip155:1",
+    "name": "Dogechain",
+    "precision": 18,
+    "color": "#7C56C5",
+    "icon": "https://assets.coingecko.com/coins/images/26828/thumb/dogechain.jpeg?1696525887",
+    "symbol": "DC",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x7b744eea1deca2f1b7b31f15ba036fa1759452d7": {
+    "assetId": "eip155:1/erc20:0x7b744eea1deca2f1b7b31f15ba036fa1759452d7",
+    "chainId": "eip155:1",
+    "name": "El Hippo",
+    "precision": 18,
+    "color": "#04131C",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x7b744eEa1dECa2f1B7b31F15Ba036Fa1759452d7/logo.png",
+    "symbol": "HIPP",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x7b7983967409fce461ea8bbdf9ed37631b1d59c9": {
+    "assetId": "eip155:1/erc20:0x7b7983967409fce461ea8bbdf9ed37631b1d59c9",
+    "chainId": "eip155:1",
+    "name": "KPOP Coin",
+    "precision": 18,
+    "color": "#E40D25",
+    "icon": "https://assets.coingecko.com/coins/images/15923/thumb/kpop.PNG?1696515536",
+    "symbol": "KPOP",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x7b9432881fff2a9527cfc2efb4d33fc0d7f8e861": {
+    "assetId": "eip155:1/erc20:0x7b9432881fff2a9527cfc2efb4d33fc0d7f8e861",
+    "chainId": "eip155:1",
+    "name": "Contrax",
+    "precision": 8,
+    "color": "#141014",
+    "icon": "https://assets.coingecko.com/coins/images/31687/thumb/contrax_100.png?1696530505",
+    "symbol": "CONTRAX",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x7b95ec873268a6bfc6427e7a28e396db9d0ebc65": {
+    "assetId": "eip155:1/erc20:0x7b95ec873268a6bfc6427e7a28e396db9d0ebc65",
+    "chainId": "eip155:1",
+    "name": "Aave v3 CRV on Ethereum",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/32901/thumb/CRV.png?1699802172",
+    "symbol": "ACRV",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x7ba5273d53d8a964b0a338e25def0c082f5c29d3": {
+    "assetId": "eip155:1/erc20:0x7ba5273d53d8a964b0a338e25def0c082f5c29d3",
+    "chainId": "eip155:1",
+    "name": "WEN",
+    "precision": 8,
+    "color": "#B1A29A",
+    "icon": "https://assets.coingecko.com/coins/images/31835/thumb/Wen_small.png?1696530649",
+    "symbol": "WEN",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x7bd44cf5c0566aab26150a0cd5c3d20c5535686f": {
+    "assetId": "eip155:1/erc20:0x7bd44cf5c0566aab26150a0cd5c3d20c5535686f",
+    "chainId": "eip155:1",
+    "name": "Evil Pepe",
+    "precision": 18,
+    "color": "#1D250E",
+    "icon": "https://assets.coingecko.com/coins/images/31201/thumb/IMG_20230803_120336_441.png?1696530028",
+    "symbol": "EVILPEPE",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x7bef710a5759d197ec0bf621c3df802c2d60d848": {
+    "assetId": "eip155:1/erc20:0x7bef710a5759d197ec0bf621c3df802c2d60d848",
+    "chainId": "eip155:1",
+    "name": "SHOPX",
+    "precision": 18,
+    "color": "#198B73",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x7BEF710a5759d197EC0Bf621c3Df802C2D60D848/logo.png",
+    "symbol": "SHOPX",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x7c07f7abe10ce8e33dc6c5ad68fe033085256a84": {
+    "assetId": "eip155:1/erc20:0x7c07f7abe10ce8e33dc6c5ad68fe033085256a84",
+    "chainId": "eip155:1",
+    "name": "Interest Compounding ETH Index",
+    "precision": 18,
+    "color": "#41BEC1",
+    "icon": "https://assets.coingecko.com/coins/images/24483/thumb/icETH-token-logo.png?1696523661",
+    "symbol": "ICETH",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x7c28310cc0b8d898c57b93913098e74a3ba23228": {
+    "assetId": "eip155:1/erc20:0x7c28310cc0b8d898c57b93913098e74a3ba23228",
+    "chainId": "eip155:1",
+    "name": "PEACE COIN",
+    "precision": 18,
+    "color": "#ECF8F9",
+    "icon": "https://assets.coingecko.com/coins/images/32470/thumb/PEACE.jpg?1698259975",
+    "symbol": "PCE",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x7c32db0645a259fae61353c1f891151a2e7f8c1e": {
+    "assetId": "eip155:1/erc20:0x7c32db0645a259fae61353c1f891151a2e7f8c1e",
+    "chainId": "eip155:1",
+    "name": "Potentiam",
+    "precision": 18,
+    "color": "#5B0D76",
+    "icon": "https://assets.coingecko.com/coins/images/2349/thumb/ptm.png?1696503225",
+    "symbol": "PTM",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x7c3ed93b03e67c1fa240395b28e38c4386321b58": {
+    "assetId": "eip155:1/erc20:0x7c3ed93b03e67c1fa240395b28e38c4386321b58",
+    "chainId": "eip155:1",
+    "name": "Wally Bot",
+    "precision": 9,
+    "color": "#838585",
+    "icon": "https://assets.coingecko.com/coins/images/31046/thumb/IMG_4215.jpeg?1696529881",
+    "symbol": "WALLY",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x7c5095bb2dae81bb9a21ee9f1b7815cd710194e5": {
+    "assetId": "eip155:1/erc20:0x7c5095bb2dae81bb9a21ee9f1b7815cd710194e5",
+    "chainId": "eip155:1",
+    "name": "Obama6900",
+    "precision": 18,
+    "color": "#CFD27E",
+    "icon": "https://assets.coingecko.com/coins/images/32378/thumb/obamasmall.jpg?1698036300",
+    "symbol": "OBX",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x7c5a0ce9267ed19b22f8cae653f198e3e8daf098": {
+    "assetId": "eip155:1/erc20:0x7c5a0ce9267ed19b22f8cae653f198e3e8daf098",
+    "chainId": "eip155:1",
+    "name": "Santiment Network",
+    "precision": 18,
+    "color": "#D4D4D4",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x7C5A0CE9267ED19B22F8cae653F198e3E8daf098/logo.png",
+    "symbol": "SAN",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x7c5d5100b339fe7d995a893af6cb496b9474373c": {
+    "assetId": "eip155:1/erc20:0x7c5d5100b339fe7d995a893af6cb496b9474373c",
+    "chainId": "eip155:1",
+    "name": "Loon Network",
+    "precision": 18,
+    "color": "#DAF1F4",
+    "icon": "https://assets.coingecko.com/coins/images/11673/thumb/ErUvUA2D4Q8hPWXxZBIuiI8MD0nrU2rDEY56d6EtVzJDTqlflAFXa2bgJ_kFwb8OtotfAvESvm-dik7d_SeJJh23f6RosUJ0AzU64QcKk5H3fu300KOJjFDFsntpRWARFKI5S4Cc8F3pcRPBkFIw6oPF58mKi83sa2DJPl-E5JMqmj6rJh5acb7Fvi80kfziWv3DHhhpg1YJYMP.jpg?1696511563",
+    "symbol": "LOON",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x7c8155909cd385f120a56ef90728dd50f9ccbe52": {
+    "assetId": "eip155:1/erc20:0x7c8155909cd385f120a56ef90728dd50f9ccbe52",
+    "chainId": "eip155:1",
+    "name": "Nahmii",
+    "precision": 15,
+    "color": "#DA1F9F",
+    "icon": "https://assets.coingecko.com/coins/images/9786/thumb/nahmii-sm_icon-full-color.png?1696509845",
+    "symbol": "NII",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x7c84e62859d0715eb77d1b1c4154ecd6abb21bec": {
+    "assetId": "eip155:1/erc20:0x7c84e62859d0715eb77d1b1c4154ecd6abb21bec",
+    "chainId": "eip155:1",
+    "name": "Shping",
+    "precision": 18,
+    "color": "#E62A51",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x7C84e62859D0715eb77d1b1C4154Ecd6aBB21BEC/logo.png",
+    "symbol": "SHPING",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x7c95e7ad2b349dc2f82d0f1117a44b561fa2699a": {
+    "assetId": "eip155:1/erc20:0x7c95e7ad2b349dc2f82d0f1117a44b561fa2699a",
+    "chainId": "eip155:1",
+    "name": "Gracy",
+    "precision": 18,
+    "color": "#475BA4",
+    "icon": "https://assets.coingecko.com/coins/images/31943/thumb/gracy_200x200.png?1696530750",
+    "symbol": "GRACY",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x7ca4408137eb639570f8e647d9bd7b7e8717514a": {
+    "assetId": "eip155:1/erc20:0x7ca4408137eb639570f8e647d9bd7b7e8717514a",
+    "chainId": "eip155:1",
+    "name": "Alpaca City on Ethereum",
+    "precision": 18,
+    "color": "#FC775C",
+    "icon": "https://assets.coingecko.com/coins/images/13070/thumb/alpaca_logo.png?1696512859",
+    "symbol": "ALPA",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x7ca5af5ba3472af6049f63c1abc324475d44efc1": {
+    "assetId": "eip155:1/erc20:0x7ca5af5ba3472af6049f63c1abc324475d44efc1",
+    "chainId": "eip155:1",
+    "name": "KONDUX",
+    "precision": 9,
+    "color": "#D6D6D6",
+    "icon": "https://assets.coingecko.com/coins/images/28244/thumb/kndx.png?1696527247",
+    "symbol": "KNDX",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x7cb683151a83c2b10a30cbb003cda9996228a2ba": {
+    "assetId": "eip155:1/erc20:0x7cb683151a83c2b10a30cbb003cda9996228a2ba",
+    "chainId": "eip155:1",
+    "name": "IYKYK",
+    "precision": 18,
+    "color": "#050605",
+    "icon": "https://assets.coingecko.com/coins/images/30022/thumb/iykyk200.png?1696528946",
+    "symbol": "IYKYK",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x7cc97bf17c5adabe25f9d19d15a1ec8a1ad65f14": {
+    "assetId": "eip155:1/erc20:0x7cc97bf17c5adabe25f9d19d15a1ec8a1ad65f14",
+    "chainId": "eip155:1",
+    "name": "Wolverinu",
+    "precision": 18,
+    "color": "#51110F",
+    "icon": "https://assets.coingecko.com/coins/images/27872/thumb/LOGO3232.jpg?1696526890",
+    "symbol": "WOLVERINU",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x7cda79830faf07ed696fe220566116951ced36a7": {
+    "assetId": "eip155:1/erc20:0x7cda79830faf07ed696fe220566116951ced36a7",
+    "chainId": "eip155:1",
+    "name": "Maya Preferred",
+    "precision": 18,
+    "color": "#211F19",
+    "icon": "https://assets.coingecko.com/coins/images/8081/thumb/2u0OXhT9_400x400.png?1696508303",
+    "symbol": "MAYP",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x7cdbfc86a0bfa20f133748b0cf5cea5b787b182c": {
+    "assetId": "eip155:1/erc20:0x7cdbfc86a0bfa20f133748b0cf5cea5b787b182c",
+    "chainId": "eip155:1",
+    "name": "TokenSight",
+    "precision": 18,
+    "color": "#F4FAFC",
+    "icon": "https://assets.coingecko.com/coins/images/32514/thumb/token-coingecko.png?1698401758",
+    "symbol": "TKST",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x7cfea0dd176651e7b5a1ced9c4faf8ee295315fd": {
+    "assetId": "eip155:1/erc20:0x7cfea0dd176651e7b5a1ced9c4faf8ee295315fd",
+    "chainId": "eip155:1",
+    "name": "Prime Numbers Ecosystem on Ethereum",
+    "precision": 18,
+    "color": "#46275B",
+    "icon": "https://assets.coingecko.com/coins/images/22669/thumb/primenumers_favicon_01.png?1696521981",
+    "symbol": "PRNT",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x7d1afa7b718fb893db30a3abc0cfc608aacfebb0": {
+    "assetId": "eip155:1/erc20:0x7d1afa7b718fb893db30a3abc0cfc608aacfebb0",
+    "chainId": "eip155:1",
+    "name": "Polygon on Ethereum",
+    "precision": 18,
+    "color": "#2B93FB",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x7D1AfA7B718fb893dB30A3aBc0Cfc608AaCfeBB0/logo.png",
+    "symbol": "MATIC",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x7d25d9f10cd224ecce0bc824a2ec800db81c01d7": {
+    "assetId": "eip155:1/erc20:0x7d25d9f10cd224ecce0bc824a2ec800db81c01d7",
+    "chainId": "eip155:1",
+    "name": "ETHOPT",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/13424/thumb/KHP6ebV.jpeg?1696513184",
+    "symbol": "OPT",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x7d29a64504629172a429e64183d6673b9dacbfce": {
+    "assetId": "eip155:1/erc20:0x7d29a64504629172a429e64183d6673b9dacbfce",
+    "chainId": "eip155:1",
+    "name": "Vectorspace AI",
+    "precision": 18,
+    "color": "#6DA1AC",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x7D29A64504629172a429e64183D6673b9dAcbFCe/logo.png",
+    "symbol": "VXV",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x7d3b4f8d5dd14a0c263c4bee7be434c15e188d3e": {
+    "assetId": "eip155:1/erc20:0x7d3b4f8d5dd14a0c263c4bee7be434c15e188d3e",
+    "chainId": "eip155:1",
+    "name": "Moe",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/32680/thumb/moe.png?1698934350",
+    "symbol": "MOE",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x7d4b8cce0591c9044a22ee543533b72e976e36c3": {
+    "assetId": "eip155:1/erc20:0x7d4b8cce0591c9044a22ee543533b72e976e36c3",
+    "chainId": "eip155:1",
+    "name": "Change",
+    "precision": 18,
+    "color": "#3CDCB4",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x7d4b8Cce0591C9044a22ee543533b72E976E36C3/logo.png",
+    "symbol": "CAG",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x7d5121505149065b562c789a0145ed750e6e8cdd": {
+    "assetId": "eip155:1/erc20:0x7d5121505149065b562c789a0145ed750e6e8cdd",
+    "chainId": "eip155:1",
+    "name": "Victoria VR",
+    "precision": 18,
+    "color": "#F6ECC3",
+    "icon": "https://assets.coingecko.com/coins/images/21178/thumb/vr.png?1696520554",
+    "symbol": "VR",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x7d60de2e7d92cb5c863bc82f8d59b37c59fc0a7a": {
+    "assetId": "eip155:1/erc20:0x7d60de2e7d92cb5c863bc82f8d59b37c59fc0a7a",
+    "chainId": "eip155:1",
+    "name": "DeeLance",
+    "precision": 18,
+    "color": "#04A454",
+    "icon": "https://assets.coingecko.com/coins/images/31404/thumb/Deelancer-Final-LOGO.png?1696530220",
+    "symbol": "DLANCE",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x7d8146cf21e8d7cbe46054e01588207b51198729": {
+    "assetId": "eip155:1/erc20:0x7d8146cf21e8d7cbe46054e01588207b51198729",
+    "chainId": "eip155:1",
+    "name": "BOB Token",
+    "precision": 18,
+    "color": "#D4DBF3",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x7D8146cf21e8D7cbe46054e01588207b51198729/logo.png",
+    "symbol": "BOB",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x7d8d7c26179b7a6aebbf66a91c38ed92d5b4996b": {
+    "assetId": "eip155:1/erc20:0x7d8d7c26179b7a6aebbf66a91c38ed92d5b4996b",
+    "chainId": "eip155:1",
+    "name": "Teh Fund",
+    "precision": 18,
+    "color": "#ADA192",
+    "icon": "https://assets.coingecko.com/coins/images/28969/thumb/IMG_20230203_091543_056.png?1696527942",
+    "symbol": "FUND",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x7d8daff6d70cead12c6f077048552cf89130a2b1": {
+    "assetId": "eip155:1/erc20:0x7d8daff6d70cead12c6f077048552cf89130a2b1",
+    "chainId": "eip155:1",
+    "name": "ARCS",
+    "precision": 18,
+    "color": "#AE56FC",
+    "icon": "https://assets.coingecko.com/coins/images/10068/thumb/arcs.png?1696510099",
+    "symbol": "ARX",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x7da2641000cbb407c329310c461b2cb9c70c3046": {
+    "assetId": "eip155:1/erc20:0x7da2641000cbb407c329310c461b2cb9c70c3046",
+    "chainId": "eip155:1",
+    "name": "Delysium on Ethereum",
+    "precision": 18,
+    "color": "#5C5C5C",
+    "icon": "https://assets.coingecko.com/coins/images/29299/thumb/AGI_logo_200.png?1696528251",
+    "symbol": "AGI",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x7dd9c5cba05e151c895fde1cf355c9a1d5da6429": {
+    "assetId": "eip155:1/erc20:0x7dd9c5cba05e151c895fde1cf355c9a1d5da6429",
+    "chainId": "eip155:1",
+    "name": "Golem",
+    "precision": 18,
+    "color": "#1C1CAC",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x7DD9c5Cba05E151C895FDe1CF355C9A1D5DA6429/logo.png",
+    "symbol": "GLM",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x7ddc52c4de30e94be3a6a0a2b259b2850f421989": {
+    "assetId": "eip155:1/erc20:0x7ddc52c4de30e94be3a6a0a2b259b2850f421989",
+    "chainId": "eip155:1",
+    "name": "Gomining Token on Ethereum",
+    "precision": 18,
+    "color": "#313131",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x7Ddc52c4De30e94Be3A6A0A2b259b2850f421989/logo.png",
+    "symbol": "GMT",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x7de91b204c1c737bcee6f000aaa6569cf7061cb7": {
+    "assetId": "eip155:1/erc20:0x7de91b204c1c737bcee6f000aaa6569cf7061cb7",
+    "chainId": "eip155:1",
+    "name": "Robonomics Network",
+    "precision": 9,
+    "color": "#BFDAF7",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x7dE91B204C1C737bcEe6F000AAA6569Cf7061cb7/logo.png",
+    "symbol": "XRT",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x7deb5e830be29f91e298ba5ff1356bb7f8146998": {
+    "assetId": "eip155:1/erc20:0x7deb5e830be29f91e298ba5ff1356bb7f8146998",
+    "chainId": "eip155:1",
+    "name": "Aave MKR v1",
+    "precision": 18,
+    "color": "#58B5AD",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x7deB5e830be29F91E298ba5FF1356BB7f8146998/logo.png",
+    "symbol": "AMKR",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x7dedbce5a2e31e4c75f87fea60bf796c17718715": {
+    "assetId": "eip155:1/erc20:0x7dedbce5a2e31e4c75f87fea60bf796c17718715",
+    "chainId": "eip155:1",
+    "name": "Penpie on Ethereum",
+    "precision": 18,
+    "color": "#2F8294",
+    "icon": "https://assets.coingecko.com/coins/images/30760/thumb/PNP_Token.png?1696529629",
+    "symbol": "PNP",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x7df18e4efd6e6f73cfb462937dac40fe42533016": {
+    "assetId": "eip155:1/erc20:0x7df18e4efd6e6f73cfb462937dac40fe42533016",
+    "chainId": "eip155:1",
+    "name": "ZKitty Bot",
+    "precision": 18,
+    "color": "#F3B374",
+    "icon": "https://assets.coingecko.com/coins/images/31474/thumb/AnN0reNi_400x400.jpg?1696530286",
+    "symbol": "ZKITTY",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x7df4122d3eae29fc8fb6be58d9177e8e560be4fb": {
+    "assetId": "eip155:1/erc20:0x7df4122d3eae29fc8fb6be58d9177e8e560be4fb",
+    "chainId": "eip155:1",
+    "name": "BlockChainCoinX on Ethereum",
+    "precision": 6,
+    "color": "#D6D6D6",
+    "icon": "https://assets.coingecko.com/coins/images/32276/thumb/xccxx.png?1697180263",
+    "symbol": "XCCX",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x7e5981c2e072f53a0323d3d80baca3e31fb1550c": {
+    "assetId": "eip155:1/erc20:0x7e5981c2e072f53a0323d3d80baca3e31fb1550c",
+    "chainId": "eip155:1",
+    "name": "JovJou",
+    "precision": 18,
+    "color": "#04CCFC",
+    "icon": "https://assets.coingecko.com/coins/images/32424/thumb/jj_2.png?1698118523",
+    "symbol": "JOVJOU",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x7e77dcb127f99ece88230a64db8d595f31f1b068": {
+    "assetId": "eip155:1/erc20:0x7e77dcb127f99ece88230a64db8d595f31f1b068",
+    "chainId": "eip155:1",
+    "name": "Escrowed Illuvium 2",
+    "precision": 18,
+    "color": "#402C77",
+    "icon": "https://assets.coingecko.com/coins/images/28860/thumb/silv2.png?1696527834",
+    "symbol": "SILV2",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x7e84c0890ca316458d41497146b2176f6a226277": {
+    "assetId": "eip155:1/erc20:0x7e84c0890ca316458d41497146b2176f6a226277",
+    "chainId": "eip155:1",
+    "name": "RAVE NFT",
+    "precision": 18,
+    "color": "#C8C8C8",
+    "icon": "https://assets.coingecko.com/coins/images/32535/thumb/rave.jpg?1698461782",
+    "symbol": "RAVE",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x7e85b369d170ebf127367400b1f399cb18027309": {
+    "assetId": "eip155:1/erc20:0x7e85b369d170ebf127367400b1f399cb18027309",
+    "chainId": "eip155:1",
+    "name": "JUSTANEGG",
+    "precision": 18,
+    "color": "#E0DAD2",
+    "icon": "https://assets.coingecko.com/coins/images/30461/thumb/logo.png?1696529348",
+    "symbol": "EGG",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x7e877b99897d514da01bd1d177e693ec639961af": {
+    "assetId": "eip155:1/erc20:0x7e877b99897d514da01bd1d177e693ec639961af",
+    "chainId": "eip155:1",
+    "name": "Oggy Inu  ETH ",
+    "precision": 9,
+    "color": "#FFFFFF",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x7e877b99897D514da01bD1d177E693EC639961Af/logo.png",
+    "symbol": "OGGY",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x7e9afd25f5ec0eb24d7d4b089ae7ecb9651c8b1f": {
+    "assetId": "eip155:1/erc20:0x7e9afd25f5ec0eb24d7d4b089ae7ecb9651c8b1f",
+    "chainId": "eip155:1",
+    "name": "baoUSD LUSD StablePool",
+    "precision": 18,
+    "color": "#34DC24",
+    "icon": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAIAAAACACAMAAAD04JH5AAADAFBMVEUtN0g12Cb///8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABvuUvuAAABAHRSTlP/////AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAf6K/dgAAQItJREFUeNoBgEB/vwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAgICAgICAgICAgICAgICAgICAgICAQEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgICAgICAgICAgICAgICAQEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgICAgICAgICAgICAgICAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgICAgICAgICAgICAgICAwAAAAAAAAAAAAAAAAAAAAACAgICAgICAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgICAgICAgICAgICAgICAwAAAAAAAAAAAAAAAAAAAAACAgICAgICAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgICAgICAgICAgICAgICAwAAAAAAAAAAAAAAAAAAAAACAgICAgICAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgICAgICAgICAgICAgICAwAAAAAAAAAAAAAAAAAAAAACAgICAgICAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgICAgICAgICAgICAgICAwAAAAAAAAAAAAAAAAAAAAACAgICAgICAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgICAgICAgICAgICAgICAwAAAAAAAAAAAAAAAAAAAAACAgICAgICAwMDAwMDAwMDAwMDAwMDAwMDAwMDAgICAgICAgEBAQEBAQECAgICAgICAAMDAwMDAwMDAwMDAwMDAwMDAwMDAgICAgICAgEBAQEBAQECAgICAgICAQMDAwMDAwMDAwMDAwMDAwMDAwMDAgICAgICAgAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAgICAgICAgICAgICAgICAgICAgICAQMDAwMDAwMBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAwMDAwMDAwMDAwMDAwMDAwMDAwMDAgICAgICAgEBAQEBAQECAgICAgICAwMDAwMDAwMDAwMDAwMDAwMDAwMDAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAgICAgICAgICAgICAgICAgICAgICAQMDAwMDAwMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQEBAwMDAwMDAgICAgICAgICAgICAgICAgICAgICAAMDAwMDAwMAAAAAAAAAAAACAgICAgICAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQEBAQEBAQEBAgICAgICAgICAgICAgICAgICAgICAwAAAAAAAAAAAAAAAAAAAAACAgICAgICAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQEBAQEBAQEBAgICAgICAgICAgICAgICAgICAgICAwAAAAAAAAAAAAAAAAAAAAACAgICAgICAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQEBAQEBAQEBAgICAgICAgICAgICAgICAgICAgICAwAAAAAAAAAAAAAAAAAAAAACAgICAgICAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQEBAQEBAQEBAgICAgICAgICAgICAgICAgICAgICAwAAAAAAAAAAAAAAAAAAAAACAgICAgICAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQEBAQEBAQEBAgICAgICAgICAgICAgICAgICAgICAwAAAAAAAAAAAAAAAAAAAAACAgICAgICAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQEBAQEBAQEBAgICAgICAgICAgICAgICAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwEBAQEBAQEBAQEBAQEBAwMDAwMDAwAAAAAAAAAAAAAAAAAAAAAAAAEBAQMDAwMDAwMBAQEBAQEBAQEBAQEBAQMDAwMDAwMDAwMDAwMDAwMDAwMDAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAI/RNASxjjy6AAAAAElFTkSuQmCC",
+    "symbol": "BAOUSD-LUSD-STABLEP",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x7e9d8f07a64e363e97a648904a89fb4cd5fb94cd": {
+    "assetId": "eip155:1/erc20:0x7e9d8f07a64e363e97a648904a89fb4cd5fb94cd",
+    "chainId": "eip155:1",
+    "name": "Forefront",
+    "precision": 18,
+    "color": "#C0C0C0",
+    "icon": "https://assets.coingecko.com/coins/images/14659/thumb/N2kir6jx_400x400.jpg?1696514335",
+    "symbol": "FF",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x7e9e431a0b8c4d532c745b1043c7fa29a48d4fba": {
+    "assetId": "eip155:1/erc20:0x7e9e431a0b8c4d532c745b1043c7fa29a48d4fba",
+    "chainId": "eip155:1",
+    "name": "eosDAC",
+    "precision": 18,
+    "color": "#424242",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x7e9e431a0B8c4D532C745B1043c7FA29a48D4fBa/logo.png",
+    "symbol": "EOSDAC",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x7eaf9c89037e4814dc0d9952ac7f888c784548db": {
+    "assetId": "eip155:1/erc20:0x7eaf9c89037e4814dc0d9952ac7f888c784548db",
+    "chainId": "eip155:1",
+    "name": "Royale on Ethereum",
+    "precision": 18,
+    "color": "#8684B1",
+    "icon": "https://assets.coingecko.com/coins/images/13602/thumb/roya.png?1696513353",
+    "symbol": "ROYA",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x7ecbb21346c501fd07eb165e406120fa32381c16": {
+    "assetId": "eip155:1/erc20:0x7ecbb21346c501fd07eb165e406120fa32381c16",
+    "chainId": "eip155:1",
+    "name": "Ecoreal Estate",
+    "precision": 18,
+    "color": "#75BB34",
+    "icon": "https://assets.coingecko.com/coins/images/6431/thumb/golden_leave_in_200_x_200.png?1696506796",
+    "symbol": "ECOREAL",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x7f0c8b125040f707441cad9e5ed8a8408673b455": {
+    "assetId": "eip155:1/erc20:0x7f0c8b125040f707441cad9e5ed8a8408673b455",
+    "chainId": "eip155:1",
+    "name": "CSP DAO Network",
+    "precision": 18,
+    "color": "#C4C4C4",
+    "icon": "https://assets.coingecko.com/coins/images/13436/thumb/csp_dao.png?1696513200",
+    "symbol": "NEBO",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x7f280dac515121dcda3eac69eb4c13a52392cace": {
+    "assetId": "eip155:1/erc20:0x7f280dac515121dcda3eac69eb4c13a52392cace",
+    "chainId": "eip155:1",
+    "name": "Fancy Games on Ethereum",
+    "precision": 18,
+    "color": "#E5B909",
+    "icon": "https://assets.coingecko.com/coins/images/21367/thumb/fnc.png?1696520733",
+    "symbol": "FNC",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x7f3141c4d6b047fb930991b450f1ed996a51cb26": {
+    "assetId": "eip155:1/erc20:0x7f3141c4d6b047fb930991b450f1ed996a51cb26",
+    "chainId": "eip155:1",
+    "name": "X",
+    "precision": 18,
+    "color": "#141414",
+    "icon": "https://assets.coingecko.com/coins/images/22334/thumb/x.PNG?1696521678",
+    "symbol": "X",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x7f39c581f595b53c5cb19bd0b3f8da6c935e2ca0": {
+    "assetId": "eip155:1/erc20:0x7f39c581f595b53c5cb19bd0b3f8da6c935e2ca0",
+    "chainId": "eip155:1",
+    "name": "Wrapped stETH on Ethereum",
+    "precision": 18,
+    "color": "#04A4FC",
+    "icon": "https://assets.coingecko.com/coins/images/18834/thumb/wstETH.png?1696518295",
+    "symbol": "WSTETH",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x7f3e4dbd84f5c8a5f15ef927557748cf2fbb77af": {
+    "assetId": "eip155:1/erc20:0x7f3e4dbd84f5c8a5f15ef927557748cf2fbb77af",
+    "chainId": "eip155:1",
+    "name": "Broccoli",
+    "precision": 18,
+    "color": "#1D341F",
+    "icon": "https://assets.coingecko.com/coins/images/30754/thumb/brologo.png?1696529623",
+    "symbol": "BRO",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x7f3edcdd180dbe4819bd98fee8929b5cedb3adeb": {
+    "assetId": "eip155:1/erc20:0x7f3edcdd180dbe4819bd98fee8929b5cedb3adeb",
+    "chainId": "eip155:1",
+    "name": "xToken on Ethereum",
+    "precision": 18,
+    "color": "#6B3DE7",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x7F3EDcdD180Dbe4819Bd98FeE8929b5cEdB3AdEB/logo.png",
+    "symbol": "XTK",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x7f4c5447af6a96d8eeaee1d932338cfc57890dbd": {
+    "assetId": "eip155:1/erc20:0x7f4c5447af6a96d8eeaee1d932338cfc57890dbd",
+    "chainId": "eip155:1",
+    "name": "Dave Coin",
+    "precision": 18,
+    "color": "#766E58",
+    "icon": "https://assets.coingecko.com/coins/images/30703/thumb/davelogo_transparent200x200.png?1696529575",
+    "symbol": "DAVE",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x7f792db54b0e580cdc755178443f0430cf799aca": {
+    "assetId": "eip155:1/erc20:0x7f792db54b0e580cdc755178443f0430cf799aca",
+    "chainId": "eip155:1",
+    "name": "Volt Inu on Ethereum",
+    "precision": 9,
+    "color": "#414140",
+    "icon": "https://assets.coingecko.com/coins/images/25201/thumb/logo200.png?1696524344",
+    "symbol": "VOLT",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x7f9b09f4717072cf4dc18b95d1b09e2b30c76790": {
+    "assetId": "eip155:1/erc20:0x7f9b09f4717072cf4dc18b95d1b09e2b30c76790",
+    "chainId": "eip155:1",
+    "name": "VaultTech",
+    "precision": 18,
+    "color": "#CCC9D4",
+    "icon": "https://assets.coingecko.com/coins/images/32578/thumb/IMG_6957.jpeg?1698558686",
+    "symbol": "VAULT",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x7fbec0bb6a7152e77c30d005b5d49cbc08a602c3": {
+    "assetId": "eip155:1/erc20:0x7fbec0bb6a7152e77c30d005b5d49cbc08a602c3",
+    "chainId": "eip155:1",
+    "name": "disBalancer on Ethereum",
+    "precision": 18,
+    "color": "#D69232",
+    "icon": "https://assets.coingecko.com/coins/images/14791/thumb/communityIcon_o2yriheuszk61.png?1696514460",
+    "symbol": "DDOS",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x7fc09a4f6182e835a97c42980f7235e8c0cbfa56": {
+    "assetId": "eip155:1/erc20:0x7fc09a4f6182e835a97c42980f7235e8c0cbfa56",
+    "chainId": "eip155:1",
+    "name": "X Wizard",
+    "precision": 9,
+    "color": "#1B1B1B",
+    "icon": "https://assets.coingecko.com/coins/images/31255/thumb/photo_2023-08-01_20-12-55.jpg?1696530079",
+    "symbol": "XWIZARD",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x7fc66500c84a76ad7e9c93437bfc5ac33e2ddae9": {
+    "assetId": "eip155:1/erc20:0x7fc66500c84a76ad7e9c93437bfc5ac33e2ddae9",
+    "chainId": "eip155:1",
+    "name": "Aave on Ethereum",
+    "precision": 18,
+    "color": "#807AAE",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x7Fc66500c84A76Ad7e9c93437bFc5Ac33E2DDaE9/logo.png",
+    "symbol": "AAVE",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x7fd4d7737597e7b4ee22acbf8d94362343ae0a79": {
+    "assetId": "eip155:1/erc20:0x7fd4d7737597e7b4ee22acbf8d94362343ae0a79",
+    "chainId": "eip155:1",
+    "name": "Wrapped MistCoin",
+    "precision": 2,
+    "color": "#285E93",
+    "icon": "https://assets.coingecko.com/coins/images/32490/thumb/MistCOin200.png?1698293182",
+    "symbol": "WMC",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x80008bcd713c38af90a9930288d446bc3bd2e684": {
+    "assetId": "eip155:1/erc20:0x80008bcd713c38af90a9930288d446bc3bd2e684",
+    "chainId": "eip155:1",
+    "name": "Karate Combat",
+    "precision": 18,
+    "color": "#747474",
+    "icon": "https://assets.coingecko.com/coins/images/30384/thumb/karate.jpg?1696529274",
+    "symbol": "KARATE",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x80122c6a83c8202ea365233363d3f4837d13e888": {
+    "assetId": "eip155:1/erc20:0x80122c6a83c8202ea365233363d3f4837d13e888",
+    "chainId": "eip155:1",
+    "name": "MESSIER",
+    "precision": 18,
+    "color": "#D2D2D2",
+    "icon": "https://assets.coingecko.com/coins/images/25957/thumb/MESSIERlogonew_%281%29.png?1696525036",
+    "symbol": "M87",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x8013266cb5c9dd48be3ad7d1ce832874d64b3ce1": {
+    "assetId": "eip155:1/erc20:0x8013266cb5c9dd48be3ad7d1ce832874d64b3ce1",
+    "chainId": "eip155:1",
+    "name": "Boop",
+    "precision": 18,
+    "color": "#4EB77B",
+    "icon": "https://assets.coingecko.com/coins/images/27918/thumb/boop.png?1696526938",
+    "symbol": "BOOP",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x803e102459e682f13760904408ad96dccee0c8d3": {
+    "assetId": "eip155:1/erc20:0x803e102459e682f13760904408ad96dccee0c8d3",
+    "chainId": "eip155:1",
+    "name": "FINE 2 0",
+    "precision": 9,
+    "color": "#B49AEB",
+    "icon": "https://assets.coingecko.com/coins/images/31955/thumb/photo_2023-09-24_14.38.28.jpeg?1696530761",
+    "symbol": "FINE20",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x8052327f1baf94a9dc8b26b9100f211ee3774f54": {
+    "assetId": "eip155:1/erc20:0x8052327f1baf94a9dc8b26b9100f211ee3774f54",
+    "chainId": "eip155:1",
+    "name": "A2DAO on Ethereum",
+    "precision": 18,
+    "color": "#94146C",
+    "icon": "https://assets.coingecko.com/coins/images/14509/thumb/Logo.jpg?1696514195",
+    "symbol": "ATD",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x80592d613a383f2ba3c42e4c247067289ee60152": {
+    "assetId": "eip155:1/erc20:0x80592d613a383f2ba3c42e4c247067289ee60152",
+    "chainId": "eip155:1",
+    "name": "TurboBot",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/32747/thumb/FFxY5qST_400x400.jpeg?1699262654",
+    "symbol": "TURBO",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x805c2077f3ab224d889f9c3992b41b2f4722c787": {
+    "assetId": "eip155:1/erc20:0x805c2077f3ab224d889f9c3992b41b2f4722c787",
+    "chainId": "eip155:1",
+    "name": "art Q NFT Investment Fund",
+    "precision": 0,
+    "color": "#040404",
+    "icon": "https://assets.coingecko.com/coins/images/23407/thumb/arteq.png?1696522620",
+    "symbol": "ARTEQ",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x807534b396919783b7e30383fe57d857bc084338": {
+    "assetId": "eip155:1/erc20:0x807534b396919783b7e30383fe57d857bc084338",
+    "chainId": "eip155:1",
+    "name": "Test",
+    "precision": 18,
+    "color": "#B4B4B4",
+    "icon": "https://assets.coingecko.com/coins/images/31188/thumb/IMG_6480.png?1696530015",
+    "symbol": "TEST",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x808507121b80c02388fad14726482e061b8da827": {
+    "assetId": "eip155:1/erc20:0x808507121b80c02388fad14726482e061b8da827",
+    "chainId": "eip155:1",
+    "name": "Pendle on Ethereum",
+    "precision": 18,
+    "color": "#132B52",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x808507121B80c02388fAd14726482e061B8da827/logo.png",
+    "symbol": "PENDLE",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x808632424440f6483d9be7509812b53ed0f00344": {
+    "assetId": "eip155:1/erc20:0x808632424440f6483d9be7509812b53ed0f00344",
+    "chainId": "eip155:1",
+    "name": "Mechazilla",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/33025/thumb/MECHA.jpg?1700318938",
+    "symbol": "MECHA",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x809826cceab68c387726af962713b64cb5cb3cca": {
+    "assetId": "eip155:1/erc20:0x809826cceab68c387726af962713b64cb5cb3cca",
+    "chainId": "eip155:1",
+    "name": "Nucleus Vision on Ethereum",
+    "precision": 18,
+    "color": "#052639",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x809826cceAb68c387726af962713b64Cb5Cb3CCA/logo.png",
+    "symbol": "NCASH",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x809e130e10e787139c54e1d12d3d1971b7a675bf": {
+    "assetId": "eip155:1/erc20:0x809e130e10e787139c54e1d12d3d1971b7a675bf",
+    "chainId": "eip155:1",
+    "name": "Minted",
+    "precision": 18,
+    "color": "#D5D5D7",
+    "icon": "https://assets.coingecko.com/coins/images/26893/thumb/MTD_Token_%282%29.png?1696525951",
+    "symbol": "MTD",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x80a2ae356fc9ef4305676f7a3e2ed04e12c33946": {
+    "assetId": "eip155:1/erc20:0x80a2ae356fc9ef4305676f7a3e2ed04e12c33946",
+    "chainId": "eip155:1",
+    "name": "cYFI",
+    "precision": 8,
+    "color": "#EAF0F4",
+    "icon": "https://assets.coingecko.com/coins/images/17530/thumb/cyfi.PNG?1696517068",
+    "symbol": "CYFI",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x80c62fe4487e1351b47ba49809ebd60ed085bf52": {
+    "assetId": "eip155:1/erc20:0x80c62fe4487e1351b47ba49809ebd60ed085bf52",
+    "chainId": "eip155:1",
+    "name": "Clover Finance on Ethereum",
+    "precision": 18,
+    "color": "#E5F9F5",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x80C62FE4487E1351b47Ba49809EBD60ED085bf52/logo.png",
+    "symbol": "CLV",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x80c8c3dcfb854f9542567c8dac3f44d709ebc1de": {
+    "assetId": "eip155:1/erc20:0x80c8c3dcfb854f9542567c8dac3f44d709ebc1de",
+    "chainId": "eip155:1",
+    "name": "Spaceswap MILK2 on Ethereum",
+    "precision": 18,
+    "color": "#F9F1EB",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x80c8C3dCfB854f9542567c8Dac3f44D709eBc1de/logo.png",
+    "symbol": "MILK2",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x80cd73badb406ea36b9a7cdeb8df06aefa7e12d9": {
+    "assetId": "eip155:1/erc20:0x80cd73badb406ea36b9a7cdeb8df06aefa7e12d9",
+    "chainId": "eip155:1",
+    "name": "SleepFuture on Ethereum",
+    "precision": 18,
+    "color": "#F0ECF4",
+    "icon": "https://assets.coingecko.com/coins/images/25469/thumb/sleepee.png?1696524604",
+    "symbol": "SLEEPEE",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x80ce3027a70e0a928d9268994e9b85d03bd4cdcf": {
+    "assetId": "eip155:1/erc20:0x80ce3027a70e0a928d9268994e9b85d03bd4cdcf",
+    "chainId": "eip155:1",
+    "name": "Lokr on Ethereum",
+    "precision": 18,
+    "color": "#E4077D",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x80CE3027a70e0A928d9268994e9B85d03Bd4CDcf/logo.png",
+    "symbol": "LKR",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x80d186b4c786ea66592b2c52e2004ab10cfe4cf3": {
+    "assetId": "eip155:1/erc20:0x80d186b4c786ea66592b2c52e2004ab10cfe4cf3",
+    "chainId": "eip155:1",
+    "name": "LYNX",
+    "precision": 18,
+    "color": "#CA9C30",
+    "icon": "https://assets.coingecko.com/coins/images/32501/thumb/3C1E4E5C-4B05-4039-B9DD-1DAB463AB44A.png?1698312161",
+    "symbol": "LYNX",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x80d55c03180349fff4a229102f62328220a96444": {
+    "assetId": "eip155:1/erc20:0x80d55c03180349fff4a229102f62328220a96444",
+    "chainId": "eip155:1",
+    "name": "Opulous on Ethereum",
+    "precision": 18,
+    "color": "#222222",
+    "icon": "https://assets.coingecko.com/coins/images/16548/thumb/opulous.PNG?1696516110",
+    "symbol": "OPUL",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x80f0c1c49891dcfdd40b6e0f960f84e6042bcb6f": {
+    "assetId": "eip155:1/erc20:0x80f0c1c49891dcfdd40b6e0f960f84e6042bcb6f",
+    "chainId": "eip155:1",
+    "name": "DBXen",
+    "precision": 18,
+    "color": "#040424",
+    "icon": "https://assets.coingecko.com/coins/images/29838/thumb/DBXen.jpg?1696528765",
+    "symbol": "DXN",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x80fb784b7ed66730e8b1dbd9820afd29931aab03": {
+    "assetId": "eip155:1/erc20:0x80fb784b7ed66730e8b1dbd9820afd29931aab03",
+    "chainId": "eip155:1",
+    "name": "Aave  OLD ",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x80fB784B7eD66730e8b1DBd9820aFD29931aab03/logo.png",
+    "symbol": "LEND",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x814e0908b12a99fecf5bc101bb5d0b8b5cdf7d26": {
+    "assetId": "eip155:1/erc20:0x814e0908b12a99fecf5bc101bb5d0b8b5cdf7d26",
+    "chainId": "eip155:1",
+    "name": "Measurable Data",
+    "precision": 18,
+    "color": "#6196EE",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x814e0908b12A99FeCf5BC101bB5d0b8B5cDf7d26/logo.png",
+    "symbol": "MDT",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x816fce1cc93473b2d54bd8c0dae4cae911f6dd41": {
+    "assetId": "eip155:1/erc20:0x816fce1cc93473b2d54bd8c0dae4cae911f6dd41",
+    "chainId": "eip155:1",
+    "name": "Mech X",
+    "precision": 18,
+    "color": "#714C58",
+    "icon": "https://assets.coingecko.com/coins/images/31047/thumb/26F58FD9-0CFF-4F6C-8067-3747A3A06DF9.png?1696529882",
+    "symbol": "MECHX",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x817bbdbc3e8a1204f3691d14bb44992841e3db35": {
+    "assetId": "eip155:1/erc20:0x817bbdbc3e8a1204f3691d14bb44992841e3db35",
+    "chainId": "eip155:1",
+    "name": "Cudos",
+    "precision": 18,
+    "color": "#34C4FC",
+    "icon": "https://assets.coingecko.com/coins/images/13651/thumb/CudosIconTransparent.png?1696513400",
+    "symbol": "CUDOS",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x8185bc4757572da2a610f887561c32298f1a5748": {
+    "assetId": "eip155:1/erc20:0x8185bc4757572da2a610f887561c32298f1a5748",
+    "chainId": "eip155:1",
+    "name": "Aluna on Ethereum",
+    "precision": 18,
+    "color": "#5B1EAD",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x8185Bc4757572Da2a610f887561c32298f1A5748/logo.png",
+    "symbol": "ALN",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x8189afbe7b0e81dae735ef027cd31371b3974feb": {
+    "assetId": "eip155:1/erc20:0x8189afbe7b0e81dae735ef027cd31371b3974feb",
+    "chainId": "eip155:1",
+    "name": "Bean",
+    "precision": 18,
+    "color": "#B11C3A",
+    "icon": "https://assets.coingecko.com/coins/images/30884/thumb/coin_logo.png?1696529731",
+    "symbol": "BEAN",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x81994b9607e06ab3d5cf3afff9a67374f05f27d7": {
+    "assetId": "eip155:1/erc20:0x81994b9607e06ab3d5cf3afff9a67374f05f27d7",
+    "chainId": "eip155:1",
+    "name": "Flux USDT",
+    "precision": 8,
+    "color": "#D0E8E4",
+    "icon": "https://assets.coingecko.com/coins/images/29581/thumb/fUSDT-320.png?1696528520",
+    "symbol": "FUSDT",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x819c1a1568934ee59d9f3c8b9640908556c44140": {
+    "assetId": "eip155:1/erc20:0x819c1a1568934ee59d9f3c8b9640908556c44140",
+    "chainId": "eip155:1",
+    "name": "Hobbes  OLD ",
+    "precision": 18,
+    "color": "#1C141F",
+    "icon": "https://assets.coingecko.com/coins/images/29541/thumb/Logo200x200.png?1696528483",
+    "symbol": "HOBBES",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x81ef51fce2b14874cb840515facf5be667ea4d8f": {
+    "assetId": "eip155:1/erc20:0x81ef51fce2b14874cb840515facf5be667ea4d8f",
+    "chainId": "eip155:1",
+    "name": "MadApe",
+    "precision": 18,
+    "color": "#F454B5",
+    "icon": "https://assets.coingecko.com/coins/images/31728/thumb/212.png?1696530548",
+    "symbol": "MADAPE",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x81f8f0bb1cb2a06649e51913a151f0e7ef6fa321": {
+    "assetId": "eip155:1/erc20:0x81f8f0bb1cb2a06649e51913a151f0e7ef6fa321",
+    "chainId": "eip155:1",
+    "name": "VitaDAO",
+    "precision": 18,
+    "color": "#FCE464",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x81f8f0bb1cB2A06649E51913A151F0E7Ef6FA321/logo.png",
+    "symbol": "VITA",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x8207c1ffc5b6804f6024322ccf34f29c3541ae26": {
+    "assetId": "eip155:1/erc20:0x8207c1ffc5b6804f6024322ccf34f29c3541ae26",
+    "chainId": "eip155:1",
+    "name": "Origin Protocol",
+    "precision": 18,
+    "color": "#1C83FC",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x8207c1FfC5B6804F6024322CcF34F29c3541Ae26/logo.png",
+    "symbol": "OGN",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x820802fa8a99901f52e39acd21177b0be6ee2974": {
+    "assetId": "eip155:1/erc20:0x820802fa8a99901f52e39acd21177b0be6ee2974",
+    "chainId": "eip155:1",
+    "name": "EUROe Stablecoin on Ethereum",
+    "precision": 6,
+    "color": "#DCE1E1",
+    "icon": "https://assets.coingecko.com/coins/images/28913/thumb/euroe-200x200-round.png?1696527889",
+    "symbol": "EUROE",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x821a278dfff762c76410264303f25bf42e195c0c": {
+    "assetId": "eip155:1/erc20:0x821a278dfff762c76410264303f25bf42e195c0c",
+    "chainId": "eip155:1",
+    "name": "pETH",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/28376/thumb/peth.png?1696527377",
+    "symbol": "PETH",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x8221022401843fecaab247c88dd9960071ce7058": {
+    "assetId": "eip155:1/erc20:0x8221022401843fecaab247c88dd9960071ce7058",
+    "chainId": "eip155:1",
+    "name": "SCRATCH",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/32673/thumb/IMG_8985.jpg?1698911005",
+    "symbol": "SCRATCH",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x823556202e86763853b40e9cde725f412e294689": {
+    "assetId": "eip155:1/erc20:0x823556202e86763853b40e9cde725f412e294689",
+    "chainId": "eip155:1",
+    "name": "Altered State Machine",
+    "precision": 18,
+    "color": "#5C39ED",
+    "icon": "https://assets.coingecko.com/coins/images/24893/thumb/ASTO.png?1696524051",
+    "symbol": "ASTO",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x823e1b82ce1dc147bbdb25a203f046afab1ce918": {
+    "assetId": "eip155:1/erc20:0x823e1b82ce1dc147bbdb25a203f046afab1ce918",
+    "chainId": "eip155:1",
+    "name": "SpiralDAO Coil",
+    "precision": 18,
+    "color": "#211D36",
+    "icon": "https://assets.coingecko.com/coins/images/29773/thumb/200x200.png?1696528704",
+    "symbol": "COIL",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x824e35f7a75324f99300afac75ecf7354e17ea26": {
+    "assetId": "eip155:1/erc20:0x824e35f7a75324f99300afac75ecf7354e17ea26",
+    "chainId": "eip155:1",
+    "name": "TIA",
+    "precision": 9,
+    "color": "#040404",
+    "icon": "https://assets.coingecko.com/coins/images/23994/thumb/tia.png?1696523188",
+    "symbol": "TIA",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x8254e26e453eb5abd29b3c37ac9e8da32e5d3299": {
+    "assetId": "eip155:1/erc20:0x8254e26e453eb5abd29b3c37ac9e8da32e5d3299",
+    "chainId": "eip155:1",
+    "name": "RBX on Ethereum",
+    "precision": 18,
+    "color": "#B43C2C",
+    "icon": "https://assets.coingecko.com/coins/images/19253/thumb/output-onlinepngtools-9.png?1696518698",
+    "symbol": "RBX",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x8260328d0c405d9ca061d80199102ddc9089e43c": {
+    "assetId": "eip155:1/erc20:0x8260328d0c405d9ca061d80199102ddc9089e43c",
+    "chainId": "eip155:1",
+    "name": "Dojo Supercomputer",
+    "precision": 9,
+    "color": "#0C0F14",
+    "icon": "https://assets.coingecko.com/coins/images/29728/thumb/Dojo_super.jpeg?1696528658",
+    "symbol": "DOJO",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x8287c7b963b405b7b8d467db9d79eec40625b13a": {
+    "assetId": "eip155:1/erc20:0x8287c7b963b405b7b8d467db9d79eec40625b13a",
+    "chainId": "eip155:1",
+    "name": "Swingby on Ethereum",
+    "precision": 18,
+    "color": "#333B96",
+    "icon": "https://assets.coingecko.com/coins/images/11861/thumb/swingby.png?1696511731",
+    "symbol": "SWINGBY",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x8290333cef9e6d528dd5618fb97a76f268f3edd4": {
+    "assetId": "eip155:1/erc20:0x8290333cef9e6d528dd5618fb97a76f268f3edd4",
+    "chainId": "eip155:1",
+    "name": "Ankr Network on Ethereum",
+    "precision": 18,
+    "color": "#F2F9F9",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x8290333ceF9e6D528dD5618Fb97a76f268f3EDD4/logo.png",
+    "symbol": "ANKR",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x82a77710495a35549d2add797412b4a4497d33ef": {
+    "assetId": "eip155:1/erc20:0x82a77710495a35549d2add797412b4a4497d33ef",
+    "chainId": "eip155:1",
+    "name": "Dogz",
+    "precision": 18,
+    "color": "#9F9C99",
+    "icon": "https://assets.coingecko.com/coins/images/7544/thumb/dogz.png?1696507809",
+    "symbol": "DOGZ",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x83031984b45553070a088273f341bff7fb4f2f46": {
+    "assetId": "eip155:1/erc20:0x83031984b45553070a088273f341bff7fb4f2f46",
+    "chainId": "eip155:1",
+    "name": "hiBAYC",
+    "precision": 18,
+    "color": "#766D35",
+    "icon": "https://assets.coingecko.com/coins/images/26623/thumb/hibayc.png?1696525696",
+    "symbol": "HIBAYC",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x830a8512db4f6fca51968593e2667156c2c483a8": {
+    "assetId": "eip155:1/erc20:0x830a8512db4f6fca51968593e2667156c2c483a8",
+    "chainId": "eip155:1",
+    "name": "WEN Token on Ethereum",
+    "precision": 18,
+    "color": "#0A0B10",
+    "icon": "https://assets.coingecko.com/coins/images/30400/thumb/kxtrOzUd_400x400.jpg?1696529290",
+    "symbol": "WEN",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x830eb1204380e9c44434db8700257025358707c6": {
+    "assetId": "eip155:1/erc20:0x830eb1204380e9c44434db8700257025358707c6",
+    "chainId": "eip155:1",
+    "name": "Goons of Balatroon on Ethereum",
+    "precision": 18,
+    "color": "#BA9A94",
+    "icon": "https://assets.coingecko.com/coins/images/27104/thumb/q1_hZykF_400x400.jpeg?1696526153",
+    "symbol": "GOB",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x83249c6794bca5a77eb8c0af9f1a86e055459cea": {
+    "assetId": "eip155:1/erc20:0x83249c6794bca5a77eb8c0af9f1a86e055459cea",
+    "chainId": "eip155:1",
+    "name": "GigaSwap",
+    "precision": 9,
+    "color": "#F8F9F8",
+    "icon": "https://assets.coingecko.com/coins/images/26919/thumb/final_62fcaacdbcc9640975d3fb7c_822256.png?1696525976",
+    "symbol": "GIGA",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x8326bf664704966c984a3a46fa37d7a80a52dcf4": {
+    "assetId": "eip155:1/erc20:0x8326bf664704966c984a3a46fa37d7a80a52dcf4",
+    "chainId": "eip155:1",
+    "name": "Dogu Inu",
+    "precision": 18,
+    "color": "#BC9426",
+    "icon": "https://assets.coingecko.com/coins/images/28492/thumb/Coingecko_Dogu_Inu_logo.jpg?1696527485",
+    "symbol": "DOGU",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x833d94797cbea8279a689572b01f310ff5ffa31b": {
+    "assetId": "eip155:1/erc20:0x833d94797cbea8279a689572b01f310ff5ffa31b",
+    "chainId": "eip155:1",
+    "name": "PixiaAI",
+    "precision": 18,
+    "color": "#863DC6",
+    "icon": "https://assets.coingecko.com/coins/images/28941/thumb/PixiaAi.png?1696527915",
+    "symbol": "PIXIA",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x834e7fdc574cc0c95857da38190b453a3666387e": {
+    "assetId": "eip155:1/erc20:0x834e7fdc574cc0c95857da38190b453a3666387e",
+    "chainId": "eip155:1",
+    "name": "RUNNER",
+    "precision": 18,
+    "color": "#D4DDE4",
+    "icon": "https://assets.coingecko.com/coins/images/32047/thumb/runner.png?1696530844",
+    "symbol": "RUNNER",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x8353b92201f19b4812eee32efd325f7ede123718": {
+    "assetId": "eip155:1/erc20:0x8353b92201f19b4812eee32efd325f7ede123718",
+    "chainId": "eip155:1",
+    "name": "ScamFari",
+    "precision": 18,
+    "color": "#282408",
+    "icon": "https://assets.coingecko.com/coins/images/31267/thumb/Ava_Scamfari_%281%29.png?1696530091",
+    "symbol": "SCM",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x8355dbe8b0e275abad27eb843f3eaf3fc855e525": {
+    "assetId": "eip155:1/erc20:0x8355dbe8b0e275abad27eb843f3eaf3fc855e525",
+    "chainId": "eip155:1",
+    "name": "Wolf Game Wool",
+    "precision": 18,
+    "color": "#4D304E",
+    "icon": "https://assets.coingecko.com/coins/images/20760/thumb/KM3RwIVx_400x400.jpg?1696520155",
+    "symbol": "WOOL",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x8365332d4baf69bc24ca2401b90c3853ab9f818e": {
+    "assetId": "eip155:1/erc20:0x8365332d4baf69bc24ca2401b90c3853ab9f818e",
+    "chainId": "eip155:1",
+    "name": "Wolf of Wall Street",
+    "precision": 18,
+    "color": "#E9CA44",
+    "icon": "https://assets.coingecko.com/coins/images/31461/thumb/Cmc_wolf_2.png?1696530274",
+    "symbol": "WOLF",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x837d904a3799c0769079be9ecbaddf1abd4ccd6e": {
+    "assetId": "eip155:1/erc20:0x837d904a3799c0769079be9ecbaddf1abd4ccd6e",
+    "chainId": "eip155:1",
+    "name": "Tarot V1 on Ethereum",
+    "precision": 18,
+    "color": "#1C1C1C",
+    "icon": "https://assets.coingecko.com/coins/images/17881/thumb/tarot-200px.png?1696517403",
+    "symbol": "TAROT",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x83869de76b9ad8125e22b857f519f001588c0f62": {
+    "assetId": "eip155:1/erc20:0x83869de76b9ad8125e22b857f519f001588c0f62",
+    "chainId": "eip155:1",
+    "name": "EXMO Coin",
+    "precision": 8,
+    "color": "#F39A44",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x83869DE76B9Ad8125e22b857f519F001588c0f62/logo.png",
+    "symbol": "EXM",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x8387c2d1b0eea6b91b910aff66a7bd2710a5946a": {
+    "assetId": "eip155:1/erc20:0x8387c2d1b0eea6b91b910aff66a7bd2710a5946a",
+    "chainId": "eip155:1",
+    "name": "Fomo Eth",
+    "precision": 18,
+    "color": "#8F8F8F",
+    "icon": "https://assets.coingecko.com/coins/images/30389/thumb/photo_2023-05-13_00-46-17.jpg?1696529278",
+    "symbol": "FOMO",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x8390a1da07e376ef7add4be859ba74fb83aa02d5": {
+    "assetId": "eip155:1/erc20:0x8390a1da07e376ef7add4be859ba74fb83aa02d5",
+    "chainId": "eip155:1",
+    "name": "Grok on Ethereum",
+    "precision": 9,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/32788/thumb/grok.jpeg?1699366775",
+    "symbol": "GROK",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x83984d6142934bb535793a82adb0a46ef0f66b6d": {
+    "assetId": "eip155:1/erc20:0x83984d6142934bb535793a82adb0a46ef0f66b6d",
+    "chainId": "eip155:1",
+    "name": "Remme",
+    "precision": 4,
+    "color": "#7424E4",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x83984d6142934bb535793A82ADB0a46EF0F66B6d/logo.png",
+    "symbol": "REM",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x839e71613f9aa06e5701cf6de63e303616b0dde3": {
+    "assetId": "eip155:1/erc20:0x839e71613f9aa06e5701cf6de63e303616b0dde3",
+    "chainId": "eip155:1",
+    "name": "VVS Finance",
+    "precision": 18,
+    "color": "#E3E6F2",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x839e71613f9aA06E5701CF6de63E303616B0DDE3/logo.png",
+    "symbol": "VVS",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x83d6c8c06ac276465e4c92e7ac8c23740f435140": {
+    "assetId": "eip155:1/erc20:0x83d6c8c06ac276465e4c92e7ac8c23740f435140",
+    "chainId": "eip155:1",
+    "name": "HMX on Ethereum",
+    "precision": 18,
+    "color": "#F7DC94",
+    "icon": "https://assets.coingecko.com/coins/images/31206/thumb/HMXlogo_CG.png?1696530033",
+    "symbol": "HMX",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x83e6f1e41cdd28eaceb20cb649155049fac3d5aa": {
+    "assetId": "eip155:1/erc20:0x83e6f1e41cdd28eaceb20cb649155049fac3d5aa",
+    "chainId": "eip155:1",
+    "name": "Polkastarter on Ethereum",
+    "precision": 18,
+    "color": "#EB4C64",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x83e6f1E41cdd28eAcEB20Cb649155049Fac3D5Aa/logo.png",
+    "symbol": "POLS",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x83e817e1574e2201a005ec0f7e700ed5606f555e": {
+    "assetId": "eip155:1/erc20:0x83e817e1574e2201a005ec0f7e700ed5606f555e",
+    "chainId": "eip155:1",
+    "name": "mPendle on Ethereum",
+    "precision": 18,
+    "color": "#456895",
+    "icon": "https://assets.coingecko.com/coins/images/31918/thumb/mPendle.png?1696530726",
+    "symbol": "MPENDLE",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x83e9f223e1edb3486f876ee888d76bfba26c475a": {
+    "assetId": "eip155:1/erc20:0x83e9f223e1edb3486f876ee888d76bfba26c475a",
+    "chainId": "eip155:1",
+    "name": "BlockchainSpace on Ethereum",
+    "precision": 18,
+    "color": "#226A87",
+    "icon": "https://assets.coingecko.com/coins/images/21271/thumb/BednjMw.png?1696520642",
+    "symbol": "GUILD",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x83f20f44975d03b1b09e64809b757c47f942beea": {
+    "assetId": "eip155:1/erc20:0x83f20f44975d03b1b09e64809b757c47f942beea",
+    "chainId": "eip155:1",
+    "name": "Savings Dai",
+    "precision": 18,
+    "color": "#D1E8B6",
+    "icon": "https://assets.coingecko.com/coins/images/32254/thumb/sdai.png?1697015278",
+    "symbol": "SDAI",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x83f5b9c25cc8fce0a7d4a1bda904bf13cfcdd9da": {
+    "assetId": "eip155:1/erc20:0x83f5b9c25cc8fce0a7d4a1bda904bf13cfcdd9da",
+    "chainId": "eip155:1",
+    "name": "Flooring Protocol  DeGods",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/32765/thumb/degods_%281%29.png?1699332561",
+    "symbol": "DEGODS",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x8400d94a5cb0fa0d041a3788e395285d61c9ee5e": {
+    "assetId": "eip155:1/erc20:0x8400d94a5cb0fa0d041a3788e395285d61c9ee5e",
+    "chainId": "eip155:1",
+    "name": "Unibright on Ethereum",
+    "precision": 8,
+    "color": "#25568A",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x8400D94A5cb0fa0D041a3788e395285d61c9ee5e/logo.png",
+    "symbol": "UBT",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x841fb148863454a3b3570f515414759be9091465": {
+    "assetId": "eip155:1/erc20:0x841fb148863454a3b3570f515414759be9091465",
+    "chainId": "eip155:1",
+    "name": "Shih Tzu on Ethereum",
+    "precision": 18,
+    "color": "#F9DEC8",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x841FB148863454A3b3570f515414759BE9091465/logo.png",
+    "symbol": "SHIH",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x8423b76be8ef6ca7400a6b4c334d29c1d5d4572c": {
+    "assetId": "eip155:1/erc20:0x8423b76be8ef6ca7400a6b4c334d29c1d5d4572c",
+    "chainId": "eip155:1",
+    "name": "HarryPotterObamaInu",
+    "precision": 8,
+    "color": "#5FC1EA",
+    "icon": "https://assets.coingecko.com/coins/images/31607/thumb/harry_logo.png?1696530423",
+    "symbol": "INU",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x84342e932797fc62814189f01f0fb05f52519708": {
+    "assetId": "eip155:1/erc20:0x84342e932797fc62814189f01f0fb05f52519708",
+    "chainId": "eip155:1",
+    "name": "Neighbourhoods on Ethereum",
+    "precision": 18,
+    "color": "#040404",
+    "icon": "https://assets.coingecko.com/coins/images/22055/thumb/social_media_logo_black_bg.png?1696521399",
+    "symbol": "NHT",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x84412819ae69b10250d0d54d58f454018f1c8a42": {
+    "assetId": "eip155:1/erc20:0x84412819ae69b10250d0d54d58f454018f1c8a42",
+    "chainId": "eip155:1",
+    "name": "Scarab Tools",
+    "precision": 18,
+    "color": "#201F20",
+    "icon": "https://assets.coingecko.com/coins/images/30706/thumb/scarab-cg.png?1696529577",
+    "symbol": "DUNG",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x8442e0e292186854bb6875b2a0fc1308b9ded793": {
+    "assetId": "eip155:1/erc20:0x8442e0e292186854bb6875b2a0fc1308b9ded793",
+    "chainId": "eip155:1",
+    "name": "Print The Pepe",
+    "precision": 9,
+    "color": "#B0B1B0",
+    "icon": "https://assets.coingecko.com/coins/images/29964/thumb/printthepepe.PNG?1696528890",
+    "symbol": "PP",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x845e2e8b42dced7dedcdba9bde32c9e338224f97": {
+    "assetId": "eip155:1/erc20:0x845e2e8b42dced7dedcdba9bde32c9e338224f97",
+    "chainId": "eip155:1",
+    "name": "Satozhi on Ethereum",
+    "precision": 8,
+    "color": "#756337",
+    "icon": "https://assets.coingecko.com/coins/images/14786/thumb/0GeSrIaQ_400x400.jpg?1696514455",
+    "symbol": "SATOZ",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x846c66cf71c43f80403b51fe3906b3599d63336f": {
+    "assetId": "eip155:1/erc20:0x846c66cf71c43f80403b51fe3906b3599d63336f",
+    "chainId": "eip155:1",
+    "name": "PumaPay on Ethereum",
+    "precision": 18,
+    "color": "#1C6CF4",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x846C66cf71C43f80403B51fE3906B3599D63336f/logo.png",
+    "symbol": "PMA",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x84777600c51996b2ce92a514ff2583b7d7c2239b": {
+    "assetId": "eip155:1/erc20:0x84777600c51996b2ce92a514ff2583b7d7c2239b",
+    "chainId": "eip155:1",
+    "name": "Recovery Value USD",
+    "precision": 18,
+    "color": "#040404",
+    "icon": "https://assets.coingecko.com/coins/images/29839/thumb/RVusd_logo.png?1696528766",
+    "symbol": "RVUSD",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x8484e645a054586a6d6af60c0ee911d7b5180e64": {
+    "assetId": "eip155:1/erc20:0x8484e645a054586a6d6af60c0ee911d7b5180e64",
+    "chainId": "eip155:1",
+    "name": "DYOR",
+    "precision": 18,
+    "color": "#F9CE0E",
+    "icon": "https://assets.coingecko.com/coins/images/30149/thumb/dyor.jpeg?1696529070",
+    "symbol": "DYOR",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x848578e351d25b6ec0d486e42677891521c3d743": {
+    "assetId": "eip155:1/erc20:0x848578e351d25b6ec0d486e42677891521c3d743",
+    "chainId": "eip155:1",
+    "name": "moSOLID",
+    "precision": 18,
+    "color": "#0C0C1C",
+    "icon": "https://assets.coingecko.com/coins/images/28677/thumb/black_mono_logopng.png?1696527661",
+    "symbol": "MOSOLID",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x848896470d989f30503d8f883c331f63b73b66ea": {
+    "assetId": "eip155:1/erc20:0x848896470d989f30503d8f883c331f63b73b66ea",
+    "chainId": "eip155:1",
+    "name": "Medicle",
+    "precision": 18,
+    "color": "#3C74D4",
+    "icon": "https://assets.coingecko.com/coins/images/31082/thumb/Medicle%28MDI%29_NEW_.png?1696529915",
+    "symbol": "MDI",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x849a226f327b89e3133d9930d927f9eb9346f8c9": {
+    "assetId": "eip155:1/erc20:0x849a226f327b89e3133d9930d927f9eb9346f8c9",
+    "chainId": "eip155:1",
+    "name": "Crypto Global United on Ethereum",
+    "precision": 8,
+    "color": "#328DC1",
+    "icon": "https://assets.coingecko.com/coins/images/20751/thumb/2022_CGU-MG_RGB.png?1696520148",
+    "symbol": "CGU",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x849c479d7a90eb378dbd00e8f166371176244eb1": {
+    "assetId": "eip155:1/erc20:0x849c479d7a90eb378dbd00e8f166371176244eb1",
+    "chainId": "eip155:1",
+    "name": "MUU",
+    "precision": 9,
+    "color": "#1A1A36",
+    "icon": "https://assets.coingecko.com/coins/images/25620/thumb/muu.jpg?1696524754",
+    "symbol": "MUU",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x84c722e6f1363e8d5c6db3ea600bef9a006da824": {
+    "assetId": "eip155:1/erc20:0x84c722e6f1363e8d5c6db3ea600bef9a006da824",
+    "chainId": "eip155:1",
+    "name": "Misbloc",
+    "precision": 18,
+    "color": "#78C4E4",
+    "icon": "https://assets.coingecko.com/coins/images/13021/thumb/xREV4lXV.png?1696512810",
+    "symbol": "MSB",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x84ca8bc7997272c7cfb4d0cd3d55cd942b3c9419": {
+    "assetId": "eip155:1/erc20:0x84ca8bc7997272c7cfb4d0cd3d55cd942b3c9419",
+    "chainId": "eip155:1",
+    "name": "DIA on Ethereum",
+    "precision": 18,
+    "color": "#9B3798",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x84cA8bc7997272c7CfB4D0Cd3D55cd942B3c9419/logo.png",
+    "symbol": "DIA",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x8503a7b00b4b52692cc6c14e5b96f142e30547b7": {
+    "assetId": "eip155:1/erc20:0x8503a7b00b4b52692cc6c14e5b96f142e30547b7",
+    "chainId": "eip155:1",
+    "name": "Meeds DAO on Ethereum",
+    "precision": 18,
+    "color": "#E45C5C",
+    "icon": "https://assets.coingecko.com/coins/images/24281/thumb/s-YfFWYu_400x400.png?1696523464",
+    "symbol": "MEED",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x850aab69f0e0171a9a49db8be3e71351c8247df4": {
+    "assetId": "eip155:1/erc20:0x850aab69f0e0171a9a49db8be3e71351c8247df4",
+    "chainId": "eip155:1",
+    "name": "Konomi Network",
+    "precision": 18,
+    "color": "#3953F2",
+    "icon": "https://assets.coingecko.com/coins/images/14406/thumb/konomi.jpg?1696514098",
+    "symbol": "KONO",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x85225ed797fd4128ac45a992c46ea4681a7a15da": {
+    "assetId": "eip155:1/erc20:0x85225ed797fd4128ac45a992c46ea4681a7a15da",
+    "chainId": "eip155:1",
+    "name": "Hyperbolic Protocol",
+    "precision": 18,
+    "color": "#FC9B10",
+    "icon": "https://assets.coingecko.com/coins/images/30743/thumb/HP_200x200.png?1696529613",
+    "symbol": "HYPE",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x8526be2379e853d5cf02f9823bb9690e1a6ff9e2": {
+    "assetId": "eip155:1/erc20:0x8526be2379e853d5cf02f9823bb9690e1a6ff9e2",
+    "chainId": "eip155:1",
+    "name": "Habibi",
+    "precision": 18,
+    "color": "#171617",
+    "icon": "https://assets.coingecko.com/coins/images/30683/thumb/HABIBI.png?1696529552",
+    "symbol": "HABIBI",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x852c4d2823e98930388b5ce1ed106310b942bd5a": {
+    "color": "#FFFFFF",
+    "icon": "https://raw.githubusercontent.com/Idle-Labs/idle-dashboard/master/public/images/tokens/DAI.svg",
+    "name": "Euler DAI Senior Tranche",
+    "precision": 18,
+    "symbol": "AA_eDAI",
+    "chainId": "eip155:1",
+    "assetId": "eip155:1/erc20:0x852c4d2823e98930388b5ce1ed106310b942bd5a",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x852e5427c86a3b46dd25e5fe027bb15f53c4bcb8": {
+    "assetId": "eip155:1/erc20:0x852e5427c86a3b46dd25e5fe027bb15f53c4bcb8",
+    "chainId": "eip155:1",
+    "name": "NiiFi",
+    "precision": 15,
+    "color": "#8FA5FA",
+    "icon": "https://assets.coingecko.com/coins/images/16033/thumb/niifi.PNG?1696515643",
+    "symbol": "NIIFI",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x8530b66ca3ddf50e0447eae8ad7ea7d5e62762ed": {
+    "assetId": "eip155:1/erc20:0x8530b66ca3ddf50e0447eae8ad7ea7d5e62762ed",
+    "chainId": "eip155:1",
+    "name": "Meta Doge on Ethereum",
+    "precision": 18,
+    "color": "#FBA213",
+    "icon": "https://assets.coingecko.com/coins/images/19656/thumb/metadoge.png?1696519084",
+    "symbol": "METADOGE",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x853d955acef822db058eb8505911ed77f175b99e": {
+    "assetId": "eip155:1/erc20:0x853d955acef822db058eb8505911ed77f175b99e",
+    "chainId": "eip155:1",
+    "name": "Frax on Ethereum",
+    "precision": 18,
+    "color": "#040404",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x853d955aCEf822Db058eb8505911ED77F175b99e/logo.png",
+    "symbol": "FRAX",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x85516e8862ab543ea15972b7809256efec0696ea": {
+    "assetId": "eip155:1/erc20:0x85516e8862ab543ea15972b7809256efec0696ea",
+    "chainId": "eip155:1",
+    "name": "ROCK",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/32976/thumb/ROCK3.png?1700069603",
+    "symbol": "ROCK",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x85614a474dbeed440d5bbdb8ac50b0f22367f997": {
+    "assetId": "eip155:1/erc20:0x85614a474dbeed440d5bbdb8ac50b0f22367f997",
+    "chainId": "eip155:1",
+    "name": "Verge  ETH ",
+    "precision": 18,
+    "color": "#34BCE4",
+    "icon": "https://assets.coingecko.com/coins/images/32585/thumb/Verge_Token_%28erc-20%29_icon_200x200.jpg?1699220724",
+    "symbol": "XVG",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3": {
+    "assetId": "eip155:1/erc20:0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3",
+    "chainId": "eip155:1",
+    "name": "Origin Ether",
+    "precision": 18,
+    "color": "#D1E6FC",
+    "icon": "https://assets.coingecko.com/coins/images/29733/thumb/OETH.png?1696528663",
+    "symbol": "OETH",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x85705ec9f2e11b8a70607d93ffaf9d73ec84cc34": {
+    "assetId": "eip155:1/erc20:0x85705ec9f2e11b8a70607d93ffaf9d73ec84cc34",
+    "chainId": "eip155:1",
+    "name": "Alien Chain",
+    "precision": 18,
+    "color": "#09070A",
+    "icon": "https://assets.coingecko.com/coins/images/31139/thumb/AF73688F-AA95-4623-B57C-94248BCB04B0.png?1696529968",
+    "symbol": "ALIEN",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x8578530205cecbe5db83f7f29ecfeec860c297c2": {
+    "assetId": "eip155:1/erc20:0x8578530205cecbe5db83f7f29ecfeec860c297c2",
+    "chainId": "eip155:1",
+    "name": "smARTOFGIVING on Ethereum",
+    "precision": 18,
+    "color": "#A2771B",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x8578530205CEcbe5DB83F7F29EcfEEC860C297C2/logo.png",
+    "symbol": "AOG",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x857d4d47a707cb4e409e14ac63b2e79114acd102": {
+    "assetId": "eip155:1/erc20:0x857d4d47a707cb4e409e14ac63b2e79114acd102",
+    "chainId": "eip155:1",
+    "name": "Titter",
+    "precision": 18,
+    "color": "#4580A5",
+    "icon": "https://assets.coingecko.com/coins/images/30344/thumb/200x200.png?1696529244",
+    "symbol": "TITR",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x85eee30c52b0b379b046fb0f85f4f3dc3009afec": {
+    "assetId": "eip155:1/erc20:0x85eee30c52b0b379b046fb0f85f4f3dc3009afec",
+    "chainId": "eip155:1",
+    "name": "Keep Network",
+    "precision": 18,
+    "color": "#4BDBB3",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x85Eee30c52B0b379b046Fb0F85F4f3Dc3009aFEC/logo.png",
+    "symbol": "KEEP",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x85f6eb2bd5a062f5f8560be93fb7147e16c81472": {
+    "assetId": "eip155:1/erc20:0x85f6eb2bd5a062f5f8560be93fb7147e16c81472",
+    "chainId": "eip155:1",
+    "name": "Franklin on Ethereum",
+    "precision": 4,
+    "color": "#CACACA",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x85f6eB2BD5a062f5F8560BE93FB7147e16c81472/logo.png",
+    "symbol": "FLY",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x8616e8ea83f048ab9a5ec513c9412dd2993bce3f": {
+    "assetId": "eip155:1/erc20:0x8616e8ea83f048ab9a5ec513c9412dd2993bce3f",
+    "chainId": "eip155:1",
+    "name": "handleUSD on Ethereum",
+    "precision": 18,
+    "color": "#CFD4C4",
+    "icon": "https://assets.coingecko.com/coins/images/26954/thumb/fxUSDlogo.png?1696526009",
+    "symbol": "FXUSD",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x861950d091704c80b2a0f69d4b3431f0aed7dc7a": {
+    "assetId": "eip155:1/erc20:0x861950d091704c80b2a0f69d4b3431f0aed7dc7a",
+    "chainId": "eip155:1",
+    "name": "Magic BOT",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/32898/thumb/magic_bot_logo.jpg?1699792367",
+    "symbol": "MAGIC",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x8640353cdc9778deab0df45d12fb3013deac079c": {
+    "assetId": "eip155:1/erc20:0x8640353cdc9778deab0df45d12fb3013deac079c",
+    "chainId": "eip155:1",
+    "name": "DEVITA",
+    "precision": 18,
+    "color": "#111F21",
+    "icon": "https://assets.coingecko.com/coins/images/22268/thumb/divita.PNG?1696521612",
+    "symbol": "LIFE",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x8642a849d0dcb7a15a974794668adcfbe4794b56": {
+    "assetId": "eip155:1/erc20:0x8642a849d0dcb7a15a974794668adcfbe4794b56",
+    "chainId": "eip155:1",
+    "name": "Prosper on Ethereum",
+    "precision": 18,
+    "color": "#5D12E7",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x8642A849D0dcb7a15a974794668ADcfbe4794B56/logo.png",
+    "symbol": "PROS",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x865377367054516e17014ccded1e7d814edc9ce4": {
+    "assetId": "eip155:1/erc20:0x865377367054516e17014ccded1e7d814edc9ce4",
+    "chainId": "eip155:1",
+    "name": "DOLA on Ethereum",
+    "precision": 18,
+    "color": "#DAD2F6",
+    "icon": "https://assets.coingecko.com/coins/images/14287/thumb/dola.png?1696513984",
+    "symbol": "DOLA",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x865ec58b06bf6305b886793aa20a2da31d034e68": {
+    "assetId": "eip155:1/erc20:0x865ec58b06bf6305b886793aa20a2da31d034e68",
+    "chainId": "eip155:1",
+    "name": "Mossland",
+    "precision": 18,
+    "color": "#37B1C1",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x865ec58b06bF6305B886793AA20A2da31D034E68/logo.png",
+    "symbol": "MOC",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x8666cb197af5103f7a3a0295b50efea47f3df78b": {
+    "assetId": "eip155:1/erc20:0x8666cb197af5103f7a3a0295b50efea47f3df78b",
+    "chainId": "eip155:1",
+    "name": "Ducks",
+    "precision": 18,
+    "color": "#E6D750",
+    "icon": "https://assets.coingecko.com/coins/images/30147/thumb/ducks.png?1696529068",
+    "symbol": "DUCKS",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x866f8a50a64e68ca66e97e032c5da99538b3f942": {
+    "assetId": "eip155:1/erc20:0x866f8a50a64e68ca66e97e032c5da99538b3f942",
+    "chainId": "eip155:1",
+    "name": "eBlockStock",
+    "precision": 4,
+    "color": "#F6A739",
+    "icon": "https://assets.coingecko.com/coins/images/18636/thumb/eBSO_logo_szines.png?1696518108",
+    "symbol": "EBSO",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x86772b1409b61c639eaac9ba0acfbb6e238e5f83": {
+    "assetId": "eip155:1/erc20:0x86772b1409b61c639eaac9ba0acfbb6e238e5f83",
+    "chainId": "eip155:1",
+    "name": "Indexed Finance on Ethereum",
+    "precision": 18,
+    "color": "#040404",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x86772b1409b61c639EaAc9Ba0AcfBb6E238e5F83/logo.png",
+    "symbol": "NDX",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x869dbe51dc214fcb663604b0f7b548592f8c71f5": {
+    "assetId": "eip155:1/erc20:0x869dbe51dc214fcb663604b0f7b548592f8c71f5",
+    "chainId": "eip155:1",
+    "name": "Okidoki Social",
+    "precision": 9,
+    "color": "#F438FC",
+    "icon": "https://assets.coingecko.com/coins/images/27018/thumb/Okidoki_Logo.png?1696526070",
+    "symbol": "DOKI",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x86a40de6d77331788ba24a85221fb8dbfcbc9bf0": {
+    "color": "#FFFFFF",
+    "icon": "https://raw.githubusercontent.com/Idle-Labs/idle-dashboard/master/public/images/tokens/USDC.svg",
+    "name": "MorphoAave USDC Junior Tranche",
+    "precision": 18,
+    "symbol": "BB_maUSDC",
+    "chainId": "eip155:1",
+    "assetId": "eip155:1/erc20:0x86a40de6d77331788ba24a85221fb8dbfcbc9bf0",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x86b4dbe5d203e634a12364c0e428fa242a3fba98": {
+    "assetId": "eip155:1/erc20:0x86b4dbe5d203e634a12364c0e428fa242a3fba98",
+    "chainId": "eip155:1",
+    "name": "poundtoken",
+    "precision": 18,
+    "color": "#77E9B1",
+    "icon": "https://assets.coingecko.com/coins/images/26591/thumb/gbpt.jpeg?1696525666",
+    "symbol": "GBPT",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x86d1d12523b65203851c571fcc029bf90903fb6d": {
+    "assetId": "eip155:1/erc20:0x86d1d12523b65203851c571fcc029bf90903fb6d",
+    "chainId": "eip155:1",
+    "name": "Bintex Futures on Ethereum",
+    "precision": 18,
+    "color": "#ACD08C",
+    "icon": "https://assets.coingecko.com/coins/images/12117/thumb/Bintexfutures_Icon_Logo.png?1696511961",
+    "symbol": "BNTX",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x86eab36585eddb7a949a0b4771ba733d942a8aa7": {
+    "assetId": "eip155:1/erc20:0x86eab36585eddb7a949a0b4771ba733d942a8aa7",
+    "chainId": "eip155:1",
+    "name": "Reddit",
+    "precision": 9,
+    "color": "#AA5234",
+    "icon": "https://assets.coingecko.com/coins/images/30791/thumb/IMG_0365.jpeg?1696529658",
+    "symbol": "REDDIT",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x86ed939b500e121c0c5f493f399084db596dad20": {
+    "assetId": "eip155:1/erc20:0x86ed939b500e121c0c5f493f399084db596dad20",
+    "chainId": "eip155:1",
+    "name": "SpaceChain  ERC 20 ",
+    "precision": 18,
+    "color": "#171717",
+    "icon": "https://assets.coingecko.com/coins/images/6659/thumb/Spacechain.jpg?1696507004",
+    "symbol": "SPC",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x86efc496dca70bcfd92d19194290e8457a375773": {
+    "assetId": "eip155:1/erc20:0x86efc496dca70bcfd92d19194290e8457a375773",
+    "chainId": "eip155:1",
+    "name": "Silent Notary",
+    "precision": 0,
+    "color": "#64ACFC",
+    "icon": "https://assets.coingecko.com/coins/images/1599/thumb/silent-notary.png?1696502631",
+    "symbol": "UBSN",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x86f0cdb38a853420be4dbf6a3a9a3fe0756bc701": {
+    "assetId": "eip155:1/erc20:0x86f0cdb38a853420be4dbf6a3a9a3fe0756bc701",
+    "chainId": "eip155:1",
+    "name": "Leverage Protocol",
+    "precision": 9,
+    "color": "#1F1C73",
+    "icon": "https://assets.coingecko.com/coins/images/29736/thumb/LEVX_Logo.png?1696528666",
+    "symbol": "LEVX",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x8716fc5da009d3a208f0178b637a50f4ef42400f": {
+    "assetId": "eip155:1/erc20:0x8716fc5da009d3a208f0178b637a50f4ef42400f",
+    "chainId": "eip155:1",
+    "name": "Ultrain",
+    "precision": 18,
+    "color": "#393F53",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x8716Fc5Da009D3A208f0178b637a50F4ef42400F/logo.png",
+    "symbol": "UGAS",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x8727c112c712c4a03371ac87a74dd6ab104af768": {
+    "assetId": "eip155:1/erc20:0x8727c112c712c4a03371ac87a74dd6ab104af768",
+    "chainId": "eip155:1",
+    "name": "Jetcoin",
+    "precision": 18,
+    "color": "#9B6736",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x8727c112C712c4a03371AC87a74dD6aB104Af768/logo.png",
+    "symbol": "JET",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x873fb544277fd7b977b196a826459a69e27ea4ea": {
+    "assetId": "eip155:1/erc20:0x873fb544277fd7b977b196a826459a69e27ea4ea",
+    "chainId": "eip155:1",
+    "name": "RAI yVault",
+    "precision": 18,
+    "color": "#1F2C2B",
+    "icon": "https://assets.coingecko.com/coins/images/28792/thumb/yvRAI-128-0x873fB544277FD7b977B196a826459a69E27eA4ea.png?1696527770",
+    "symbol": "YVRAI",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x875154c31b8858fdda9c7ccbed7ec15dc95943ae": {
+    "assetId": "eip155:1/erc20:0x875154c31b8858fdda9c7ccbed7ec15dc95943ae",
+    "chainId": "eip155:1",
+    "name": "Chopbot",
+    "precision": 8,
+    "color": "#B2B2B2",
+    "icon": "https://assets.coingecko.com/coins/images/31351/thumb/CHOP_LOGO.png?1696530168",
+    "symbol": "CHOP",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x875773784af8135ea0ef43b5a374aad105c5d39e": {
+    "assetId": "eip155:1/erc20:0x875773784af8135ea0ef43b5a374aad105c5d39e",
+    "chainId": "eip155:1",
+    "name": "IDLE on Ethereum",
+    "precision": 18,
+    "color": "#0C24D4",
+    "icon": "https://assets.coingecko.com/coins/images/13286/thumb/image.png?1696513058",
+    "symbol": "IDLE",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x8765b1a0eb57ca49be7eacd35b24a574d0203656": {
+    "assetId": "eip155:1/erc20:0x8765b1a0eb57ca49be7eacd35b24a574d0203656",
+    "chainId": "eip155:1",
+    "name": "MetaGameHub DAO on Ethereum",
+    "precision": 18,
+    "color": "#D7C6E4",
+    "icon": "https://assets.coingecko.com/coins/images/20625/thumb/mgh.PNG?1696520029",
+    "symbol": "MGH",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x876a76c80b32e5cfbb27fd840a1a530ef828ebec": {
+    "assetId": "eip155:1/erc20:0x876a76c80b32e5cfbb27fd840a1a530ef828ebec",
+    "chainId": "eip155:1",
+    "name": "Spotted Turtle",
+    "precision": 18,
+    "color": "#56311F",
+    "icon": "https://assets.coingecko.com/coins/images/31581/thumb/20230829_220418.png?1696530398",
+    "symbol": "ST",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x876a87e17d76e1487186e00792985918abadca6b": {
+    "assetId": "eip155:1/erc20:0x876a87e17d76e1487186e00792985918abadca6b",
+    "chainId": "eip155:1",
+    "name": "MemeDefi",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/33185/thumb/200x200.png?1700953675",
+    "symbol": "MEMEFI",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x8770b7dd89e5f759ee3b226e0c45e890f87ddc48": {
+    "assetId": "eip155:1/erc20:0x8770b7dd89e5f759ee3b226e0c45e890f87ddc48",
+    "chainId": "eip155:1",
+    "name": "Made In Real Life",
+    "precision": 18,
+    "color": "#050506",
+    "icon": "https://assets.coingecko.com/coins/images/28021/thumb/mirl.png?1696527036",
+    "symbol": "MIRL",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x877dd180f71369d9bd70e658baba110a55ee3f1f": {
+    "assetId": "eip155:1/erc20:0x877dd180f71369d9bd70e658baba110a55ee3f1f",
+    "chainId": "eip155:1",
+    "name": "Fat Pickle",
+    "precision": 18,
+    "color": "#71A942",
+    "icon": "https://assets.coingecko.com/coins/images/30726/thumb/_FATP_Logo.png?1696529597",
+    "symbol": "FATP",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x87869a9789291a6cec99f3c3ef2ff71fceb12a8e": {
+    "assetId": "eip155:1/erc20:0x87869a9789291a6cec99f3c3ef2ff71fceb12a8e",
+    "chainId": "eip155:1",
+    "name": "CoinMerge OS",
+    "precision": 9,
+    "color": "#4CFCCC",
+    "icon": "https://assets.coingecko.com/coins/images/29327/thumb/cmos.png?1696528277",
+    "symbol": "CMOS",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x878fcc2bdcccff8c56812607b9a58f29b274c4f0": {
+    "assetId": "eip155:1/erc20:0x878fcc2bdcccff8c56812607b9a58f29b274c4f0",
+    "chainId": "eip155:1",
+    "name": "Derp Coin",
+    "precision": 18,
+    "color": "#ECECEC",
+    "icon": "https://assets.coingecko.com/coins/images/30262/thumb/logo-200x200-transparent.png?1696529170",
+    "symbol": "DERP",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x8790f2fc7ca2e7db841307fb3f4e72a03baf7b47": {
+    "assetId": "eip155:1/erc20:0x8790f2fc7ca2e7db841307fb3f4e72a03baf7b47",
+    "chainId": "eip155:1",
+    "name": "Spillways",
+    "precision": 18,
+    "color": "#3C3C3C",
+    "icon": "https://assets.coingecko.com/coins/images/28358/thumb/1669791775144_%281%29.png?1696527362",
+    "symbol": "SPILLWAYS",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x87931e7ad81914e7898d07c68f145fc0a553d8fb": {
+    "assetId": "eip155:1/erc20:0x87931e7ad81914e7898d07c68f145fc0a553d8fb",
+    "chainId": "eip155:1",
+    "name": "WIZARD Vault  NFTX ",
+    "precision": 18,
+    "color": "#F7D2D6",
+    "icon": "https://assets.coingecko.com/coins/images/17068/thumb/Wizards.png?1696516630",
+    "symbol": "WIZARD",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x8793fb615eb92822f482f88b3137b00aad4c00d2": {
+    "assetId": "eip155:1/erc20:0x8793fb615eb92822f482f88b3137b00aad4c00d2",
+    "chainId": "eip155:1",
+    "name": "revoAI",
+    "precision": 9,
+    "color": "#C8C8C8",
+    "icon": "https://assets.coingecko.com/coins/images/28952/thumb/roveAI1_%283%29.png?1696527925",
+    "symbol": "REVOAI",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x8798249c2e607446efb7ad49ec89dd1865ff4272": {
+    "assetId": "eip155:1/erc20:0x8798249c2e607446efb7ad49ec89dd1865ff4272",
+    "chainId": "eip155:1",
+    "name": "xSUSHI",
+    "precision": 18,
+    "color": "#D12B42",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x8798249c2E607446EfB7Ad49eC89dD1865Ff4272/logo.png",
+    "symbol": "XSUSHI",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x87a92428bbc876d463c21c8e51b903f127d9a9f4": {
+    "assetId": "eip155:1/erc20:0x87a92428bbc876d463c21c8e51b903f127d9a9f4",
+    "chainId": "eip155:1",
+    "name": "Advanced United Continent",
+    "precision": 18,
+    "color": "#045C56",
+    "icon": "https://assets.coingecko.com/coins/images/24369/thumb/200x200.png?1696523553",
+    "symbol": "AUC",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x87d73e916d7057945c9bcd8cdd94e42a6f47f776": {
+    "assetId": "eip155:1/erc20:0x87d73e916d7057945c9bcd8cdd94e42a6f47f776",
+    "chainId": "eip155:1",
+    "name": "NFTX",
+    "precision": 18,
+    "color": "#0F0809",
+    "icon": "https://assets.coingecko.com/coins/images/13574/thumb/NFTX_%28Real%29.jpg?1696513327",
+    "symbol": "NFTX",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x87d907568a0761ea45d2917e324557920668f224": {
+    "assetId": "eip155:1/erc20:0x87d907568a0761ea45d2917e324557920668f224",
+    "chainId": "eip155:1",
+    "name": "Grok2 0",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/32942/thumb/G2C_200px.jpeg?1699874312",
+    "symbol": "GROK20",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x87da7bbd398d6610ded42617e34069d0083ff8ab": {
+    "assetId": "eip155:1/erc20:0x87da7bbd398d6610ded42617e34069d0083ff8ab",
+    "chainId": "eip155:1",
+    "name": "Mind Connect on Ethereum",
+    "precision": 18,
+    "color": "#B41C9F",
+    "icon": "https://assets.coingecko.com/coins/images/29749/thumb/our_logo.png?1696528681",
+    "symbol": "MIND",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x87de305311d5788e8da38d19bb427645b09cb4e5": {
+    "assetId": "eip155:1/erc20:0x87de305311d5788e8da38d19bb427645b09cb4e5",
+    "chainId": "eip155:1",
+    "name": "Verox",
+    "precision": 18,
+    "color": "#AEB7CF",
+    "icon": "https://assets.coingecko.com/coins/images/13669/thumb/IMG-20210115-000024.png?1696513419",
+    "symbol": "VRX",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x87edffde3e14c7a66c9b9724747a1c5696b742e6": {
+    "assetId": "eip155:1/erc20:0x87edffde3e14c7a66c9b9724747a1c5696b742e6",
+    "chainId": "eip155:1",
+    "name": "SWAG Finance",
+    "precision": 18,
+    "color": "#CAF5F2",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x87eDfFDe3E14c7a66c9b9724747a1C5696b742e6/logo.png",
+    "symbol": "SWAG",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x87fdd1e031b356bdc1c55a3231cfe266552d8284": {
+    "assetId": "eip155:1/erc20:0x87fdd1e031b356bdc1c55a3231cfe266552d8284",
+    "chainId": "eip155:1",
+    "name": "PBM Coin",
+    "precision": 14,
+    "color": "#AD425A",
+    "icon": "https://assets.coingecko.com/coins/images/32063/thumb/PBM_Coin_%28Sep_23%29.png?1696530860",
+    "symbol": "PBMC",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x8806926ab68eb5a7b909dcaf6fdbe5d93271d6e2": {
+    "assetId": "eip155:1/erc20:0x8806926ab68eb5a7b909dcaf6fdbe5d93271d6e2",
+    "chainId": "eip155:1",
+    "name": "Uquid Coin",
+    "precision": 18,
+    "color": "#E04441",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x8806926Ab68EB5a7b909DcAf6FdBe5d93271D6e2/logo.png",
+    "symbol": "UQC",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x8810c63470d38639954c6b41aac545848c46484a": {
+    "assetId": "eip155:1/erc20:0x8810c63470d38639954c6b41aac545848c46484a",
+    "chainId": "eip155:1",
+    "name": "Aditus",
+    "precision": 18,
+    "color": "#E17C2F",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x8810C63470d38639954c6B41AaC545848C46484a/logo.png",
+    "symbol": "ADI",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x881145e5a28b6411cb80d0350497217f549b050c": {
+    "assetId": "eip155:1/erc20:0x881145e5a28b6411cb80d0350497217f549b050c",
+    "chainId": "eip155:1",
+    "name": "Farmer Moe",
+    "precision": 18,
+    "color": "#1C1534",
+    "icon": "https://assets.coingecko.com/coins/images/30718/thumb/2scpsxE8_400x400.jpg?1696529589",
+    "symbol": "MOE",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x8811e4dd5ec5eb8764b97cc814b1339089717ada": {
+    "assetId": "eip155:1/erc20:0x8811e4dd5ec5eb8764b97cc814b1339089717ada",
+    "chainId": "eip155:1",
+    "name": "Bithachi",
+    "precision": 8,
+    "color": "#DABA6E",
+    "icon": "https://assets.coingecko.com/coins/images/11765/thumb/bith3.png?1696511645",
+    "symbol": "BITH",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x881ba05de1e78f549cc63a8f6cabb1d4ad32250d": {
+    "assetId": "eip155:1/erc20:0x881ba05de1e78f549cc63a8f6cabb1d4ad32250d",
+    "chainId": "eip155:1",
+    "name": "00 Token",
+    "precision": 18,
+    "color": "#060606",
+    "icon": "https://assets.coingecko.com/coins/images/27742/thumb/200x200.png?1696526765",
+    "symbol": "00",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x88303fed02b31db9c7a9eafb711da9ef4a03e5d3": {
+    "assetId": "eip155:1/erc20:0x88303fed02b31db9c7a9eafb711da9ef4a03e5d3",
+    "chainId": "eip155:1",
+    "name": "Ziktalk",
+    "precision": 18,
+    "color": "#365691",
+    "icon": "https://assets.coingecko.com/coins/images/8991/thumb/ziktalk.logo.jpeg?1696509132",
+    "symbol": "ZIK",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x8848812bd31aeee33313c10a840ffc3169078c5b": {
+    "assetId": "eip155:1/erc20:0x8848812bd31aeee33313c10a840ffc3169078c5b",
+    "chainId": "eip155:1",
+    "name": "CrossFi on Ethereum",
+    "precision": 18,
+    "color": "#04D4D4",
+    "icon": "https://assets.coingecko.com/coins/images/15162/thumb/11901619752967_.pic_hd.png?1696514817",
+    "symbol": "CRFI",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x884ddbb5dc6c2cef77d3e74c6ccca315797d655b": {
+    "assetId": "eip155:1/erc20:0x884ddbb5dc6c2cef77d3e74c6ccca315797d655b",
+    "chainId": "eip155:1",
+    "name": "Carnomaly",
+    "precision": 18,
+    "color": "#0FB5E0",
+    "icon": "https://assets.coingecko.com/coins/images/14403/thumb/tcjOTKE3_400x400.png?1696514096",
+    "symbol": "CARR",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x88536c9b2c4701b8db824e6a16829d5b5eb84440": {
+    "assetId": "eip155:1/erc20:0x88536c9b2c4701b8db824e6a16829d5b5eb84440",
+    "chainId": "eip155:1",
+    "name": "Atlas USV on Ethereum",
+    "precision": 9,
+    "color": "#081623",
+    "icon": "https://assets.coingecko.com/coins/images/22066/thumb/7iUyjg5t.png?1696521410",
+    "symbol": "USV",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x8861cff2366c1128fd699b68304ad99a0764ef9a": {
+    "assetId": "eip155:1/erc20:0x8861cff2366c1128fd699b68304ad99a0764ef9a",
+    "chainId": "eip155:1",
+    "name": "Cyclone Protocol on Ethereum",
+    "precision": 18,
+    "color": "#D2D0D2",
+    "icon": "https://assets.coingecko.com/coins/images/14065/thumb/b3_DFjFp_400x400.jpg?1696513790",
+    "symbol": "CYC",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x887168120cb89fb06f3e74dc4af20d67df0977f6": {
+    "assetId": "eip155:1/erc20:0x887168120cb89fb06f3e74dc4af20d67df0977f6",
+    "chainId": "eip155:1",
+    "name": "Sekuritance on Ethereum",
+    "precision": 18,
+    "color": "#64BCEC",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x887168120cb89Fb06F3E74Dc4AF20D67dF0977f6/logo.png",
+    "symbol": "SKRT",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x88800092ff476844f74dc2fc427974bbee2794ae": {
+    "assetId": "eip155:1/erc20:0x88800092ff476844f74dc2fc427974bbee2794ae",
+    "chainId": "eip155:1",
+    "name": "Ambire Wallet on Ethereum",
+    "precision": 18,
+    "color": "#7018F8",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x88800092fF476844f74dC2FC427974BBee2794Ae/logo.png",
+    "symbol": "WALLET",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x8888801af4d980682e47f1a9036e589479e835c5": {
+    "assetId": "eip155:1/erc20:0x8888801af4d980682e47f1a9036e589479e835c5",
+    "chainId": "eip155:1",
+    "name": "88mph",
+    "precision": 18,
+    "color": "#050405",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x8888801aF4d980682e47f1A9036e589479e835C5/logo.png",
+    "symbol": "MPH",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x888888435fde8e7d4c54cab67f206e4199454c60": {
+    "assetId": "eip155:1/erc20:0x888888435fde8e7d4c54cab67f206e4199454c60",
+    "chainId": "eip155:1",
+    "name": "DFX Finance on Ethereum",
+    "precision": 18,
+    "color": "#09D5F4",
+    "icon": "https://assets.coingecko.com/coins/images/14091/thumb/DFX.png?1696513813",
+    "symbol": "DFX",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x888888848b652b3e3a0f34c96e00eec0f3a23f72": {
+    "assetId": "eip155:1/erc20:0x888888848b652b3e3a0f34c96e00eec0f3a23f72",
+    "chainId": "eip155:1",
+    "name": "Alien Worlds on Ethereum",
+    "precision": 4,
+    "color": "#0F0F0F",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x888888848B652B3E3a0f34c96E00EEC0F3a23F72/logo.png",
+    "symbol": "TLM",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x888888888888f195e27a2e0f98d712952ab9348e": {
+    "assetId": "eip155:1/erc20:0x888888888888f195e27a2e0f98d712952ab9348e",
+    "chainId": "eip155:1",
+    "name": "Shorter Finance on Ethereum",
+    "precision": 18,
+    "color": "#EC844C",
+    "icon": "https://assets.coingecko.com/coins/images/27002/thumb/box-1.png?1696526055",
+    "symbol": "IPISTR",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x888888888889c00c67689029d7856aac1065ec11": {
+    "assetId": "eip155:1/erc20:0x888888888889c00c67689029d7856aac1065ec11",
+    "chainId": "eip155:1",
+    "name": "Opium on Ethereum",
+    "precision": 18,
+    "color": "#DDAE48",
+    "icon": "https://assets.coingecko.com/coins/images/13758/thumb/opium-token-black_%281%29.png?1696513500",
+    "symbol": "OPIUM",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x888cea2bbdd5d47a4032cf63668d7525c74af57a": {
+    "assetId": "eip155:1/erc20:0x888cea2bbdd5d47a4032cf63668d7525c74af57a",
+    "chainId": "eip155:1",
+    "name": "Poof Token",
+    "precision": 18,
+    "color": "#272A26",
+    "icon": "https://assets.coingecko.com/coins/images/28885/thumb/C3AD4384-2AB9-4364-8DEA-AE32A091F182.jpeg?1696527862",
+    "symbol": "POOF",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x88a9a52f944315d5b4e917b9689e65445c401e83": {
+    "assetId": "eip155:1/erc20:0x88a9a52f944315d5b4e917b9689e65445c401e83",
+    "chainId": "eip155:1",
+    "name": "FEAR on Ethereum",
+    "precision": 18,
+    "color": "#040404",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x88A9A52F944315D5B4e917b9689e65445C401E83/logo.png",
+    "symbol": "FEAR",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x88aa4a6c5050b9a1b2aa7e34d0582025ca6ab745": {
+    "assetId": "eip155:1/erc20:0x88aa4a6c5050b9a1b2aa7e34d0582025ca6ab745",
+    "chainId": "eip155:1",
+    "name": "Dexpools",
+    "precision": 18,
+    "color": "#B2E3FC",
+    "icon": "https://assets.coingecko.com/coins/images/25114/thumb/1_0w4P8R5heRFwRomJ4vPCWQ.png?1696524264",
+    "symbol": "DXP",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x88acdd2a6425c3faae4bc9650fd7e27e0bebb7ab": {
+    "assetId": "eip155:1/erc20:0x88acdd2a6425c3faae4bc9650fd7e27e0bebb7ab",
+    "chainId": "eip155:1",
+    "name": "Alchemist",
+    "precision": 18,
+    "color": "#C25DF1",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x88ACDd2a6425c3FaAE4Bc9650Fd7E27e0Bebb7aB/logo.png",
+    "symbol": "MIST",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x88d50b466be55222019d71f9e8fae17f5f45fca1": {
+    "assetId": "eip155:1/erc20:0x88d50b466be55222019d71f9e8fae17f5f45fca1",
+    "chainId": "eip155:1",
+    "name": "Cryptaur",
+    "precision": 8,
+    "color": "#AFAFAF",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x88d50B466BE55222019D71F9E8fAe17f5f45FCA1/logo.png",
+    "symbol": "CPT",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x88df592f8eb5d7bd38bfef7deb0fbc02cf3778a0": {
+    "assetId": "eip155:1/erc20:0x88df592f8eb5d7bd38bfef7deb0fbc02cf3778a0",
+    "chainId": "eip155:1",
+    "name": "Tellor Tributes on Ethereum",
+    "precision": 18,
+    "color": "#45FAAB",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x88dF592F8eb5D7Bd38bFeF7dEb0fBc02cf3778a0/logo.png",
+    "symbol": "TRB",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x8928f8d41377856ddf099d23b260375d178e5677": {
+    "assetId": "eip155:1/erc20:0x8928f8d41377856ddf099d23b260375d178e5677",
+    "chainId": "eip155:1",
+    "name": "Rake Casino",
+    "precision": 18,
+    "color": "#BCAABC",
+    "icon": "https://assets.coingecko.com/coins/images/31760/thumb/LOGO-02_3.png?1696530579",
+    "symbol": "RAKE",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x8929e9dbd2785e3ba16175e596cdd61520fee0d1": {
+    "assetId": "eip155:1/erc20:0x8929e9dbd2785e3ba16175e596cdd61520fee0d1",
+    "chainId": "eip155:1",
+    "name": "Altitude on Ethereum",
+    "precision": 18,
+    "color": "#436CFC",
+    "icon": "https://assets.coingecko.com/coins/images/30114/thumb/logo.png?1696529036",
+    "symbol": "ALTD",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x892a6f9df0147e5f079b0993f486f9aca3c87881": {
+    "assetId": "eip155:1/erc20:0x892a6f9df0147e5f079b0993f486f9aca3c87881",
+    "chainId": "eip155:1",
+    "name": "xFUND",
+    "precision": 9,
+    "color": "#040404",
+    "icon": "https://assets.coingecko.com/coins/images/13770/thumb/xfund.png?1696513512",
+    "symbol": "XFUND",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x89303500a7abfb178b274fd89f2469c264951e1f": {
+    "assetId": "eip155:1/erc20:0x89303500a7abfb178b274fd89f2469c264951e1f",
+    "chainId": "eip155:1",
+    "name": "Ref",
+    "precision": 8,
+    "color": "#F48D33",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x89303500a7Abfb178B274FD89F2469C264951e1f/logo.png",
+    "symbol": "REF",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x8947da500eb47f82df21143d0c01a29862a8c3c5": {
+    "assetId": "eip155:1/erc20:0x8947da500eb47f82df21143d0c01a29862a8c3c5",
+    "chainId": "eip155:1",
+    "name": "Thales on Ethereum",
+    "precision": 18,
+    "color": "#11136F",
+    "icon": "https://assets.coingecko.com/coins/images/18388/thumb/CLVZJN_C_400x400.png?1696517879",
+    "symbol": "THALES",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x89509aa1d14a8e1e5364ec4c3b041213bcdbe08d": {
+    "assetId": "eip155:1/erc20:0x89509aa1d14a8e1e5364ec4c3b041213bcdbe08d",
+    "chainId": "eip155:1",
+    "name": "ZURRENCY",
+    "precision": 18,
+    "color": "#1879CE",
+    "icon": "https://assets.coingecko.com/coins/images/22240/thumb/logo.png?1696521585",
+    "symbol": "ZURR",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x8954d907520532c1f0d89d42569232fd0f995fdf": {
+    "assetId": "eip155:1/erc20:0x8954d907520532c1f0d89d42569232fd0f995fdf",
+    "chainId": "eip155:1",
+    "name": "Tradix",
+    "precision": 8,
+    "color": "#0D0D0D",
+    "icon": "https://assets.coingecko.com/coins/images/28997/thumb/Tradix_Logo.png?1696527969",
+    "symbol": "TX",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x8971f9fd7196e5cee2c1032b50f656855af7dd26": {
+    "assetId": "eip155:1/erc20:0x8971f9fd7196e5cee2c1032b50f656855af7dd26",
+    "chainId": "eip155:1",
+    "name": "Lambda",
+    "precision": 18,
+    "color": "#0B90A8",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x8971f9fd7196e5cEE2C1032B50F656855af7Dd26/logo.png",
+    "symbol": "LAMB",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed": {
+    "assetId": "eip155:1/erc20:0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed",
+    "chainId": "eip155:1",
+    "name": "pNetwork on Ethereum",
+    "precision": 18,
+    "color": "#FBF4D1",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x89Ab32156e46F46D02ade3FEcbe5Fc4243B9AAeD/logo.png",
+    "symbol": "PNT",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x89b69f2d1adffa9a253d40840b6baa7fc903d697": {
+    "assetId": "eip155:1/erc20:0x89b69f2d1adffa9a253d40840b6baa7fc903d697",
+    "chainId": "eip155:1",
+    "name": "Dione",
+    "precision": 9,
+    "color": "#47DDFA",
+    "icon": "https://assets.coingecko.com/coins/images/26931/thumb/dione_200x200.png?1696525987",
+    "symbol": "DIONE",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x89bd2e7e388fab44ae88bef4e1ad12b4f1e0911c": {
+    "assetId": "eip155:1/erc20:0x89bd2e7e388fab44ae88bef4e1ad12b4f1e0911c",
+    "chainId": "eip155:1",
+    "name": "Peanut on Ethereum",
+    "precision": 18,
+    "color": "#F0572D",
+    "icon": "https://assets.coingecko.com/coins/images/13958/thumb/2sAMZXpO_400x400.jpg?1696513694",
+    "symbol": "NUX",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x89d24a6b4ccb1b6faa2625fe562bdd9a23260359": {
+    "assetId": "eip155:1/erc20:0x89d24a6b4ccb1b6faa2625fe562bdd9a23260359",
+    "chainId": "eip155:1",
+    "name": "Sai",
+    "precision": 18,
+    "color": "#FCCB23",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x89d24A6b4CcB1B6fAA2625fE562bDD9a23260359/logo.png",
+    "symbol": "SAI",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x89fb927240750c1b15d4743cd58440fc5f14a11c": {
+    "assetId": "eip155:1/erc20:0x89fb927240750c1b15d4743cd58440fc5f14a11c",
+    "chainId": "eip155:1",
+    "name": "Attila",
+    "precision": 18,
+    "color": "#BCDCFC",
+    "icon": "https://assets.coingecko.com/coins/images/11337/thumb/LOGO_%2874%29.png?1696511258",
+    "symbol": "ATT",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x8a001303158670e284950565164933372807cd48": {
+    "assetId": "eip155:1/erc20:0x8a001303158670e284950565164933372807cd48",
+    "chainId": "eip155:1",
+    "name": "WaifuAI",
+    "precision": 18,
+    "color": "#DFCDD4",
+    "icon": "https://assets.coingecko.com/coins/images/30606/thumb/waifuai.jpg?1696529476",
+    "symbol": "WFAI",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x8a0c816a52e71a1e9b6719580ebe754709c55198": {
+    "assetId": "eip155:1/erc20:0x8a0c816a52e71a1e9b6719580ebe754709c55198",
+    "chainId": "eip155:1",
+    "name": "zkSync Labs",
+    "precision": 18,
+    "color": "#0D141D",
+    "icon": "https://assets.coingecko.com/coins/images/30723/thumb/our_logo.png?1696529594",
+    "symbol": "ZKLAB",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x8a0cdfab62ed35b836dc0633482798421c81b3ec": {
+    "assetId": "eip155:1/erc20:0x8a0cdfab62ed35b836dc0633482798421c81b3ec",
+    "chainId": "eip155:1",
+    "name": "Spherium on Ethereum",
+    "precision": 18,
+    "color": "#3F59F1",
+    "icon": "https://assets.coingecko.com/coins/images/17787/thumb/Group_15.png?1696517311",
+    "symbol": "SPHRI",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x8a2279d4a90b6fe1c4b30fa660cc9f926797baa2": {
+    "assetId": "eip155:1/erc20:0x8a2279d4a90b6fe1c4b30fa660cc9f926797baa2",
+    "chainId": "eip155:1",
+    "name": "Chromia on Ethereum",
+    "precision": 6,
+    "color": "#241C25",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x8A2279d4A90B6fe1C4B30fa660cC9f926797bAA2/logo.png",
+    "symbol": "CHR",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x8a3c710e41cd95799c535f22dbae371d7c858651": {
+    "assetId": "eip155:1/erc20:0x8a3c710e41cd95799c535f22dbae371d7c858651",
+    "chainId": "eip155:1",
+    "name": "Xccelerate",
+    "precision": 18,
+    "color": "#14191F",
+    "icon": "https://assets.coingecko.com/coins/images/31425/thumb/Xccelerate.png?1696530240",
+    "symbol": "XLRT",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x8a3d77e9d6968b780564936d15b09805827c21fa": {
+    "assetId": "eip155:1/erc20:0x8a3d77e9d6968b780564936d15b09805827c21fa",
+    "chainId": "eip155:1",
+    "name": "Archethic on Ethereum",
+    "precision": 18,
+    "color": "#D3D6F4",
+    "icon": "https://assets.coingecko.com/coins/images/12330/thumb/Archethic_logo.png?1696512158",
+    "symbol": "UCO",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x8a40c222996f9f3431f63bf80244c36822060f12": {
+    "assetId": "eip155:1/erc20:0x8a40c222996f9f3431f63bf80244c36822060f12",
+    "chainId": "eip155:1",
+    "name": "FINXFLO",
+    "precision": 18,
+    "color": "#FC7E40",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x8a40c222996f9F3431f63Bf80244C36822060f12/logo.png",
+    "symbol": "FXF",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x8a4584f0eefda8a9b459264dc7a0d62bba9b5484": {
+    "assetId": "eip155:1/erc20:0x8a4584f0eefda8a9b459264dc7a0d62bba9b5484",
+    "chainId": "eip155:1",
+    "name": "BUSINESS",
+    "precision": 18,
+    "color": "#41671E",
+    "icon": "https://assets.coingecko.com/coins/images/31782/thumb/ezgif.com-resize_%2811%29.png?1696530599",
+    "symbol": "BUSINESS",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x8a458a9dc9048e005d22849f470891b840296619": {
+    "assetId": "eip155:1/erc20:0x8a458a9dc9048e005d22849f470891b840296619",
+    "chainId": "eip155:1",
+    "name": "Aave v3 MKR",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/32889/thumb/mkr.png?1699774767",
+    "symbol": "AMKR",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x8a6aca71a218301c7081d4e96d64292d3b275ce0": {
+    "assetId": "eip155:1/erc20:0x8a6aca71a218301c7081d4e96d64292d3b275ce0",
+    "chainId": "eip155:1",
+    "name": "S Finance",
+    "precision": 18,
+    "color": "#EC3C04",
+    "icon": "https://assets.coingecko.com/coins/images/12605/thumb/Z7D8B4b.png?1696512414",
+    "symbol": "SFG",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x8a6d4c8735371ebaf8874fbd518b56edd66024eb": {
+    "assetId": "eip155:1/erc20:0x8a6d4c8735371ebaf8874fbd518b56edd66024eb",
+    "chainId": "eip155:1",
+    "name": "BLOCKS",
+    "precision": 18,
+    "color": "#B2909C",
+    "icon": "https://assets.coingecko.com/coins/images/19666/thumb/blocks_logo_200200.png?1696519094",
+    "symbol": "BLOCKS",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x8a7664e782860e856031d6c31eb3bde721bc362b": {
+    "assetId": "eip155:1/erc20:0x8a7664e782860e856031d6c31eb3bde721bc362b",
+    "chainId": "eip155:1",
+    "name": "RektSkulls",
+    "precision": 18,
+    "color": "#4E443E",
+    "icon": "https://assets.coingecko.com/coins/images/28910/thumb/REKT_icon_200.png?1696527886",
+    "symbol": "REKT",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x8a7adc1b690e81c758f1bd0f72dfe27ae6ec56a5": {
+    "assetId": "eip155:1/erc20:0x8a7adc1b690e81c758f1bd0f72dfe27ae6ec56a5",
+    "chainId": "eip155:1",
+    "name": "Bolide on Ethereum",
+    "precision": 18,
+    "color": "#22BE6A",
+    "icon": "https://assets.coingecko.com/coins/images/25548/thumb/bld_logo.png?1696524681",
+    "symbol": "BLID",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x8a7b7b9b2f7d0c63f66171721339705a6188a7d5": {
+    "assetId": "eip155:1/erc20:0x8a7b7b9b2f7d0c63f66171721339705a6188a7d5",
+    "chainId": "eip155:1",
+    "name": "EtherDoge",
+    "precision": 18,
+    "color": "#D33B3B",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x8a7b7B9B2f7d0c63F66171721339705A6188a7D5/logo.png",
+    "symbol": "EDOGE",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x8a8116a794744977941c7d3743517410969aacbb": {
+    "assetId": "eip155:1/erc20:0x8a8116a794744977941c7d3743517410969aacbb",
+    "chainId": "eip155:1",
+    "name": "Shiba Punkz",
+    "precision": 9,
+    "color": "#DBDCDD",
+    "icon": "https://assets.coingecko.com/coins/images/27163/thumb/shibapunkzlogo.JPG?1696526213",
+    "symbol": "SPUNK",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x8a854288a5976036a725879164ca3e91d30c6a1b": {
+    "assetId": "eip155:1/erc20:0x8a854288a5976036a725879164ca3e91d30c6a1b",
+    "chainId": "eip155:1",
+    "name": "GET Protocol on Ethereum",
+    "precision": 18,
+    "color": "#04C494",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x8a854288a5976036A725879164Ca3e91d30c6A1B/logo.png",
+    "symbol": "GET",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x8a9c67fee641579deba04928c4bc45f66e26343a": {
+    "assetId": "eip155:1/erc20:0x8a9c67fee641579deba04928c4bc45f66e26343a",
+    "chainId": "eip155:1",
+    "name": "Jarvis Reward on Ethereum",
+    "precision": 18,
+    "color": "#54FC74",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x8A9C67fee641579dEbA04928c4BC45F66e26343A/logo.png",
+    "symbol": "JRT",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x8ab7404063ec4dbcfd4598215992dc3f8ec853d7": {
+    "assetId": "eip155:1/erc20:0x8ab7404063ec4dbcfd4598215992dc3f8ec853d7",
+    "chainId": "eip155:1",
+    "name": "Akropolis",
+    "precision": 18,
+    "color": "#B13EF8",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x8Ab7404063Ec4DBcfd4598215992DC3F8EC853d7/logo.png",
+    "symbol": "AKRO",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x8ab98330473101309db94b625f9997366a518223": {
+    "assetId": "eip155:1/erc20:0x8ab98330473101309db94b625f9997366a518223",
+    "chainId": "eip155:1",
+    "name": "PlasticHero",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/32771/thumb/Ticker_%282%29.png?1699343244",
+    "symbol": "PTH",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x8acee0fcee91cedad1c5013f031762c814740587": {
+    "assetId": "eip155:1/erc20:0x8acee0fcee91cedad1c5013f031762c814740587",
+    "chainId": "eip155:1",
+    "name": "SAUDI PEPE",
+    "precision": 18,
+    "color": "#33652E",
+    "icon": "https://assets.coingecko.com/coins/images/30318/thumb/undefined_-_Imgur.png?1696529219",
+    "symbol": "SAUDIPEPE",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x8ae452d9f8f08f21ff81c94260cb85302a31ac30": {
+    "assetId": "eip155:1/erc20:0x8ae452d9f8f08f21ff81c94260cb85302a31ac30",
+    "chainId": "eip155:1",
+    "name": "XFL",
+    "precision": 18,
+    "color": "#C85075",
+    "icon": "https://assets.coingecko.com/coins/images/30617/thumb/flowLogoSquare.png?1696529486",
+    "symbol": "XFL",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x8ae4bf2c33a8e667de34b54938b0ccd03eb8cc06": {
+    "assetId": "eip155:1/erc20:0x8ae4bf2c33a8e667de34b54938b0ccd03eb8cc06",
+    "chainId": "eip155:1",
+    "name": "Patientory",
+    "precision": 8,
+    "color": "#DB052D",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x8Ae4BF2C33a8e667de34B54938B0ccD03Eb8CC06/logo.png",
+    "symbol": "PTOY",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x8af78f0c818302164f73b2365fe152c2d1fe80e1": {
+    "assetId": "eip155:1/erc20:0x8af78f0c818302164f73b2365fe152c2d1fe80e1",
+    "chainId": "eip155:1",
+    "name": "Financie Token on Ethereum",
+    "precision": 18,
+    "color": "#FAF8F6",
+    "icon": "https://assets.coingecko.com/coins/images/29099/thumb/VcJQzCWT_400x400.jpg?1696528062",
+    "symbol": "FNCT",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x8b0fde007458ee153bd0f66cd448af5fb3d99b43": {
+    "assetId": "eip155:1/erc20:0x8b0fde007458ee153bd0f66cd448af5fb3d99b43",
+    "chainId": "eip155:1",
+    "name": "Mastermind",
+    "precision": 18,
+    "color": "#D5FBFC",
+    "icon": "https://assets.coingecko.com/coins/images/29205/thumb/Mastermind.png?1696528164",
+    "symbol": "MASTERMIND",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x8b1f49491477e0fb46a29fef53f1ea320d13c349": {
+    "assetId": "eip155:1/erc20:0x8b1f49491477e0fb46a29fef53f1ea320d13c349",
+    "chainId": "eip155:1",
+    "name": "MicroMoney",
+    "precision": 6,
+    "color": "#FB6B05",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x8B1F49491477e0fB46a29fef53F1EA320D13c349/logo.png",
+    "symbol": "AMM",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x8b227d72570d3ead66014bca8305cbef7f90d1ee": {
+    "assetId": "eip155:1/erc20:0x8b227d72570d3ead66014bca8305cbef7f90d1ee",
+    "chainId": "eip155:1",
+    "name": "LIZA",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/32841/thumb/Liza.png?1699589053",
+    "symbol": "LIZA",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x8b3870df408ff4d7c3a26df852d41034eda11d81": {
+    "assetId": "eip155:1/erc20:0x8b3870df408ff4d7c3a26df852d41034eda11d81",
+    "chainId": "eip155:1",
+    "name": "IOI on Ethereum",
+    "precision": 6,
+    "color": "#141414",
+    "icon": "https://assets.coingecko.com/coins/images/15952/thumb/IOI_new_logo.png?1696515564",
+    "symbol": "IOI",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x8b39b70e39aa811b69365398e0aace9bee238aeb": {
+    "assetId": "eip155:1/erc20:0x8b39b70e39aa811b69365398e0aace9bee238aeb",
+    "chainId": "eip155:1",
+    "name": "Red Kite",
+    "precision": 18,
+    "color": "#0BDCFC",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x8B39B70E39Aa811b69365398e0aACe9bee238AEb/logo.png",
+    "symbol": "PKF",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x8b6cda5cc518c904e8844f445e1a7c7d2db0ff16": {
+    "assetId": "eip155:1/erc20:0x8b6cda5cc518c904e8844f445e1a7c7d2db0ff16",
+    "chainId": "eip155:1",
+    "name": "SF Capital",
+    "precision": 18,
+    "color": "#D4141E",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x8b6CdA5CC518c904e8844f445E1A7C7d2DB0fF16/logo.png",
+    "symbol": "SFCP",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x8b79656fc38a04044e495e22fad747126ca305c4": {
+    "assetId": "eip155:1/erc20:0x8b79656fc38a04044e495e22fad747126ca305c4",
+    "chainId": "eip155:1",
+    "name": "AgaveCoin",
+    "precision": 18,
+    "color": "#E2EADE",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x8b79656FC38a04044E495e22fAD747126ca305C4/logo.png",
+    "symbol": "AGVC",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x8b937af714ac7e2129bd33d93641f52b665ca352": {
+    "assetId": "eip155:1/erc20:0x8b937af714ac7e2129bd33d93641f52b665ca352",
+    "chainId": "eip155:1",
+    "name": "JizzRocket",
+    "precision": 18,
+    "color": "#B03598",
+    "icon": "https://assets.coingecko.com/coins/images/28985/thumb/bLQvXuh_%281%29.png?1696527958",
+    "symbol": "JIZZ",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x8b9f7e9586633ca4abffb1f746da8daed7849cb2": {
+    "assetId": "eip155:1/erc20:0x8b9f7e9586633ca4abffb1f746da8daed7849cb2",
+    "chainId": "eip155:1",
+    "name": "Cremation Coin on Ethereum",
+    "precision": 18,
+    "color": "#0A1814",
+    "icon": "https://assets.coingecko.com/coins/images/29793/thumb/photo_2023-02-07_04-43-14.jpg?1696528723",
+    "symbol": "CREMAT",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x8baef8c9568c21b1a2b2fd048f8b4da835691fd0": {
+    "assetId": "eip155:1/erc20:0x8baef8c9568c21b1a2b2fd048f8b4da835691fd0",
+    "chainId": "eip155:1",
+    "name": "USD ZEE",
+    "precision": 18,
+    "color": "#A61212",
+    "icon": "https://assets.coingecko.com/coins/images/24876/thumb/003.png?1696524035",
+    "symbol": "USDZ",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x8bbe1a2961b41340468d0548c2cd5b7dfa9b684c": {
+    "assetId": "eip155:1/erc20:0x8bbe1a2961b41340468d0548c2cd5b7dfa9b684c",
+    "chainId": "eip155:1",
+    "name": "Handy",
+    "precision": 18,
+    "color": "#FCAC4C",
+    "icon": "https://assets.coingecko.com/coins/images/21944/thumb/Handy_Token_symbol-01.png?1696521293",
+    "symbol": "HANDY",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x8bbf1dccbedd5c70d8e793d432fb56b848dd1698": {
+    "assetId": "eip155:1/erc20:0x8bbf1dccbedd5c70d8e793d432fb56b848dd1698",
+    "chainId": "eip155:1",
+    "name": "Ape In on Ethereum",
+    "precision": 18,
+    "color": "#D0C1BA",
+    "icon": "https://assets.coingecko.com/coins/images/18262/thumb/apein.PNG?1696517757",
+    "symbol": "APEIN",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x8bcbef61acd66537362f38167f11875134ffcd63": {
+    "assetId": "eip155:1/erc20:0x8bcbef61acd66537362f38167f11875134ffcd63",
+    "chainId": "eip155:1",
+    "name": "Pepe Girl",
+    "precision": 18,
+    "color": "#48522B",
+    "icon": "https://assets.coingecko.com/coins/images/29896/thumb/pepe_sad_reverse_200X200.png?1696528820",
+    "symbol": "PEPEG",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x8bcd06492416a749c9369009b3429861b7f27f6e": {
+    "assetId": "eip155:1/erc20:0x8bcd06492416a749c9369009b3429861b7f27f6e",
+    "chainId": "eip155:1",
+    "name": "BlackHat Coin on Ethereum",
+    "precision": 8,
+    "color": "#C2C2C3",
+    "icon": "https://assets.coingecko.com/coins/images/15987/thumb/logo_light.png?1696515600",
+    "symbol": "BLKC",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x8be8b0dde627dd6be9a4b7fcadd04899aabdb2b1": {
+    "assetId": "eip155:1/erc20:0x8be8b0dde627dd6be9a4b7fcadd04899aabdb2b1",
+    "chainId": "eip155:1",
+    "name": "Rand",
+    "precision": 6,
+    "color": "#FFFFFF",
+    "icon": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAIAAAACACAMAAAD04JH5AAADAFBMVEUtN0grJtj///8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACfHK2MAAABAHRSTlP/////AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAf6K/dgAAQItJREFUeNoBgEB/vwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAgICAgICAgICAgICAgICAgICAgICAQEBAQEBAQEBAQEBAQECAgICAgICAAAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgEBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAwAAAAAAAAAAAAAAAAAAAAACAgICAgICAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAwAAAAAAAAAAAAAAAAAAAAACAgICAgICAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAwAAAAAAAAAAAAAAAAAAAAACAgICAgICAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAwAAAAAAAAAAAAAAAAAAAAACAgICAgICAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAwAAAAAAAAAAAAAAAAAAAAACAgICAgICAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAwAAAAAAAAAAAAAAAAAAAAACAgICAgICAwMDAwMDAwMDAwMDAwMDAwMDAwMDAgICAgICAgEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwMDAwMDAwMDAwMDAwMDAwMDAwMDAgICAgICAgAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAgICAgICAgAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAgICAgICAgMAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAgICAgICAgMAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAgICAgICAgMAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAgICAgICAgMAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAgICAgICAgMAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAgICAgICAgMAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAgICAgICAgICAgICAgICAgICAgICAQMDAwMDAwMBAQEBAQECAgICAgICAwMDAwMDAwICAgICAgIAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAICAgICAgIDAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAICAgICAgIDAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAICAgICAgIDAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAICAgICAgIDAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAICAgICAgIDAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAICAgICAgIDAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAwMDAwMDAwICAgICAgIDAwMDAwMDAwEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAADAwMDAwMCAgICAgICAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAwEBAQEBAQICAgICAgIDAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAACAgICAgICAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAwEBAQEBAQICAgICAgIDAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAACAgICAgICAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAwEBAQEBAQICAgICAgIDAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAACAgICAgICAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAwEBAQEBAQICAgICAgIDAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAACAgICAgICAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAwEBAQEBAQICAgICAgIDAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAACAgICAgICAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAwEBAQEBAQICAgICAgIDAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAACAgICAgICAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAwEBAQEBAQEDAwMDAwMCAgICAgICAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAwMDAwMDAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAwMDAwMDAgICAgICAgEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAAMDAwMDAwMAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAwAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAwAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAwAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAwAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAwAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAwMDAwMDAwEBAQEBAQEBAQEBAQEBAQEBAQEBAQMDAwMDAwMBAQEBAQEBAwMDAwMDAwAAAAAAAAAAAAAAAAAAAAAAAAEBAQMDAwMDAwMBAQEBAQEBAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOFuM0mPavBeAAAAAElFTkSuQmCC",
+    "symbol": "RND",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x8bf30e9f44e5d068a9d0c20da22660997a532e33": {
+    "assetId": "eip155:1/erc20:0x8bf30e9f44e5d068a9d0c20da22660997a532e33",
+    "chainId": "eip155:1",
+    "name": "GhostDAG org",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/33152/thumb/GD256.png?1700825767",
+    "symbol": "GDAG",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x8c088775e4139af116ac1fa6f281bbf71e8c1c73": {
+    "assetId": "eip155:1/erc20:0x8c088775e4139af116ac1fa6f281bbf71e8c1c73",
+    "chainId": "eip155:1",
+    "name": "PUMLx",
+    "precision": 18,
+    "color": "#59A196",
+    "icon": "https://assets.coingecko.com/coins/images/27253/thumb/pumlx.png?1696526302",
+    "symbol": "PUMLX",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x8c130499d33097d4d000d3332e1672f75b431543": {
+    "assetId": "eip155:1/erc20:0x8c130499d33097d4d000d3332e1672f75b431543",
+    "chainId": "eip155:1",
+    "name": "Hoppy Token",
+    "precision": 8,
+    "color": "#AFB231",
+    "icon": "https://assets.coingecko.com/coins/images/31027/thumb/IMG_1349.jpeg?1696529863",
+    "symbol": "HOPPY",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x8c15ef5b4b21951d50e53e4fbda8298ffad25057": {
+    "assetId": "eip155:1/erc20:0x8c15ef5b4b21951d50e53e4fbda8298ffad25057",
+    "chainId": "eip155:1",
+    "name": "Function X",
+    "precision": 18,
+    "color": "#040404",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x8c15Ef5b4B21951d50E53E4fbdA8298FFAD25057/logo.png",
+    "symbol": "FX",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x8c1bed5b9a0928467c9b1341da1d7bd5e10b6549": {
+    "assetId": "eip155:1/erc20:0x8c1bed5b9a0928467c9b1341da1d7bd5e10b6549",
+    "chainId": "eip155:1",
+    "name": "Liquid Staked ETH",
+    "precision": 18,
+    "color": "#242612",
+    "icon": "https://assets.coingecko.com/coins/images/28848/thumb/LsETH-receipt-token-circle.png?1696527824",
+    "symbol": "LSETH",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x8c223a82e07fecb49d602150d7c2b3a4c9630310": {
+    "assetId": "eip155:1/erc20:0x8c223a82e07fecb49d602150d7c2b3a4c9630310",
+    "chainId": "eip155:1",
+    "name": "NFTEarth on Ethereum",
+    "precision": 18,
+    "color": "#E1FBED",
+    "icon": "https://assets.coingecko.com/coins/images/29116/thumb/20230223_224134.jpg?1696528078",
+    "symbol": "NFTE",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x8c3d11360a70fb708762b394be8ef23e3a633e3f": {
+    "assetId": "eip155:1/erc20:0x8c3d11360a70fb708762b394be8ef23e3a633e3f",
+    "chainId": "eip155:1",
+    "name": "Flooring Protocol  BoredApeKennelClub",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/32778/thumb/UBAKC_%281%29.png?1699349512",
+    "symbol": "BAKC",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x8c4e7f814d40f8929f9112c5d09016f923d34472": {
+    "assetId": "eip155:1/erc20:0x8c4e7f814d40f8929f9112c5d09016f923d34472",
+    "chainId": "eip155:1",
+    "name": "XCELTOKEN PLUS",
+    "precision": 18,
+    "color": "#494948",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x8c4E7f814d40f8929F9112C5D09016F923d34472/logo.png",
+    "symbol": "XLAB",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x8c543aed163909142695f2d2acd0d55791a9edb9": {
+    "assetId": "eip155:1/erc20:0x8c543aed163909142695f2d2acd0d55791a9edb9",
+    "chainId": "eip155:1",
+    "name": "Velas on Ethereum",
+    "precision": 18,
+    "color": "#0434C4",
+    "icon": "https://assets.coingecko.com/coins/images/9651/thumb/logo_blue.png?1696509720",
+    "symbol": "VLX",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x8c6778023c3d4fd79ddd14810079f64c39e9e43d": {
+    "assetId": "eip155:1/erc20:0x8c6778023c3d4fd79ddd14810079f64c39e9e43d",
+    "chainId": "eip155:1",
+    "name": "0xAISwap",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/32739/thumb/0x-AISwap-logo.png?1699236607",
+    "symbol": "0XAISWAP",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x8c6bf16c273636523c29db7db04396143770f6a0": {
+    "assetId": "eip155:1/erc20:0x8c6bf16c273636523c29db7db04396143770f6a0",
+    "chainId": "eip155:1",
+    "name": "Moon Rabbit on Ethereum",
+    "precision": 18,
+    "color": "#E9E5B2",
+    "icon": "https://assets.coingecko.com/coins/images/17310/thumb/logo_moon_no_inscriptions-01.png?1696516863",
+    "symbol": "AAA",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x8c6fa66c21ae3fc435790e451946a9ea82e6e523": {
+    "assetId": "eip155:1/erc20:0x8c6fa66c21ae3fc435790e451946a9ea82e6e523",
+    "chainId": "eip155:1",
+    "name": "MetaFabric on Ethereum",
+    "precision": 18,
+    "color": "#24D076",
+    "icon": "https://assets.coingecko.com/coins/images/21233/thumb/LISTING-icon.png?1696520607",
+    "symbol": "FABRIC",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x8c7ac134ed985367eadc6f727d79e8295e11435c": {
+    "assetId": "eip155:1/erc20:0x8c7ac134ed985367eadc6f727d79e8295e11435c",
+    "chainId": "eip155:1",
+    "name": "The Balkan Dwarf",
+    "precision": 18,
+    "color": "#5B3D14",
+    "icon": "https://assets.coingecko.com/coins/images/32563/thumb/download-compresskaru.com.png?1698546378",
+    "symbol": "KEKEC",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x8c81121b15197fa0eeaee1dc75533419dcfd3151": {
+    "assetId": "eip155:1/erc20:0x8c81121b15197fa0eeaee1dc75533419dcfd3151",
+    "chainId": "eip155:1",
+    "name": "IdleWBTC  Best Yield ",
+    "precision": 18,
+    "color": "#DDD9DB",
+    "icon": "https://assets.coingecko.com/coins/images/11936/thumb/idlewbtcv3maxyield_32.png?1696511797",
+    "symbol": "IDLEWBTCYIELD",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x8cb73eb53fa81f808f704bea15a677b6464a1f90": {
+    "assetId": "eip155:1/erc20:0x8cb73eb53fa81f808f704bea15a677b6464a1f90",
+    "chainId": "eip155:1",
+    "name": "Gauro",
+    "precision": 9,
+    "color": "#919191",
+    "icon": "https://assets.coingecko.com/coins/images/31783/thumb/200_png.png?1696530600",
+    "symbol": "GAURO",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x8cc0f052fff7ead7f2edcccac895502e884a8a71": {
+    "assetId": "eip155:1/erc20:0x8cc0f052fff7ead7f2edcccac895502e884a8a71",
+    "chainId": "eip155:1",
+    "name": "ARTH on Ethereum",
+    "precision": 18,
+    "color": "#141414",
+    "icon": "https://assets.coingecko.com/coins/images/16876/thumb/Ik5dhOq.png?1696516444",
+    "symbol": "ARTH",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x8cc379a292a47cb8406fb1bd8a6d98f442275f0e": {
+    "assetId": "eip155:1/erc20:0x8cc379a292a47cb8406fb1bd8a6d98f442275f0e",
+    "chainId": "eip155:1",
+    "name": "Uranium3o8",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/32571/thumb/Logo_Black_Background.png?1698608787",
+    "symbol": "U",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x8cc5aba81a610f4fc01b42c83508ce7a59b8cc10": {
+    "assetId": "eip155:1/erc20:0x8cc5aba81a610f4fc01b42c83508ce7a59b8cc10",
+    "chainId": "eip155:1",
+    "name": "Hydra Ecosystem",
+    "precision": 9,
+    "color": "#200404",
+    "icon": "https://assets.coingecko.com/coins/images/31257/thumb/Hydra_Ecosystem.png?1696530081",
+    "symbol": "HDR",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x8ce9137d39326ad0cd6491fb5cc0cba0e089b6a9": {
+    "assetId": "eip155:1/erc20:0x8ce9137d39326ad0cd6491fb5cc0cba0e089b6a9",
+    "chainId": "eip155:1",
+    "name": "SXP on Ethereum",
+    "precision": 18,
+    "color": "#FC6431",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x8CE9137d39326AD0cD6491fb5CC0CbA0e089b6A9/logo.png",
+    "symbol": "SXP",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x8d008cac1a5cb08ac962b1e34e977b79abeee88d": {
+    "assetId": "eip155:1/erc20:0x8d008cac1a5cb08ac962b1e34e977b79abeee88d",
+    "chainId": "eip155:1",
+    "name": "Pepe Analytics",
+    "precision": 18,
+    "color": "#D06185",
+    "icon": "https://assets.coingecko.com/coins/images/31085/thumb/cg.jpeg?1696529918",
+    "symbol": "PEPEAI",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x8d137e3337eb1b58a222fef2b2cc7c423903d9cf": {
+    "assetId": "eip155:1/erc20:0x8d137e3337eb1b58a222fef2b2cc7c423903d9cf",
+    "chainId": "eip155:1",
+    "name": "SQGL Vault  NFTX ",
+    "precision": 18,
+    "color": "#F0515C",
+    "icon": "https://assets.coingecko.com/coins/images/17041/thumb/SQGL.png?1696516604",
+    "symbol": "SQGL",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x8d610e20481f4c4f3acb87bba9c46bef7795fdfe": {
+    "assetId": "eip155:1/erc20:0x8d610e20481f4c4f3acb87bba9c46bef7795fdfe",
+    "chainId": "eip155:1",
+    "name": "Unity Network",
+    "precision": 18,
+    "color": "#484848",
+    "icon": "https://assets.coingecko.com/coins/images/17143/thumb/unity.PNG?1696516702",
+    "symbol": "UNT",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x8d6cebd76f18e1558d4db88138e2defb3909fad6": {
+    "assetId": "eip155:1/erc20:0x8d6cebd76f18e1558d4db88138e2defb3909fad6",
+    "chainId": "eip155:1",
+    "name": "MAI on Ethereum",
+    "precision": 18,
+    "color": "#F1C5C5",
+    "icon": "https://assets.coingecko.com/coins/images/15264/thumb/mimatic-red.png?1696514916",
+    "symbol": "MIMATIC",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x8d75959f1e61ec2571aa72798237101f084de63a": {
+    "assetId": "eip155:1/erc20:0x8d75959f1e61ec2571aa72798237101f084de63a",
+    "chainId": "eip155:1",
+    "name": "Substratum",
+    "precision": 18,
+    "color": "#EB4234",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x8D75959f1E61EC2571aa72798237101F084DE63a/logo.png",
+    "symbol": "SUB",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x8d85b9553896bd8159e608cb958628e01ed10916": {
+    "assetId": "eip155:1/erc20:0x8d85b9553896bd8159e608cb958628e01ed10916",
+    "chainId": "eip155:1",
+    "name": "STONED",
+    "precision": 9,
+    "color": "#C9D1AC",
+    "icon": "https://assets.coingecko.com/coins/images/32108/thumb/TemA4ZCP_400x400.jpg?1696530904",
+    "symbol": "STONED",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x8d96b4ab6c741a4c8679ae323a100d74f085ba8f": {
+    "assetId": "eip155:1/erc20:0x8d96b4ab6c741a4c8679ae323a100d74f085ba8f",
+    "chainId": "eip155:1",
+    "name": "Bazaars",
+    "precision": 18,
+    "color": "#245335",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x8d96B4ab6C741a4C8679AE323a100d74f085BA8F/logo.png",
+    "symbol": "BZR",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x8dae6cb04688c62d939ed9b68d32bc62e49970b1": {
+    "assetId": "eip155:1/erc20:0x8dae6cb04688c62d939ed9b68d32bc62e49970b1",
+    "chainId": "eip155:1",
+    "name": "Aave CRV",
+    "precision": 18,
+    "color": "#8A7AAE",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x8dAE6Cb04688C62d939ed9B68d32Bc62e49970b1/logo.png",
+    "symbol": "ACRV",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x8db1d28ee0d822367af8d220c0dc7cb6fe9dc442": {
+    "assetId": "eip155:1/erc20:0x8db1d28ee0d822367af8d220c0dc7cb6fe9dc442",
+    "chainId": "eip155:1",
+    "name": "ETHPad on Ethereum",
+    "precision": 18,
+    "color": "#E7EAEC",
+    "icon": "https://assets.coingecko.com/coins/images/17520/thumb/tHAbIBQK_400x400.jpg?1696517058",
+    "symbol": "ETHPAD",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x8db253a1943dddf1af9bcf8706ac9a0ce939d922": {
+    "assetId": "eip155:1/erc20:0x8db253a1943dddf1af9bcf8706ac9a0ce939d922",
+    "chainId": "eip155:1",
+    "name": "Unbound Finance on Ethereum",
+    "precision": 18,
+    "color": "#EAF2F5",
+    "icon": "https://assets.coingecko.com/coins/images/21412/thumb/Unbound_icon_png.png?1696520776",
+    "symbol": "UNB",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x8db4beaccd1698892821a9a0dc367792c0cb9940": {
+    "assetId": "eip155:1/erc20:0x8db4beaccd1698892821a9a0dc367792c0cb9940",
+    "chainId": "eip155:1",
+    "name": "Ignore Fud on Ethereum",
+    "precision": 18,
+    "color": "#B6E9B8",
+    "icon": "https://assets.coingecko.com/coins/images/29626/thumb/200x200.png?1696528562",
+    "symbol": "4TOKEN",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x8dbf9a4c99580fc7fd4024ee08f3994420035727": {
+    "assetId": "eip155:1/erc20:0x8dbf9a4c99580fc7fd4024ee08f3994420035727",
+    "chainId": "eip155:1",
+    "name": "ECO",
+    "precision": 18,
+    "color": "#182852",
+    "icon": "https://assets.coingecko.com/coins/images/27961/thumb/_ECO.png?1696526980",
+    "symbol": "ECO",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x8dc2906de0d7409c3cace9482fbffd566639c593": {
+    "assetId": "eip155:1/erc20:0x8dc2906de0d7409c3cace9482fbffd566639c593",
+    "chainId": "eip155:1",
+    "name": "Pepeinu",
+    "precision": 18,
+    "color": "#4F883E",
+    "icon": "https://assets.coingecko.com/coins/images/32295/thumb/IMG_20231010_122020_094.jpg?1697184910",
+    "symbol": "PEPEINU",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x8dc89f4716e027394bba225b82328c1ea2ea58bf": {
+    "assetId": "eip155:1/erc20:0x8dc89f4716e027394bba225b82328c1ea2ea58bf",
+    "chainId": "eip155:1",
+    "name": "Galaxy Villains",
+    "precision": 18,
+    "color": "#EA0506",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x8dc89F4716E027394Bba225b82328C1ea2Ea58Bf/logo.png",
+    "symbol": "GVC",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x8dd09822e83313adca54c75696ae80c5429697ff": {
+    "assetId": "eip155:1/erc20:0x8dd09822e83313adca54c75696ae80c5429697ff",
+    "chainId": "eip155:1",
+    "name": "SIFU  OLD  on Ethereum",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/24692/thumb/token_%283%29.png?1696523859",
+    "symbol": "SIFU",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x8de2b2104b6ac8f9dce7755ff70f0fa452680d9a": {
+    "assetId": "eip155:1/erc20:0x8de2b2104b6ac8f9dce7755ff70f0fa452680d9a",
+    "chainId": "eip155:1",
+    "name": "First Sirius",
+    "precision": 9,
+    "color": "#2F1D12",
+    "icon": "https://assets.coingecko.com/coins/images/31053/thumb/imresizer-1689812083418.jpg?1696529888",
+    "symbol": "SIRIUS",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x8df60cfc67c1bf51fe3dd61b34b156f14f538f5d": {
+    "assetId": "eip155:1/erc20:0x8df60cfc67c1bf51fe3dd61b34b156f14f538f5d",
+    "chainId": "eip155:1",
+    "name": "Wojak 2 69",
+    "precision": 9,
+    "color": "#101A0F",
+    "icon": "https://assets.coingecko.com/coins/images/31660/thumb/IMG_9266.jpeg?1696530477",
+    "symbol": "WOJAK269",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x8dfc8cc3201425669fae803e1eb125cddd4189ec": {
+    "assetId": "eip155:1/erc20:0x8dfc8cc3201425669fae803e1eb125cddd4189ec",
+    "chainId": "eip155:1",
+    "name": "Okage Inu",
+    "precision": 18,
+    "color": "#D7CBB7",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x8dfc8cc3201425669FaE803e1eB125cddd4189eC/logo.png",
+    "symbol": "OKAGE",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x8e01397163b21f64cec1f06ca6cc7d9aa8f718e9": {
+    "assetId": "eip155:1/erc20:0x8e01397163b21f64cec1f06ca6cc7d9aa8f718e9",
+    "chainId": "eip155:1",
+    "name": "LIF3 LSHARE on Ethereum",
+    "precision": 18,
+    "color": "#B28E66",
+    "icon": "https://assets.coingecko.com/coins/images/31575/thumb/LSHARE.png?1696530392",
+    "symbol": "LSHARE",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x8e0e57dcb1ce8d9091df38ec1bfc3b224529754a": {
+    "assetId": "eip155:1/erc20:0x8e0e57dcb1ce8d9091df38ec1bfc3b224529754a",
+    "chainId": "eip155:1",
+    "name": "Moon Tropica",
+    "precision": 18,
+    "color": "#8C4DC4",
+    "icon": "https://assets.coingecko.com/coins/images/28470/thumb/MTLOGO.png?1696527464",
+    "symbol": "CAH",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x8e0fe2947752be0d5acf73aae77362daf79cb379": {
+    "assetId": "eip155:1/erc20:0x8e0fe2947752be0d5acf73aae77362daf79cb379",
+    "chainId": "eip155:1",
+    "name": "NFTrade on Ethereum",
+    "precision": 18,
+    "color": "#ECF4FC",
+    "icon": "https://assets.coingecko.com/coins/images/18578/thumb/nftrade.png?1696518055",
+    "symbol": "NFTD",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x8e1308f4808788767a864eee9a4927e38c790352": {
+    "assetId": "eip155:1/erc20:0x8e1308f4808788767a864eee9a4927e38c790352",
+    "chainId": "eip155:1",
+    "name": "Physics",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/32752/thumb/Physics_Logo_200x200_PNG.png?1699265054",
+    "symbol": "PHYSICS",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x8e235f491ae66b82296d58332adc2a021c449c10": {
+    "assetId": "eip155:1/erc20:0x8e235f491ae66b82296d58332adc2a021c449c10",
+    "chainId": "eip155:1",
+    "name": "Tipja",
+    "precision": 18,
+    "color": "#099E56",
+    "icon": "https://assets.coingecko.com/coins/images/30182/thumb/logo.jpg?1696529101",
+    "symbol": "TIPJA",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x8e30ea2329d95802fd804f4291220b0e2f579812": {
+    "assetId": "eip155:1/erc20:0x8e30ea2329d95802fd804f4291220b0e2f579812",
+    "chainId": "eip155:1",
+    "name": "Decentralized Vulnerability Platform",
+    "precision": 18,
+    "color": "#2494F4",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x8E30ea2329D95802Fd804f4291220b0e2F579812/logo.png",
+    "symbol": "DVP",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x8e57c27761ebbd381b0f9d09bb92ceb51a358abb": {
+    "assetId": "eip155:1/erc20:0x8e57c27761ebbd381b0f9d09bb92ceb51a358abb",
+    "chainId": "eip155:1",
+    "name": "extraDNA on Ethereum",
+    "precision": 18,
+    "color": "#E5CA6C",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x8e57c27761EBBd381b0f9d09Bb92CeB51a358AbB/logo.png",
+    "symbol": "XDNA",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x8e6cd950ad6ba651f6dd608dc70e5886b1aa6b24": {
+    "assetId": "eip155:1/erc20:0x8e6cd950ad6ba651f6dd608dc70e5886b1aa6b24",
+    "chainId": "eip155:1",
+    "name": "StarLink",
+    "precision": 18,
+    "color": "#D82C1C",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x8E6cd950Ad6ba651F6DD608Dc70e5886B1AA6B24/logo.png",
+    "symbol": "STARL",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x8e870d67f660d95d5be530380d0ec0bd388289e1": {
+    "assetId": "eip155:1/erc20:0x8e870d67f660d95d5be530380d0ec0bd388289e1",
+    "chainId": "eip155:1",
+    "name": "Pax Dollar",
+    "precision": 18,
+    "color": "#126039",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x8E870D67F660D95d5be530380D0eC0bd388289E1/logo.png",
+    "symbol": "USDP",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x8e964e35a76103af4c7d7318e1b1a82c682ae296": {
+    "assetId": "eip155:1/erc20:0x8e964e35a76103af4c7d7318e1b1a82c682ae296",
+    "chainId": "eip155:1",
+    "name": "Fellaz",
+    "precision": 18,
+    "color": "#4C14CC",
+    "icon": "https://assets.coingecko.com/coins/images/26169/thumb/NUERy1Wy_400x400.png?1696525257",
+    "symbol": "FLZ",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x8ea9bedb8bb7e99643844ec79543f4faa78453e4": {
+    "assetId": "eip155:1/erc20:0x8ea9bedb8bb7e99643844ec79543f4faa78453e4",
+    "chainId": "eip155:1",
+    "name": "Marble Bet",
+    "precision": 18,
+    "color": "#3C3933",
+    "icon": "https://assets.coingecko.com/coins/images/31064/thumb/Marble_Bet.png?1696529898",
+    "symbol": "MARBLE",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x8eb1779a32678452eb273a22d413207299904d90": {
+    "assetId": "eip155:1/erc20:0x8eb1779a32678452eb273a22d413207299904d90",
+    "chainId": "eip155:1",
+    "name": "Pochi Inu",
+    "precision": 18,
+    "color": "#E1BA3C",
+    "icon": "https://assets.coingecko.com/coins/images/23816/thumb/logo-gold.png?1696523019",
+    "symbol": "POCHI",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x8eb5bd8c9ab0f8ad28e94693f3c889f490be2ab0": {
+    "assetId": "eip155:1/erc20:0x8eb5bd8c9ab0f8ad28e94693f3c889f490be2ab0",
+    "chainId": "eip155:1",
+    "name": "PoS 32",
+    "precision": 18,
+    "color": "#191B1C",
+    "icon": "https://assets.coingecko.com/coins/images/27358/thumb/90532f66-9158-4bd4-8928-bcb8ec012579.png?1696526404",
+    "symbol": "POS32",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x8eb94a06b4716093dbfe335cbdb098deb2dcde1b": {
+    "assetId": "eip155:1/erc20:0x8eb94a06b4716093dbfe335cbdb098deb2dcde1b",
+    "chainId": "eip155:1",
+    "name": "Half Shiba Inu",
+    "precision": 18,
+    "color": "#F7F4F0",
+    "icon": "https://assets.coingecko.com/coins/images/28957/thumb/halfshib.jpg?1696527930",
+    "symbol": "SHIB05",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x8ed2fc62d6850eaadcb717465752dab591286839": {
+    "assetId": "eip155:1/erc20:0x8ed2fc62d6850eaadcb717465752dab591286839",
+    "chainId": "eip155:1",
+    "name": "Elyssa",
+    "precision": 18,
+    "color": "#0A072C",
+    "icon": "https://assets.coingecko.com/coins/images/31187/thumb/IMG_20230720_174915_364.jpg?1696530014",
+    "symbol": "ELY",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x8ed955a2b7d2c3a17a9d05daca95e01818f8c11e": {
+    "assetId": "eip155:1/erc20:0x8ed955a2b7d2c3a17a9d05daca95e01818f8c11e",
+    "chainId": "eip155:1",
+    "name": "APF coin",
+    "precision": 18,
+    "color": "#B0C7A7",
+    "icon": "https://assets.coingecko.com/coins/images/30990/thumb/photo_2023-10-28_09-48-25.jpg?1698518912",
+    "symbol": "APFC",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x8ed97a637a790be1feff5e888d43629dc05408f6": {
+    "assetId": "eip155:1/erc20:0x8ed97a637a790be1feff5e888d43629dc05408f6",
+    "chainId": "eip155:1",
+    "name": "Non Playable Coin",
+    "precision": 18,
+    "color": "#B9D0D9",
+    "icon": "https://assets.coingecko.com/coins/images/31193/thumb/NPC_200x200.png?1696530021",
+    "symbol": "NPC",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x8ee325ae3e54e83956ef2d5952d3c8bc1fa6ec27": {
+    "assetId": "eip155:1/erc20:0x8ee325ae3e54e83956ef2d5952d3c8bc1fa6ec27",
+    "chainId": "eip155:1",
+    "name": "Fable Of The Dragon",
+    "precision": 9,
+    "color": "#595F6D",
+    "icon": "https://assets.coingecko.com/coins/images/27911/thumb/image_%283%29.png?1696526932",
+    "symbol": "TYRANT",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x8eecaad83a1ea77bd88a818d4628fafc4cad7969": {
+    "assetId": "eip155:1/erc20:0x8eecaad83a1ea77bd88a818d4628fafc4cad7969",
+    "chainId": "eip155:1",
+    "name": "Not Financial Advice",
+    "precision": 18,
+    "color": "#1A312C",
+    "icon": "https://assets.coingecko.com/coins/images/28758/thumb/NFAilogo-200x200-white.png?1696527737",
+    "symbol": "NFAI",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x8eedefe828a0f16c8fc80e46a87bc0f1de2d960c": {
+    "assetId": "eip155:1/erc20:0x8eedefe828a0f16c8fc80e46a87bc0f1de2d960c",
+    "chainId": "eip155:1",
+    "name": "DigiMetaverse on Ethereum",
+    "precision": 18,
+    "color": "#112044",
+    "icon": "https://assets.coingecko.com/coins/images/23701/thumb/DigiCorpLabs_token.png?1696522902",
+    "symbol": "DGMV",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x8eef5a82e6aa222a60f009ac18c24ee12dbf4b41": {
+    "assetId": "eip155:1/erc20:0x8eef5a82e6aa222a60f009ac18c24ee12dbf4b41",
+    "chainId": "eip155:1",
+    "name": "Autobahn Network on Ethereum",
+    "precision": 18,
+    "color": "#331BFC",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x8eEF5a82E6Aa222a60F009ac18c24EE12dBf4b41/logo.png",
+    "symbol": "TXL",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x8ef32a03784c8fd63bbf027251b9620865bd54b6": {
+    "assetId": "eip155:1/erc20:0x8ef32a03784c8fd63bbf027251b9620865bd54b6",
+    "chainId": "eip155:1",
+    "name": "Bullet Gate Betting Token",
+    "precision": 8,
+    "color": "#141414",
+    "icon": "https://assets.coingecko.com/coins/images/31242/thumb/2023-08-09_14.53.31.png?1696530068",
+    "symbol": "BULLET",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x8ef47555856f6ce2e0cd7c36aef4fab317d2e2e2": {
+    "assetId": "eip155:1/erc20:0x8ef47555856f6ce2e0cd7c36aef4fab317d2e2e2",
+    "chainId": "eip155:1",
+    "name": "PayAccept",
+    "precision": 18,
+    "color": "#54B4E4",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x8EF47555856f6Ce2E0cd7C36AeF4FAb317d2e2E2/logo.png",
+    "symbol": "PAYT",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x8efe7dd5984640537b6596fb28b762f6c000f184": {
+    "assetId": "eip155:1/erc20:0x8efe7dd5984640537b6596fb28b762f6c000f184",
+    "chainId": "eip155:1",
+    "name": "Dark Forest",
+    "precision": 9,
+    "color": "#193273",
+    "icon": "https://assets.coingecko.com/coins/images/31377/thumb/Dark_Forest.png?1696530194",
+    "symbol": "DARK",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x8f006d1e1d9dc6c98996f50a4c810f17a47fbf19": {
+    "assetId": "eip155:1/erc20:0x8f006d1e1d9dc6c98996f50a4c810f17a47fbf19",
+    "chainId": "eip155:1",
+    "name": "Pleasure Coin on Ethereum",
+    "precision": 18,
+    "color": "#7704BE",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x8f006D1e1D9dC6C98996F50a4c810F17a47fBF19/logo.png",
+    "symbol": "NSFW",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x8f081eb884fd47b79536d28e2dd9d4886773f783": {
+    "assetId": "eip155:1/erc20:0x8f081eb884fd47b79536d28e2dd9d4886773f783",
+    "chainId": "eip155:1",
+    "name": "bePAY Finance on Ethereum",
+    "precision": 6,
+    "color": "#901AC4",
+    "icon": "https://assets.coingecko.com/coins/images/21275/thumb/logo-becoin.png?1696520646",
+    "symbol": "BECOIN",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x8f0921f30555624143d427b340b1156914882c10": {
+    "assetId": "eip155:1/erc20:0x8f0921f30555624143d427b340b1156914882c10",
+    "chainId": "eip155:1",
+    "name": "FlypMe",
+    "precision": 18,
+    "color": "#BCBCBC",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x8F0921f30555624143d427b340b1156914882C10/logo.png",
+    "symbol": "FYP",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x8f0f56472c3e5730b1ea2f444e7829288da261e6": {
+    "assetId": "eip155:1/erc20:0x8f0f56472c3e5730b1ea2f444e7829288da261e6",
+    "chainId": "eip155:1",
+    "name": "Rogue MAV on Ethereum",
+    "precision": 18,
+    "color": "#6404FC",
+    "icon": "https://assets.coingecko.com/coins/images/32384/thumb/rMAV.png?1698045143",
+    "symbol": "RMAV",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x8f3470a7388c05ee4e7af3d01d8c722b0ff52374": {
+    "assetId": "eip155:1/erc20:0x8f3470a7388c05ee4e7af3d01d8c722b0ff52374",
+    "chainId": "eip155:1",
+    "name": "Veritaseum",
+    "precision": 18,
+    "color": "#FC9B33",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x8f3470A7388c05eE4e7AF3d01D8C722b0FF52374/logo.png",
+    "symbol": "VERI",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x8f602ee5b1f8de67120c427717cbe2770f3cf320": {
+    "assetId": "eip155:1/erc20:0x8f602ee5b1f8de67120c427717cbe2770f3cf320",
+    "chainId": "eip155:1",
+    "name": "Starry",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/33190/thumb/STARRY.jpg?1700968743",
+    "symbol": "STARRY",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x8f693ca8d21b157107184d29d398a8d082b38b76": {
+    "assetId": "eip155:1/erc20:0x8f693ca8d21b157107184d29d398a8d082b38b76",
+    "chainId": "eip155:1",
+    "name": "Streamr on Ethereum",
+    "precision": 18,
+    "color": "#F4640C",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x8f693ca8D21b157107184d29D398A8D082b38b76/logo.png",
+    "symbol": "DATA",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x8f8221afbb33998d8584a2b05749ba73c37a938a": {
+    "assetId": "eip155:1/erc20:0x8f8221afbb33998d8584a2b05749ba73c37a938a",
+    "chainId": "eip155:1",
+    "name": "Request on Ethereum",
+    "precision": 18,
+    "color": "#04241B",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x8f8221aFbB33998d8584A2B05749bA73c37a938a/logo.png",
+    "symbol": "REQ",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x8f828a0644f12fa352888e645a90333d30f6fd7d": {
+    "assetId": "eip155:1/erc20:0x8f828a0644f12fa352888e645a90333d30f6fd7d",
+    "chainId": "eip155:1",
+    "name": "Rinia Inu",
+    "precision": 9,
+    "color": "#C93E37",
+    "icon": "https://assets.coingecko.com/coins/images/29466/thumb/rinia.png?1696528411",
+    "symbol": "RINIA",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x8f8ed076e61a27db72a5724ea0907a66fb0ddb32": {
+    "assetId": "eip155:1/erc20:0x8f8ed076e61a27db72a5724ea0907a66fb0ddb32",
+    "chainId": "eip155:1",
+    "name": "gold pieces",
+    "precision": 18,
+    "color": "#40472A",
+    "icon": "https://assets.coingecko.com/coins/images/30281/thumb/buying_old_school_runescape_gold_osrs_gold_1484153770_0f3f5f5e.jpg?1696529187",
+    "symbol": "GP",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x8f9b4525681f3ea6e43b8e0a57bfff86c0a1dd2e": {
+    "assetId": "eip155:1/erc20:0x8f9b4525681f3ea6e43b8e0a57bfff86c0a1dd2e",
+    "chainId": "eip155:1",
+    "name": "Zeebu on Ethereum",
+    "precision": 18,
+    "color": "#2A6BE0",
+    "icon": "https://assets.coingecko.com/coins/images/31145/thumb/200x200_Front_token.png?1696529974",
+    "symbol": "ZBU",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x8fac8031e079f409135766c7d5de29cf22ef897c": {
+    "assetId": "eip155:1/erc20:0x8fac8031e079f409135766c7d5de29cf22ef897c",
+    "chainId": "eip155:1",
+    "name": "Humans ai",
+    "precision": 18,
+    "color": "#D8D8D8",
+    "icon": "https://assets.coingecko.com/coins/images/21273/thumb/h_logo_1x.png?1696520644",
+    "symbol": "HEART",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x8fc8f8269ebca376d046ce292dc7eac40c8d358a": {
+    "assetId": "eip155:1/erc20:0x8fc8f8269ebca376d046ce292dc7eac40c8d358a",
+    "chainId": "eip155:1",
+    "name": "DeFiChain on Ethereum",
+    "precision": 8,
+    "color": "#FC04B4",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x8Fc8f8269ebca376D046Ce292dC7eaC40c8D358A/logo.png",
+    "symbol": "DFI",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x8fc9b6354e839ab1c8b31f4afa53607092b8c2e5": {
+    "assetId": "eip155:1/erc20:0x8fc9b6354e839ab1c8b31f4afa53607092b8c2e5",
+    "chainId": "eip155:1",
+    "name": "ECOSC",
+    "precision": 18,
+    "color": "#CEA067",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x8fc9b6354E839AB1c8B31F4afa53607092B8C2e5/logo.png",
+    "symbol": "ECU",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x8ff62c1b0868e1a8905eb0d0cbb04f20667dcf88": {
+    "assetId": "eip155:1/erc20:0x8ff62c1b0868e1a8905eb0d0cbb04f20667dcf88",
+    "chainId": "eip155:1",
+    "name": "BTCrewards",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/32741/thumb/Bitcoin_Rewards_Logo_-_200x200.png?1699239519",
+    "symbol": "BTCR",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x8ffe40a3d0f80c0ce6b203d5cdc1a6a86d9acaea": {
+    "assetId": "eip155:1/erc20:0x8ffe40a3d0f80c0ce6b203d5cdc1a6a86d9acaea",
+    "chainId": "eip155:1",
+    "name": "IG Gold on Ethereum",
+    "precision": 6,
+    "color": "#1A3150",
+    "icon": "https://assets.coingecko.com/coins/images/7697/thumb/N7aEdYrY_400x400.png?1696507947",
+    "symbol": "IGG",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x9008064e6cf73e27a3aba4b10e69f855a4f8efcc": {
+    "assetId": "eip155:1/erc20:0x9008064e6cf73e27a3aba4b10e69f855a4f8efcc",
+    "chainId": "eip155:1",
+    "name": "Gemie",
+    "precision": 18,
+    "color": "#497DEC",
+    "icon": "https://assets.coingecko.com/coins/images/27745/thumb/icon-transparent.png?1696526767",
+    "symbol": "GEM",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x900db999074d9277c5da2a43f252d74366230da0": {
+    "assetId": "eip155:1/erc20:0x900db999074d9277c5da2a43f252d74366230da0",
+    "chainId": "eip155:1",
+    "name": "Giveth on Ethereum",
+    "precision": 18,
+    "color": "#582AEC",
+    "icon": "https://assets.coingecko.com/coins/images/21792/thumb/GIVToken_200x200.png?1696521145",
+    "symbol": "GIV",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x901ea3606d567f9f1e964639d5cbb8659080be8a": {
+    "assetId": "eip155:1/erc20:0x901ea3606d567f9f1e964639d5cbb8659080be8a",
+    "chainId": "eip155:1",
+    "name": "CoinW",
+    "precision": 18,
+    "color": "#F3F0F6",
+    "icon": "https://assets.coingecko.com/coins/images/31999/thumb/cwt_%281%29.jpeg?1696530800",
+    "symbol": "CWT",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x903bef1736cddf2a537176cf3c64579c3867a881": {
+    "assetId": "eip155:1/erc20:0x903bef1736cddf2a537176cf3c64579c3867a881",
+    "chainId": "eip155:1",
+    "name": "Legacy ICHI",
+    "precision": 9,
+    "color": "#968872",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x903bEF1736CDdf2A537176cf3C64579C3867A881/logo.png",
+    "symbol": "ICHI",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x903ff0ba636e32de1767a4b5eeb55c155763d8b7": {
+    "assetId": "eip155:1/erc20:0x903ff0ba636e32de1767a4b5eeb55c155763d8b7",
+    "chainId": "eip155:1",
+    "name": "None Trading",
+    "precision": 18,
+    "color": "#070707",
+    "icon": "https://assets.coingecko.com/coins/images/31137/thumb/None-200x200.png?1696529966",
+    "symbol": "NONE",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x9040e237c3bf18347bb00957dc22167d0f2b999d": {
+    "assetId": "eip155:1/erc20:0x9040e237c3bf18347bb00957dc22167d0f2b999d",
+    "chainId": "eip155:1",
+    "name": "Standard Protocol",
+    "precision": 18,
+    "color": "#353049",
+    "icon": "https://assets.coingecko.com/coins/images/15100/thumb/STND_logo_black_bg.png?1696514758",
+    "symbol": "STND",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x9047b76d7fb3d8bc3342616c56028430ebc74290": {
+    "assetId": "eip155:1/erc20:0x9047b76d7fb3d8bc3342616c56028430ebc74290",
+    "chainId": "eip155:1",
+    "name": "Bishop",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/32868/thumb/5YeVwATD_400x400.jpg?1699672895",
+    "symbol": "BISHOP",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x905e337c6c8645263d3521205aa37bf4d034e745": {
+    "assetId": "eip155:1/erc20:0x905e337c6c8645263d3521205aa37bf4d034e745",
+    "chainId": "eip155:1",
+    "name": "Doc com",
+    "precision": 18,
+    "color": "#E6C89E",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x905E337c6c8645263D3521205Aa37bf4d034e745/logo.png",
+    "symbol": "MTC",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x9078deb4736b7e2181beb8db276dfbfa7f21f821": {
+    "assetId": "eip155:1/erc20:0x9078deb4736b7e2181beb8db276dfbfa7f21f821",
+    "chainId": "eip155:1",
+    "name": "Monk gg",
+    "precision": 18,
+    "color": "#2F363D",
+    "icon": "https://assets.coingecko.com/coins/images/31502/thumb/Lu4Pg4jC_400x400.jpg?1696530313",
+    "symbol": "MONKGG",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x909e34d3f6124c324ac83dcca84b74398a6fa173": {
+    "assetId": "eip155:1/erc20:0x909e34d3f6124c324ac83dcca84b74398a6fa173",
+    "chainId": "eip155:1",
+    "name": "Panther Protocol on Ethereum",
+    "precision": 18,
+    "color": "#827D8A",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x909E34d3f6124C324ac83DccA84b74398a6fa173/logo.png",
+    "symbol": "ZKP",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x90b831fa3bebf58e9744a14d638e25b4ee06f9bc": {
+    "assetId": "eip155:1/erc20:0x90b831fa3bebf58e9744a14d638e25b4ee06f9bc",
+    "chainId": "eip155:1",
+    "name": "Mimo Governance on Ethereum",
+    "precision": 18,
+    "color": "#944BE8",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x90B831fa3Bebf58E9744A14D638E25B4eE06f9Bc/logo.png",
+    "symbol": "MIMO",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x90de74265a416e1393a450752175aed98fe11517": {
+    "assetId": "eip155:1/erc20:0x90de74265a416e1393a450752175aed98fe11517",
+    "chainId": "eip155:1",
+    "name": "Unlock Protocol",
+    "precision": 18,
+    "color": "#FC6474",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x90DE74265a416e1393A450752175AED98fe11517/logo.png",
+    "symbol": "UDT",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x910524678c0b1b23ffb9285a81f99c29c11cbaed": {
+    "assetId": "eip155:1/erc20:0x910524678c0b1b23ffb9285a81f99c29c11cbaed",
+    "chainId": "eip155:1",
+    "name": "Azuki on Ethereum",
+    "precision": 18,
+    "color": "#F43686",
+    "icon": "https://assets.coingecko.com/coins/images/13091/thumb/bdUBSCo.png?1696512878",
+    "symbol": "AZUKI",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x910c4da718caf4ee38ce5c2490cddaeca689204e": {
+    "assetId": "eip155:1/erc20:0x910c4da718caf4ee38ce5c2490cddaeca689204e",
+    "chainId": "eip155:1",
+    "name": "Waste Digital Coin",
+    "precision": 18,
+    "color": "#DEB954",
+    "icon": "https://assets.coingecko.com/coins/images/19035/thumb/waco.png?1696518487",
+    "symbol": "WACO",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x910dfc18d6ea3d6a7124a6f8b5458f281060fa4c": {
+    "assetId": "eip155:1/erc20:0x910dfc18d6ea3d6a7124a6f8b5458f281060fa4c",
+    "chainId": "eip155:1",
+    "name": "X8X",
+    "precision": 18,
+    "color": "#D2B668",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x910Dfc18D6EA3D6a7124A6F8B5458F281060fa4c/logo.png",
+    "symbol": "X8X",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x91368eef9ab8bdc727e4506897656abb87282003": {
+    "assetId": "eip155:1/erc20:0x91368eef9ab8bdc727e4506897656abb87282003",
+    "chainId": "eip155:1",
+    "name": "Network Spirituality",
+    "precision": 9,
+    "color": "#F8D0D2",
+    "icon": "https://assets.coingecko.com/coins/images/31430/thumb/OGZy3_zy_400x400.jpg?1696530244",
+    "symbol": "NET",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x9138c8779a0ac8a84d69617d5715bd8afa23c650": {
+    "assetId": "eip155:1/erc20:0x9138c8779a0ac8a84d69617d5715bd8afa23c650",
+    "chainId": "eip155:1",
+    "name": "Floor Cheese Burger",
+    "precision": 18,
+    "color": "#0C0806",
+    "icon": "https://assets.coingecko.com/coins/images/31526/thumb/YvPr4oRZ_400x400.jpg?1696530335",
+    "symbol": "FLRBRG",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x915ea4a94b61b138b568169122903ed707a8e704": {
+    "assetId": "eip155:1/erc20:0x915ea4a94b61b138b568169122903ed707a8e704",
+    "chainId": "eip155:1",
+    "name": "Wrapped Ordichains",
+    "precision": 18,
+    "color": "#C4A13D",
+    "icon": "https://assets.coingecko.com/coins/images/30787/thumb/2000_2000.png?1696529654",
+    "symbol": "WOICH",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x916c5de09cf63f6602d1e1793fb41f6437814a62": {
+    "assetId": "eip155:1/erc20:0x916c5de09cf63f6602d1e1793fb41f6437814a62",
+    "chainId": "eip155:1",
+    "name": "JACY",
+    "precision": 9,
+    "color": "#040404",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x916c5DE09cF63f6602d1e1793FB41F6437814A62/logo.png",
+    "symbol": "JACY",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x9196e18bc349b1f64bc08784eae259525329a1ad": {
+    "assetId": "eip155:1/erc20:0x9196e18bc349b1f64bc08784eae259525329a1ad",
+    "chainId": "eip155:1",
+    "name": "Pussy Financial on Ethereum",
+    "precision": 18,
+    "color": "#F08FBF",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x9196E18Bc349B1F64Bc08784eaE259525329a1ad/logo.png",
+    "symbol": "PUSSY",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x91a69021b0baef3445e51726458a0ce601471846": {
+    "assetId": "eip155:1/erc20:0x91a69021b0baef3445e51726458a0ce601471846",
+    "chainId": "eip155:1",
+    "name": "Ethos Reserve Note on Ethereum",
+    "precision": 18,
+    "color": "#0C0C0C",
+    "icon": "https://assets.coingecko.com/coins/images/29744/thumb/ERN200x200.png?1696528676",
+    "symbol": "ERN",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x91af0fbb28aba7e31403cb457106ce79397fd4e6": {
+    "assetId": "eip155:1/erc20:0x91af0fbb28aba7e31403cb457106ce79397fd4e6",
+    "chainId": "eip155:1",
+    "name": "Aergo",
+    "precision": 18,
+    "color": "#9988B4",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x91Af0fBB28ABA7E31403Cb457106Ce79397FD4E6/logo.png",
+    "symbol": "AERGO",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x91bdf1eb4215bc1c6d9a6bd83ecfceeb17cd4343": {
+    "assetId": "eip155:1/erc20:0x91bdf1eb4215bc1c6d9a6bd83ecfceeb17cd4343",
+    "chainId": "eip155:1",
+    "name": "Richard",
+    "precision": 9,
+    "color": "#C47C69",
+    "icon": "https://assets.coingecko.com/coins/images/30295/thumb/Richard.png?1696529200",
+    "symbol": "RICHARD",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x91be752d438d5f804345b5acb18de0c431ad470f": {
+    "assetId": "eip155:1/erc20:0x91be752d438d5f804345b5acb18de0c431ad470f",
+    "chainId": "eip155:1",
+    "name": "ETHETF",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/32998/thumb/ETHETF_Logo_200x200.png?1700114369",
+    "symbol": "ETHETF",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x91cdacba4559ade84daa1a51b6fbd94ec3f1202e": {
+    "assetId": "eip155:1/erc20:0x91cdacba4559ade84daa1a51b6fbd94ec3f1202e",
+    "chainId": "eip155:1",
+    "name": "BRRRRR",
+    "precision": 9,
+    "color": "#657765",
+    "icon": "https://assets.coingecko.com/coins/images/31740/thumb/photo_2023-09-12_17-18-39.jpg?1696530559",
+    "symbol": "BRRRRR",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x91dfbee3965baaee32784c2d546b7a0c62f268c9": {
+    "assetId": "eip155:1/erc20:0x91dfbee3965baaee32784c2d546b7a0c62f268c9",
+    "chainId": "eip155:1",
+    "name": "Forj on Ethereum",
+    "precision": 18,
+    "color": "#173C87",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x91dFbEE3965baAEE32784c2d546B7a0C62F268c9/logo.png",
+    "symbol": "BONDLY",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x922e2708462c7a3d014d8344f7c4d92b27ecf332": {
+    "assetId": "eip155:1/erc20:0x922e2708462c7a3d014d8344f7c4d92b27ecf332",
+    "chainId": "eip155:1",
+    "name": "Neuroni AI",
+    "precision": 18,
+    "color": "#2C74AC",
+    "icon": "https://assets.coingecko.com/coins/images/28887/thumb/200X200.png?1696527864",
+    "symbol": "NEURONI",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x923b83c26b3809d960ff80332ed00aa46d7ed375": {
+    "assetId": "eip155:1/erc20:0x923b83c26b3809d960ff80332ed00aa46d7ed375",
+    "chainId": "eip155:1",
+    "name": "Creator Platform on Ethereum",
+    "precision": 18,
+    "color": "#7C66E4",
+    "icon": "https://assets.coingecko.com/coins/images/18252/thumb/logo_%281%29.png?1696517748",
+    "symbol": "CTR",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x925206b8a707096ed26ae47c84747fe0bb734f59": {
+    "assetId": "eip155:1/erc20:0x925206b8a707096ed26ae47c84747fe0bb734f59",
+    "chainId": "eip155:1",
+    "name": "WhiteBIT Coin",
+    "precision": 8,
+    "color": "#221C1C",
+    "icon": "https://assets.coingecko.com/coins/images/27045/thumb/wbt_token.png?1696526096",
+    "symbol": "WBT",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x92868a5255c628da08f550a858a802f5351c5223": {
+    "assetId": "eip155:1/erc20:0x92868a5255c628da08f550a858a802f5351c5223",
+    "chainId": "eip155:1",
+    "name": "Cross Chain Bridge on Ethereum",
+    "precision": 18,
+    "color": "#0554FC",
+    "icon": "https://assets.coingecko.com/coins/images/20223/thumb/0x92868A5255C628dA08F550a858A802f5351C5223.png?1696519632",
+    "symbol": "BRIDGE",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x92cc36d66e9d739d50673d1f27929a371fb83a67": {
+    "assetId": "eip155:1/erc20:0x92cc36d66e9d739d50673d1f27929a371fb83a67",
+    "chainId": "eip155:1",
+    "name": "Wagmi on Ethereum",
+    "precision": 18,
+    "color": "#CEB484",
+    "icon": "https://assets.coingecko.com/coins/images/31887/thumb/wagmi_token_logo.png?1696530698",
+    "symbol": "WAGMI",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x92cfbec26c206c90aee3b7c66a9ae673754fab7e": {
+    "assetId": "eip155:1/erc20:0x92cfbec26c206c90aee3b7c66a9ae673754fab7e",
+    "chainId": "eip155:1",
+    "name": "OpenLeverage on Ethereum",
+    "precision": 18,
+    "color": "#CCA0D6",
+    "icon": "https://assets.coingecko.com/coins/images/26098/thumb/256x256_OLE_Token_Logo.png?1696525189",
+    "symbol": "OLE",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x92d529163c5e880b9de86f01de0cb8924d790357": {
+    "assetId": "eip155:1/erc20:0x92d529163c5e880b9de86f01de0cb8924d790357",
+    "chainId": "eip155:1",
+    "name": "Eyeverse",
+    "precision": 18,
+    "color": "#D6C726",
+    "icon": "https://assets.coingecko.com/coins/images/28623/thumb/EYE.png?1696527608",
+    "symbol": "EYE",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x92d6c1e31e14520e676a687f0a93788b716beff5": {
+    "assetId": "eip155:1/erc20:0x92d6c1e31e14520e676a687f0a93788b716beff5",
+    "chainId": "eip155:1",
+    "name": "dYdX",
+    "precision": 18,
+    "color": "#333349",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x92D6C1e31e14520e676a687F0a93788B716BEff5/logo.png",
+    "symbol": "ETHDYDX",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x92df60c51c710a1b1c20e42d85e221f3a1bfc7f2": {
+    "assetId": "eip155:1/erc20:0x92df60c51c710a1b1c20e42d85e221f3a1bfc7f2",
+    "chainId": "eip155:1",
+    "name": "ApeSwap on Ethereum",
+    "precision": 18,
+    "color": "#FCF4E3",
+    "icon": "https://assets.coingecko.com/coins/images/14870/thumb/banana.png?1696514534",
+    "symbol": "BANANA",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x92e187a03b6cd19cb6af293ba17f2745fd2357d5": {
+    "assetId": "eip155:1/erc20:0x92e187a03b6cd19cb6af293ba17f2745fd2357d5",
+    "chainId": "eip155:1",
+    "name": "Unit Protocol",
+    "precision": 18,
+    "color": "#FB9CCC",
+    "icon": "https://assets.coingecko.com/coins/images/13359/thumb/6f38719f-fe83-44ff-af30-7965fd23ac06.png?1696513124",
+    "symbol": "DUCK",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x92e52a1a235d9a103d970901066ce910aacefd37": {
+    "assetId": "eip155:1/erc20:0x92e52a1a235d9a103d970901066ce910aacefd37",
+    "chainId": "eip155:1",
+    "name": "U CASH",
+    "precision": 8,
+    "color": "#CC9F43",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x92e52a1A235d9A103D970901066CE910AAceFD37/logo.png",
+    "symbol": "UCASH",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x9303eabc860a743aabcc3a1629014cabcc3f8d36": {
+    "assetId": "eip155:1/erc20:0x9303eabc860a743aabcc3a1629014cabcc3f8d36",
+    "chainId": "eip155:1",
+    "name": "Aave AMM UniDAIWETH",
+    "precision": 18,
+    "color": "#52B4C5",
+    "icon": "https://assets.coingecko.com/coins/images/17230/thumb/aAmmUniDAIWETH.png?1696516784",
+    "symbol": "AAMMUNIDAIWETH",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x930ae5999210724248b36265e8d3696128115946": {
+    "assetId": "eip155:1/erc20:0x930ae5999210724248b36265e8d3696128115946",
+    "chainId": "eip155:1",
+    "name": "HarryPotterRussellSonic1Inu",
+    "precision": 8,
+    "color": "#CA9890",
+    "icon": "https://assets.coingecko.com/coins/images/31506/thumb/200x200.png?1696530317",
+    "symbol": "SAITAMA",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x9343e24716659a3551eb10aff9472a2dcad5db2d": {
+    "assetId": "eip155:1/erc20:0x9343e24716659a3551eb10aff9472a2dcad5db2d",
+    "chainId": "eip155:1",
+    "name": "STFX on Ethereum",
+    "precision": 18,
+    "color": "#12544C",
+    "icon": "https://assets.coingecko.com/coins/images/28631/thumb/stfx.png?1696527615",
+    "symbol": "STFX",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x9348e94a447bf8b2ec11f374d3f055fd47d936df": {
+    "assetId": "eip155:1/erc20:0x9348e94a447bf8b2ec11f374d3f055fd47d936df",
+    "chainId": "eip155:1",
+    "name": "For Loot And Glory on Ethereum",
+    "precision": 18,
+    "color": "#C7C5C7",
+    "icon": "https://assets.coingecko.com/coins/images/20726/thumb/token_logo.ico?1696520124",
+    "symbol": "FLAG",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x9355372396e3f6daf13359b7b607a3374cc638e0": {
+    "assetId": "eip155:1/erc20:0x9355372396e3f6daf13359b7b607a3374cc638e0",
+    "chainId": "eip155:1",
+    "name": "WHALE on Ethereum",
+    "precision": 4,
+    "color": "#040404",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x9355372396e3F6daF13359B7b607a3374cc638e0/logo.png",
+    "symbol": "WHALE",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x93581991f68dbae1ea105233b67f7fa0d6bdee7b": {
+    "assetId": "eip155:1/erc20:0x93581991f68dbae1ea105233b67f7fa0d6bdee7b",
+    "chainId": "eip155:1",
+    "name": "Evmos",
+    "precision": 18,
+    "color": "#F8C2B9",
+    "icon": "https://assets.coingecko.com/coins/images/24023/thumb/evmos.png?1696523216",
+    "symbol": "EVMOS",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x9360c489056b64d5003bf22f4f31458e31cc8028": {
+    "assetId": "eip155:1/erc20:0x9360c489056b64d5003bf22f4f31458e31cc8028",
+    "chainId": "eip155:1",
+    "name": "Bank",
+    "precision": 18,
+    "color": "#272214",
+    "icon": "https://assets.coingecko.com/coins/images/31407/thumb/Bank.png?1696530222",
+    "symbol": "BANK",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x9393fdc77090f31c7db989390d43f454b1a6e7f3": {
+    "assetId": "eip155:1/erc20:0x9393fdc77090f31c7db989390d43f454b1a6e7f3",
+    "chainId": "eip155:1",
+    "name": "Dark Energy Crystals on Ethereum",
+    "precision": 3,
+    "color": "#290545",
+    "icon": "https://assets.coingecko.com/coins/images/12923/thumb/DEC_token.png?1696512711",
+    "symbol": "DEC",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x939b462ee3311f8926c047d2b576c389092b1649": {
+    "assetId": "eip155:1/erc20:0x939b462ee3311f8926c047d2b576c389092b1649",
+    "chainId": "eip155:1",
+    "name": "LiquidApps",
+    "precision": 4,
+    "color": "#ECEAF0",
+    "icon": "https://assets.coingecko.com/coins/images/8116/thumb/dapp-logo.jpg?1696508334",
+    "symbol": "DAPP",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x93b1e78a3e652cd2e71c4a767595b77282344932": {
+    "assetId": "eip155:1/erc20:0x93b1e78a3e652cd2e71c4a767595b77282344932",
+    "chainId": "eip155:1",
+    "name": "BITO Coin",
+    "precision": 18,
+    "color": "#1C8CCC",
+    "icon": "https://assets.coingecko.com/coins/images/7796/thumb/bitopro_28.png?1696508036",
+    "symbol": "BITO",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x93c9175e26f57d2888c7df8b470c9eea5c0b0a93": {
+    "assetId": "eip155:1/erc20:0x93c9175e26f57d2888c7df8b470c9eea5c0b0a93",
+    "chainId": "eip155:1",
+    "name": "B cube ai",
+    "precision": 18,
+    "color": "#36AED8",
+    "icon": "https://assets.coingecko.com/coins/images/15948/thumb/bcube.PNG?1696515560",
+    "symbol": "BCUBE",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x93cb5381fcbe32301a2f9905cff0ebec2fdf6c09": {
+    "assetId": "eip155:1/erc20:0x93cb5381fcbe32301a2f9905cff0ebec2fdf6c09",
+    "chainId": "eip155:1",
+    "name": "Yooldo",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/32996/thumb/New_yooldo_symbol_bg_dark.png?1700110947",
+    "symbol": "YOOL",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x93dfaf57d986b9ca77df9376c50878e013d9c7c8": {
+    "assetId": "eip155:1/erc20:0x93dfaf57d986b9ca77df9376c50878e013d9c7c8",
+    "chainId": "eip155:1",
+    "name": "Unique One",
+    "precision": 18,
+    "color": "#F05A3A",
+    "icon": "https://assets.coingecko.com/coins/images/13458/thumb/Logo_Unique.png?1696513221",
+    "symbol": "RARE",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x93e32efafd24973d45f363a76d73ccb9edf59986": {
+    "assetId": "eip155:1/erc20:0x93e32efafd24973d45f363a76d73ccb9edf59986",
+    "chainId": "eip155:1",
+    "name": "Bitlocus on Ethereum",
+    "precision": 6,
+    "color": "#5EBD8F",
+    "icon": "https://assets.coingecko.com/coins/images/20913/thumb/btl.png?1696520304",
+    "symbol": "BTL",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x93ed3fbe21207ec2e8f2d3c3de6e058cb73bc04d": {
+    "assetId": "eip155:1/erc20:0x93ed3fbe21207ec2e8f2d3c3de6e058cb73bc04d",
+    "chainId": "eip155:1",
+    "name": "Kleros on Ethereum",
+    "precision": 18,
+    "color": "#37363A",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x93ED3FBe21207Ec2E8f2d3c3de6e058Cb73Bc04d/logo.png",
+    "symbol": "PNK",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x93eeb426782bd88fcd4b48d7b0368cf061044928": {
+    "assetId": "eip155:1/erc20:0x93eeb426782bd88fcd4b48d7b0368cf061044928",
+    "chainId": "eip155:1",
+    "name": "The Rug Game",
+    "precision": 18,
+    "color": "#0CAC33",
+    "icon": "https://assets.coingecko.com/coins/images/28750/thumb/TRG_Logo_Circular_200px.png?1696527729",
+    "symbol": "TRG",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x93ef1ea305d11a9b2a3ebb9bb4fcc34695292e7d": {
+    "assetId": "eip155:1/erc20:0x93ef1ea305d11a9b2a3ebb9bb4fcc34695292e7d",
+    "chainId": "eip155:1",
+    "name": "queenETH",
+    "precision": 18,
+    "color": "#34DC24",
+    "icon": "https://assets.coingecko.com/coins/images/30027/thumb/queeneth.png?1696528950",
+    "symbol": "QETH",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x94025780a1ab58868d9b2dbbb775f44b32e8e6e5": {
+    "assetId": "eip155:1/erc20:0x94025780a1ab58868d9b2dbbb775f44b32e8e6e5",
+    "chainId": "eip155:1",
+    "name": "BetSwirl on Ethereum",
+    "precision": 18,
+    "color": "#476DEF",
+    "icon": "https://assets.coingecko.com/coins/images/26618/thumb/icon_200.png?1696525691",
+    "symbol": "BETS",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x940a2db1b7008b6c776d4faaca729d6d4a4aa551": {
+    "assetId": "eip155:1/erc20:0x940a2db1b7008b6c776d4faaca729d6d4a4aa551",
+    "chainId": "eip155:1",
+    "name": "Dusk",
+    "precision": 18,
+    "color": "#543F9B",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x940a2dB1B7008B6C776d4faaCa729d6d4A4AA551/logo.png",
+    "symbol": "DUSK",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x940bdcb99a0ee5fb008a606778ae87ed9789f257": {
+    "assetId": "eip155:1/erc20:0x940bdcb99a0ee5fb008a606778ae87ed9789f257",
+    "chainId": "eip155:1",
+    "name": "JFIN Coin",
+    "precision": 18,
+    "color": "#F40404",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x940BdCb99A0Ee5Fb008A606778AE87Ed9789F257/logo.png",
+    "symbol": "JFIN",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x943ed852dadb5c3938ecdc6883718df8142de4c8": {
+    "assetId": "eip155:1/erc20:0x943ed852dadb5c3938ecdc6883718df8142de4c8",
+    "chainId": "eip155:1",
+    "name": "FansTime",
+    "precision": 18,
+    "color": "#B29E5F",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x943ED852DadB5C3938ECdC6883718df8142DE4C8/logo.png",
+    "symbol": "FTI",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x944eee930933be5e23b690c8589021ec8619a301": {
+    "assetId": "eip155:1/erc20:0x944eee930933be5e23b690c8589021ec8619a301",
+    "chainId": "eip155:1",
+    "name": "Munch on Ethereum",
+    "precision": 9,
+    "color": "#CC477E",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x944eeE930933BE5E23b690c8589021Ec8619a301/logo.png",
+    "symbol": "MUNCH",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x946551dd05c5abd7cc808927480225ce36d8c475": {
+    "assetId": "eip155:1/erc20:0x946551dd05c5abd7cc808927480225ce36d8c475",
+    "chainId": "eip155:1",
+    "name": "One on Ethereum",
+    "precision": 18,
+    "color": "#ACA2DA",
+    "icon": "https://assets.coingecko.com/coins/images/4960/thumb/Screenshot_39.png?1696505497",
+    "symbol": "ONE",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x9469d013805bffb7d3debe5e7839237e535ec483": {
+    "assetId": "eip155:1/erc20:0x9469d013805bffb7d3debe5e7839237e535ec483",
+    "chainId": "eip155:1",
+    "name": "Darwinia Network on Ethereum",
+    "precision": 18,
+    "color": "#989CA8",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x9469D013805bFfB7D3DEBe5E7839237e535ec483/logo.png",
+    "symbol": "RING",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x9471d30d78a3c9f076ce206d14867a8d8be1efde": {
+    "assetId": "eip155:1/erc20:0x9471d30d78a3c9f076ce206d14867a8d8be1efde",
+    "chainId": "eip155:1",
+    "name": "ZENEX on Ethereum",
+    "precision": 6,
+    "color": "#55BC2D",
+    "icon": "https://assets.coingecko.com/coins/images/29638/thumb/znx-logo.png?1696528575",
+    "symbol": "ZNX",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x94804dc4948184ffd7355f62ccbb221c9765886f": {
+    "assetId": "eip155:1/erc20:0x94804dc4948184ffd7355f62ccbb221c9765886f",
+    "chainId": "eip155:1",
+    "name": "Rage Fan on Ethereum",
+    "precision": 18,
+    "color": "#AA1C55",
+    "icon": "https://assets.coingecko.com/coins/images/14585/thumb/Copy_of_RAGE_FAN_LOGO_ONLY.png?1696514265",
+    "symbol": "RAGE",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x948c70dc6169bfb10028fdbe96cbc72e9562b2ac": {
+    "assetId": "eip155:1/erc20:0x948c70dc6169bfb10028fdbe96cbc72e9562b2ac",
+    "chainId": "eip155:1",
+    "name": "PolkaFantasy on Ethereum",
+    "precision": 18,
+    "color": "#FC6CB4",
+    "icon": "https://assets.coingecko.com/coins/images/18299/thumb/XP_Token_Icon.png?1696517791",
+    "symbol": "XP",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x949d48eca67b17269629c7194f4b727d4ef9e5d6": {
+    "assetId": "eip155:1/erc20:0x949d48eca67b17269629c7194f4b727d4ef9e5d6",
+    "chainId": "eip155:1",
+    "name": "Merit Circle on Ethereum",
+    "precision": 18,
+    "color": "#EF9B42",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x949D48EcA67b17269629c7194F4b727d4Ef9E5d6/logo.png",
+    "symbol": "MC",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x94be6962be41377d5beda8dfe1b100f3bf0eacf3": {
+    "assetId": "eip155:1/erc20:0x94be6962be41377d5beda8dfe1b100f3bf0eacf3",
+    "chainId": "eip155:1",
+    "name": "DORK LORD",
+    "precision": 18,
+    "color": "#2E2B37",
+    "icon": "https://assets.coingecko.com/coins/images/31654/thumb/%E1%97%AAO%E1%96%87K_%E1%92%AAO%E1%96%87%E1%97%AA.png?1696530469",
+    "symbol": "DORKL",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x94d40b49f020bfebba1a80a0191eb3737b90e8d3": {
+    "assetId": "eip155:1/erc20:0x94d40b49f020bfebba1a80a0191eb3737b90e8d3",
+    "chainId": "eip155:1",
+    "name": "Mintera",
+    "precision": 18,
+    "color": "#14151D",
+    "icon": "https://assets.coingecko.com/coins/images/28774/thumb/Mintera_Logo_CoinGecko.png?1696527753",
+    "symbol": "MNTE",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x94d863173ee77439e4292284ff13fad54b3ba182": {
+    "assetId": "eip155:1/erc20:0x94d863173ee77439e4292284ff13fad54b3ba182",
+    "chainId": "eip155:1",
+    "name": "Delphi",
+    "precision": 18,
+    "color": "#C8C4F3",
+    "icon": "https://assets.coingecko.com/coins/images/12300/thumb/adel_on_white_10x.png?1696512130",
+    "symbol": "ADEL",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x94dc32f6f4268a4b99cdee7989c4e6818de317cf": {
+    "assetId": "eip155:1/erc20:0x94dc32f6f4268a4b99cdee7989c4e6818de317cf",
+    "chainId": "eip155:1",
+    "name": "Bionic Protocol",
+    "precision": 18,
+    "color": "#D4E4EE",
+    "icon": "https://assets.coingecko.com/coins/images/32141/thumb/Bionic_Logo_4.png?1697139495",
+    "symbol": "BIONIC",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x94e0bab2f6ab1f19f4750e42d7349f2740513ad5": {
+    "assetId": "eip155:1/erc20:0x94e0bab2f6ab1f19f4750e42d7349f2740513ad5",
+    "chainId": "eip155:1",
+    "name": "Unicly on Ethereum",
+    "precision": 18,
+    "color": "#14323B",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x94E0BAb2F6Ab1F19F4750E42d7349f2740513aD5/logo.png",
+    "symbol": "UNIC",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x94e496474f1725f1c1824cb5bdb92d7691a4f03a": {
+    "assetId": "eip155:1/erc20:0x94e496474f1725f1c1824cb5bdb92d7691a4f03a",
+    "chainId": "eip155:1",
+    "name": "Banana on Ethereum",
+    "precision": 18,
+    "color": "#F0D71C",
+    "icon": "https://assets.coingecko.com/coins/images/17521/thumb/banana-token-cg.png?1696517059",
+    "symbol": "BANANA",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x94e9eb8b5ab9fd6b9ea3169d55ffade62a01702e": {
+    "assetId": "eip155:1/erc20:0x94e9eb8b5ab9fd6b9ea3169d55ffade62a01702e",
+    "chainId": "eip155:1",
+    "name": "BreederDAO on Ethereum",
+    "precision": 18,
+    "color": "#0F1419",
+    "icon": "https://assets.coingecko.com/coins/images/25203/thumb/BreederDAO-Breed_Token-FINAL.png?1696524347",
+    "symbol": "BREED",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x9506d37f70eb4c3d79c398d326c871abbf10521d": {
+    "assetId": "eip155:1/erc20:0x9506d37f70eb4c3d79c398d326c871abbf10521d",
+    "chainId": "eip155:1",
+    "name": "Media Licensing Token on Ethereum",
+    "precision": 18,
+    "color": "#A40508",
+    "icon": "https://assets.coingecko.com/coins/images/15659/thumb/milc_200x200.png?1696515290",
+    "symbol": "MLT",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x9532ca064278ce3ba4fcc66cebec6d9f04f58f70": {
+    "assetId": "eip155:1/erc20:0x9532ca064278ce3ba4fcc66cebec6d9f04f58f70",
+    "chainId": "eip155:1",
+    "name": "Bot Compiler",
+    "precision": 9,
+    "color": "#1C190F",
+    "icon": "https://assets.coingecko.com/coins/images/31513/thumb/imageedit_1_8217440916.png?1696530323",
+    "symbol": "BOTC",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x95392f142af1c12f6e39897ff9b09c599666b50c": {
+    "assetId": "eip155:1/erc20:0x95392f142af1c12f6e39897ff9b09c599666b50c",
+    "chainId": "eip155:1",
+    "name": "Impostors Blood",
+    "precision": 18,
+    "color": "#AC4C3E",
+    "icon": "https://assets.coingecko.com/coins/images/25527/thumb/RV4nKK2RDO47XzfSLgGs_llgXivhdfpI3tso0.png?1696524659",
+    "symbol": "BLOOD",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x954b890704693af242613edef1b603825afcd708": {
+    "assetId": "eip155:1/erc20:0x954b890704693af242613edef1b603825afcd708",
+    "chainId": "eip155:1",
+    "name": "Cardstack",
+    "precision": 18,
+    "color": "#34EC74",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x954b890704693af242613edEf1B603825afcD708/logo.png",
+    "symbol": "CARD",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x9559aaa82d9649c7a7b220e7c461d2e74c9a3593": {
+    "assetId": "eip155:1/erc20:0x9559aaa82d9649c7a7b220e7c461d2e74c9a3593",
+    "chainId": "eip155:1",
+    "name": "StaFi Staked ETH",
+    "precision": 18,
+    "color": "#204640",
+    "icon": "https://assets.coingecko.com/coins/images/14452/thumb/rETH.png?1696514140",
+    "symbol": "RETH",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x955d5c14c8d4944da1ea7836bd44d54a8ec35ba1": {
+    "assetId": "eip155:1/erc20:0x955d5c14c8d4944da1ea7836bd44d54a8ec35ba1",
+    "chainId": "eip155:1",
+    "name": "Refund",
+    "precision": 18,
+    "color": "#040505",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x955d5c14C8D4944dA1Ea7836bd44D54a8eC35Ba1/logo.png",
+    "symbol": "RFD",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x9565c2036963697786705120fc59310f747bcfd0": {
+    "assetId": "eip155:1/erc20:0x9565c2036963697786705120fc59310f747bcfd0",
+    "chainId": "eip155:1",
+    "name": "PoorPleb",
+    "precision": 18,
+    "color": "#1E1E1E",
+    "icon": "https://assets.coingecko.com/coins/images/28063/thumb/PP_TOKEN_LOGO.png?1696527075",
+    "symbol": "PP",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x956f47f50a910163d8bf957cf5846d573e7f87ca": {
+    "assetId": "eip155:1/erc20:0x956f47f50a910163d8bf957cf5846d573e7f87ca",
+    "chainId": "eip155:1",
+    "name": "Fei USD",
+    "precision": 18,
+    "color": "#249B6C",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x956F47F50A910163D8BF957Cf5846D573E7f87CA/logo.png",
+    "symbol": "FEI",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x95a4492f028aa1fd432ea71146b433e7b4446611": {
+    "assetId": "eip155:1/erc20:0x95a4492f028aa1fd432ea71146b433e7b4446611",
+    "chainId": "eip155:1",
+    "name": "APY Finance",
+    "precision": 18,
+    "color": "#18123B",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x95a4492F028aa1fd432Ea71146b433E7B4446611/logo.png",
+    "symbol": "APY",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x95aa5d2dbd3c16ee3fdea82d5c6ec3e38ce3314f": {
+    "assetId": "eip155:1/erc20:0x95aa5d2dbd3c16ee3fdea82d5c6ec3e38ce3314f",
+    "chainId": "eip155:1",
+    "name": "PointPay",
+    "precision": 18,
+    "color": "#3AA0F0",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x95aA5d2DbD3c16ee3fdea82D5C6EC3E38CE3314f/logo.png",
+    "symbol": "PXP",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x95ad61b0a150d79219dcf64e1e6cc01f0b64c4ce": {
+    "assetId": "eip155:1/erc20:0x95ad61b0a150d79219dcf64e1e6cc01f0b64c4ce",
+    "chainId": "eip155:1",
+    "name": "Shiba Inu",
+    "precision": 18,
+    "color": "#EF9F39",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x95aD61b0a150d79219dCF64E1E6Cc01f0B64C4cE/logo.png",
+    "symbol": "SHIB",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x95b4ef2869ebd94beb4eee400a99824bf5dc325b": {
+    "assetId": "eip155:1/erc20:0x95b4ef2869ebd94beb4eee400a99824bf5dc325b",
+    "chainId": "eip155:1",
+    "name": "cMKR",
+    "precision": 8,
+    "color": "#9492E2",
+    "icon": "https://assets.coingecko.com/coins/images/17528/thumb/cmkr.PNG?1696517066",
+    "symbol": "CMKR",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x95e05e2abbd26943874ac000d87c3d9e115b543c": {
+    "assetId": "eip155:1/erc20:0x95e05e2abbd26943874ac000d87c3d9e115b543c",
+    "chainId": "eip155:1",
+    "name": "Raptor",
+    "precision": 18,
+    "color": "#525454",
+    "icon": "https://assets.coingecko.com/coins/images/30866/thumb/bible_logo.png?1696529713",
+    "symbol": "BIBLE",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x95e40e065afb3059dcabe4aaf404c1f92756603a": {
+    "assetId": "eip155:1/erc20:0x95e40e065afb3059dcabe4aaf404c1f92756603a",
+    "chainId": "eip155:1",
+    "name": "King DAG",
+    "precision": 18,
+    "color": "#F0F9F9",
+    "icon": "https://assets.coingecko.com/coins/images/10809/thumb/3xcLUorv_400x400.jpg?1696510767",
+    "symbol": "KDAG",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x95efd1fe6099f65a7ed524def487483221094947": {
+    "assetId": "eip155:1/erc20:0x95efd1fe6099f65a7ed524def487483221094947",
+    "chainId": "eip155:1",
+    "name": "CryptoBonusMiles",
+    "precision": 18,
+    "color": "#04B4E4",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x95eFD1Fe6099F65a7ED524DEF487483221094947/logo.png",
+    "symbol": "CBM",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x96184d9c811ea0624fc30c80233b1d749b9e485b": {
+    "assetId": "eip155:1/erc20:0x96184d9c811ea0624fc30c80233b1d749b9e485b",
+    "chainId": "eip155:1",
+    "name": "Dapp com",
+    "precision": 18,
+    "color": "#711CE9",
+    "icon": "https://assets.coingecko.com/coins/images/8282/thumb/dappt_logo.png?1696508484",
+    "symbol": "DAPPT",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x961c8c0b1aad0c0b10a51fef6a867e3091bcef17": {
+    "assetId": "eip155:1/erc20:0x961c8c0b1aad0c0b10a51fef6a867e3091bcef17",
+    "chainId": "eip155:1",
+    "name": "Dypius  OLD  on Ethereum",
+    "precision": 18,
+    "color": "#E40615",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x961C8c0B1aaD0c0b10a51FeF6a867E3091BCef17/logo.png",
+    "symbol": "DYP",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x961d4921e1718e633bac8ded88c4a1cae44b785a": {
+    "assetId": "eip155:1/erc20:0x961d4921e1718e633bac8ded88c4a1cae44b785a",
+    "chainId": "eip155:1",
+    "name": "Thunderhead Staked FLIP",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAIAAAACACAMAAAD04JH5AAADAFBMVEUtN0hr2Cb///8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAzE7EvAAABAHRSTlP/////AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAf6K/dgAAQItJREFUeNoBgEB/vwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgICAgICAgICAgICAgICAQEBAQEBAQEBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgEBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMAAAAAAAAAAAAAAAAAAAEBAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMAAAAAAAAAAAAAAAAAAAEBAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMAAAAAAAAAAAAAAAAAAAEBAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMAAAAAAAAAAAAAAAAAAAEBAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMAAAAAAAAAAAAAAAAAAAEBAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMAAAAAAAAAAAACAgICAgICAQMDAwMDAwMDAwMDAwMDAwMDAwMDAgICAgICAgEBAQEBAQEBAwMDAwMDAwMDAwMDAwICAgICAgIDAwMDAwMDAwMDAwMDAwMBAQEBAQECAgICAgICAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQEBAQEBAQAAAAAAAAAAAAICAgICAgIDAAAAAAEBAQEBAQEBAQEBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQEBAQEBAQAAAAAAAAAAAAICAgICAgIDAAAAAAEBAQEBAQEBAQEBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQEBAQEBAQAAAAAAAAAAAAICAgICAgIDAAAAAAEBAQEBAQEBAQEBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQEBAQEBAQAAAAAAAAAAAAICAgICAgIDAAAAAAEBAQEBAQEBAQEBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQEBAQEBAQAAAAAAAAAAAAICAgICAgIDAAAAAAEBAQEBAQEBAQEBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQEBAQEBAQAAAAAAAAAAAAICAgICAgIDAAAAAAEBAQEBAQEBAQEBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAQMDAwMDAwMBAQEBAQEBAQEBAQAAAAAAAAAAAAICAgICAgIDAAAAAAEBAQEBAQEBAQEBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAICAgICAgIDAAAAAAEBAQEBAQEBAQEBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAICAgICAgIDAAAAAAEBAQEBAQEBAQEBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAICAgICAgIDAAAAAAEBAQEBAQEBAQEBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAICAgICAgIDAAAAAAEBAQEBAQEBAQEBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAICAgICAgIDAAAAAAEBAQEBAQEBAQEBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAICAgICAgIDAAAAAAEBAQEBAQEBAQEBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAwMDAwMDAgICAgICAgICAgICAgICAgICAgICAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAICAgICAgIDAAAAAAEBAQEBAQEBAQEBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAICAgICAgIDAAAAAAEBAQEBAQEBAQEBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAICAgICAgIDAAAAAAEBAQEBAQEBAQEBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAICAgICAgIDAAAAAAEBAQEBAQEBAQEBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAICAgICAgIDAAAAAAEBAQEBAQEBAQEBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAICAgICAgIDAAAAAAEBAQEBAQEBAQEBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAICAgICAgIDAAAAAAEBAQEBAQEBAQEBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQMDAwMDAwMDAwMDAwMDAwMDAwMDAgICAgICAgEBAQEBAQEBAQEBAQAAAAAAAAAAAAICAgICAgIDAAAAAAEBAQEBAQEBAQEBAQEBAQECAgICAgICAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQEBAQEBAQAAAAAAAAAAAAICAgICAgIDAAAAAAEBAQEBAQEBAQEBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQEBAQEBAQAAAAAAAAAAAAICAgICAgIDAAAAAAEBAQEBAQEBAQEBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQEBAQEBAQAAAAAAAAAAAAICAgICAgIDAAAAAAEBAQEBAQEBAQEBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQEBAQEBAQAAAAAAAAAAAAICAgICAgIDAAAAAAEBAQEBAQEBAQEBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQEBAQEBAQAAAAAAAAAAAAICAgICAgIDAAAAAAEBAQEBAQEBAQEBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQEBAQEBAQAAAAAAAAAAAAICAgICAgIDAAAAAAEBAQEBAQEBAQEBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAQEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQEBAQEBAQAAAAAAAAAAAAICAgICAgIDAAAAAAEBAQEBAQEBAQEBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQEBAQEBAQAAAAAAAAAAAAICAgICAgIDAAAAAAEBAQEBAQEBAQEBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQEBAQEBAQAAAAAAAAAAAAICAgICAgIDAAAAAAEBAQEBAQEBAQEBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQEBAQEBAQAAAAAAAAAAAAICAgICAgIDAAAAAAEBAQEBAQEBAQEBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQEBAQEBAQAAAAAAAAAAAAICAgICAgIDAAAAAAEBAQEBAQEBAQEBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQEBAQEBAQAAAAAAAAAAAAICAgICAgIDAAAAAAEBAQEBAQEBAQEBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQEBAQEBAQAAAAAAAAAAAAICAgICAgIDAAAAAAEBAQEBAQEBAQEBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAwMDAwMDAgICAgICAgICAgICAgICAgICAgICAQMDAwMDAwMBAQEBAQEBAQEBAQAAAAAAAAAAAAICAgICAgIDAAAAAAEBAQEBAQEBAQEBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAICAgICAgIDAAAAAAEBAQEBAQEBAQEBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAICAgICAgIDAAAAAAEBAQEBAQEBAQEBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAICAgICAgIDAAAAAAEBAQEBAQEBAQEBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAICAgICAgIDAAAAAAEBAQEBAQEBAQEBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAICAgICAgIDAAAAAAEBAQEBAQEBAQEBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAICAgICAgIDAAAAAAEBAQEBAQEBAQEBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQMDAwMDAwMDAwMDAwMDAwMDAwMDAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAADAwMDAwMDAAAAAAEBAQEBAQEBAQEBAQEBAQEBAwMDAwMDAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPEBL3tThfqlAAAAAElFTkSuQmCC",
+    "symbol": "STFLIP",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x9625ce7753ace1fa1865a47aae2c5c2ce4418569": {
+    "assetId": "eip155:1/erc20:0x9625ce7753ace1fa1865a47aae2c5c2ce4418569",
+    "chainId": "eip155:1",
+    "name": "KAP Games on Ethereum",
+    "precision": 18,
+    "color": "#2F2A24",
+    "icon": "https://assets.coingecko.com/coins/images/27682/thumb/KAP_Logo.png?1696526710",
+    "symbol": "KAP",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x963035453633f6f7433032c958f82eb3043d8cd2": {
+    "assetId": "eip155:1/erc20:0x963035453633f6f7433032c958f82eb3043d8cd2",
+    "chainId": "eip155:1",
+    "name": "USD Freedom",
+    "precision": 18,
+    "color": "#0C4C3C",
+    "icon": "https://assets.coingecko.com/coins/images/26920/thumb/USDF_200x200.png?1696525977",
+    "symbol": "USDF",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x96543ef8d2c75c26387c1a319ae69c0bee6f3fe7": {
+    "assetId": "eip155:1/erc20:0x96543ef8d2c75c26387c1a319ae69c0bee6f3fe7",
+    "chainId": "eip155:1",
+    "name": "Kujira on Ethereum",
+    "precision": 6,
+    "color": "#A13334",
+    "icon": "https://assets.coingecko.com/coins/images/20685/thumb/kuji-200x200.png?1696520085",
+    "symbol": "KUJI",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x965697b4ef02f0de01384d0d4f9f782b1670c163": {
+    "assetId": "eip155:1/erc20:0x965697b4ef02f0de01384d0d4f9f782b1670c163",
+    "chainId": "eip155:1",
+    "name": "Oxygen",
+    "precision": 6,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/13509/thumb/8DjBZ79V_400x400.jpg?1696513271",
+    "symbol": "OXY",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x9657477ac915f56ca87c253db1320218ec2d5ddd": {
+    "assetId": "eip155:1/erc20:0x9657477ac915f56ca87c253db1320218ec2d5ddd",
+    "chainId": "eip155:1",
+    "name": "Jake Newman Enterprises",
+    "precision": 18,
+    "color": "#3858D7",
+    "icon": "https://assets.coingecko.com/coins/images/32565/thumb/image-200x200.jpg?1698546675",
+    "symbol": "JNE",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x965b85d4674f64422c4898c8f8083187f02b32c0": {
+    "assetId": "eip155:1/erc20:0x965b85d4674f64422c4898c8f8083187f02b32c0",
+    "chainId": "eip155:1",
+    "name": "Filecoin Standard Full Hashrate on Ethereum",
+    "precision": 8,
+    "color": "#0A80EE",
+    "icon": "https://assets.coingecko.com/coins/images/21669/thumb/_70BfuBY_400x400.jpg?1696521026",
+    "symbol": "SFIL",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x965d79f1a1016b574a62986e13ca8ab04dfdd15c": {
+    "assetId": "eip155:1/erc20:0x965d79f1a1016b574a62986e13ca8ab04dfdd15c",
+    "chainId": "eip155:1",
+    "name": "M2",
+    "precision": 18,
+    "color": "#478ECC",
+    "icon": "https://assets.coingecko.com/coins/images/18239/thumb/m2_%281%29.png?1696517735",
+    "symbol": "M2",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x96610186f3ab8d73ebee1cf950c750f3b1fb79c2": {
+    "assetId": "eip155:1/erc20:0x96610186f3ab8d73ebee1cf950c750f3b1fb79c2",
+    "chainId": "eip155:1",
+    "name": "Enjinstarter on Ethereum",
+    "precision": 18,
+    "color": "#B63EAE",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x96610186F3ab8d73EBEe1CF950C750f3B1Fb79C2/logo.png",
+    "symbol": "EJS",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x9669890e48f330acd88b78d63e1a6b3482652cd9": {
+    "assetId": "eip155:1/erc20:0x9669890e48f330acd88b78d63e1a6b3482652cd9",
+    "chainId": "eip155:1",
+    "name": "Bincentive",
+    "precision": 18,
+    "color": "#063343",
+    "icon": "https://assets.coingecko.com/coins/images/9661/thumb/bcnt.png?1696509729",
+    "symbol": "BCNT",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x966e770030209c95f974f37edbde65d98e853354": {
+    "assetId": "eip155:1/erc20:0x966e770030209c95f974f37edbde65d98e853354",
+    "chainId": "eip155:1",
+    "name": "Maxx on Ethereum",
+    "precision": 18,
+    "color": "#4C547C",
+    "icon": "https://assets.coingecko.com/coins/images/30488/thumb/D9E6AF16-95F9-4550-87B5-E60C50DB1E02.png?1696529375",
+    "symbol": "MAXX",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x967da4048cd07ab37855c090aaf366e4ce1b9f48": {
+    "assetId": "eip155:1/erc20:0x967da4048cd07ab37855c090aaf366e4ce1b9f48",
+    "chainId": "eip155:1",
+    "name": "Ocean Protocol on Ethereum",
+    "precision": 18,
+    "color": "#D9D9D9",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x967da4048cD07aB37855c090aAF366e4ce1b9F48/logo.png",
+    "symbol": "OCEAN",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x967fb0d760ed3ce53afe2f0a071674cccae73550": {
+    "assetId": "eip155:1/erc20:0x967fb0d760ed3ce53afe2f0a071674cccae73550",
+    "chainId": "eip155:1",
+    "name": "XANA on Ethereum",
+    "precision": 18,
+    "color": "#1A0557",
+    "icon": "https://assets.coingecko.com/coins/images/24379/thumb/XANA_Logo_neon_pink.png?1696523562",
+    "symbol": "XETA",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x9681ee0d91e737c3b60aceba7fbdae61b5462f42": {
+    "assetId": "eip155:1/erc20:0x9681ee0d91e737c3b60aceba7fbdae61b5462f42",
+    "chainId": "eip155:1",
+    "name": "Crypto Carbon Energy",
+    "precision": 6,
+    "color": "#4A861D",
+    "icon": "https://assets.coingecko.com/coins/images/29824/thumb/CYCE.jpg?1696528752",
+    "symbol": "CYCE",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x968cbe62c830a0ccf4381614662398505657a2a9": {
+    "assetId": "eip155:1/erc20:0x968cbe62c830a0ccf4381614662398505657a2a9",
+    "chainId": "eip155:1",
+    "name": "Thrupenny",
+    "precision": 8,
+    "color": "#2B05FB",
+    "icon": "https://assets.coingecko.com/coins/images/26799/thumb/rsz_1mpmojfho_400x400.png?1696525861",
+    "symbol": "TPY",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x968f6f898a6df937fc1859b323ac2f14643e3fed": {
+    "assetId": "eip155:1/erc20:0x968f6f898a6df937fc1859b323ac2f14643e3fed",
+    "chainId": "eip155:1",
+    "name": "Newscrypto Coin on Ethereum",
+    "precision": 18,
+    "color": "#2B78BD",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x968F6f898a6Df937fC1859b323aC2F14643e3fED/logo.png",
+    "symbol": "NWC",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x9695e0114e12c0d3a3636fab5a18e6b737529023": {
+    "assetId": "eip155:1/erc20:0x9695e0114e12c0d3a3636fab5a18e6b737529023",
+    "chainId": "eip155:1",
+    "name": "Dfyn Network on Ethereum",
+    "precision": 18,
+    "color": "#EFF0EE",
+    "icon": "https://assets.coingecko.com/coins/images/15368/thumb/SgqhfWz4_400x400_%281%29.jpg?1696515016",
+    "symbol": "DFYN",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x969786c4a8884013d1c9ff18dcca2aedbbbfaa8f": {
+    "assetId": "eip155:1/erc20:0x969786c4a8884013d1c9ff18dcca2aedbbbfaa8f",
+    "chainId": "eip155:1",
+    "name": "Gamerse on Ethereum",
+    "precision": 18,
+    "color": "#3A3A34",
+    "icon": "https://assets.coingecko.com/coins/images/19582/thumb/gamerse.PNG?1696519013",
+    "symbol": "LFG",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x96add417293a49e80f024734e96cfd8b355bcc14": {
+    "assetId": "eip155:1/erc20:0x96add417293a49e80f024734e96cfd8b355bcc14",
+    "chainId": "eip155:1",
+    "name": "LiquidLayer",
+    "precision": 18,
+    "color": "#F0F0F0",
+    "icon": "https://assets.coingecko.com/coins/images/32547/thumb/photo_2023-10-08_12-09-02.jpg?1698474657",
+    "symbol": "LILA",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x96c645d3d3706f793ef52c19bbace441900ed47d": {
+    "assetId": "eip155:1/erc20:0x96c645d3d3706f793ef52c19bbace441900ed47d",
+    "chainId": "eip155:1",
+    "name": "Mt Pelerin Shares on Ethereum",
+    "precision": 0,
+    "color": "#5CC3F3",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x96c645D3D3706f793Ef52C19bBACe441900eD47D/logo.png",
+    "symbol": "MPS",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x96e61422b6a9ba0e068b6c5add4ffabc6a4aae27": {
+    "assetId": "eip155:1/erc20:0x96e61422b6a9ba0e068b6c5add4ffabc6a4aae27",
+    "chainId": "eip155:1",
+    "name": "Iron Bank EUR",
+    "precision": 18,
+    "color": "#69D7D0",
+    "icon": "https://assets.coingecko.com/coins/images/17285/thumb/Iron_Bank_Euro.png?1696516839",
+    "symbol": "IBEUR",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x96eafff5bedf18566b18fce71c2323b69c795623": {
+    "assetId": "eip155:1/erc20:0x96eafff5bedf18566b18fce71c2323b69c795623",
+    "chainId": "eip155:1",
+    "name": "Astropup Coin",
+    "precision": 18,
+    "color": "#2E2847",
+    "icon": "https://assets.coingecko.com/coins/images/30693/thumb/ASTROPUP_COIN.png?1696529562",
+    "symbol": "ASPC",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x96eb50804d0ef2790f2e1a33670feff6040cf89d": {
+    "assetId": "eip155:1/erc20:0x96eb50804d0ef2790f2e1a33670feff6040cf89d",
+    "chainId": "eip155:1",
+    "name": "Space Xmitter",
+    "precision": 18,
+    "color": "#733504",
+    "icon": "https://assets.coingecko.com/coins/images/28335/thumb/X200.png?1696527341",
+    "symbol": "SX",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x96f6ef951840721adbf46ac996b59e0235cb985c": {
+    "assetId": "eip155:1/erc20:0x96f6ef951840721adbf46ac996b59e0235cb985c",
+    "chainId": "eip155:1",
+    "name": "Ondo US Dollar Yield",
+    "precision": 18,
+    "color": "#D1DAE4",
+    "icon": "https://assets.coingecko.com/coins/images/31700/thumb/usdy_%281%29.png?1696530524",
+    "symbol": "USDY",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x970b9bb2c0444f5e81e9d0efb84c8ccdcdcaf84d": {
+    "assetId": "eip155:1/erc20:0x970b9bb2c0444f5e81e9d0efb84c8ccdcdcaf84d",
+    "chainId": "eip155:1",
+    "name": "Fuse on Ethereum",
+    "precision": 18,
+    "color": "#EAEC50",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x970B9bB2C0444F5E81e9d0eFb84C8ccdcdcAf84d/logo.png",
+    "symbol": "FUSE",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x973e52691176d36453868d9d86572788d27041a9": {
+    "assetId": "eip155:1/erc20:0x973e52691176d36453868d9d86572788d27041a9",
+    "chainId": "eip155:1",
+    "name": "DxChain",
+    "precision": 18,
+    "color": "#F2A213",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x973e52691176d36453868D9d86572788d27041A9/logo.png",
+    "symbol": "DX",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x9754d5e5ea788c62f11d34a818aeae927aeac84c": {
+    "assetId": "eip155:1/erc20:0x9754d5e5ea788c62f11d34a818aeae927aeac84c",
+    "chainId": "eip155:1",
+    "name": "YoloNolo",
+    "precision": 18,
+    "color": "#A75F35",
+    "icon": "https://assets.coingecko.com/coins/images/31067/thumb/Nolo_200x200_logo.png?1696529901",
+    "symbol": "NOLO",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x9767203e89dcd34851240b3919d4900d3e5069f1": {
+    "assetId": "eip155:1/erc20:0x9767203e89dcd34851240b3919d4900d3e5069f1",
+    "chainId": "eip155:1",
+    "name": "A4 Finance on Ethereum",
+    "precision": 6,
+    "color": "#D4D4D4",
+    "icon": "https://assets.coingecko.com/coins/images/21992/thumb/ba384ad07217a4be75cb85314f5760f7.jpg?1696521340",
+    "symbol": "A4",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x9776191f4ebbba7f358c1663bf82c0a0906c77fa": {
+    "assetId": "eip155:1/erc20:0x9776191f4ebbba7f358c1663bf82c0a0906c77fa",
+    "chainId": "eip155:1",
+    "name": "Phoenix Chain on Ethereum",
+    "precision": 18,
+    "color": "#E07A38",
+    "icon": "https://assets.coingecko.com/coins/images/29480/thumb/PHOENlX_%281%29_%281%29_%281%29.png?1696528424",
+    "symbol": "PHX",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x9778ac3d5a2f916aa9abf1eb85c207d990ca2655": {
+    "assetId": "eip155:1/erc20:0x9778ac3d5a2f916aa9abf1eb85c207d990ca2655",
+    "chainId": "eip155:1",
+    "name": "OG SMINEM",
+    "precision": 18,
+    "color": "#523C28",
+    "icon": "https://assets.coingecko.com/coins/images/32574/thumb/Sminem_portrait__2_-removebg-preview.png?1698554514",
+    "symbol": "OGSM",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x977b6fc5de62598b08c85ac8cf2b745874e8b78c": {
+    "assetId": "eip155:1/erc20:0x977b6fc5de62598b08c85ac8cf2b745874e8b78c",
+    "chainId": "eip155:1",
+    "name": "Aave v3 cbETH",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/32892/thumb/cbETH.png?1699789253",
+    "symbol": "ACBETH",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x97808df7afb14134d37a91576bdb8b95dfcd2e92": {
+    "assetId": "eip155:1/erc20:0x97808df7afb14134d37a91576bdb8b95dfcd2e92",
+    "chainId": "eip155:1",
+    "name": "FrenGate",
+    "precision": 18,
+    "color": "#7DD4F4",
+    "icon": "https://assets.coingecko.com/coins/images/31874/thumb/frengate_logo_%281%29.png?1696530686",
+    "symbol": "FGATE",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x9783b81438c24848f85848f8df31845097341771": {
+    "assetId": "eip155:1/erc20:0x9783b81438c24848f85848f8df31845097341771",
+    "chainId": "eip155:1",
+    "name": "Dog Collar on Ethereum",
+    "precision": 18,
+    "color": "#A11C24",
+    "icon": "https://assets.coingecko.com/coins/images/18324/thumb/dcLogo.png?1696517815",
+    "symbol": "COLLAR",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x97872eafd79940c7b24f7bcc1eadb1457347adc9": {
+    "assetId": "eip155:1/erc20:0x97872eafd79940c7b24f7bcc1eadb1457347adc9",
+    "chainId": "eip155:1",
+    "name": "Strips Finance on Ethereum",
+    "precision": 18,
+    "color": "#2A8ECD",
+    "icon": "https://assets.coingecko.com/coins/images/18327/thumb/Logo-Strips-200-x-200px---without-words.png?1696517818",
+    "symbol": "STRP",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x979aca85ba37c675e78322ed5d97fa980b9bdf00": {
+    "assetId": "eip155:1/erc20:0x979aca85ba37c675e78322ed5d97fa980b9bdf00",
+    "chainId": "eip155:1",
+    "name": "FUSION on Ethereum",
+    "precision": 18,
+    "color": "#263C62",
+    "icon": "https://assets.coingecko.com/coins/images/2515/thumb/Fusion_200x200.png?1696503329",
+    "symbol": "FSN",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x97a3bd8a445cc187c6a751f392e15c3b2134d695": {
+    "assetId": "eip155:1/erc20:0x97a3bd8a445cc187c6a751f392e15c3b2134d695",
+    "chainId": "eip155:1",
+    "name": "Blockster",
+    "precision": 18,
+    "color": "#464A3A",
+    "icon": "https://assets.coingecko.com/coins/images/19857/thumb/bxr-left2.png?1696519280",
+    "symbol": "BXR",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x97a9bac06f90940bce9caec2b880ff17707519e4": {
+    "assetId": "eip155:1/erc20:0x97a9bac06f90940bce9caec2b880ff17707519e4",
+    "chainId": "eip155:1",
+    "name": "Minato on Ethereum",
+    "precision": 18,
+    "color": "#C42434",
+    "icon": "https://assets.coingecko.com/coins/images/24622/thumb/MNTO_200x200.png?1696523794",
+    "symbol": "MNTO",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x97abee33cd075c58bfdd174e0885e08e8f03556f": {
+    "assetId": "eip155:1/erc20:0x97abee33cd075c58bfdd174e0885e08e8f03556f",
+    "chainId": "eip155:1",
+    "name": "Sentiment",
+    "precision": 18,
+    "color": "#9EEF8F",
+    "icon": "https://assets.coingecko.com/coins/images/16388/thumb/94SwpUOP_400x400.jpg?1696515986",
+    "symbol": "SENT",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x97b65710d03e12775189f0d113202cc1443b0aa2": {
+    "assetId": "eip155:1/erc20:0x97b65710d03e12775189f0d113202cc1443b0aa2",
+    "chainId": "eip155:1",
+    "name": "AstroElon",
+    "precision": 9,
+    "color": "#BFAE83",
+    "icon": "https://assets.coingecko.com/coins/images/16082/thumb/AstroElon.png?1696515690",
+    "symbol": "ELONONE",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x97bbbc5d96875fb78d2f14b7ff8d7a3a74106f17": {
+    "assetId": "eip155:1/erc20:0x97bbbc5d96875fb78d2f14b7ff8d7a3a74106f17",
+    "chainId": "eip155:1",
+    "name": "Astrafer on Ethereum",
+    "precision": 18,
+    "color": "#D71261",
+    "icon": "https://assets.coingecko.com/coins/images/26246/thumb/ATSRA_Token.png?1696525331",
+    "symbol": "ASTRAFER",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x97bd0d0a3e9635325ec0b383cff62914a7d50642": {
+    "assetId": "eip155:1/erc20:0x97bd0d0a3e9635325ec0b383cff62914a7d50642",
+    "chainId": "eip155:1",
+    "name": "Flooring Protocol  SappySeals",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/32787/thumb/saps_%281%29.png?1699353354",
+    "symbol": "SAPS",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x97c8321b9434db4110b1d75a551e561036ff2e6a": {
+    "assetId": "eip155:1/erc20:0x97c8321b9434db4110b1d75a551e561036ff2e6a",
+    "chainId": "eip155:1",
+    "name": "WagerOn",
+    "precision": 18,
+    "color": "#4CFC74",
+    "icon": "https://assets.coingecko.com/coins/images/32385/thumb/logo.png?1698047095",
+    "symbol": "WAGER",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x97d4f49eeb0e2c96d5ebaa71ab8418e563ecd9fd": {
+    "assetId": "eip155:1/erc20:0x97d4f49eeb0e2c96d5ebaa71ab8418e563ecd9fd",
+    "chainId": "eip155:1",
+    "name": "Liquid Staking Derivative",
+    "precision": 9,
+    "color": "#0F0D13",
+    "icon": "https://assets.coingecko.com/coins/images/29188/thumb/LSD.jpg?1696528146",
+    "symbol": "LSD",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x97de57ec338ab5d51557da3434828c5dbfada371": {
+    "assetId": "eip155:1/erc20:0x97de57ec338ab5d51557da3434828c5dbfada371",
+    "chainId": "eip155:1",
+    "name": "eUSD  OLD ",
+    "precision": 18,
+    "color": "#85BBDE",
+    "icon": "https://assets.coingecko.com/coins/images/30047/thumb/ethereum-eth-logo-colored_4_%281%29_%281%29.png?1696528969",
+    "symbol": "EUSD",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x97e19e2a5458294842036404e6a05571d8bc2fa3": {
+    "assetId": "eip155:1/erc20:0x97e19e2a5458294842036404e6a05571d8bc2fa3",
+    "chainId": "eip155:1",
+    "name": "G ",
+    "precision": 18,
+    "color": "#24A4DC",
+    "icon": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAIAAAACACAMAAAD04JH5AAADAFBMVEUtN0gmp9j///8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADVJs6PAAABAHRSTlP/////AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAf6K/dgAAQItJREFUeNoBgEB/vwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgICAgICAgICAgICAgICAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAAMDAwMDAwMDAwMDAwMDAwMDAwMDAgICAgICAgEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAQMDAwMDAwMBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAACAgICAgICAgICAgICAgEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAACAgICAgICAgICAgICAgMBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAACAgICAgICAgICAgICAgMBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAACAgICAgICAgICAgICAgMBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAACAgICAgICAgICAgICAgMBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAACAgICAgICAgICAgICAgMBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAACAgICAgICAgICAgICAgMBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAwMDAwMDAgICAgICAgMBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAwMDAwMDAgICAgICAgICAgICAgICAgICAgICAQMDAwMDAwMBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAMDAwMDAwMDAwMDAwMDAwMDAwMDAwEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACRcKFoLWa8EAAAAAElFTkSuQmCC",
+    "symbol": "G",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x97e3c21f27182498382f81e32fbe0ea3a0e3d79b": {
+    "assetId": "eip155:1/erc20:0x97e3c21f27182498382f81e32fbe0ea3a0e3d79b",
+    "chainId": "eip155:1",
+    "name": "Flipped Pepe",
+    "precision": 9,
+    "color": "#396A2C",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x97e3C21f27182498382f81e32fbe0ea3A0e3D79b/logo.png",
+    "symbol": "EPEP",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x9813037ee2218799597d83d4a5b6f3b6778218d9": {
+    "assetId": "eip155:1/erc20:0x9813037ee2218799597d83d4a5b6f3b6778218d9",
+    "chainId": "eip155:1",
+    "name": "Bone ShibaSwap",
+    "precision": 18,
+    "color": "#D03720",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x9813037ee2218799597d83D4a5B6F3b6778218d9/logo.png",
+    "symbol": "BONE",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x982b50e55394641ca975a0eec630b120b671391a": {
+    "assetId": "eip155:1/erc20:0x982b50e55394641ca975a0eec630b120b671391a",
+    "chainId": "eip155:1",
+    "name": "Ecoterra",
+    "precision": 9,
+    "color": "#349BF6",
+    "icon": "https://assets.coingecko.com/coins/images/31563/thumb/ECOTERRA.png?1696530376",
+    "symbol": "ECOTERRA",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x9839675308f4a83e45f4b0c89b8fa264d68b7812": {
+    "assetId": "eip155:1/erc20:0x9839675308f4a83e45f4b0c89b8fa264d68b7812",
+    "chainId": "eip155:1",
+    "name": "Ciphercore",
+    "precision": 18,
+    "color": "#1BDDC9",
+    "icon": "https://assets.coingecko.com/coins/images/30907/thumb/cipher_200x200.png?1696529752",
+    "symbol": "CIPHER",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x983d8edb44ca96c0595f3c456ebdd47855911f34": {
+    "assetId": "eip155:1/erc20:0x983d8edb44ca96c0595f3c456ebdd47855911f34",
+    "chainId": "eip155:1",
+    "name": "War Legends on Ethereum",
+    "precision": 18,
+    "color": "#666062",
+    "icon": "https://assets.coingecko.com/coins/images/30672/thumb/wZBMVBr2_400x400.jpg?1696529542",
+    "symbol": "WAR",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x98585dfc8d9e7d48f0b1ae47ce33332cf4237d96": {
+    "assetId": "eip155:1/erc20:0x98585dfc8d9e7d48f0b1ae47ce33332cf4237d96",
+    "chainId": "eip155:1",
+    "name": "New Order on Ethereum",
+    "precision": 18,
+    "color": "#F4BC95",
+    "icon": "https://assets.coingecko.com/coins/images/21440/thumb/new-order-icon-256px.png?1696520803",
+    "symbol": "NEWO",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x9863bcc2fb23dfdf5fe275aa4c5575a32a580911": {
+    "assetId": "eip155:1/erc20:0x9863bcc2fb23dfdf5fe275aa4c5575a32a580911",
+    "chainId": "eip155:1",
+    "name": "PEPURAI",
+    "precision": 18,
+    "color": "#40623B",
+    "icon": "https://assets.coingecko.com/coins/images/31702/thumb/Pepurai-_LOGO_%282%29.png?1696530526",
+    "symbol": "PEPURAI",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x986ee2b944c42d017f52af21c4c69b84dbea35d8": {
+    "assetId": "eip155:1/erc20:0x986ee2b944c42d017f52af21c4c69b84dbea35d8",
+    "chainId": "eip155:1",
+    "name": "BitMart",
+    "precision": 18,
+    "color": "#191C1D",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x986EE2B944c42D017F52Af21c4c69B84DBeA35d8/logo.png",
+    "symbol": "BMX",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x987041fb536942bbc686ad7dbc7046d277881fee": {
+    "assetId": "eip155:1/erc20:0x987041fb536942bbc686ad7dbc7046d277881fee",
+    "chainId": "eip155:1",
+    "name": "FriendSniper",
+    "precision": 18,
+    "color": "#36C0F0",
+    "icon": "https://assets.coingecko.com/coins/images/31785/thumb/coingecko-image-200-200.png?1696530602",
+    "symbol": "FSNIPE",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x987441856ba4f463544fc68ccbf6a80f434a7956": {
+    "assetId": "eip155:1/erc20:0x987441856ba4f463544fc68ccbf6a80f434a7956",
+    "chainId": "eip155:1",
+    "name": "NOWAI",
+    "precision": 18,
+    "color": "#E50C4A",
+    "icon": "https://assets.coingecko.com/coins/images/29177/thumb/NOWAI_%282%29.png?1696528135",
+    "symbol": "NOWAI",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x98968f0747e0a261532cacc0be296375f5c08398": {
+    "assetId": "eip155:1/erc20:0x98968f0747e0a261532cacc0be296375f5c08398",
+    "chainId": "eip155:1",
+    "name": "MOONCAT Vault  NFTX ",
+    "precision": 18,
+    "color": "#FAD7D9",
+    "icon": "https://assets.coingecko.com/coins/images/17055/thumb/Mooncats.png?1696516618",
+    "symbol": "MOONCAT",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x98c23e9d8f34fefb1b7bd6a91b7ff122f4e16f5c": {
+    "assetId": "eip155:1/erc20:0x98c23e9d8f34fefb1b7bd6a91b7ff122f4e16f5c",
+    "chainId": "eip155:1",
+    "name": "Aave v3 USDC on Ethereum",
+    "precision": 6,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/32847/thumb/usdc_%281%29.png?1699619355",
+    "symbol": "AUSDC",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x98ce7f261e425ad0ca667e60675938dcffc1571a": {
+    "assetId": "eip155:1/erc20:0x98ce7f261e425ad0ca667e60675938dcffc1571a",
+    "chainId": "eip155:1",
+    "name": "MANE",
+    "precision": 18,
+    "color": "#6A5243",
+    "icon": "https://assets.coingecko.com/coins/images/31938/thumb/logo200.png?1696530745",
+    "symbol": "MANE",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x98e1f56b334438e3f0bde22d92f5bfd746e0631f": {
+    "assetId": "eip155:1/erc20:0x98e1f56b334438e3f0bde22d92f5bfd746e0631f",
+    "chainId": "eip155:1",
+    "name": "Illuminati",
+    "precision": 18,
+    "color": "#700404",
+    "icon": "https://assets.coingecko.com/coins/images/32362/thumb/ILLUMINATI_200x200.png?1698067399",
+    "symbol": "ILUM",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x990e081a7b7d3ccba26a2f49746a68cc4ff73280": {
+    "assetId": "eip155:1/erc20:0x990e081a7b7d3ccba26a2f49746a68cc4ff73280",
+    "chainId": "eip155:1",
+    "name": "KStarCoin",
+    "precision": 18,
+    "color": "#E94242",
+    "icon": "https://assets.coingecko.com/coins/images/1630/thumb/ksc.png?1696502658",
+    "symbol": "KSC",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x990f341946a3fdb507ae7e52d17851b87168017c": {
+    "assetId": "eip155:1/erc20:0x990f341946a3fdb507ae7e52d17851b87168017c",
+    "chainId": "eip155:1",
+    "name": "Strong",
+    "precision": 18,
+    "color": "#146CB4",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x990f341946A3fdB507aE7e52d17851B87168017c/logo.png",
+    "symbol": "STRONG",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x99295f1141d58a99e939f7be6bbe734916a875b8": {
+    "assetId": "eip155:1/erc20:0x99295f1141d58a99e939f7be6bbe734916a875b8",
+    "chainId": "eip155:1",
+    "name": "LinkPool",
+    "precision": 18,
+    "color": "#363DCB",
+    "icon": "https://assets.coingecko.com/coins/images/14548/thumb/linkpool-logo-256x256.png?1696514231",
+    "symbol": "LPL",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x992d339532a9c42f1b0e59a57e95f38da38c66f6": {
+    "assetId": "eip155:1/erc20:0x992d339532a9c42f1b0e59a57e95f38da38c66f6",
+    "chainId": "eip155:1",
+    "name": "Soulsaver",
+    "precision": 18,
+    "color": "#57DFFC",
+    "icon": "https://assets.coingecko.com/coins/images/27494/thumb/SOUL_LOGO.png?1696526534",
+    "symbol": "SOUL",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x993864e43caa7f7f12953ad6feb1d1ca635b875f": {
+    "assetId": "eip155:1/erc20:0x993864e43caa7f7f12953ad6feb1d1ca635b875f",
+    "chainId": "eip155:1",
+    "name": "SingularityDAO on Ethereum",
+    "precision": 18,
+    "color": "#1C6C60",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x993864E43Caa7F7F12953AD6fEb1d1Ca635B875F/logo.png",
+    "symbol": "SDAO",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x994a258c7dec633b5b15376f850d5ea701179e79": {
+    "assetId": "eip155:1/erc20:0x994a258c7dec633b5b15376f850d5ea701179e79",
+    "chainId": "eip155:1",
+    "name": "0xGasless",
+    "precision": 18,
+    "color": "#241B32",
+    "icon": "https://assets.coingecko.com/coins/images/31345/thumb/0XGAS.jpg?1696530163",
+    "symbol": "0XGAS",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x996229d0c6a485c7f4b52e092eaa907cb2def5c6": {
+    "assetId": "eip155:1/erc20:0x996229d0c6a485c7f4b52e092eaa907cb2def5c6",
+    "chainId": "eip155:1",
+    "name": "BuckHath Coin",
+    "precision": 18,
+    "color": "#F8A030",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x996229D0c6a485c7F4B52E092EAa907cB2def5C6/logo.png",
+    "symbol": "BHIG",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x996ca7e71c37d70132889e29d17d2e44427a03dc": {
+    "assetId": "eip155:1/erc20:0x996ca7e71c37d70132889e29d17d2e44427a03dc",
+    "chainId": "eip155:1",
+    "name": "Perpbot",
+    "precision": 18,
+    "color": "#BDBCBC",
+    "icon": "https://assets.coingecko.com/coins/images/31832/thumb/Perpbot.png?1696530644",
+    "symbol": "PB",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x997507cc49fbf0cd6ce5e1ee543218556fafdebc": {
+    "assetId": "eip155:1/erc20:0x997507cc49fbf0cd6ce5e1ee543218556fafdebc",
+    "chainId": "eip155:1",
+    "name": "Bitenium",
+    "precision": 18,
+    "color": "#1499DB",
+    "icon": "https://assets.coingecko.com/coins/images/14618/thumb/BT-token-logo-200.png?1696514296",
+    "symbol": "BT",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x998ffe1e43facffb941dc337dd0468d52ba5b48a": {
+    "assetId": "eip155:1/erc20:0x998ffe1e43facffb941dc337dd0468d52ba5b48a",
+    "chainId": "eip155:1",
+    "name": "Rupiah Token on Ethereum",
+    "precision": 2,
+    "color": "#B93F36",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x998FFE1E43fAcffb941dc337dD0468d52bA5b48A/logo.png",
+    "symbol": "IDRT",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec": {
+    "assetId": "eip155:1/erc20:0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec",
+    "chainId": "eip155:1",
+    "name": "Polymath",
+    "precision": 18,
+    "color": "#435486",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x9992eC3cF6A55b00978cdDF2b27BC6882d88D1eC/logo.png",
+    "symbol": "POLY",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x9994e35db50125e0df82e4c2dde62496ce330999": {
+    "assetId": "eip155:1/erc20:0x9994e35db50125e0df82e4c2dde62496ce330999",
+    "chainId": "eip155:1",
+    "name": "Morpho",
+    "precision": 18,
+    "color": "#C1E0F9",
+    "icon": "https://assets.coingecko.com/coins/images/29837/thumb/2022-official-morpho-token.png?1696528764",
+    "symbol": "MORPHO",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x99a01a4d6a4d621094983050d9a2f10b2912e53d": {
+    "assetId": "eip155:1/erc20:0x99a01a4d6a4d621094983050d9a2f10b2912e53d",
+    "chainId": "eip155:1",
+    "name": "VirtuSwap on Ethereum",
+    "precision": 18,
+    "color": "#FC5C04",
+    "icon": "https://assets.coingecko.com/coins/images/30629/thumb/VirtuSwap_Logo_Red_200x200.png?1696529502",
+    "symbol": "VRSW",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x99b600d0a4abdbc4a6796225a160bcf3d5ce2a89": {
+    "assetId": "eip155:1/erc20:0x99b600d0a4abdbc4a6796225a160bcf3d5ce2a89",
+    "chainId": "eip155:1",
+    "name": "Solareum",
+    "precision": 18,
+    "color": "#E8E9E9",
+    "icon": "https://assets.coingecko.com/coins/images/30072/thumb/green_lrg_transparent.png?1696528993",
+    "symbol": "SRM",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x99c6e435ec259a7e8d65e1955c9423db624ba54c": {
+    "assetId": "eip155:1/erc20:0x99c6e435ec259a7e8d65e1955c9423db624ba54c",
+    "chainId": "eip155:1",
+    "name": "Finminity on Ethereum",
+    "precision": 18,
+    "color": "#EC7C28",
+    "icon": "https://assets.coingecko.com/coins/images/14696/thumb/finminity.png?1696514368",
+    "symbol": "FMT",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x99cf786dad3c68019f9919d153a3f1f949a18171": {
+    "assetId": "eip155:1/erc20:0x99cf786dad3c68019f9919d153a3f1f949a18171",
+    "chainId": "eip155:1",
+    "name": "Uni01cinoSamabOrettoPyrra",
+    "precision": 9,
+    "color": "#191929",
+    "icon": "https://assets.coingecko.com/coins/images/31309/thumb/NIOCTIBLOGO200x200.jpg?1696530128",
+    "symbol": "NIOCTIB",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x99d8a9c45b2eca8864373a26d1459e3dff1e17f3": {
+    "assetId": "eip155:1/erc20:0x99d8a9c45b2eca8864373a26d1459e3dff1e17f3",
+    "chainId": "eip155:1",
+    "name": "Magic Internet Money on Ethereum",
+    "precision": 18,
+    "color": "#FBDB51",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x99D8a9C45b2ecA8864373A26D1459e3Dff1e17F3/logo.png",
+    "symbol": "MIM",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x99e186e8671db8b10d45b7a1c430952a9fbe0d40": {
+    "assetId": "eip155:1/erc20:0x99e186e8671db8b10d45b7a1c430952a9fbe0d40",
+    "chainId": "eip155:1",
+    "name": "ShopBot",
+    "precision": 18,
+    "color": "#8CDC74",
+    "icon": "https://assets.coingecko.com/coins/images/31468/thumb/shop-bot-logo.png?1696530281",
+    "symbol": "SHOP",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d": {
+    "assetId": "eip155:1/erc20:0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d",
+    "chainId": "eip155:1",
+    "name": "Quantstamp",
+    "precision": 18,
+    "color": "#040404",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x99ea4dB9EE77ACD40B119BD1dC4E33e1C070b80d/logo.png",
+    "symbol": "QSP",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x99f618edcfedca1fcc8302e14daa84802114a8c5": {
+    "assetId": "eip155:1/erc20:0x99f618edcfedca1fcc8302e14daa84802114a8c5",
+    "chainId": "eip155:1",
+    "name": "DecentraBNB",
+    "precision": 9,
+    "color": "#E1455F",
+    "icon": "https://assets.coingecko.com/coins/images/26544/thumb/Screenshot_2022-07-22_at_18.16.11.png?1696525617",
+    "symbol": "DBNB",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x99fe3b1391503a1bc1788051347a1324bff41452": {
+    "assetId": "eip155:1/erc20:0x99fe3b1391503a1bc1788051347a1324bff41452",
+    "chainId": "eip155:1",
+    "name": "SX Network on Ethereum",
+    "precision": 18,
+    "color": "#266FBC",
+    "icon": "https://assets.coingecko.com/coins/images/13779/thumb/sx.png?1696513520",
+    "symbol": "SX",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x9a0aba393aac4dfbff4333b06c407458002c6183": {
+    "assetId": "eip155:1/erc20:0x9a0aba393aac4dfbff4333b06c407458002c6183",
+    "chainId": "eip155:1",
+    "name": "ACoconut",
+    "precision": 18,
+    "color": "#EBEEE2",
+    "icon": "https://assets.coingecko.com/coins/images/12779/thumb/ac_logo.png?1696512574",
+    "symbol": "AC",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x9a0df129e798438a8ad995368bd82baa7eee8913": {
+    "assetId": "eip155:1/erc20:0x9a0df129e798438a8ad995368bd82baa7eee8913",
+    "chainId": "eip155:1",
+    "name": "BEEP Coin",
+    "precision": 18,
+    "color": "#31F804",
+    "icon": "https://assets.coingecko.com/coins/images/30566/thumb/green.png?1696529437",
+    "symbol": "BEEP",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x9a2af0abb12bee5369b180976be01e8c80d0e7b6": {
+    "assetId": "eip155:1/erc20:0x9a2af0abb12bee5369b180976be01e8c80d0e7b6",
+    "chainId": "eip155:1",
+    "name": "Empire",
+    "precision": 9,
+    "color": "#29DFDC",
+    "icon": "https://assets.coingecko.com/coins/images/16390/thumb/pb_ranDy_400x400.png?1696515988",
+    "symbol": "EMPIRE",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x9a3bbc0ee2d6300bca88c4ff820e2987d62b4f63": {
+    "assetId": "eip155:1/erc20:0x9a3bbc0ee2d6300bca88c4ff820e2987d62b4f63",
+    "chainId": "eip155:1",
+    "name": "HedgBet",
+    "precision": 18,
+    "color": "#DC3CA4",
+    "icon": "https://assets.coingecko.com/coins/images/31170/thumb/logo-200x200.png?1696529998",
+    "symbol": "HDG",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x9a44fd41566876a39655f74971a3a6ea0a17a454": {
+    "assetId": "eip155:1/erc20:0x9a44fd41566876a39655f74971a3a6ea0a17a454",
+    "chainId": "eip155:1",
+    "name": "Aave v3 LDO",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/32895/thumb/LDO.png?1699790151",
+    "symbol": "ALDO",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x9a6aea7c2b0d563eab701e3255110d30f08b5a64": {
+    "assetId": "eip155:1/erc20:0x9a6aea7c2b0d563eab701e3255110d30f08b5a64",
+    "chainId": "eip155:1",
+    "name": "Metapolitans",
+    "precision": 8,
+    "color": "#EACDD7",
+    "icon": "https://assets.coingecko.com/coins/images/29933/thumb/Logo.png?1696528861",
+    "symbol": "MAPS",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x9a7703338730b82a803ba050df55f9b3959f3fb2": {
+    "assetId": "eip155:1/erc20:0x9a7703338730b82a803ba050df55f9b3959f3fb2",
+    "chainId": "eip155:1",
+    "name": "Arise Chikun",
+    "precision": 9,
+    "color": "#23A8D5",
+    "icon": "https://assets.coingecko.com/coins/images/31043/thumb/WJyGMMxM_400x400.jpg?1696529878",
+    "symbol": "CHIKUN",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x9a96e767bfcce8e80370be00821ed5ba283d4a17": {
+    "assetId": "eip155:1/erc20:0x9a96e767bfcce8e80370be00821ed5ba283d4a17",
+    "chainId": "eip155:1",
+    "name": "GOGO Finance",
+    "precision": 18,
+    "color": "#786CB1",
+    "icon": "https://assets.coingecko.com/coins/images/13857/thumb/gogofinance.png?1696513603",
+    "symbol": "GOGO",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x9a96ec9b57fb64fbc60b423d1f4da7691bd35079": {
+    "assetId": "eip155:1/erc20:0x9a96ec9b57fb64fbc60b423d1f4da7691bd35079",
+    "chainId": "eip155:1",
+    "name": "Ajna Protocol",
+    "precision": 18,
+    "color": "#F8E6F4",
+    "icon": "https://assets.coingecko.com/coins/images/30187/thumb/AJNA-Icon-200.png?1696529105",
+    "symbol": "AJNA",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x9aab071b4129b083b01cb5a0cb513ce7eca26fa5": {
+    "assetId": "eip155:1/erc20:0x9aab071b4129b083b01cb5a0cb513ce7eca26fa5",
+    "chainId": "eip155:1",
+    "name": "Hunt",
+    "precision": 18,
+    "color": "#FC6C6C",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x9AAb071B4129B083B01cB5A0Cb513Ce7ecA26fa5/logo.png",
+    "symbol": "HUNT",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x9aaf731799e824a74a4d3a14e6b00bcc28c327db": {
+    "assetId": "eip155:1/erc20:0x9aaf731799e824a74a4d3a14e6b00bcc28c327db",
+    "chainId": "eip155:1",
+    "name": "Jable",
+    "precision": 18,
+    "color": "#6E75BA",
+    "icon": "https://assets.coingecko.com/coins/images/32131/thumb/Jab.png?1696588461",
+    "symbol": "JAB",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x9ab165d795019b6d8b3e971dda91071421305e5a": {
+    "assetId": "eip155:1/erc20:0x9ab165d795019b6d8b3e971dda91071421305e5a",
+    "chainId": "eip155:1",
+    "name": "Aurora Chain",
+    "precision": 18,
+    "color": "#555A5B",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x9ab165D795019b6d8B3e971DdA91071421305e5a/logo.png",
+    "symbol": "AOA",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x9ab70e92319f0b9127df78868fd3655fb9f1e322": {
+    "assetId": "eip155:1/erc20:0x9ab70e92319f0b9127df78868fd3655fb9f1e322",
+    "chainId": "eip155:1",
+    "name": "WeWay on Ethereum",
+    "precision": 18,
+    "color": "#E633A9",
+    "icon": "https://assets.coingecko.com/coins/images/22418/thumb/wwy.png?1696521760",
+    "symbol": "WWY",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x9ab7bb7fdc60f4357ecfef43986818a2a3569c62": {
+    "assetId": "eip155:1/erc20:0x9ab7bb7fdc60f4357ecfef43986818a2a3569c62",
+    "chainId": "eip155:1",
+    "name": "Guild of Guardians",
+    "precision": 18,
+    "color": "#262A2E",
+    "icon": "https://assets.coingecko.com/coins/images/17362/thumb/V2QDNoLg_400x400.jpg?1696516913",
+    "symbol": "GOG",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x9abfc0f085c82ec1be31d30843965fcc63053ffe": {
+    "assetId": "eip155:1/erc20:0x9abfc0f085c82ec1be31d30843965fcc63053ffe",
+    "chainId": "eip155:1",
+    "name": "QSTAR",
+    "precision": 9,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/33177/thumb/C33809C9-D900-437D-A78A-52A8C48423AA.jpeg?1700924002",
+    "symbol": "Q",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x9ac07635ddbde5db18648c360defb00f5f22537e": {
+    "assetId": "eip155:1/erc20:0x9ac07635ddbde5db18648c360defb00f5f22537e",
+    "chainId": "eip155:1",
+    "name": "Museum of Crypto Art on Ethereum",
+    "precision": 18,
+    "color": "#D9BB2B",
+    "icon": "https://assets.coingecko.com/coins/images/15829/thumb/photo_2021-06-04_09.36.16.jpeg?1696515447",
+    "symbol": "MOCA",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x9acbd8315d81253f1ba7c0d24cdbd4e01be44a9b": {
+    "assetId": "eip155:1/erc20:0x9acbd8315d81253f1ba7c0d24cdbd4e01be44a9b",
+    "chainId": "eip155:1",
+    "name": "Psycho",
+    "precision": 18,
+    "color": "#D40505",
+    "icon": "https://assets.coingecko.com/coins/images/30692/thumb/Psycho_200x200_PNG.png?1696529561",
+    "symbol": "PSYCHO",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x9ad37205d608b8b219e6a2573f922094cec5c200": {
+    "assetId": "eip155:1/erc20:0x9ad37205d608b8b219e6a2573f922094cec5c200",
+    "chainId": "eip155:1",
+    "name": "iZUMi Finance",
+    "precision": 18,
+    "color": "#7C4CFC",
+    "icon": "https://assets.coingecko.com/coins/images/21791/thumb/izumi-logo-symbol.png?1696521144",
+    "symbol": "IZI",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x9ae380f0272e2162340a5bb646c354271c0f5cfc": {
+    "assetId": "eip155:1/erc20:0x9ae380f0272e2162340a5bb646c354271c0f5cfc",
+    "chainId": "eip155:1",
+    "name": "Conic",
+    "precision": 18,
+    "color": "#1C7BDF",
+    "icon": "https://assets.coingecko.com/coins/images/24747/thumb/cnc.png?1696523909",
+    "symbol": "CNC",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x9ae3e392cc18acc008024bc23c0c3130a10d64d9": {
+    "assetId": "eip155:1/erc20:0x9ae3e392cc18acc008024bc23c0c3130a10d64d9",
+    "chainId": "eip155:1",
+    "name": "Emartzon",
+    "precision": 18,
+    "color": "#49B5EE",
+    "icon": "https://assets.coingecko.com/coins/images/32120/thumb/EMZ-Logo-Png.png?1696586641",
+    "symbol": "EMZ",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x9aeb50f542050172359a0e1a25a9933bc8c01259": {
+    "assetId": "eip155:1/erc20:0x9aeb50f542050172359a0e1a25a9933bc8c01259",
+    "chainId": "eip155:1",
+    "name": "OIN Finance on Ethereum",
+    "precision": 8,
+    "color": "#041C9C",
+    "icon": "https://assets.coingecko.com/coins/images/12339/thumb/OIN_FInance_-_cLogo-01.png?1696512166",
+    "symbol": "OIN",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x9afb950948c2370975fb91a441f36fdc02737cd4": {
+    "assetId": "eip155:1/erc20:0x9afb950948c2370975fb91a441f36fdc02737cd4",
+    "chainId": "eip155:1",
+    "name": "Huobi FIL",
+    "precision": 18,
+    "color": "#3C78F9",
+    "icon": "https://assets.coingecko.com/coins/images/14109/thumb/HFIL.png?1696513830",
+    "symbol": "HFIL",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x9b00e6e8d787b13756eb919786c9745054db64f9": {
+    "assetId": "eip155:1/erc20:0x9b00e6e8d787b13756eb919786c9745054db64f9",
+    "chainId": "eip155:1",
+    "name": "Sienna  ERC 20 ",
+    "precision": 18,
+    "color": "#DFDDE0",
+    "icon": "https://assets.coingecko.com/coins/images/15420/thumb/sienna.jpeg?1696515066",
+    "symbol": "WSIENNA",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x9b01637302b6adfc2c82678e2a8d680cff6337b7": {
+    "assetId": "eip155:1/erc20:0x9b01637302b6adfc2c82678e2a8d680cff6337b7",
+    "chainId": "eip155:1",
+    "name": "Fit",
+    "precision": 18,
+    "color": "#8C54C5",
+    "icon": "https://assets.coingecko.com/coins/images/30918/thumb/FIT_Token_1000.png?1696529763",
+    "symbol": "FIT",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x9b06f3c5de42d4623d7a2bd940ec735103c68a76": {
+    "assetId": "eip155:1/erc20:0x9b06f3c5de42d4623d7a2bd940ec735103c68a76",
+    "chainId": "eip155:1",
+    "name": "Volta Club on Ethereum",
+    "precision": 18,
+    "color": "#350604",
+    "icon": "https://assets.coingecko.com/coins/images/31602/thumb/volta-200x200.png?1696530418",
+    "symbol": "VOLTA",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x9b0e1c344141fb361b842d397df07174e1cdb988": {
+    "assetId": "eip155:1/erc20:0x9b0e1c344141fb361b842d397df07174e1cdb988",
+    "chainId": "eip155:1",
+    "name": "EmotiCoin",
+    "precision": 9,
+    "color": "#4C6C28",
+    "icon": "https://assets.coingecko.com/coins/images/31630/thumb/200x200_logo_1.png?1696530446",
+    "symbol": "EMOTI",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x9b110fda4e20db18ad7052f8468a455de7449eb6": {
+    "assetId": "eip155:1/erc20:0x9b110fda4e20db18ad7052f8468a455de7449eb6",
+    "chainId": "eip155:1",
+    "name": "Calvaria  DoE on Ethereum",
+    "precision": 18,
+    "color": "#040404",
+    "icon": "https://assets.coingecko.com/coins/images/28817/thumb/icon200x200.png?1696527793",
+    "symbol": "RIA",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x9b17baadf0f21f03e35249e0e59723f34994f806": {
+    "assetId": "eip155:1/erc20:0x9b17baadf0f21f03e35249e0e59723f34994f806",
+    "chainId": "eip155:1",
+    "name": "NFTmall on Ethereum",
+    "precision": 18,
+    "color": "#D4A454",
+    "icon": "https://assets.coingecko.com/coins/images/16217/thumb/Icon-1000x1000.png?1696515817",
+    "symbol": "GEM",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x9b25889c493ae6df34ceef1ecb10d77c1ba73318": {
+    "assetId": "eip155:1/erc20:0x9b25889c493ae6df34ceef1ecb10d77c1ba73318",
+    "chainId": "eip155:1",
+    "name": "Mean DAO on Ethereum",
+    "precision": 6,
+    "color": "#040404",
+    "icon": "https://assets.coingecko.com/coins/images/21557/thumb/89934951.png?1696520918",
+    "symbol": "MEAN",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x9b2b931d6ab97b6a887b2c5d8529537e6fe73ebe": {
+    "assetId": "eip155:1/erc20:0x9b2b931d6ab97b6a887b2c5d8529537e6fe73ebe",
+    "chainId": "eip155:1",
+    "name": "All In",
+    "precision": 9,
+    "color": "#16687D",
+    "icon": "https://assets.coingecko.com/coins/images/28411/thumb/AllIn_V2_%281%29.png?1696527409",
+    "symbol": "ALLIN",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x9b31bb425d8263fa1b8b9d090b83cf0c31665355": {
+    "assetId": "eip155:1/erc20:0x9b31bb425d8263fa1b8b9d090b83cf0c31665355",
+    "chainId": "eip155:1",
+    "name": "CoinsPaid on Ethereum",
+    "precision": 18,
+    "color": "#CFCEDD",
+    "icon": "https://assets.coingecko.com/coins/images/18092/thumb/coinspaid.PNG?1696517597",
+    "symbol": "CPD",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x9b355fee784768a7b9ac388c19e818e1c0a19b76": {
+    "assetId": "eip155:1/erc20:0x9b355fee784768a7b9ac388c19e818e1c0a19b76",
+    "chainId": "eip155:1",
+    "name": "Multi Wallet Suite",
+    "precision": 18,
+    "color": "#5B8906",
+    "icon": "https://assets.coingecko.com/coins/images/31074/thumb/Mws.png?1696529907",
+    "symbol": "MWS",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x9b39a0b97319a9bd5fed217c1db7b030453bac91": {
+    "assetId": "eip155:1/erc20:0x9b39a0b97319a9bd5fed217c1db7b030453bac91",
+    "chainId": "eip155:1",
+    "name": "TigerCash on Ethereum",
+    "precision": 18,
+    "color": "#7B6996",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x9B39A0B97319a9bd5fed217c1dB7b030453bac91/logo.png",
+    "symbol": "TCH",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x9b44793a0177c84dd01ad81137db696531902871": {
+    "assetId": "eip155:1/erc20:0x9b44793a0177c84dd01ad81137db696531902871",
+    "chainId": "eip155:1",
+    "name": "PVP",
+    "precision": 18,
+    "color": "#311F16",
+    "icon": "https://assets.coingecko.com/coins/images/31462/thumb/PVPLOGO.JPEG?1696530275",
+    "symbol": "PVP",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x9b4a69de6ca0defdd02c0c4ce6cb84de5202944e": {
+    "assetId": "eip155:1/erc20:0x9b4a69de6ca0defdd02c0c4ce6cb84de5202944e",
+    "chainId": "eip155:1",
+    "name": "PROOF Platform",
+    "precision": 9,
+    "color": "#B6B6B6",
+    "icon": "https://assets.coingecko.com/coins/images/32478/thumb/PROOF_icon_-_200.png?1698286769",
+    "symbol": "PROOF",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x9b4e2b4b13d125238aa0480dd42b4f6fc71b37cc": {
+    "assetId": "eip155:1/erc20:0x9b4e2b4b13d125238aa0480dd42b4f6fc71b37cc",
+    "chainId": "eip155:1",
+    "name": "MyToken",
+    "precision": 18,
+    "color": "#E8F2FB",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x9b4e2B4B13d125238Aa0480dD42B4f6fC71b37CC/logo.png",
+    "symbol": "MT",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x9b5161a41b58498eb9c5febf89d60714089d2253": {
+    "assetId": "eip155:1/erc20:0x9b5161a41b58498eb9c5febf89d60714089d2253",
+    "chainId": "eip155:1",
+    "name": "Meta Finance",
+    "precision": 18,
+    "color": "#D8D6D8",
+    "icon": "https://assets.coingecko.com/coins/images/21954/thumb/eC1-dKKt_400x400.jpg?1696521303",
+    "symbol": "MF1",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x9b5c38cc2d1ba05ed87c8f8a2418475bacb20073": {
+    "assetId": "eip155:1/erc20:0x9b5c38cc2d1ba05ed87c8f8a2418475bacb20073",
+    "chainId": "eip155:1",
+    "name": "Vector Space Biosciences  Inc ",
+    "precision": 18,
+    "color": "#9CA4AC",
+    "icon": "https://assets.coingecko.com/coins/images/31837/thumb/Hex.png?1696530651",
+    "symbol": "SBIO",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x9b62ec1453cea5dde760aaf662048ca6eeb66e7f": {
+    "assetId": "eip155:1/erc20:0x9b62ec1453cea5dde760aaf662048ca6eeb66e7f",
+    "chainId": "eip155:1",
+    "name": "Consensus Cell Network",
+    "precision": 2,
+    "color": "#1F2B46",
+    "icon": "https://assets.coingecko.com/coins/images/12624/thumb/ecell_logo_128.png?1696512432",
+    "symbol": "ECELL",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x9b81686140e85d28c2236c307dd49b422a663edf": {
+    "assetId": "eip155:1/erc20:0x9b81686140e85d28c2236c307dd49b422a663edf",
+    "chainId": "eip155:1",
+    "name": "Combustion",
+    "precision": 18,
+    "color": "#1E1119",
+    "icon": "https://assets.coingecko.com/coins/images/31044/thumb/T-wqdlHF_400x400.jpg?1696529879",
+    "symbol": "FIRE",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x9b83f827928abdf18cf1f7e67053572b9bceff3a": {
+    "assetId": "eip155:1/erc20:0x9b83f827928abdf18cf1f7e67053572b9bceff3a",
+    "chainId": "eip155:1",
+    "name": "Artem",
+    "precision": 18,
+    "color": "#80C4E0",
+    "icon": "https://assets.coingecko.com/coins/images/21998/thumb/ARTM_Logo_MAIN_%281%29.png?1696521345",
+    "symbol": "ARTEM",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x9b9647431632af44be02ddd22477ed94d14aacaa": {
+    "assetId": "eip155:1/erc20:0x9b9647431632af44be02ddd22477ed94d14aacaa",
+    "chainId": "eip155:1",
+    "name": "KOK",
+    "precision": 18,
+    "color": "#143454",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x9B9647431632AF44be02ddd22477Ed94d14AacAa/logo.png",
+    "symbol": "KOK",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x9b99cca871be05119b2012fd4474731dd653febe": {
+    "assetId": "eip155:1/erc20:0x9b99cca871be05119b2012fd4474731dd653febe",
+    "chainId": "eip155:1",
+    "name": "AntiMatter on Ethereum",
+    "precision": 18,
+    "color": "#EBEBEB",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x9B99CcA871Be05119B2012fd4474731dd653FEBe/logo.png",
+    "symbol": "MATTER",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x9ba00d6856a4edf4665bca2c2309936572473b7e": {
+    "assetId": "eip155:1/erc20:0x9ba00d6856a4edf4665bca2c2309936572473b7e",
+    "chainId": "eip155:1",
+    "name": "Aave USDC v1",
+    "precision": 6,
+    "color": "#2474CC",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x9bA00D6856a4eDF4665BcA2C2309936572473B7E/logo.png",
+    "symbol": "AUSDC",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x9baa12a9e3b9dc355f162082762f95626367d087": {
+    "assetId": "eip155:1/erc20:0x9baa12a9e3b9dc355f162082762f95626367d087",
+    "chainId": "eip155:1",
+    "name": "Handz of Gods",
+    "precision": 18,
+    "color": "#090909",
+    "icon": "https://assets.coingecko.com/coins/images/31531/thumb/40B0eCTs_400x400.jpg?1696530340",
+    "symbol": "HANDZ",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x9be236ee350d18aaaf18619c5776d4096e94a0c7": {
+    "assetId": "eip155:1/erc20:0x9be236ee350d18aaaf18619c5776d4096e94a0c7",
+    "chainId": "eip155:1",
+    "name": "RATIO",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/32975/thumb/IMG_20231112_075548_885.jpg?1700069403",
+    "symbol": "RATIO",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x9be776559fed779cabd67042a7b8987aae592541": {
+    "assetId": "eip155:1/erc20:0x9be776559fed779cabd67042a7b8987aae592541",
+    "chainId": "eip155:1",
+    "name": "Bull Market",
+    "precision": 18,
+    "color": "#DC2494",
+    "icon": "https://assets.coingecko.com/coins/images/29977/thumb/bull.jpg?1696528902",
+    "symbol": "BULL",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x9be89d2a4cd102d8fecc6bf9da793be995c22541": {
+    "assetId": "eip155:1/erc20:0x9be89d2a4cd102d8fecc6bf9da793be995c22541",
+    "chainId": "eip155:1",
+    "name": "Binance Wrapped BTC",
+    "precision": 8,
+    "color": "#FA9E32",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x9BE89D2a4cd102D8Fecc6BF9dA793be995C22541/logo.png",
+    "symbol": "BBTC",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x9bf1d7d63dd7a4ce167cf4866388226eeefa702e": {
+    "assetId": "eip155:1/erc20:0x9bf1d7d63dd7a4ce167cf4866388226eeefa702e",
+    "chainId": "eip155:1",
+    "name": "Ben",
+    "precision": 18,
+    "color": "#040404",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x9bf1D7D63dD7a4ce167CF4866388226EEefa702E/logo.png",
+    "symbol": "BEN",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x9bf601da3aba6d4401ca2b9af85a8bd63b98e8ab": {
+    "assetId": "eip155:1/erc20:0x9bf601da3aba6d4401ca2b9af85a8bd63b98e8ab",
+    "chainId": "eip155:1",
+    "name": "Custom Wallet Bot",
+    "precision": 9,
+    "color": "#BD9DB6",
+    "icon": "https://assets.coingecko.com/coins/images/31109/thumb/lgoo_3.png?1696529939",
+    "symbol": "WALLET",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x9c0241e7538b35454735ae453423daf470a25b3a": {
+    "assetId": "eip155:1/erc20:0x9c0241e7538b35454735ae453423daf470a25b3a",
+    "chainId": "eip155:1",
+    "name": "UnityBot",
+    "precision": 9,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/32864/thumb/UnityBot.png?1699670276",
+    "symbol": "UNITYBOT",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x9c0bd34bebc33a0e898554cfc91e8a84c728bf9f": {
+    "assetId": "eip155:1/erc20:0x9c0bd34bebc33a0e898554cfc91e8a84c728bf9f",
+    "chainId": "eip155:1",
+    "name": "Pisscoin",
+    "precision": 18,
+    "color": "#F4EC04",
+    "icon": "https://assets.coingecko.com/coins/images/30459/thumb/A7661040-68D2-4753-B20E-B7416A7F90C2.png?1696529346",
+    "symbol": "PISS",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x9c2dc0c3cc2badde84b0025cf4df1c5af288d835": {
+    "assetId": "eip155:1/erc20:0x9c2dc0c3cc2badde84b0025cf4df1c5af288d835",
+    "chainId": "eip155:1",
+    "name": "COR Token on Ethereum",
+    "precision": 18,
+    "color": "#045DCB",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x9C2dc0c3CC2BADdE84B0025Cf4df1c5aF288D835/logo.png",
+    "symbol": "COR",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x9c32185b81766a051e08de671207b34466dd1021": {
+    "assetId": "eip155:1/erc20:0x9c32185b81766a051e08de671207b34466dd1021",
+    "chainId": "eip155:1",
+    "name": "BTC Proxy on Ethereum",
+    "precision": 8,
+    "color": "#EFE0DE",
+    "icon": "https://assets.coingecko.com/coins/images/22630/thumb/MB1aYO7T_400x400.jpg?1696521945",
+    "symbol": "BTCPX",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x9c354503c38481a7a7a51629142963f98ecc12d0": {
+    "assetId": "eip155:1/erc20:0x9c354503c38481a7a7a51629142963f98ecc12d0",
+    "chainId": "eip155:1",
+    "name": "Origin DeFi Governance",
+    "precision": 18,
+    "color": "#CACDD2",
+    "icon": "https://assets.coingecko.com/coins/images/26353/thumb/ogv-200x200.png?1696525431",
+    "symbol": "OGV",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x9c4a4204b79dd291d6b6571c5be8bbcd0622f050": {
+    "assetId": "eip155:1/erc20:0x9c4a4204b79dd291d6b6571c5be8bbcd0622f050",
+    "chainId": "eip155:1",
+    "name": "Tracer DAO on Ethereum",
+    "precision": 18,
+    "color": "#C4C4EC",
+    "icon": "https://assets.coingecko.com/coins/images/18271/thumb/tracer_logo.png?1696517765",
+    "symbol": "TCR",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x9c6666d5ff4b53b5eb3bd866664c15d0bfcecaa7": {
+    "assetId": "eip155:1/erc20:0x9c6666d5ff4b53b5eb3bd866664c15d0bfcecaa7",
+    "chainId": "eip155:1",
+    "name": "Edoverse Zeni",
+    "precision": 18,
+    "color": "#8893C3",
+    "icon": "https://assets.coingecko.com/coins/images/29238/thumb/Edoverse_Logo.png?1696528195",
+    "symbol": "ZENI",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x9c78ee466d6cb57a4d01fd887d2b5dfb2d46288f": {
+    "assetId": "eip155:1/erc20:0x9c78ee466d6cb57a4d01fd887d2b5dfb2d46288f",
+    "chainId": "eip155:1",
+    "name": "Must on Ethereum",
+    "precision": 18,
+    "color": "#2D5B53",
+    "icon": "https://assets.coingecko.com/coins/images/13688/thumb/must_logo.png?1696513436",
+    "symbol": "MUST",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x9cacd44cfdf22731bc99facf3531c809d56bd4a2": {
+    "color": "#FFFFFF",
+    "icon": "https://raw.githubusercontent.com/Idle-Labs/idle-dashboard/master/public/images/tokens/USDC.svg",
+    "name": "Clearpool USDC Senior Tranche",
+    "precision": 18,
+    "symbol": "AA_idle_cpPOR-USDC",
+    "chainId": "eip155:1",
+    "assetId": "eip155:1/erc20:0x9cacd44cfdf22731bc99facf3531c809d56bd4a2",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x9cb1aeafcc8a9406632c5b084246ea72f62d37b6": {
+    "assetId": "eip155:1/erc20:0x9cb1aeafcc8a9406632c5b084246ea72f62d37b6",
+    "chainId": "eip155:1",
+    "name": "LBK",
+    "precision": 8,
+    "color": "#FCF5BA",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x9cB1AEaFcc8A9406632C5B084246Ea72f62d37b6/logo.png",
+    "symbol": "LBK",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x9cb2f26a23b8d89973f08c957c4d7cdf75cd341c": {
+    "assetId": "eip155:1/erc20:0x9cb2f26a23b8d89973f08c957c4d7cdf75cd341c",
+    "chainId": "eip155:1",
+    "name": "Digital Rand",
+    "precision": 6,
+    "color": "#05A3EB",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x9Cb2f26A23b8d89973F08c957C4d7cdf75CD341c/logo.png",
+    "symbol": "DZAR",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x9cbf044bc535db4c93a9f11205a69631d9dcef26": {
+    "assetId": "eip155:1/erc20:0x9cbf044bc535db4c93a9f11205a69631d9dcef26",
+    "chainId": "eip155:1",
+    "name": "Billy Token",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/30231/thumb/output-onlinepngtools.png?1696529141",
+    "symbol": "BILLY",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x9cc83d580180f0d37d00e5d86ce868f73b6e3d0a": {
+    "assetId": "eip155:1/erc20:0x9cc83d580180f0d37d00e5d86ce868f73b6e3d0a",
+    "chainId": "eip155:1",
+    "name": "Bitcointry Token on Ethereum",
+    "precision": 18,
+    "color": "#EC8816",
+    "icon": "https://assets.coingecko.com/coins/images/28641/thumb/bitcointry_token_logo_100x100.png?1696527624",
+    "symbol": "BTTY",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x9cdafb9fae77e7c1bd7cf28c389008ca8dacf48c": {
+    "assetId": "eip155:1/erc20:0x9cdafb9fae77e7c1bd7cf28c389008ca8dacf48c",
+    "chainId": "eip155:1",
+    "name": "Liquidity money",
+    "precision": 18,
+    "color": "#747474",
+    "icon": "https://assets.coingecko.com/coins/images/31509/thumb/logo2_pixel.png?1696530319",
+    "symbol": "LIM",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x9ce07410673206c693bcec9b07710767637a564c": {
+    "assetId": "eip155:1/erc20:0x9ce07410673206c693bcec9b07710767637a564c",
+    "chainId": "eip155:1",
+    "name": "Monkeys Token",
+    "precision": 9,
+    "color": "#BBBBBB",
+    "icon": "https://assets.coingecko.com/coins/images/29782/thumb/200x200_Monkeys_Logo.png?1696528712",
+    "symbol": "MONKEYS",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x9ce115f0341ae5dabc8b477b74e83db2018a6f42": {
+    "assetId": "eip155:1/erc20:0x9ce115f0341ae5dabc8b477b74e83db2018a6f42",
+    "chainId": "eip155:1",
+    "name": "HairDAO",
+    "precision": 18,
+    "color": "#E2E4E4",
+    "icon": "https://assets.coingecko.com/coins/images/29620/thumb/LinkedIn_Logo.jpg?1696528556",
+    "symbol": "HAIR",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x9ce84f6a69986a83d92c324df10bc8e64771030f": {
+    "assetId": "eip155:1/erc20:0x9ce84f6a69986a83d92c324df10bc8e64771030f",
+    "chainId": "eip155:1",
+    "name": "CHEX Token on Ethereum",
+    "precision": 18,
+    "color": "#B7D5EF",
+    "icon": "https://assets.coingecko.com/coins/images/10349/thumb/1_0zxuLe6QnvfsZPFzOoUteQ.png?1696510350",
+    "symbol": "CHEX",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x9ceb84f92a0561fa3cc4132ab9c0b76a59787544": {
+    "assetId": "eip155:1/erc20:0x9ceb84f92a0561fa3cc4132ab9c0b76a59787544",
+    "chainId": "eip155:1",
+    "name": "Doki Doki on Ethereum",
+    "precision": 18,
+    "color": "#F991C0",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x9cEB84f92A0561fa3Cc4132aB9c0b76A59787544/logo.png",
+    "symbol": "DOKI",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x9cf0ed013e67db12ca3af8e7506fe401aa14dad6": {
+    "assetId": "eip155:1/erc20:0x9cf0ed013e67db12ca3af8e7506fe401aa14dad6",
+    "chainId": "eip155:1",
+    "name": "Spectre AI",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/33066/thumb/spectre_logo_transp_200x200.png?1700498926",
+    "symbol": "SPECTRE",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x9cf98eb8a8b28c83e8612046cf55701ce3eb0063": {
+    "assetId": "eip155:1/erc20:0x9cf98eb8a8b28c83e8612046cf55701ce3eb0063",
+    "chainId": "eip155:1",
+    "name": "Unreal Finance",
+    "precision": 18,
+    "color": "#BDAAD0",
+    "icon": "https://assets.coingecko.com/coins/images/17943/thumb/11292.png?1696517464",
+    "symbol": "UGT",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x9d0b65a76274645b29e4cc41b8f23081fa09f4a3": {
+    "assetId": "eip155:1/erc20:0x9d0b65a76274645b29e4cc41b8f23081fa09f4a3",
+    "chainId": "eip155:1",
+    "name": "iMe Lab on Ethereum",
+    "precision": 18,
+    "color": "#1469EC",
+    "icon": "https://assets.coingecko.com/coins/images/16243/thumb/lim_200.2.png?1696515843",
+    "symbol": "LIME",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x9d1089802ee608ba84c5c98211afe5f37f96b36c": {
+    "assetId": "eip155:1/erc20:0x9d1089802ee608ba84c5c98211afe5f37f96b36c",
+    "chainId": "eip155:1",
+    "name": "Fluid USDC on Ethereum",
+    "precision": 6,
+    "color": "#4976B8",
+    "icon": "https://assets.coingecko.com/coins/images/28471/thumb/fUSDC-200x200.png?1696527465",
+    "symbol": "FUSDC",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x9d3d07439069c9bbc8d626397cf98cb343ac0a72": {
+    "assetId": "eip155:1/erc20:0x9d3d07439069c9bbc8d626397cf98cb343ac0a72",
+    "chainId": "eip155:1",
+    "name": "Technology Metal Network Global on Ethereum",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/32834/thumb/TMN_Logo_dark_silver_2.PNG?1699586186",
+    "symbol": "TMNG",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x9d409a0a012cfba9b15f6d4b36ac57a46966ab9a": {
+    "assetId": "eip155:1/erc20:0x9d409a0a012cfba9b15f6d4b36ac57a46966ab9a",
+    "chainId": "eip155:1",
+    "name": "Yearn Compounding veCRV yVault",
+    "precision": 18,
+    "color": "#BE0C04",
+    "icon": "https://assets.coingecko.com/coins/images/15152/thumb/yvBOOST.png?1696514808",
+    "symbol": "YVBOOST",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x9d5963ba32e877871dff3e2e697283dc64066271": {
+    "assetId": "eip155:1/erc20:0x9d5963ba32e877871dff3e2e697283dc64066271",
+    "chainId": "eip155:1",
+    "name": "Edcoin",
+    "precision": 18,
+    "color": "#FCBC04",
+    "icon": "https://assets.coingecko.com/coins/images/13872/thumb/EDCOIN-1.png?1696513617",
+    "symbol": "EDC",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x9d65ff81a3c488d585bbfb0bfe3c7707c7917f54": {
+    "assetId": "eip155:1/erc20:0x9d65ff81a3c488d585bbfb0bfe3c7707c7917f54",
+    "chainId": "eip155:1",
+    "name": "SSV Network",
+    "precision": 18,
+    "color": "#1CA4FC",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x9D65fF81a3c488d585bBfb0Bfe3c7707c7917f54/logo.png",
+    "symbol": "SSV",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x9d7107c8e30617cadc11f9692a19c82ae8bba938": {
+    "assetId": "eip155:1/erc20:0x9d7107c8e30617cadc11f9692a19c82ae8bba938",
+    "chainId": "eip155:1",
+    "name": "Lucky Roo on Ethereum",
+    "precision": 18,
+    "color": "#BD91CB",
+    "icon": "https://assets.coingecko.com/coins/images/27943/thumb/lucky200.png?1696526962",
+    "symbol": "ROO",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x9d71ce49ab8a0e6d2a1e7bfb89374c9392fd6804": {
+    "assetId": "eip155:1/erc20:0x9d71ce49ab8a0e6d2a1e7bfb89374c9392fd6804",
+    "chainId": "eip155:1",
+    "name": "NvirWorld",
+    "precision": 18,
+    "color": "#0454F3",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x9d71CE49ab8A0E6D2a1e7BFB89374C9392FD6804/logo.png",
+    "symbol": "NVIR",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x9d7630adf7ab0b0cb00af747db76864df0ec82e4": {
+    "assetId": "eip155:1/erc20:0x9d7630adf7ab0b0cb00af747db76864df0ec82e4",
+    "chainId": "eip155:1",
+    "name": "GATENet",
+    "precision": 18,
+    "color": "#AB06D0",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x9d7630aDF7ab0b0CB00Af747Db76864df0EC82E4/logo.png",
+    "symbol": "GATE",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x9d79d5b61de59d882ce90125b18f74af650acb93": {
+    "assetId": "eip155:1/erc20:0x9d79d5b61de59d882ce90125b18f74af650acb93",
+    "chainId": "eip155:1",
+    "name": "Neutrino System Base",
+    "precision": 6,
+    "color": "#5B39DF",
+    "icon": "https://assets.coingecko.com/coins/images/13268/thumb/2023-02-16_19.47.32.jpg?1696513042",
+    "symbol": "NSBT",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x9d7b68970d2be6dc93124477b4e2e1c9a6b180aa": {
+    "assetId": "eip155:1/erc20:0x9d7b68970d2be6dc93124477b4e2e1c9a6b180aa",
+    "chainId": "eip155:1",
+    "name": "Dede",
+    "precision": 9,
+    "color": "#C7742D",
+    "icon": "https://assets.coingecko.com/coins/images/30976/thumb/dede_png_%281%29.png?1696529815",
+    "symbol": "DEDE",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x9d86b1b2554ec410eccffbf111a6994910111340": {
+    "assetId": "eip155:1/erc20:0x9d86b1b2554ec410eccffbf111a6994910111340",
+    "chainId": "eip155:1",
+    "name": "Open Platform",
+    "precision": 8,
+    "color": "#4C94E4",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x9D86b1B2554ec410ecCFfBf111A6994910111340/logo.png",
+    "symbol": "OPEN",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x9d91be44c06d373a8a226e1f3b146956083803eb": {
+    "assetId": "eip155:1/erc20:0x9d91be44c06d373a8a226e1f3b146956083803eb",
+    "chainId": "eip155:1",
+    "name": "Aave KNC v1",
+    "precision": 18,
+    "color": "#9D63A6",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x9D91BE44C06d373a8a226E1f3b146956083803eB/logo.png",
+    "symbol": "AKNC",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x9d95486e1b0e0ea8a5361e853901f731b7f8e403": {
+    "assetId": "eip155:1/erc20:0x9d95486e1b0e0ea8a5361e853901f731b7f8e403",
+    "chainId": "eip155:1",
+    "name": "Bored Pepe VIP Club",
+    "precision": 18,
+    "color": "#050505",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x9D95486E1B0E0Ea8A5361e853901F731B7f8e403/logo.png",
+    "symbol": "BPVC",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x9d9e399e5385e2b9a58d4f775a1e16441b571afb": {
+    "assetId": "eip155:1/erc20:0x9d9e399e5385e2b9a58d4f775a1e16441b571afb",
+    "chainId": "eip155:1",
+    "name": "Metano",
+    "precision": 18,
+    "color": "#D9D9D9",
+    "icon": "https://assets.coingecko.com/coins/images/28183/thumb/logo200x.jpeg?1696527186",
+    "symbol": "METANO",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x9db0fb0aebe6a925b7838d16e3993a3976a64aab": {
+    "assetId": "eip155:1/erc20:0x9db0fb0aebe6a925b7838d16e3993a3976a64aab",
+    "chainId": "eip155:1",
+    "name": "Bambi",
+    "precision": 18,
+    "color": "#FCC404",
+    "icon": "https://assets.coingecko.com/coins/images/30597/thumb/Frame_24.png?1696529467",
+    "symbol": "BAM",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x9dc7094530cb1bcf5442c3b9389ee386738a190c": {
+    "assetId": "eip155:1/erc20:0x9dc7094530cb1bcf5442c3b9389ee386738a190c",
+    "chainId": "eip155:1",
+    "name": "Morpho Aave Curve DAO Token",
+    "precision": 18,
+    "color": "#ECEFF2",
+    "icon": "https://assets.coingecko.com/coins/images/29874/thumb/maCRV.jpg?1696528799",
+    "symbol": "MACRV",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x9dcd367e2afa8d6e5d6cf0306094e3eb7bbaaf4d": {
+    "assetId": "eip155:1/erc20:0x9dcd367e2afa8d6e5d6cf0306094e3eb7bbaaf4d",
+    "chainId": "eip155:1",
+    "name": "Crypto Bros",
+    "precision": 18,
+    "color": "#CF9285",
+    "icon": "https://assets.coingecko.com/coins/images/30338/thumb/Crypto_Bros_%284%29.png?1696529239",
+    "symbol": "BROS",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x9dfad1b7102d46b1b197b90095b5c4e9f5845bba": {
+    "assetId": "eip155:1/erc20:0x9dfad1b7102d46b1b197b90095b5c4e9f5845bba",
+    "chainId": "eip155:1",
+    "name": "Botto",
+    "precision": 18,
+    "color": "#EAEAEA",
+    "icon": "https://assets.coingecko.com/coins/images/18892/thumb/bottos_logo.jpg?1696518350",
+    "symbol": "BOTTO",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x9e04f519b094f5f8210441e285f603f4d2b50084": {
+    "assetId": "eip155:1/erc20:0x9e04f519b094f5f8210441e285f603f4d2b50084",
+    "chainId": "eip155:1",
+    "name": "EarthFund",
+    "precision": 18,
+    "color": "#FAE8E2",
+    "icon": "https://assets.coingecko.com/coins/images/20822/thumb/earthfund.PNG?1696520215",
+    "symbol": "1EARTH",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x9e10f61749c4952c320412a6b26901605ff6da1d": {
+    "assetId": "eip155:1/erc20:0x9e10f61749c4952c320412a6b26901605ff6da1d",
+    "chainId": "eip155:1",
+    "name": "Theos",
+    "precision": 18,
+    "color": "#040404",
+    "icon": "https://assets.coingecko.com/coins/images/18150/thumb/theos_logo.png?1696517652",
+    "symbol": "THEOS",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x9e18d5bab2fa94a6a95f509ecb38f8f68322abd3": {
+    "assetId": "eip155:1/erc20:0x9e18d5bab2fa94a6a95f509ecb38f8f68322abd3",
+    "chainId": "eip155:1",
+    "name": "AMATERASU OMIKAMI",
+    "precision": 9,
+    "color": "#D8D6CC",
+    "icon": "https://assets.coingecko.com/coins/images/31821/thumb/Omikami_BTC_AMZN.png?1696530635",
+    "symbol": "OMIKAMI",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x9e32b13ce7f2e80a01932b42553652e053d6ed8e": {
+    "assetId": "eip155:1/erc20:0x9e32b13ce7f2e80a01932b42553652e053d6ed8e",
+    "chainId": "eip155:1",
+    "name": "Metis",
+    "precision": 18,
+    "color": "#04DCCC",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x9E32b13ce7f2E80A01932B42553652E053D6ed8e/logo.png",
+    "symbol": "METIS",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x9e46a38f5daabe8683e10793b06749eef7d733d1": {
+    "assetId": "eip155:1/erc20:0x9e46a38f5daabe8683e10793b06749eef7d733d1",
+    "chainId": "eip155:1",
+    "name": "PolySwarm on Ethereum",
+    "precision": 18,
+    "color": "#8406F8",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x9E46A38F5DaaBe8683E10793b06749EEF7D733d1/logo.png",
+    "symbol": "NCT",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x9e5bd9d9fad182ff0a93ba8085b664bcab00fa68": {
+    "assetId": "eip155:1/erc20:0x9e5bd9d9fad182ff0a93ba8085b664bcab00fa68",
+    "chainId": "eip155:1",
+    "name": "Dinger on Ethereum",
+    "precision": 9,
+    "color": "#8F583C",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x9e5BD9D9fAd182ff0A93bA8085b664bcab00fA68/logo.png",
+    "symbol": "DINGER",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x9e64ea4e67371de7ea8039c6f992f3029836cf4d": {
+    "assetId": "eip155:1/erc20:0x9e64ea4e67371de7ea8039c6f992f3029836cf4d",
+    "chainId": "eip155:1",
+    "name": "GunBet",
+    "precision": 9,
+    "color": "#D94141",
+    "icon": "https://assets.coingecko.com/coins/images/31275/thumb/photo_2023-08-09_23-15-55_%281%29.png?1696530099",
+    "symbol": "GUNBET",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x9e6b19874e97fe8e8cad77f2c0ab5e7a693e5dbf": {
+    "assetId": "eip155:1/erc20:0x9e6b19874e97fe8e8cad77f2c0ab5e7a693e5dbf",
+    "chainId": "eip155:1",
+    "name": "StrongHands Finance on Ethereum",
+    "precision": 18,
+    "color": "#3DAB47",
+    "icon": "https://assets.coingecko.com/coins/images/20158/thumb/ISHND_512x512px.png?1696519571",
+    "symbol": "ISHND",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x9e78b8274e1d6a76a0dbbf90418894df27cbceb5": {
+    "assetId": "eip155:1/erc20:0x9e78b8274e1d6a76a0dbbf90418894df27cbceb5",
+    "chainId": "eip155:1",
+    "name": "Covenants",
+    "precision": 18,
+    "color": "#7C1CE4",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x9E78b8274e1D6a76a0dBbf90418894DF27cBCEb5/logo.png",
+    "symbol": "UNIFI",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x9e976f211daea0d652912ab99b0dc21a7fd728e4": {
+    "assetId": "eip155:1/erc20:0x9e976f211daea0d652912ab99b0dc21a7fd728e4",
+    "chainId": "eip155:1",
+    "name": "MAP Protocol",
+    "precision": 18,
+    "color": "#0A0A0A",
+    "icon": "https://assets.coingecko.com/coins/images/10085/thumb/53819931.png?1696510114",
+    "symbol": "MAP",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x9ea3b5b4ec044b70375236a281986106457b20ef": {
+    "assetId": "eip155:1/erc20:0x9ea3b5b4ec044b70375236a281986106457b20ef",
+    "chainId": "eip155:1",
+    "name": "Delta Financial",
+    "precision": 18,
+    "color": "#040404",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x9EA3b5b4EC044b70375236A281986106457b20EF/logo.png",
+    "symbol": "DELTA",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x9eac760d89805558d1a657b59bed313766e09e61": {
+    "assetId": "eip155:1/erc20:0x9eac760d89805558d1a657b59bed313766e09e61",
+    "chainId": "eip155:1",
+    "name": "Membot",
+    "precision": 18,
+    "color": "#A8BAC6",
+    "icon": "https://assets.coingecko.com/coins/images/31318/thumb/Untitled_design_-_2023-08-14T155139.508.png?1696530137",
+    "symbol": "MEMBOT",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x9ed1439d328647bdb148c20316ea024c719a735b": {
+    "assetId": "eip155:1/erc20:0x9ed1439d328647bdb148c20316ea024c719a735b",
+    "chainId": "eip155:1",
+    "name": "Hope money LightDAO",
+    "precision": 18,
+    "color": "#7D68DA",
+    "icon": "https://assets.coingecko.com/coins/images/30967/thumb/light.png?1696529807",
+    "symbol": "LT",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x9ed7e4b1bff939ad473da5e7a218c771d1569456": {
+    "assetId": "eip155:1/erc20:0x9ed7e4b1bff939ad473da5e7a218c771d1569456",
+    "chainId": "eip155:1",
+    "name": "Reunit Wallet on Ethereum",
+    "precision": 6,
+    "color": "#0E0A0E",
+    "icon": "https://assets.coingecko.com/coins/images/29492/thumb/reunit_200.png?1696528436",
+    "symbol": "REUNI",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x9ed8e7c9604790f7ec589f99b94361d8aab64e5e": {
+    "assetId": "eip155:1/erc20:0x9ed8e7c9604790f7ec589f99b94361d8aab64e5e",
+    "chainId": "eip155:1",
+    "name": "Unistake",
+    "precision": 18,
+    "color": "#22B8D4",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x9Ed8e7C9604790F7Ec589F99b94361d8AAB64E5E/logo.png",
+    "symbol": "UNISTAKE",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x9ee91f9f426fa633d227f7a9b000e28b9dfd8599": {
+    "assetId": "eip155:1/erc20:0x9ee91f9f426fa633d227f7a9b000e28b9dfd8599",
+    "chainId": "eip155:1",
+    "name": "Lido Staked Matic on Ethereum",
+    "precision": 18,
+    "color": "#BCEEFC",
+    "icon": "https://assets.coingecko.com/coins/images/24185/thumb/stMATIC.png?1696523373",
+    "symbol": "STMATIC",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x9eec1a4814323a7396c938bc86aec46b97f1bd82": {
+    "assetId": "eip155:1/erc20:0x9eec1a4814323a7396c938bc86aec46b97f1bd82",
+    "chainId": "eip155:1",
+    "name": "Toku",
+    "precision": 18,
+    "color": "#F9F2E5",
+    "icon": "https://assets.coingecko.com/coins/images/29590/thumb/Toku.jpeg?1696528529",
+    "symbol": "TOKU",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x9f1c9741cb9bcb2adc062f23e2ed90c3eb47cb80": {
+    "assetId": "eip155:1/erc20:0x9f1c9741cb9bcb2adc062f23e2ed90c3eb47cb80",
+    "chainId": "eip155:1",
+    "name": "V BUCKS",
+    "precision": 18,
+    "color": "#C5E4EC",
+    "icon": "https://assets.coingecko.com/coins/images/31614/thumb/vbucks.png?1696530430",
+    "symbol": "VBUCK",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x9f284e1337a815fe77d2ff4ae46544645b20c5ff": {
+    "assetId": "eip155:1/erc20:0x9f284e1337a815fe77d2ff4ae46544645b20c5ff",
+    "chainId": "eip155:1",
+    "name": "Darwinia Commitment",
+    "precision": 18,
+    "color": "#388956",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x9F284E1337A815fe77D2Ff4aE46544645B20c5ff/logo.png",
+    "symbol": "KTON",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x9f2b8d32dd418d5b41e740265929e5d3d5fb102b": {
+    "assetId": "eip155:1/erc20:0x9f2b8d32dd418d5b41e740265929e5d3d5fb102b",
+    "chainId": "eip155:1",
+    "name": "Anonbot",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/32625/thumb/IMG_6424_%283%29.png?1698822640",
+    "symbol": "ANONBOT",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x9f4909cc95fb870bf48c128c1fdbb5f482797632": {
+    "assetId": "eip155:1/erc20:0x9f4909cc95fb870bf48c128c1fdbb5f482797632",
+    "chainId": "eip155:1",
+    "name": "Guzzler",
+    "precision": 18,
+    "color": "#0A0805",
+    "icon": "https://assets.coingecko.com/coins/images/20970/thumb/Screenshot-2021-11-27-at-22-57-22.png?1696520357",
+    "symbol": "GZLR",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x9f4a8167ca311a87b0d03aafa44e0d2c3d8a3631": {
+    "assetId": "eip155:1/erc20:0x9f4a8167ca311a87b0d03aafa44e0d2c3d8a3631",
+    "chainId": "eip155:1",
+    "name": "BlockBox",
+    "precision": 18,
+    "color": "#5079B0",
+    "icon": "https://assets.coingecko.com/coins/images/32521/thumb/IMG_0229.jpeg?1698407087",
+    "symbol": "BBOX",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x9f52c8ecbee10e00d9faaac5ee9ba0ff6550f511": {
+    "assetId": "eip155:1/erc20:0x9f52c8ecbee10e00d9faaac5ee9ba0ff6550f511",
+    "chainId": "eip155:1",
+    "name": "Sipher",
+    "precision": 18,
+    "color": "#C5746C",
+    "icon": "https://assets.coingecko.com/coins/images/21070/thumb/SipherToken.png?1696520453",
+    "symbol": "SIPHER",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x9f549ebfd4974cd4ed4a1550d40394b44a7382aa": {
+    "assetId": "eip155:1/erc20:0x9f549ebfd4974cd4ed4a1550d40394b44a7382aa",
+    "chainId": "eip155:1",
+    "name": "LinkCoin",
+    "precision": 18,
+    "color": "#406EF4",
+    "icon": "https://assets.coingecko.com/coins/images/6098/thumb/vWhhedXQ.png?1696506498",
+    "symbol": "LKN",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x9f5f3cfd7a32700c93f971637407ff17b91c7342": {
+    "assetId": "eip155:1/erc20:0x9f5f3cfd7a32700c93f971637407ff17b91c7342",
+    "chainId": "eip155:1",
+    "name": "Scry info",
+    "precision": 18,
+    "color": "#A6CE4F",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x9F5F3CFD7a32700C93F971637407ff17b91c7342/logo.png",
+    "symbol": "DDD",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x9f5f463a7666e04cdabd22bd83569a5c72cb4f4d": {
+    "assetId": "eip155:1/erc20:0x9f5f463a7666e04cdabd22bd83569a5c72cb4f4d",
+    "chainId": "eip155:1",
+    "name": "Smol Su",
+    "precision": 9,
+    "color": "#1D151F",
+    "icon": "https://assets.coingecko.com/coins/images/30179/thumb/SmolSu_%281%29.jpg?1696529098",
+    "symbol": "SU",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x9f7fc686cfd64aa5ae15b351d03071e91533094b": {
+    "assetId": "eip155:1/erc20:0x9f7fc686cfd64aa5ae15b351d03071e91533094b",
+    "chainId": "eip155:1",
+    "name": "Trace Network Labs on Ethereum",
+    "precision": 18,
+    "color": "#882ED4",
+    "icon": "https://assets.coingecko.com/coins/images/23266/thumb/Token_Icon_02.png?1696522486",
+    "symbol": "TRACE",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x9f826324bb9bdcf7e7eb274bedc417bd45d74f39": {
+    "assetId": "eip155:1/erc20:0x9f826324bb9bdcf7e7eb274bedc417bd45d74f39",
+    "chainId": "eip155:1",
+    "name": "MilkAI on Ethereum",
+    "precision": 8,
+    "color": "#3B3D33",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x9f826324bb9BdcF7E7Eb274BEDc417BD45D74F39/logo.png",
+    "symbol": "MILKAI",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x9f83ed4fdf636e8b0562ac704267346712b44c36": {
+    "assetId": "eip155:1/erc20:0x9f83ed4fdf636e8b0562ac704267346712b44c36",
+    "chainId": "eip155:1",
+    "name": "Flooring Protocol  Mfers",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/32783/thumb/mfer_%281%29.png?1699351834",
+    "symbol": "MFER",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x9f891b5ecbd89dd8a5ee4d1d80efc3fe78b306cb": {
+    "assetId": "eip155:1/erc20:0x9f891b5ecbd89dd8a5ee4d1d80efc3fe78b306cb",
+    "chainId": "eip155:1",
+    "name": "SONIK",
+    "precision": 18,
+    "color": "#3050D1",
+    "icon": "https://assets.coingecko.com/coins/images/31693/thumb/Sonik_Logo_%281%29.png?1696530511",
+    "symbol": "SONIK",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x9f8f72aa9304c8b593d555f12ef6589cc3a579a2": {
+    "assetId": "eip155:1/erc20:0x9f8f72aa9304c8b593d555f12ef6589cc3a579a2",
+    "chainId": "eip155:1",
+    "name": "Maker on Ethereum",
+    "precision": 18,
+    "color": "#5CBBAB",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x9f8F72aA9304c8B593d555F12eF6589cC3A579A2/logo.png",
+    "symbol": "MKR",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x9f90b457dea25ef802e38d470dda7343691d8fe1": {
+    "assetId": "eip155:1/erc20:0x9f90b457dea25ef802e38d470dda7343691d8fe1",
+    "chainId": "eip155:1",
+    "name": "Crosschain IOTX on Ethereum",
+    "precision": 18,
+    "color": "#CCCDD0",
+    "icon": "https://assets.coingecko.com/coins/images/18331/thumb/iotx.PNG?1696517822",
+    "symbol": "CIOTX",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x9f94b198ce85c19a846c2b1a4d523f40a747a850": {
+    "assetId": "eip155:1/erc20:0x9f94b198ce85c19a846c2b1a4d523f40a747a850",
+    "chainId": "eip155:1",
+    "name": "havoc",
+    "precision": 9,
+    "color": "#151413",
+    "icon": "https://assets.coingecko.com/coins/images/31238/thumb/https___files.gitbook.com_v0_b_gitbook-x-prod.appspot.com_o_organizations_2FUh9uLmLoXru5erqLU4t2_2Flogo_2FQENXQAXAvv7kBdlqdyX2_2F2023-08-01_2013.06.56%281%29.jpg?1696530064",
+    "symbol": "HAVOC",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x9f9913853f749b3fe6d6d4e16a1cc3c1656b6d51": {
+    "assetId": "eip155:1/erc20:0x9f9913853f749b3fe6d6d4e16a1cc3c1656b6d51",
+    "chainId": "eip155:1",
+    "name": "BITT on Ethereum",
+    "precision": 18,
+    "color": "#F48C24",
+    "icon": "https://assets.coingecko.com/coins/images/13783/thumb/BITT_Logo_256pixels.png?1696513523",
+    "symbol": "BITT",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x9f9c8ec3534c3ce16f928381372bfbfbfb9f4d24": {
+    "assetId": "eip155:1/erc20:0x9f9c8ec3534c3ce16f928381372bfbfbfb9f4d24",
+    "chainId": "eip155:1",
+    "name": "GraphLinq Protocol",
+    "precision": 18,
+    "color": "#4C9CFC",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x9F9c8ec3534c3cE16F928381372BfbFBFb9F4D24/logo.png",
+    "symbol": "GLQ",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x9fa69536d1cda4a04cfb50688294de75b505a9ae": {
+    "assetId": "eip155:1/erc20:0x9fa69536d1cda4a04cfb50688294de75b505a9ae",
+    "chainId": "eip155:1",
+    "name": "DeRace on Ethereum",
+    "precision": 18,
+    "color": "#040404",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x9fa69536d1cda4A04cFB50688294de75B505a9aE/logo.png",
+    "symbol": "DERC",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x9fb41be7688a1ae9759185d7cacb10e9a9d22ece": {
+    "assetId": "eip155:1/erc20:0x9fb41be7688a1ae9759185d7cacb10e9a9d22ece",
+    "chainId": "eip155:1",
+    "name": "HOLD",
+    "precision": 18,
+    "color": "#BFBFBF",
+    "icon": "https://assets.coingecko.com/coins/images/30595/thumb/HOLD.png?1696529465",
+    "symbol": "HOLD",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x9fb83c0635de2e815fd1c21b3a292277540c2e8d": {
+    "assetId": "eip155:1/erc20:0x9fb83c0635de2e815fd1c21b3a292277540c2e8d",
+    "chainId": "eip155:1",
+    "name": "RealFevr on Ethereum",
+    "precision": 18,
+    "color": "#580DA7",
+    "icon": "https://assets.coingecko.com/coins/images/17136/thumb/Fevr-Token.png?1696516695",
+    "symbol": "FEVR",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x9fc8f0ca1668e87294941b7f627e9c15ea06b459": {
+    "assetId": "eip155:1/erc20:0x9fc8f0ca1668e87294941b7f627e9c15ea06b459",
+    "chainId": "eip155:1",
+    "name": "True PNL on Ethereum",
+    "precision": 18,
+    "color": "#34BC33",
+    "icon": "https://assets.coingecko.com/coins/images/15282/thumb/256x256logo.png?1696514933",
+    "symbol": "PNL",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x9fd22a17b4a96da3f83797d122172c450381fb88": {
+    "assetId": "eip155:1/erc20:0x9fd22a17b4a96da3f83797d122172c450381fb88",
+    "chainId": "eip155:1",
+    "name": "Jefe on Ethereum",
+    "precision": 9,
+    "color": "#BEBEBE",
+    "icon": "https://assets.coingecko.com/coins/images/25336/thumb/JEFE_200.png?1696524470",
+    "symbol": "JEFE",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x9fda7ceec4c18008096c2fe2b85f05dc300f94d0": {
+    "assetId": "eip155:1/erc20:0x9fda7ceec4c18008096c2fe2b85f05dc300f94d0",
+    "chainId": "eip155:1",
+    "name": "Gaj Finance on Ethereum",
+    "precision": 18,
+    "color": "#E0D2D6",
+    "icon": "https://assets.coingecko.com/coins/images/15257/thumb/logo200x200.png?1696514910",
+    "symbol": "GAJ",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x9ff58067bd8d239000010c154c6983a325df138e": {
+    "assetId": "eip155:1/erc20:0x9ff58067bd8d239000010c154c6983a325df138e",
+    "chainId": "eip155:1",
+    "name": "Propchain",
+    "precision": 18,
+    "color": "#04143C",
+    "icon": "https://assets.coingecko.com/coins/images/30451/thumb/Untitled_%28Instagram_Post_%28Square%29%29-2.png?1696529337",
+    "symbol": "PROPC",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x9ff58f4ffb29fa2266ab25e75e2a8b3503311656": {
+    "assetId": "eip155:1/erc20:0x9ff58f4ffb29fa2266ab25e75e2a8b3503311656",
+    "chainId": "eip155:1",
+    "name": "Aave WBTC",
+    "precision": 8,
+    "color": "#738CAA",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0x9ff58f4fFB29fA2266Ab25e75e2A8b3503311656/logo.png",
+    "symbol": "AWBTC",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0x9ffc3bcde7b68c46a6dc34f0718009925c1867cb": {
+    "assetId": "eip155:1/erc20:0x9ffc3bcde7b68c46a6dc34f0718009925c1867cb",
+    "chainId": "eip155:1",
+    "name": "Huobi Polkadot",
+    "precision": 18,
+    "color": "#3462F1",
+    "icon": "https://assets.coingecko.com/coins/images/14107/thumb/hdot.png?1696513828",
+    "symbol": "HDOT",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xa0117792d4b100fd329b37e8ab4181df8a5b3326": {
+    "assetId": "eip155:1/erc20:0xa0117792d4b100fd329b37e8ab4181df8a5b3326",
+    "chainId": "eip155:1",
+    "name": "BREPE",
+    "precision": 18,
+    "color": "#D593A2",
+    "icon": "https://assets.coingecko.com/coins/images/31561/thumb/cmc_200x200_logo_transparency.png?1696530374",
+    "symbol": "BREPE",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xa01199c61841fce3b3dafb83fefc1899715c8756": {
+    "assetId": "eip155:1/erc20:0xa01199c61841fce3b3dafb83fefc1899715c8756",
+    "chainId": "eip155:1",
+    "name": "Cirus",
+    "precision": 18,
+    "color": "#F7ECE3",
+    "icon": "https://assets.coingecko.com/coins/images/17798/thumb/8p0Bvi90_400x400.jpg?1696517320",
+    "symbol": "CIRUS",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xa02120696c7b8fe16c09c749e4598819b2b0e915": {
+    "assetId": "eip155:1/erc20:0xa02120696c7b8fe16c09c749e4598819b2b0e915",
+    "chainId": "eip155:1",
+    "name": "WXT Token on Ethereum",
+    "precision": 18,
+    "color": "#C9FAC8",
+    "icon": "https://assets.coingecko.com/coins/images/8835/thumb/Wirex.jpg?1696508988",
+    "symbol": "WXT",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xa0246c9032bc3a600820415ae600c6388619a14d": {
+    "assetId": "eip155:1/erc20:0xa0246c9032bc3a600820415ae600c6388619a14d",
+    "chainId": "eip155:1",
+    "name": "Harvest Finance on Ethereum",
+    "precision": 18,
+    "color": "#D8F1F0",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xa0246c9032bC3A600820415aE600c6388619A14D/logo.png",
+    "symbol": "FARM",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xa06bc25b5805d5f8d82847d191cb4af5a3e873e0": {
+    "assetId": "eip155:1/erc20:0xa06bc25b5805d5f8d82847d191cb4af5a3e873e0",
+    "chainId": "eip155:1",
+    "name": "Aave LINK",
+    "precision": 18,
+    "color": "#B479B4",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xa06bC25B5805d5F8d82847D191Cb4Af5A3e873E0/logo.png",
+    "symbol": "ALINK",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xa07dcc1abfe20d29d87a32e2ba89876145dafb0a": {
+    "assetId": "eip155:1/erc20:0xa07dcc1abfe20d29d87a32e2ba89876145dafb0a",
+    "chainId": "eip155:1",
+    "name": "Flooring Protocol  Doodle",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/32776/thumb/mdoodle_%281%29.png?1699348365",
+    "symbol": "DOODLE",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xa0a2e18784633eb47dbafe7c36c4594b3edaaef6": {
+    "assetId": "eip155:1/erc20:0xa0a2e18784633eb47dbafe7c36c4594b3edaaef6",
+    "chainId": "eip155:1",
+    "name": "PaLM AI",
+    "precision": 9,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/33097/thumb/IMG_7197.jpeg?1700636242",
+    "symbol": "PALM",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xa0b73e1ff0b80914ab6fe0444e65848c4c34450b": {
+    "assetId": "eip155:1/erc20:0xa0b73e1ff0b80914ab6fe0444e65848c4c34450b",
+    "chainId": "eip155:1",
+    "name": "Cronos",
+    "precision": 8,
+    "color": "#232C57",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xA0b73E1Ff0B80914AB6fe0444E65848C4C34450b/logo.png",
+    "symbol": "CRO",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48": {
+    "assetId": "eip155:1/erc20:0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48",
+    "chainId": "eip155:1",
+    "name": "USDC on Ethereum",
+    "precision": 6,
+    "color": "#2373CB",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48/logo.png",
+    "symbol": "USDC",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xa0bed124a09ac2bd941b10349d8d224fe3c955eb": {
+    "assetId": "eip155:1/erc20:0xa0bed124a09ac2bd941b10349d8d224fe3c955eb",
+    "chainId": "eip155:1",
+    "name": "DePay on Ethereum",
+    "precision": 18,
+    "color": "#F6F5F4",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xa0bEd124a09ac2Bd941b10349d8d224fe3c955eb/logo.png",
+    "symbol": "DEPAY",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xa0cf46eb152656c7090e769916eb44a138aaa406": {
+    "assetId": "eip155:1/erc20:0xa0cf46eb152656c7090e769916eb44a138aaa406",
+    "chainId": "eip155:1",
+    "name": "Spheroid Universe",
+    "precision": 18,
+    "color": "#3E2D26",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xA0CF46eb152656C7090e769916eb44a138aaa406/logo.png",
+    "symbol": "SPH",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xa0d3707c569ff8c87fa923d3823ec5d81c98be78": {
+    "assetId": "eip155:1/erc20:0xa0d3707c569ff8c87fa923d3823ec5d81c98be78",
+    "chainId": "eip155:1",
+    "name": "Instadapp ETH v2",
+    "precision": 18,
+    "color": "#72A6FB",
+    "icon": "https://assets.coingecko.com/coins/images/29704/thumb/iETH.png?1696528636",
+    "symbol": "IETHV2",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xa0d69e286b938e21cbf7e51d71f6a4c8918f482f": {
+    "assetId": "eip155:1/erc20:0xa0d69e286b938e21cbf7e51d71f6a4c8918f482f",
+    "chainId": "eip155:1",
+    "name": "Electronic USD",
+    "precision": 18,
+    "color": "#2A2A2A",
+    "icon": "https://assets.coingecko.com/coins/images/28445/thumb/0xa0d69e286b938e21cbf7e51d71f6a4c8918f482f.png?1696527441",
+    "symbol": "EUSD",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xa0e7626287bd02cbe3531c65148261bf0c0ed98b": {
+    "assetId": "eip155:1/erc20:0xa0e7626287bd02cbe3531c65148261bf0c0ed98b",
+    "chainId": "eip155:1",
+    "name": "Shill Guard Token",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/33176/thumb/SHILL_GUARD_TOKEN_SGT_LOGO.png?1700923841",
+    "symbol": "SGT",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xa0ed3c520dc0632657ad2eaaf19e26c4fd431a84": {
+    "assetId": "eip155:1/erc20:0xa0ed3c520dc0632657ad2eaaf19e26c4fd431a84",
+    "chainId": "eip155:1",
+    "name": "Hippo Wallet on Ethereum",
+    "precision": 18,
+    "color": "#DFEEF1",
+    "icon": "https://assets.coingecko.com/coins/images/28089/thumb/b77170dd-1dd1-4581-91b2-e352794fa045.jpg?1696527099",
+    "symbol": "HPO",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xa0ef786bf476fe0810408caba05e536ac800ff86": {
+    "assetId": "eip155:1/erc20:0xa0ef786bf476fe0810408caba05e536ac800ff86",
+    "chainId": "eip155:1",
+    "name": "Myria",
+    "precision": 18,
+    "color": "#040404",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xA0Ef786Bf476fE0810408CaBA05E536aC800ff86/logo.png",
+    "symbol": "MYRIA",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xa0f0546eb5e3ee7e8cfc5da12e5949f3ae622675": {
+    "assetId": "eip155:1/erc20:0xa0f0546eb5e3ee7e8cfc5da12e5949f3ae622675",
+    "chainId": "eip155:1",
+    "name": "Tokoin on Ethereum",
+    "precision": 18,
+    "color": "#6F679E",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xa0F0546Eb5E3eE7e8cfC5DA12e5949F3AE622675/logo.png",
+    "symbol": "TOKO",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xa100eafdef0099700933538ee795cfad5505b689": {
+    "assetId": "eip155:1/erc20:0xa100eafdef0099700933538ee795cfad5505b689",
+    "chainId": "eip155:1",
+    "name": "Flooring Protocol  Captainz",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/32775/thumb/Captains.png?1699347464",
+    "symbol": "CAPTAINZ",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xa10bf0aba0c7953f279c4cb8192d3b5de5ea56e8": {
+    "assetId": "eip155:1/erc20:0xa10bf0aba0c7953f279c4cb8192d3b5de5ea56e8",
+    "chainId": "eip155:1",
+    "name": "Tarot on Ethereum",
+    "precision": 18,
+    "color": "#E5E5E5",
+    "icon": "https://assets.coingecko.com/coins/images/31800/thumb/TAROT.jpg?1696530615",
+    "symbol": "TAROT",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xa1116930326d21fb917d5a27f1e9943a9595fb47": {
+    "assetId": "eip155:1/erc20:0xa1116930326d21fb917d5a27f1e9943a9595fb47",
+    "chainId": "eip155:1",
+    "name": "Staked Aave Balancer Pool Token",
+    "precision": 18,
+    "color": "#6D89B3",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xa1116930326D21fB917d5A27F1E9943A9595fb47/logo.png",
+    "symbol": "STKABPT",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xa117000000f279d81a1d3cc75430faa017fa5a2e": {
+    "assetId": "eip155:1/erc20:0xa117000000f279d81a1d3cc75430faa017fa5a2e",
+    "chainId": "eip155:1",
+    "name": "Aragon",
+    "precision": 18,
+    "color": "#A3FBFC",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xa117000000f279D81A1D3cc75430fAA017FA5A2e/logo.png",
+    "symbol": "ANT",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xa11bd36801d8fa4448f0ac4ea7a62e3634ce8c7c": {
+    "assetId": "eip155:1/erc20:0xa11bd36801d8fa4448f0ac4ea7a62e3634ce8c7c",
+    "chainId": "eip155:1",
+    "name": "Allbridge on Ethereum",
+    "precision": 18,
+    "color": "#E4E4E4",
+    "icon": "https://assets.coingecko.com/coins/images/18690/thumb/abr.png?1696518157",
+    "symbol": "ABR",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xa130e3a33a4d84b04c3918c4e5762223ae252f80": {
+    "assetId": "eip155:1/erc20:0xa130e3a33a4d84b04c3918c4e5762223ae252f80",
+    "chainId": "eip155:1",
+    "name": "Swash on Ethereum",
+    "precision": 18,
+    "color": "#D2F9D9",
+    "icon": "https://assets.coingecko.com/coins/images/18774/thumb/Swash_CMC_light.png?1696878896",
+    "symbol": "SWASH",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xa13f0743951b4f6e3e3aa039f682e17279f52bc3": {
+    "assetId": "eip155:1/erc20:0xa13f0743951b4f6e3e3aa039f682e17279f52bc3",
+    "chainId": "eip155:1",
+    "name": "Sentinel Chain",
+    "precision": 18,
+    "color": "#051C5C",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xA13f0743951B4f6E3e3AA039f682E17279f52bc3/logo.png",
+    "symbol": "SENC",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xa14ea0e11121e6e951e87c66afe460a00bcd6a16": {
+    "assetId": "eip155:1/erc20:0xa14ea0e11121e6e951e87c66afe460a00bcd6a16",
+    "chainId": "eip155:1",
+    "name": "IdleDAI  Risk Adjusted ",
+    "precision": 18,
+    "color": "#367ADD",
+    "icon": "https://assets.coingecko.com/coins/images/11929/thumb/idledai-safe.png?1696511790",
+    "symbol": "IDLEDAISAFE",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xa150db9b1fa65b44799d4dd949d922c0a33ee606": {
+    "assetId": "eip155:1/erc20:0xa150db9b1fa65b44799d4dd949d922c0a33ee606",
+    "chainId": "eip155:1",
+    "name": "Digital Reserve Currency on Ethereum",
+    "precision": 0,
+    "color": "#BDBDBD",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xa150Db9b1Fa65b44799d4dD949D922c0a33Ee606/logo.png",
+    "symbol": "DRC",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xa15865d9de09cb96aaa3a9081b3dfc8481f07d33": {
+    "assetId": "eip155:1/erc20:0xa15865d9de09cb96aaa3a9081b3dfc8481f07d33",
+    "chainId": "eip155:1",
+    "name": "PopeCoin",
+    "precision": 18,
+    "color": "#44842D",
+    "icon": "https://assets.coingecko.com/coins/images/30239/thumb/photo_2023-05-01_11.25.54.jpeg?1696529149",
+    "symbol": "POPE",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xa15c7ebe1f07caf6bff097d8a589fb8ac49ae5b3": {
+    "assetId": "eip155:1/erc20:0xa15c7ebe1f07caf6bff097d8a589fb8ac49ae5b3",
+    "chainId": "eip155:1",
+    "name": "Pundi X  OLD ",
+    "precision": 18,
+    "color": "#1C1C1C",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xA15C7Ebe1f07CaF6bFF097D8a589fb8AC49Ae5B3/logo.png",
+    "symbol": "NPXS",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xa16a609ff4e1a15b6ccb469e7a5dd14e89305283": {
+    "assetId": "eip155:1/erc20:0xa16a609ff4e1a15b6ccb469e7a5dd14e89305283",
+    "chainId": "eip155:1",
+    "name": "Spume",
+    "precision": 18,
+    "color": "#0C0533",
+    "icon": "https://assets.coingecko.com/coins/images/27089/thumb/D6lMeW9k_400x400.jpeg?1696526138",
+    "symbol": "SPUME",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xa1817b6d8d890f3943b61648992730373b71f156": {
+    "assetId": "eip155:1/erc20:0xa1817b6d8d890f3943b61648992730373b71f156",
+    "chainId": "eip155:1",
+    "name": "Mongoose",
+    "precision": 9,
+    "color": "#E2A715",
+    "icon": "https://assets.coingecko.com/coins/images/21456/thumb/61b142508fba4235f29d57eb_Frame_24_%281%29.png?1696520818",
+    "symbol": "MONGOOSE",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xa19f5264f7d7be11c451c093d8f92592820bea86": {
+    "assetId": "eip155:1/erc20:0xa19f5264f7d7be11c451c093d8f92592820bea86",
+    "chainId": "eip155:1",
+    "name": "Neo Tokyo",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/28858/thumb/bytes.png?1696527832",
+    "symbol": "BYTES",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xa1a36d3537bbe375cc9694795f663ddc8d516db9": {
+    "assetId": "eip155:1/erc20:0xa1a36d3537bbe375cc9694795f663ddc8d516db9",
+    "chainId": "eip155:1",
+    "name": "Polinate on Ethereum",
+    "precision": 18,
+    "color": "#2E3378",
+    "icon": "https://assets.coingecko.com/coins/images/18096/thumb/Polinate_Games___Guilds_Elements-05.png?1696517601",
+    "symbol": "POLI",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xa1a4e303e9c56962f201c5e834abc1e677a3c4f3": {
+    "assetId": "eip155:1/erc20:0xa1a4e303e9c56962f201c5e834abc1e677a3c4f3",
+    "chainId": "eip155:1",
+    "name": "CVNX",
+    "precision": 18,
+    "color": "#6CDC6C",
+    "icon": "https://assets.coingecko.com/coins/images/862/thumb/CVNX-logo.png?1696501996",
+    "symbol": "CVNX",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xa1afffe3f4d611d252010e3eaf6f4d77088b0cd7": {
+    "assetId": "eip155:1/erc20:0xa1afffe3f4d611d252010e3eaf6f4d77088b0cd7",
+    "chainId": "eip155:1",
+    "name": "reflect finance",
+    "precision": 9,
+    "color": "#141414",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xA1AFFfE3F4D611d252010E3EAf6f4D77088b0cd7/logo.png",
+    "symbol": "RFI",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xa1b0edf4460cc4d8bfaa18ed871bff15e5b57eb4": {
+    "assetId": "eip155:1/erc20:0xa1b0edf4460cc4d8bfaa18ed871bff15e5b57eb4",
+    "chainId": "eip155:1",
+    "name": "Aave AMM UniBATWETH",
+    "precision": 18,
+    "color": "#BB8AB2",
+    "icon": "https://assets.coingecko.com/coins/images/17217/thumb/aAmmUniBATWETH.png?1696516773",
+    "symbol": "AAMMUNIBATWETH",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xa1d0e215a23d7030842fc67ce582a6afa3ccab83": {
+    "assetId": "eip155:1/erc20:0xa1d0e215a23d7030842fc67ce582a6afa3ccab83",
+    "chainId": "eip155:1",
+    "name": "DFI money",
+    "precision": 18,
+    "color": "#ED2C76",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xa1d0E215a23d7030842FC67cE582a6aFa3CCaB83/logo.png",
+    "symbol": "YFII",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xa1d65e8fb6e87b60feccbc582f7f97804b725521": {
+    "assetId": "eip155:1/erc20:0xa1d65e8fb6e87b60feccbc582f7f97804b725521",
+    "chainId": "eip155:1",
+    "name": "DXdao on Ethereum",
+    "precision": 18,
+    "color": "#3958FB",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xa1d65E8fB6e87b60FECCBc582F7f97804B725521/logo.png",
+    "symbol": "DXD",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xa1d6df714f91debf4e0802a542e13067f31b8262": {
+    "assetId": "eip155:1/erc20:0xa1d6df714f91debf4e0802a542e13067f31b8262",
+    "chainId": "eip155:1",
+    "name": "RFOX on Ethereum",
+    "precision": 18,
+    "color": "#D9161C",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xa1d6Df714F91DeBF4e0802A542E13067f31b8262/logo.png",
+    "symbol": "RFOX",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xa1db57defd15be659cfbc612a13195adf5b237c6": {
+    "assetId": "eip155:1/erc20:0xa1db57defd15be659cfbc612a13195adf5b237c6",
+    "chainId": "eip155:1",
+    "name": "ManaCoin",
+    "precision": 18,
+    "color": "#5DE1FC",
+    "icon": "https://assets.coingecko.com/coins/images/31906/thumb/social-update.png?1696530715",
+    "symbol": "MNC",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xa1e770be76bde604f8ebb66f640250a787b9422b": {
+    "assetId": "eip155:1/erc20:0xa1e770be76bde604f8ebb66f640250a787b9422b",
+    "chainId": "eip155:1",
+    "name": "Anduschain",
+    "precision": 18,
+    "color": "#4643AF",
+    "icon": "https://assets.coingecko.com/coins/images/20842/thumb/DEB.png?1696520234",
+    "symbol": "DEB",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xa1f830aa68b53fd3ee3bb86d7f8254e604740c8b": {
+    "assetId": "eip155:1/erc20:0xa1f830aa68b53fd3ee3bb86d7f8254e604740c8b",
+    "chainId": "eip155:1",
+    "name": "ChainSwap",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/32657/thumb/logo-cs_%281%29.png?1698899704",
+    "symbol": "CHAINS",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xa1faa113cbe53436df28ff0aee54275c13b40975": {
+    "assetId": "eip155:1/erc20:0xa1faa113cbe53436df28ff0aee54275c13b40975",
+    "chainId": "eip155:1",
+    "name": "Stella on Ethereum",
+    "precision": 18,
+    "color": "#2BB3FB",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xa1faa113cbE53436Df28FF0aEe54275c13B40975/logo.png",
+    "symbol": "ALPHA",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xa203eb78fee91c8459c6d4ef3a899d8724ee5b35": {
+    "assetId": "eip155:1/erc20:0xa203eb78fee91c8459c6d4ef3a899d8724ee5b35",
+    "chainId": "eip155:1",
+    "name": "Liquid Mercury",
+    "precision": 18,
+    "color": "#9CA6AC",
+    "icon": "https://assets.coingecko.com/coins/images/29297/thumb/cda56b6a-146c-4348-b4ff-5b87980c0f83.jpg?1696528249",
+    "symbol": "MERC",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xa2085073878152ac3090ea13d1e41bd69e60dc99": {
+    "assetId": "eip155:1/erc20:0xa2085073878152ac3090ea13d1e41bd69e60dc99",
+    "chainId": "eip155:1",
+    "name": "Escoin",
+    "precision": 18,
+    "color": "#1778CC",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xA2085073878152aC3090eA13D1e41bD69e60Dc99/logo.png",
+    "symbol": "ELG",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xa20f77b7ad5a88badc48800c56507b7274c06fdc": {
+    "assetId": "eip155:1/erc20:0xa20f77b7ad5a88badc48800c56507b7274c06fdc",
+    "chainId": "eip155:1",
+    "name": "Cherry Network on Ethereum",
+    "precision": 18,
+    "color": "#EFE2F1",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xa20f77B7ad5A88badC48800C56507B7274c06Fdc/logo.png",
+    "symbol": "CHER",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xa2120b9e674d3fc3875f415a7df52e382f141225": {
+    "assetId": "eip155:1/erc20:0xa2120b9e674d3fc3875f415a7df52e382f141225",
+    "chainId": "eip155:1",
+    "name": "Automata on Ethereum",
+    "precision": 18,
+    "color": "#C24414",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xA2120b9e674d3fC3875f415A7DF52e382F141225/logo.png",
+    "symbol": "ATA",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xa21af1050f7b26e0cff45ee51548254c41ed6b5c": {
+    "assetId": "eip155:1/erc20:0xa21af1050f7b26e0cff45ee51548254c41ed6b5c",
+    "chainId": "eip155:1",
+    "name": "Osaka Protocol",
+    "precision": 18,
+    "color": "#783333",
+    "icon": "https://assets.coingecko.com/coins/images/30911/thumb/osak_logo.png?1696529756",
+    "symbol": "OSAK",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xa23c1194d421f252b4e6d5edcc3205f7650a4ebe": {
+    "assetId": "eip155:1/erc20:0xa23c1194d421f252b4e6d5edcc3205f7650a4ebe",
+    "chainId": "eip155:1",
+    "name": "LaunchBlock",
+    "precision": 18,
+    "color": "#8B67BA",
+    "icon": "https://assets.coingecko.com/coins/images/24181/thumb/S6z_-9GB_400x400.jpg?1696523370",
+    "symbol": "LBP",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xa258c4606ca8206d8aa700ce2143d7db854d168c": {
+    "assetId": "eip155:1/erc20:0xa258c4606ca8206d8aa700ce2143d7db854d168c",
+    "chainId": "eip155:1",
+    "name": "WETH yVault",
+    "precision": 18,
+    "color": "#646C8C",
+    "icon": "https://assets.coingecko.com/coins/images/28793/thumb/yvWETH-128-0xa258C4606Ca8206D8aA700cE2143D7db854D168c.png?1696527771",
+    "symbol": "YVWETH",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xa2847348b58ced0ca58d23c7e9106a49f1427df6": {
+    "assetId": "eip155:1/erc20:0xa2847348b58ced0ca58d23c7e9106a49f1427df6",
+    "chainId": "eip155:1",
+    "name": "Convex FPIS",
+    "precision": 18,
+    "color": "#D9D9D9",
+    "icon": "https://assets.coingecko.com/coins/images/29678/thumb/photo_2023-03-18_21-37-17.jpg?1696528612",
+    "symbol": "CVXFPIS",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xa2881f7f441267042f9778ffa0d4f834693426be": {
+    "assetId": "eip155:1/erc20:0xa2881f7f441267042f9778ffa0d4f834693426be",
+    "chainId": "eip155:1",
+    "name": "The HUSL on Ethereum",
+    "precision": 18,
+    "color": "#FCD404",
+    "icon": "https://assets.coingecko.com/coins/images/18619/thumb/W8ZIHKU.png?1696518092",
+    "symbol": "HUSL",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xa2a54f1ec1f09316ef12c1770d32ed8f21b1fb6a": {
+    "assetId": "eip155:1/erc20:0xa2a54f1ec1f09316ef12c1770d32ed8f21b1fb6a",
+    "chainId": "eip155:1",
+    "name": "DigiFinex",
+    "precision": 8,
+    "color": "#1343F4",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xA2A54f1Ec1f09316eF12c1770D32ed8F21B1Fb6A/logo.png",
+    "symbol": "DFT",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xa2b4c0af19cc16a6cfacce81f192b024d625817d": {
+    "assetId": "eip155:1/erc20:0xa2b4c0af19cc16a6cfacce81f192b024d625817d",
+    "chainId": "eip155:1",
+    "name": "Kishu Inu",
+    "precision": 9,
+    "color": "#F0E6D2",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xA2b4C0Af19cC16a6CfAcCe81F192B024d625817D/logo.png",
+    "symbol": "KISHU",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xa2c798f6456e4928f1e029c971007a09416a3db0": {
+    "assetId": "eip155:1/erc20:0xa2c798f6456e4928f1e029c971007a09416a3db0",
+    "chainId": "eip155:1",
+    "name": "Soaps Tech",
+    "precision": 9,
+    "color": "#2CA4DC",
+    "icon": "https://assets.coingecko.com/coins/images/31512/thumb/1000.png?1696530322",
+    "symbol": "SOAPS",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xa2cd3d43c775978a96bdbf12d733d5a1ed94fb18": {
+    "assetId": "eip155:1/erc20:0xa2cd3d43c775978a96bdbf12d733d5a1ed94fb18",
+    "chainId": "eip155:1",
+    "name": "Onyxcoin on Ethereum",
+    "precision": 18,
+    "color": "#04040C",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xA2cd3D43c775978A96BdBf12d733D5A1ED94fb18/logo.png",
+    "symbol": "XCN",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xa2e3356610840701bdf5611a53974510ae27e2e1": {
+    "assetId": "eip155:1/erc20:0xa2e3356610840701bdf5611a53974510ae27e2e1",
+    "chainId": "eip155:1",
+    "name": "Wrapped Beacon ETH on Ethereum",
+    "precision": 18,
+    "color": "#F2C62A",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xa2E3356610840701BDf5611a53974510Ae27E2e1/logo.png",
+    "symbol": "WBETH",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xa2fe5e51729be71261bcf42854012827bc44c044": {
+    "assetId": "eip155:1/erc20:0xa2fe5e51729be71261bcf42854012827bc44c044",
+    "chainId": "eip155:1",
+    "name": "BURN",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/32652/thumb/Burn.jpg?1698895268",
+    "symbol": "BURN",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xa31b1767e09f842ecfd4bc471fe44f830e3891aa": {
+    "assetId": "eip155:1/erc20:0xa31b1767e09f842ecfd4bc471fe44f830e3891aa",
+    "chainId": "eip155:1",
+    "name": "Roobee on Ethereum",
+    "precision": 18,
+    "color": "#259BA4",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xA31B1767e09f842ECFd4bc471Fe44F830E3891AA/logo.png",
+    "symbol": "ROOBEE",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xa338b5a4bbd8053994bb6c55d770fc2447d66b88": {
+    "assetId": "eip155:1/erc20:0xa338b5a4bbd8053994bb6c55d770fc2447d66b88",
+    "chainId": "eip155:1",
+    "name": "Emerging Assets Group",
+    "precision": 18,
+    "color": "#040404",
+    "icon": "https://assets.coingecko.com/coins/images/32265/thumb/0xa338b5a4bbd8053994bb6c55d770fc2447d66b88_%281%29.png?1697029815",
+    "symbol": "EAG",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xa34ee6108fe427f91edce0d6520d9fec0e64f67b": {
+    "assetId": "eip155:1/erc20:0xa34ee6108fe427f91edce0d6520d9fec0e64f67b",
+    "chainId": "eip155:1",
+    "name": "Pepe Le Pew Coin",
+    "precision": 9,
+    "color": "#E3DFDF",
+    "icon": "https://assets.coingecko.com/coins/images/30876/thumb/plpc.png?1696529724",
+    "symbol": "PLPC",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xa350da05405cc204e551c4eed19c3039646528d5": {
+    "assetId": "eip155:1/erc20:0xa350da05405cc204e551c4eed19c3039646528d5",
+    "chainId": "eip155:1",
+    "name": "Blocksport",
+    "precision": 18,
+    "color": "#5D6770",
+    "icon": "https://assets.coingecko.com/coins/images/23735/thumb/logo_icon.jpg?1696522938",
+    "symbol": "BSPT",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xa354f35829ae975e850e23e9615b11da1b3dc4de": {
+    "assetId": "eip155:1/erc20:0xa354f35829ae975e850e23e9615b11da1b3dc4de",
+    "chainId": "eip155:1",
+    "name": "USDC yVault",
+    "precision": 6,
+    "color": "#2474CC",
+    "icon": "https://assets.coingecko.com/coins/images/28779/thumb/yvUSDC-128-0xe2F6b9773BF3A015E2aA70741Bde1498bdB9425b.png?1696527758",
+    "symbol": "YVUSDC",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xa35923162c49cf95e6bf26623385eb431ad920d3": {
+    "assetId": "eip155:1/erc20:0xa35923162c49cf95e6bf26623385eb431ad920d3",
+    "chainId": "eip155:1",
+    "name": "Turbo",
+    "precision": 18,
+    "color": "#F3F2F1",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xA35923162C49cF95e6BF26623385eb431ad920D3/logo.png",
+    "symbol": "TURBO",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xa35b1b31ce002fbf2058d22f30f95d405200a15b": {
+    "assetId": "eip155:1/erc20:0xa35b1b31ce002fbf2058d22f30f95d405200a15b",
+    "chainId": "eip155:1",
+    "name": "Stader ETHx",
+    "precision": 18,
+    "color": "#BCBEBE",
+    "icon": "https://assets.coingecko.com/coins/images/30870/thumb/staderx.png?1696529717",
+    "symbol": "ETHX",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xa361718326c15715591c299427c62086f69923d9": {
+    "assetId": "eip155:1/erc20:0xa361718326c15715591c299427c62086f69923d9",
+    "chainId": "eip155:1",
+    "name": "Aave BUSD",
+    "precision": 18,
+    "color": "#F4BC0C",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xA361718326c15715591c299427c62086F69923D9/logo.png",
+    "symbol": "ABUSD",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xa36fdbbae3c9d55a1d67ee5821d53b50b63a1ab9": {
+    "assetId": "eip155:1/erc20:0xa36fdbbae3c9d55a1d67ee5821d53b50b63a1ab9",
+    "chainId": "eip155:1",
+    "name": "Tempus",
+    "precision": 18,
+    "color": "#D2E3E8",
+    "icon": "https://assets.coingecko.com/coins/images/20547/thumb/Tempus_CoinGecko_200x200.png?1696519957",
+    "symbol": "TEMP",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xa381e7073ea828fb963157dcc4b414da4344e3fd": {
+    "assetId": "eip155:1/erc20:0xa381e7073ea828fb963157dcc4b414da4344e3fd",
+    "chainId": "eip155:1",
+    "name": "Cartel Coin",
+    "precision": 18,
+    "color": "#E07D28",
+    "icon": "https://assets.coingecko.com/coins/images/30292/thumb/IMG_0763.PNG?1696529197",
+    "symbol": "CARTEL",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xa393473d64d2f9f026b60b6df7859a689715d092": {
+    "assetId": "eip155:1/erc20:0xa393473d64d2f9f026b60b6df7859a689715d092",
+    "chainId": "eip155:1",
+    "name": "Lattice",
+    "precision": 8,
+    "color": "#3E636E",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xa393473d64d2F9F026B60b6Df7859A689715d092/logo.png",
+    "symbol": "LTX",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xa3a80559bbc1989654e6b8385f5001fa1333332f": {
+    "assetId": "eip155:1/erc20:0xa3a80559bbc1989654e6b8385f5001fa1333332f",
+    "chainId": "eip155:1",
+    "name": "RaiseR Token",
+    "precision": 18,
+    "color": "#24C4D4",
+    "icon": "https://assets.coingecko.com/coins/images/30855/thumb/Token_Logo.png?1696529703",
+    "symbol": "RZR",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xa3ad8c7ab6b731045b5b16e3fdf77975c71abe79": {
+    "assetId": "eip155:1/erc20:0xa3ad8c7ab6b731045b5b16e3fdf77975c71abe79",
+    "chainId": "eip155:1",
+    "name": "Dinerobet",
+    "precision": 18,
+    "color": "#FC5C24",
+    "icon": "https://assets.coingecko.com/coins/images/28248/thumb/CABA1DE1-2CB1-46D3-97BC-20305EA67FBB.png?1696527251",
+    "symbol": "DINERO",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xa3bed4e1c75d00fa6f4e5e6922db7261b5e9acd2": {
+    "assetId": "eip155:1/erc20:0xa3bed4e1c75d00fa6f4e5e6922db7261b5e9acd2",
+    "chainId": "eip155:1",
+    "name": "mStable Governance  Meta on Ethereum",
+    "precision": 18,
+    "color": "#F3F3F3",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xa3BeD4E1c75D00fa6f4E5E6922DB7261B5E9AcD2/logo.png",
+    "symbol": "MTA",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xa3c31927a092bd54eb9a0b5dfe01d9db5028bd4f": {
+    "assetId": "eip155:1/erc20:0xa3c31927a092bd54eb9a0b5dfe01d9db5028bd4f",
+    "chainId": "eip155:1",
+    "name": "Espresso Bot",
+    "precision": 9,
+    "color": "#BFB8AF",
+    "icon": "https://assets.coingecko.com/coins/images/31091/thumb/ESPR.png?1696529923",
+    "symbol": "ESPR",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xa3c519683010d59fa54a4a6c4cac0f55cb20bb3f": {
+    "assetId": "eip155:1/erc20:0xa3c519683010d59fa54a4a6c4cac0f55cb20bb3f",
+    "chainId": "eip155:1",
+    "name": "BetIT",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/33126/thumb/output-onlinepngtools_%281%29.png?1700795370",
+    "symbol": "BETIT",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xa3cb87080e68ad54d00573983d935fa85d168fde": {
+    "assetId": "eip155:1/erc20:0xa3cb87080e68ad54d00573983d935fa85d168fde",
+    "chainId": "eip155:1",
+    "name": "InfinityBit Token",
+    "precision": 8,
+    "color": "#5694CD",
+    "icon": "https://assets.coingecko.com/coins/images/31562/thumb/ibit-200x200cg.png?1696530375",
+    "symbol": "IBIT",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xa3d4bee77b05d4a0c943877558ce21a763c4fa29": {
+    "assetId": "eip155:1/erc20:0xa3d4bee77b05d4a0c943877558ce21a763c4fa29",
+    "chainId": "eip155:1",
+    "name": "The Root Network",
+    "precision": 6,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/33122/thumb/6T1Tapl__400x400.jpg?1700740439",
+    "symbol": "ROOT",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xa3d59c6d24f428dcfedc09724869e7af4d281fdd": {
+    "assetId": "eip155:1/erc20:0xa3d59c6d24f428dcfedc09724869e7af4d281fdd",
+    "chainId": "eip155:1",
+    "name": "DeviantsFactions",
+    "precision": 6,
+    "color": "#FC5C24",
+    "icon": "https://assets.coingecko.com/coins/images/32561/thumb/icon.png?1698546192",
+    "symbol": "DEV",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xa3e54198998d800703399f3bfa38be4e14045036": {
+    "assetId": "eip155:1/erc20:0xa3e54198998d800703399f3bfa38be4e14045036",
+    "chainId": "eip155:1",
+    "name": "REVIVAL",
+    "precision": 18,
+    "color": "#4C4C4C",
+    "icon": "https://assets.coingecko.com/coins/images/32500/thumb/revival.jpg?1698311388",
+    "symbol": "REVIVAL",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xa3ee21c306a700e682abcdfe9baa6a08f3820419": {
+    "assetId": "eip155:1/erc20:0xa3ee21c306a700e682abcdfe9baa6a08f3820419",
+    "chainId": "eip155:1",
+    "name": "Creditcoin",
+    "precision": 18,
+    "color": "#2C343C",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xa3EE21C306A700E682AbCdfe9BaA6A08F3820419/logo.png",
+    "symbol": "CTC",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xa41f142b6eb2b164f8164cae0716892ce02f311f": {
+    "assetId": "eip155:1/erc20:0xa41f142b6eb2b164f8164cae0716892ce02f311f",
+    "chainId": "eip155:1",
+    "name": "Avocado DAO on Ethereum",
+    "precision": 18,
+    "color": "#489253",
+    "icon": "https://assets.coingecko.com/coins/images/21102/thumb/logo192_%281%29.png?1696520483",
+    "symbol": "AVG",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xa4335da338ec4c07c391fc1a9bf75f306adadc08": {
+    "assetId": "eip155:1/erc20:0xa4335da338ec4c07c391fc1a9bf75f306adadc08",
+    "chainId": "eip155:1",
+    "name": "ARYZE eUSD on Ethereum",
+    "precision": 18,
+    "color": "#B9DCC9",
+    "icon": "https://assets.coingecko.com/coins/images/32422/thumb/ARYZE_eUSD.png?1698118313",
+    "symbol": "EUSD",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xa43a7c62d56df036c187e1966c03e2799d8987ed": {
+    "assetId": "eip155:1/erc20:0xa43a7c62d56df036c187e1966c03e2799d8987ed",
+    "chainId": "eip155:1",
+    "name": "TruFin Staked MATIC on Ethereum",
+    "precision": 18,
+    "color": "#8DF1B5",
+    "icon": "https://assets.coingecko.com/coins/images/32416/thumb/TruMATIC_logo_250px_%281%29.png?1698114190",
+    "symbol": "TRUMATIC",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xa444ec96ee01bb219a44b285de47bf33c3447ad5": {
+    "assetId": "eip155:1/erc20:0xa444ec96ee01bb219a44b285de47bf33c3447ad5",
+    "chainId": "eip155:1",
+    "name": "LEOX",
+    "precision": 18,
+    "color": "#070707",
+    "icon": "https://assets.coingecko.com/coins/images/29980/thumb/LEOX-LOGO-BLACK-2.jpg?1696528905",
+    "symbol": "LEOX",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xa44e5137293e855b1b7bc7e2c6f8cd796ffcb037": {
+    "assetId": "eip155:1/erc20:0xa44e5137293e855b1b7bc7e2c6f8cd796ffcb037",
+    "chainId": "eip155:1",
+    "name": "Sentinel  OLD ",
+    "precision": 8,
+    "color": "#18A0E8",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xa44E5137293E855B1b7bC7E2C6f8cD796fFCB037/logo.png",
+    "symbol": "DVPN",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xa47c8bf37f92abed4a126bda807a7b7498661acd": {
+    "assetId": "eip155:1/erc20:0xa47c8bf37f92abed4a126bda807a7b7498661acd",
+    "chainId": "eip155:1",
+    "name": "Wrapped USTC on Ethereum",
+    "precision": 18,
+    "color": "#5592F1",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xa47c8bf37f92aBed4A126BDA807A7b7498661acD/logo.png",
+    "symbol": "USTC",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xa487bf43cf3b10dffc97a9a744cbb7036965d3b9": {
+    "assetId": "eip155:1/erc20:0xa487bf43cf3b10dffc97a9a744cbb7036965d3b9",
+    "chainId": "eip155:1",
+    "name": "Deri Protocol on Ethereum",
+    "precision": 18,
+    "color": "#5B7890",
+    "icon": "https://assets.coingecko.com/coins/images/13931/thumb/200vs200.jpg?1696513670",
+    "symbol": "DERI",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xa48f322f8b3edff967629af79e027628b9dd1298": {
+    "assetId": "eip155:1/erc20:0xa48f322f8b3edff967629af79e027628b9dd1298",
+    "chainId": "eip155:1",
+    "name": "Davos Protocol on Ethereum",
+    "precision": 18,
+    "color": "#FAD8E0",
+    "icon": "https://assets.coingecko.com/coins/images/28775/thumb/dusd_logo_200x200.png?1696527754",
+    "symbol": "DUSD",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xa49d7499271ae71cd8ab9ac515e6694c755d400c": {
+    "assetId": "eip155:1/erc20:0xa49d7499271ae71cd8ab9ac515e6694c755d400c",
+    "chainId": "eip155:1",
+    "name": "Mute",
+    "precision": 18,
+    "color": "#ACACBC",
+    "icon": "https://assets.coingecko.com/coins/images/14331/thumb/MUTE.png?1696514019",
+    "symbol": "MUTE",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xa4bdb11dc0a2bec88d24a3aa1e6bb17201112ebe": {
+    "assetId": "eip155:1/erc20:0xa4bdb11dc0a2bec88d24a3aa1e6bb17201112ebe",
+    "chainId": "eip155:1",
+    "name": "Stably USDS on Ethereum",
+    "precision": 6,
+    "color": "#7C479C",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xA4Bdb11dc0a2bEC88d24A3aa1E6Bb17201112eBe/logo.png",
+    "symbol": "USDS",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xa4be4cdc552891a6702e1ae9645ef445179a4463": {
+    "assetId": "eip155:1/erc20:0xa4be4cdc552891a6702e1ae9645ef445179a4463",
+    "chainId": "eip155:1",
+    "name": "INOFi",
+    "precision": 18,
+    "color": "#A02C4C",
+    "icon": "https://assets.coingecko.com/coins/images/31343/thumb/FON.png?1696530161",
+    "symbol": "FON",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xa4cb0dce4849bdcad2d553e9e68644cf40e26cce": {
+    "assetId": "eip155:1/erc20:0xa4cb0dce4849bdcad2d553e9e68644cf40e26cce",
+    "chainId": "eip155:1",
+    "name": "Baked on Ethereum",
+    "precision": 18,
+    "color": "#978CC4",
+    "icon": "https://assets.coingecko.com/coins/images/19178/thumb/rebaked-logo-full.png?1696518627",
+    "symbol": "BAKED",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xa4cb3ef5f41a4d89d6fced22ea8a1c57957629aa": {
+    "assetId": "eip155:1/erc20:0xa4cb3ef5f41a4d89d6fced22ea8a1c57957629aa",
+    "chainId": "eip155:1",
+    "name": "MetaRuffy  MR ",
+    "precision": 18,
+    "color": "#28221C",
+    "icon": "https://assets.coingecko.com/coins/images/27831/thumb/mr_logo_2023_200_200.png?1696526850",
+    "symbol": "MR",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xa4cf2afd3b165975afffbf7e487cdd40c894ab6b": {
+    "assetId": "eip155:1/erc20:0xa4cf2afd3b165975afffbf7e487cdd40c894ab6b",
+    "chainId": "eip155:1",
+    "name": "Shibaken Finance on Ethereum",
+    "precision": 0,
+    "color": "#231F18",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xa4Cf2aFD3B165975afFFBf7e487CDd40C894Ab6B/logo.png",
+    "symbol": "SHIBAKEN",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xa4e8c3ec456107ea67d3075bf9e3df3a75823db0": {
+    "assetId": "eip155:1/erc20:0xa4e8c3ec456107ea67d3075bf9e3df3a75823db0",
+    "chainId": "eip155:1",
+    "name": "Loom Network  OLD ",
+    "precision": 18,
+    "color": "#231C23",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xA4e8C3Ec456107eA67d3075bF9e3DF3A75823DB0/logo.png",
+    "symbol": "LOOMOLD",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xa4eb9c64ec359d093eac7b65f51ef933d6e5f7cd": {
+    "assetId": "eip155:1/erc20:0xa4eb9c64ec359d093eac7b65f51ef933d6e5f7cd",
+    "chainId": "eip155:1",
+    "name": "Stablz",
+    "precision": 18,
+    "color": "#0D090E",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xA4Eb9C64eC359D093eAc7B65F51Ef933D6e5F7cd/logo.png",
+    "symbol": "STABLZ",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xa4ef4b0b23c1fc81d3f9ecf93510e64f58a4a016": {
+    "assetId": "eip155:1/erc20:0xa4ef4b0b23c1fc81d3f9ecf93510e64f58a4a016",
+    "chainId": "eip155:1",
+    "name": "1MillionNFTs",
+    "precision": 18,
+    "color": "#4DD760",
+    "icon": "https://assets.coingecko.com/coins/images/14990/thumb/4kQ8hRnU_400x400.jpg?1696514654",
+    "symbol": "1MIL",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xa50709b10c328772ea24a44b13c7e23c75561ecb": {
+    "assetId": "eip155:1/erc20:0xa50709b10c328772ea24a44b13c7e23c75561ecb",
+    "chainId": "eip155:1",
+    "name": "28",
+    "precision": 18,
+    "color": "#100D0E",
+    "icon": "https://assets.coingecko.com/coins/images/32142/thumb/28.png?1696592290",
+    "symbol": "28",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xa52383b665b91dce42dd4b6d1e0fb37d3effe489": {
+    "assetId": "eip155:1/erc20:0xa52383b665b91dce42dd4b6d1e0fb37d3effe489",
+    "chainId": "eip155:1",
+    "name": "MASTER USD",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xA52383B665b91DCe42dD4b6d1E0Fb37d3EFFe489/logo.png",
+    "symbol": "MUSD",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xa5269a8e31b93ff27b887b56720a25f844db0529": {
+    "assetId": "eip155:1/erc20:0xa5269a8e31b93ff27b887b56720a25f844db0529",
+    "chainId": "eip155:1",
+    "name": "Morpho Aave USD Coin",
+    "precision": 18,
+    "color": "#D7E3EC",
+    "icon": "https://assets.coingecko.com/coins/images/29835/thumb/maUSDC.jpg?1696528762",
+    "symbol": "MAUSDC",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xa52bffad02b1fe3f86a543a4e81962d3b3bb01a7": {
+    "assetId": "eip155:1/erc20:0xa52bffad02b1fe3f86a543a4e81962d3b3bb01a7",
+    "chainId": "eip155:1",
+    "name": "Duckereum",
+    "precision": 18,
+    "color": "#DBBF70",
+    "icon": "https://assets.coingecko.com/coins/images/26325/thumb/coin.png?1696525407",
+    "symbol": "DUCKER",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xa53f9dd70055113e13176e291eddb773f85b2650": {
+    "assetId": "eip155:1/erc20:0xa53f9dd70055113e13176e291eddb773f85b2650",
+    "chainId": "eip155:1",
+    "name": "ZEUS AI",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/32896/thumb/cg_size.jpg?1699790661",
+    "symbol": "ZEUS",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xa57ed6e54be8125bbe45d6ca330e45ebb71ef11e": {
+    "assetId": "eip155:1/erc20:0xa57ed6e54be8125bbe45d6ca330e45ebb71ef11e",
+    "chainId": "eip155:1",
+    "name": "NEWPEPE",
+    "precision": 18,
+    "color": "#F1F6F5",
+    "icon": "https://assets.coingecko.com/coins/images/31729/thumb/photo_2023-09-12_02-04-48_%282%29.jpg?1696530549",
+    "symbol": "PEPE",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xa589d8868607b8d79ee4288ce192796051263b64": {
+    "assetId": "eip155:1/erc20:0xa589d8868607b8d79ee4288ce192796051263b64",
+    "chainId": "eip155:1",
+    "name": "TATE",
+    "precision": 18,
+    "color": "#3D1F1B",
+    "icon": "https://assets.coingecko.com/coins/images/30034/thumb/Tate_logo_Coingecko.png?1696528957",
+    "symbol": "TATE",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xa58a4f5c4bb043d2cc1e170613b74e767c94189b": {
+    "assetId": "eip155:1/erc20:0xa58a4f5c4bb043d2cc1e170613b74e767c94189b",
+    "chainId": "eip155:1",
+    "name": "UTU Coin on Ethereum",
+    "precision": 18,
+    "color": "#F3E057",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xa58a4f5c4Bb043d2CC1E170613B74e767c94189B/logo.png",
+    "symbol": "UTU",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xa59ea1b2d012619a8b9ce16431894cf0be516a73": {
+    "assetId": "eip155:1/erc20:0xa59ea1b2d012619a8b9ce16431894cf0be516a73",
+    "chainId": "eip155:1",
+    "name": "Friend Tech Farm",
+    "precision": 9,
+    "color": "#C5DEE6",
+    "icon": "https://assets.coingecko.com/coins/images/31438/thumb/ftf_logo.png?1696530253",
+    "symbol": "FTF",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xa5b947687163fe88c3e6af5b17ae69896f4abccf": {
+    "assetId": "eip155:1/erc20:0xa5b947687163fe88c3e6af5b17ae69896f4abccf",
+    "chainId": "eip155:1",
+    "name": "Poseidon",
+    "precision": 18,
+    "color": "#222E41",
+    "icon": "https://assets.coingecko.com/coins/images/25316/thumb/psdn_32.png?1696524451",
+    "symbol": "PSDN",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xa5ca62d95d24a4a350983d5b8ac4eb8638887396": {
+    "assetId": "eip155:1/erc20:0xa5ca62d95d24a4a350983d5b8ac4eb8638887396",
+    "chainId": "eip155:1",
+    "name": "sUSD yVault",
+    "precision": 18,
+    "color": "#6DA49E",
+    "icon": "https://assets.coingecko.com/coins/images/28794/thumb/yvsUSD-128-0xa5cA62D95D24A4a350983D5B8ac4EB8638887396.png?1696527772",
+    "symbol": "YVSUSD",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xa5e0b9118ce23dd1eec52cd93cf59e8ea3b3ff56": {
+    "assetId": "eip155:1/erc20:0xa5e0b9118ce23dd1eec52cd93cf59e8ea3b3ff56",
+    "chainId": "eip155:1",
+    "name": "JUDAS",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/32938/thumb/photo_2023-11-12_10-29-13.jpg?1699872126",
+    "symbol": "JUDAS",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xa5e412ba6fca1e07b15defcaa4236ff7b5a7f086": {
+    "assetId": "eip155:1/erc20:0xa5e412ba6fca1e07b15defcaa4236ff7b5a7f086",
+    "chainId": "eip155:1",
+    "name": "Crypto Bank",
+    "precision": 18,
+    "color": "#ECEFEF",
+    "icon": "https://assets.coingecko.com/coins/images/13473/thumb/HHeUVDBF5clKgE4vW_dyCtcTZqWDRw_vDe1MA3lIJWI4wEZW2BwF5dHFbm_ZpJNTWf85sZxCBVl2R7u29kGg37bE8XkGh3CneW6SkVwbnQEe0r2WR6yy6THxMvzIMiicWza82-NyjMitEo84_2E_C5LCiBcdTPFrjNQiMs1DTSJuaRTNB81KRsdcXNW0p2j7PH8O7Xk3QrWVjPe.jpg?1696513234",
+    "symbol": "CBANK",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xa5ef74068d04ba0809b7379dd76af5ce34ab7c57": {
+    "assetId": "eip155:1/erc20:0xa5ef74068d04ba0809b7379dd76af5ce34ab7c57",
+    "chainId": "eip155:1",
+    "name": "LunaChow on Ethereum",
+    "precision": 18,
+    "color": "#D96A3C",
+    "icon": "https://assets.coingecko.com/coins/images/18805/thumb/J-MwYfhD_400x400.jpg?1696518267",
+    "symbol": "LUCHOW",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xa5f1dbb0e55bc31f32c6d032bee330288490e722": {
+    "assetId": "eip155:1/erc20:0xa5f1dbb0e55bc31f32c6d032bee330288490e722",
+    "chainId": "eip155:1",
+    "name": "Day By Day on Ethereum",
+    "precision": 18,
+    "color": "#F1DCE0",
+    "icon": "https://assets.coingecko.com/coins/images/21691/thumb/DBD-icon_200x200_%281%29.png?1696521046",
+    "symbol": "DBD",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xa5f2211b9b8170f694421f2046281775e8468044": {
+    "assetId": "eip155:1/erc20:0xa5f2211b9b8170f694421f2046281775e8468044",
+    "chainId": "eip155:1",
+    "name": "THORSwap",
+    "precision": 18,
+    "color": "#23D5F4",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xa5f2211B9b8170F694421f2046281775E8468044/logo.png",
+    "symbol": "THOR",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xa60b6c2537078b903e3e965d4e36b7280b0b53a9": {
+    "assetId": "eip155:1/erc20:0xa60b6c2537078b903e3e965d4e36b7280b0b53a9",
+    "chainId": "eip155:1",
+    "name": "Pepe of Yellow",
+    "precision": 9,
+    "color": "#E5B84C",
+    "icon": "https://assets.coingecko.com/coins/images/31249/thumb/LOGO_Official_2.jpg?1696530074",
+    "symbol": "PYPY",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xa62894d5196bc44e4c3978400ad07e7b30352372": {
+    "assetId": "eip155:1/erc20:0xa62894d5196bc44e4c3978400ad07e7b30352372",
+    "chainId": "eip155:1",
+    "name": "X",
+    "precision": 9,
+    "color": "#040404",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xa62894D5196bC44e4C3978400Ad07E7b30352372/logo.png",
+    "symbol": "X",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xa62cc35625b0c8dc1faea39d33625bb4c15bd71c": {
+    "assetId": "eip155:1/erc20:0xa62cc35625b0c8dc1faea39d33625bb4c15bd71c",
+    "chainId": "eip155:1",
+    "name": "StormX",
+    "precision": 18,
+    "color": "#FC748C",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xa62cc35625B0C8dc1fAEA39d33625Bb4C15bD71C/logo.png",
+    "symbol": "STMX",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xa6345ffadfa23dfc9014bce72ff2fa8712e54231": {
+    "assetId": "eip155:1/erc20:0xa6345ffadfa23dfc9014bce72ff2fa8712e54231",
+    "chainId": "eip155:1",
+    "name": "Pepe Prophet on Ethereum",
+    "precision": 9,
+    "color": "#C2D5E1",
+    "icon": "https://assets.coingecko.com/coins/images/31932/thumb/20231009_185537.png?1696963573",
+    "symbol": "KEK",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xa6422e3e219ee6d4c1b18895275fe43556fd50ed": {
+    "assetId": "eip155:1/erc20:0xa6422e3e219ee6d4c1b18895275fe43556fd50ed",
+    "chainId": "eip155:1",
+    "name": "Stobox on Ethereum",
+    "precision": 18,
+    "color": "#282C36",
+    "icon": "https://assets.coingecko.com/coins/images/12637/thumb/123456826.png?1696512445",
+    "symbol": "STBU",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xa64bd6c70cb9051f6a9ba1f163fdc07e0dfb5f84": {
+    "assetId": "eip155:1/erc20:0xa64bd6c70cb9051f6a9ba1f163fdc07e0dfb5f84",
+    "chainId": "eip155:1",
+    "name": "Aave LINK v1",
+    "precision": 18,
+    "color": "#2C5CDC",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xA64BD6C70Cb9051F6A9ba1F163Fdc07E0DfB5F84/logo.png",
+    "symbol": "ALINK",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xa64d5d1eb67748226d84812b45711453f1118c32": {
+    "assetId": "eip155:1/erc20:0xa64d5d1eb67748226d84812b45711453f1118c32",
+    "chainId": "eip155:1",
+    "name": "Cheems Inu  NEW  on Ethereum",
+    "precision": 9,
+    "color": "#CF5506",
+    "icon": "https://assets.coingecko.com/coins/images/29393/thumb/cinu.png?1696528343",
+    "symbol": "CINU",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xa64dfe8d86963151e6496bee513e366f6e42ed79": {
+    "assetId": "eip155:1/erc20:0xa64dfe8d86963151e6496bee513e366f6e42ed79",
+    "chainId": "eip155:1",
+    "name": "Goku",
+    "precision": 9,
+    "color": "#3491C2",
+    "icon": "https://assets.coingecko.com/coins/images/17947/thumb/goku.png?1696517467",
+    "symbol": "GOKU",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xa64efd5fe826f62e310a951332b519e1e3871489": {
+    "assetId": "eip155:1/erc20:0xa64efd5fe826f62e310a951332b519e1e3871489",
+    "chainId": "eip155:1",
+    "name": "BetaCarbon",
+    "precision": 18,
+    "color": "#111012",
+    "icon": "https://assets.coingecko.com/coins/images/31040/thumb/Safeimagekit-resized-img_%281%29.png?1696529875",
+    "symbol": "BCAU",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xa6586e19ef681b1ac0ed3d46413d199a555dbb95": {
+    "assetId": "eip155:1/erc20:0xa6586e19ef681b1ac0ed3d46413d199a555dbb95",
+    "chainId": "eip155:1",
+    "name": "Lets Go Brandon",
+    "precision": 18,
+    "color": "#1F2541",
+    "icon": "https://assets.coingecko.com/coins/images/24034/thumb/3zKU0T83_400x400.jpeg?1696523226",
+    "symbol": "LETSGO",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xa66daa57432024023db65477ba87d4e7f5f95213": {
+    "assetId": "eip155:1/erc20:0xa66daa57432024023db65477ba87d4e7f5f95213",
+    "chainId": "eip155:1",
+    "name": "Huobi Pool",
+    "precision": 18,
+    "color": "#34A7DB",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xa66Daa57432024023DB65477BA87D4E7F5f95213/logo.png",
+    "symbol": "HPT",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xa670d7237398238de01267472c6f13e5b8010fd1": {
+    "assetId": "eip155:1/erc20:0xa670d7237398238de01267472c6f13e5b8010fd1",
+    "chainId": "eip155:1",
+    "name": "Sommelier",
+    "precision": 6,
+    "color": "#5C343C",
+    "icon": "https://assets.coingecko.com/coins/images/23308/thumb/somm_new.png?1696522525",
+    "symbol": "SOMM",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xa67b8e40111a0edd30c3210b77aadb86ad234c43": {
+    "assetId": "eip155:1/erc20:0xa67b8e40111a0edd30c3210b77aadb86ad234c43",
+    "chainId": "eip155:1",
+    "name": "Banana Index on Ethereum",
+    "precision": 9,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/26700/thumb/6233e7f496c72994c313a50a_cactusboy90_%282%29-p-1080.png?1696525773",
+    "symbol": "BANDEX",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xa67e9f021b9d208f7e3365b2a155e3c55b27de71": {
+    "assetId": "eip155:1/erc20:0xa67e9f021b9d208f7e3365b2a155e3c55b27de71",
+    "chainId": "eip155:1",
+    "name": "KleeKai",
+    "precision": 9,
+    "color": "#656485",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xA67E9F021B9d208F7e3365B2A155E3C55B27de71/logo.png",
+    "symbol": "KLEE",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xa683929289b52a0f3f24fef9d6bf1fbbaeb49e9d": {
+    "assetId": "eip155:1/erc20:0xa683929289b52a0f3f24fef9d6bf1fbbaeb49e9d",
+    "chainId": "eip155:1",
+    "name": "VelosBot",
+    "precision": 9,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/32648/thumb/200x200.jpg?1698894499",
+    "symbol": "VELOS",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xa685a61171bb30d4072b338c80cb7b2c865c873e": {
+    "assetId": "eip155:1/erc20:0xa685a61171bb30d4072b338c80cb7b2c865c873e",
+    "chainId": "eip155:1",
+    "name": "Aave MANA",
+    "precision": 18,
+    "color": "#E94F67",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xa685a61171bb30d4072B338c80Cb7b2c865c873E/logo.png",
+    "symbol": "AMANA",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xa696a63cc78dffa1a63e9e50587c197387ff6c7e": {
+    "assetId": "eip155:1/erc20:0xa696a63cc78dffa1a63e9e50587c197387ff6c7e",
+    "chainId": "eip155:1",
+    "name": "WBTC yVault",
+    "precision": 8,
+    "color": "#2A272D",
+    "icon": "https://assets.coingecko.com/coins/images/28796/thumb/yvWBTC-128-0xA696a63cc78DfFa1a63E9E50587C197387FF6C7E.png?1696527774",
+    "symbol": "YVWBTC",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xa6a1cc527d48585538b137e6abc14b2a55489d11": {
+    "assetId": "eip155:1/erc20:0xa6a1cc527d48585538b137e6abc14b2a55489d11",
+    "chainId": "eip155:1",
+    "name": "Linework Coin",
+    "precision": 8,
+    "color": "#F8E6E9",
+    "icon": "https://assets.coingecko.com/coins/images/27739/thumb/Linework-logo_coin_200px-01.png?1696526762",
+    "symbol": "LWC",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xa6a840e50bcaa50da017b91a0d86b8b2d41156ee": {
+    "assetId": "eip155:1/erc20:0xa6a840e50bcaa50da017b91a0d86b8b2d41156ee",
+    "chainId": "eip155:1",
+    "name": "EchoLink",
+    "precision": 18,
+    "color": "#4294AD",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xa6a840E50bCaa50dA017b91A0D86B8b2d41156EE/logo.png",
+    "symbol": "EKO",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xa6c0c097741d55ecd9a3a7def3a8253fd022ceb9": {
+    "assetId": "eip155:1/erc20:0xa6c0c097741d55ecd9a3a7def3a8253fd022ceb9",
+    "chainId": "eip155:1",
+    "name": "AVA",
+    "precision": 18,
+    "color": "#040404",
+    "icon": "https://assets.coingecko.com/coins/images/3014/thumb/AVA_Logo_160x160px_Black.png?1696503750",
+    "symbol": "AVA",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xa6f7645ed967faf708a614a2fca8d4790138586f": {
+    "assetId": "eip155:1/erc20:0xa6f7645ed967faf708a614a2fca8d4790138586f",
+    "chainId": "eip155:1",
+    "name": "MoonieNFT on Ethereum",
+    "precision": 18,
+    "color": "#1B4CFC",
+    "icon": "https://assets.coingecko.com/coins/images/18226/thumb/sq8oK6mX_400x400.png?1696517723",
+    "symbol": "MNY",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xa700b4eb416be35b2911fd5dee80678ff64ff6c9": {
+    "assetId": "eip155:1/erc20:0xa700b4eb416be35b2911fd5dee80678ff64ff6c9",
+    "chainId": "eip155:1",
+    "name": "Aave v3 AAVE on Ethereum",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/32887/thumb/aave.png?1699773604",
+    "symbol": "AAAVE",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xa704662ecb62be83f88ca1a3b5277a381cb32dce": {
+    "assetId": "eip155:1/erc20:0xa704662ecb62be83f88ca1a3b5277a381cb32dce",
+    "chainId": "eip155:1",
+    "name": "Bee Tools",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/33089/thumb/TOKEN_IMAGE.jpg?1700602823",
+    "symbol": "BUZZ",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xa719cb79af39a9c10eda2755e0938bce35e9de24": {
+    "assetId": "eip155:1/erc20:0xa719cb79af39a9c10eda2755e0938bce35e9de24",
+    "chainId": "eip155:1",
+    "name": "Starfish Finance on Ethereum",
+    "precision": 18,
+    "color": "#289AEC",
+    "icon": "https://assets.coingecko.com/coins/images/27533/thumb/SEAN_Token_icon.png?1696526570",
+    "symbol": "SEAN",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xa71d0588eaf47f12b13cf8ec750430d21df04974": {
+    "assetId": "eip155:1/erc20:0xa71d0588eaf47f12b13cf8ec750430d21df04974",
+    "chainId": "eip155:1",
+    "name": "Shiba Predator",
+    "precision": 18,
+    "color": "#C0642A",
+    "icon": "https://assets.coingecko.com/coins/images/24430/thumb/l1KzMcL.png?1696523611",
+    "symbol": "QOM",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xa735a3af76cc30791c61c10d585833829d36cbe0": {
+    "assetId": "eip155:1/erc20:0xa735a3af76cc30791c61c10d585833829d36cbe0",
+    "chainId": "eip155:1",
+    "name": "Image Generation AI",
+    "precision": 9,
+    "color": "#E6B6C3",
+    "icon": "https://assets.coingecko.com/coins/images/28666/thumb/imgnai-200x200.png?1698476572",
+    "symbol": "IMGNAI",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xa75e7928d3de682e3f44da60c26f33117c4e6c5c": {
+    "assetId": "eip155:1/erc20:0xa75e7928d3de682e3f44da60c26f33117c4e6c5c",
+    "chainId": "eip155:1",
+    "name": "Propel on Ethereum",
+    "precision": 18,
+    "color": "#D88D11",
+    "icon": "https://assets.coingecko.com/coins/images/21290/thumb/img_circle_1.png?1696520660",
+    "symbol": "PEL",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xa771b49064da011df051052848477f18dba1d2ac": {
+    "assetId": "eip155:1/erc20:0xa771b49064da011df051052848477f18dba1d2ac",
+    "chainId": "eip155:1",
+    "name": "Handshake",
+    "precision": 6,
+    "color": "#3A3A3A",
+    "icon": "https://assets.coingecko.com/coins/images/10562/thumb/circle-handshakeLogo.png?1696510545",
+    "symbol": "HNS",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xa774ffb4af6b0a91331c084e1aebae6ad535e6f3": {
+    "assetId": "eip155:1/erc20:0xa774ffb4af6b0a91331c084e1aebae6ad535e6f3",
+    "chainId": "eip155:1",
+    "name": "flexUSD",
+    "precision": 18,
+    "color": "#ECE8FC",
+    "icon": "https://assets.coingecko.com/coins/images/13323/thumb/flexUSD_2x.png?1696513092",
+    "symbol": "FLEXUSD",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xa792ff98afd4ccb8d33f2590d0bc9420a062e555": {
+    "assetId": "eip155:1/erc20:0xa792ff98afd4ccb8d33f2590d0bc9420a062e555",
+    "chainId": "eip155:1",
+    "name": "Gold Utility Token",
+    "precision": 18,
+    "color": "#DC4424",
+    "icon": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAIAAAACACAMAAAD04JH5AAADAFBMVEUtN0jYQCb///8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA+S6tKAAABAHRSTlP/////AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAf6K/dgAAQItJREFUeNoBgEB/vwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgICAgICAgICAgICAgICAQEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgICAgICAgICAgICAgICAQEBAQEBAQEBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMAAAAAAAAAAAAAAAAAAAEBAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMAAAAAAAAAAAAAAAAAAAEBAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMAAAAAAAAAAAAAAAAAAAEBAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMAAAAAAAAAAAAAAAAAAAEBAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMAAAAAAAAAAAAAAAAAAAEBAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMAAAAAAAAAAAACAgICAgICAQMDAwMDAwMDAwMDAwMDAwMDAwMDAgICAgICAgEBAQEBAQECAgICAgICAAMDAwMDAwMDAwMDAwMDAwMDAwMDAgICAgICAgEBAQEBAQECAgICAgICAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAQMDAwMDAwMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAACAgICAgICAgICAgICAgEBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAACAgICAgICAgICAgICAgMBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAwAAAAAAAAAAAAAAAAAAAAACAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAACAgICAgICAgICAgICAgMBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAwAAAAAAAAAAAAAAAAAAAAACAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAACAgICAgICAgICAgICAgMBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAwAAAAAAAAAAAAAAAAAAAAACAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAACAgICAgICAgICAgICAgMBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAwAAAAAAAAAAAAAAAAAAAAACAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAACAgICAgICAgICAgICAgMBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAwAAAAAAAAAAAAAAAAAAAAACAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAACAgICAgICAgICAgICAgMBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAwAAAAAAAAAAAAAAAAAAAAACAgICAgICAwMDAwMDAwMDAwMDAwMDAwMDAwMDAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAwMDAwMDAgICAgICAgMBAQEBAQECAgICAgICAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQEBAwMDAwMDAgICAgICAgICAgICAgICAgICAgICAQMDAwMDAwMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQEBAQEBAQAAAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQEBAQEBAQAAAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQEBAQEBAQAAAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQEBAQEBAQAAAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQEBAQEBAQAAAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQEBAQEBAQAAAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAwMDAwMDAwEBAQEBAQEBAQEBAQEBAQEBAQEBAQMDAwMDAwMBAQEBAQEBAQEBAQAAAAMDAwMDAwMDAwMDAwMDAwMDAwMDAwEBAQEBAQEBAQEBAQEBAwMDAwMDAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAK5EMZKAR3NJAAAAAElFTkSuQmCC",
+    "symbol": "AGF",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xa7a5c1058194af8f00c187adb7fcc0c95f1c6c2d": {
+    "assetId": "eip155:1/erc20:0xa7a5c1058194af8f00c187adb7fcc0c95f1c6c2d",
+    "chainId": "eip155:1",
+    "name": "SPACE iZ",
+    "precision": 18,
+    "color": "#4C4F89",
+    "icon": "https://assets.coingecko.com/coins/images/12213/thumb/aEXTI0vf_400x400.jpg?1696512047",
+    "symbol": "SPIZ",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xa7de087329bfcda5639247f96140f9dabe3deed1": {
+    "assetId": "eip155:1/erc20:0xa7de087329bfcda5639247f96140f9dabe3deed1",
+    "chainId": "eip155:1",
+    "name": "Statera",
+    "precision": 18,
+    "color": "#042C63",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xa7DE087329BFcda5639247F96140f9DAbe3DeED1/logo.png",
+    "symbol": "STA",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xa7fbd9254f10f8e20a31a593c9e8bc0d041e15f6": {
+    "assetId": "eip155:1/erc20:0xa7fbd9254f10f8e20a31a593c9e8bc0d041e15f6",
+    "chainId": "eip155:1",
+    "name": "Orbeon Protocol",
+    "precision": 9,
+    "color": "#040414",
+    "icon": "https://assets.coingecko.com/coins/images/29566/thumb/logo_%281%29.png?1696528506",
+    "symbol": "ORBN",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xa8262eb913fccea4c3f77fc95b8b4043b384cfbb": {
+    "assetId": "eip155:1/erc20:0xa8262eb913fccea4c3f77fc95b8b4043b384cfbb",
+    "chainId": "eip155:1",
+    "name": "Krypton Galaxy Coin",
+    "precision": 18,
+    "color": "#22E2A7",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xa8262Eb913FccEa4C3f77fc95b8b4043B384cFbB/logo.png",
+    "symbol": "KGC",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xa8388b8334beb4840d65ed80f858b080dffd7e2b": {
+    "assetId": "eip155:1/erc20:0xa8388b8334beb4840d65ed80f858b080dffd7e2b",
+    "chainId": "eip155:1",
+    "name": "Son Of Pepe",
+    "precision": 18,
+    "color": "#47552C",
+    "icon": "https://assets.coingecko.com/coins/images/30895/thumb/IMG_20230701_205503_304_%283%29.png?1696529741",
+    "symbol": "SOP",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xa849eaae994fb86afa73382e9bd88c2b6b18dc71": {
+    "assetId": "eip155:1/erc20:0xa849eaae994fb86afa73382e9bd88c2b6b18dc71",
+    "chainId": "eip155:1",
+    "name": "MVL on Ethereum",
+    "precision": 18,
+    "color": "#082C3D",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xA849EaaE994fb86Afa73382e9Bd88c2B6b18Dc71/logo.png",
+    "symbol": "MVL",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xa87135285ae208e22068acdbff64b11ec73eaa5a": {
+    "assetId": "eip155:1/erc20:0xa87135285ae208e22068acdbff64b11ec73eaa5a",
+    "chainId": "eip155:1",
+    "name": "Lunr on Ethereum",
+    "precision": 4,
+    "color": "#11CCA4",
+    "icon": "https://assets.coingecko.com/coins/images/19256/thumb/lunr.png?1696518701",
+    "symbol": "LUNR",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xa876f27f13a9eb6e621202cefdd5afc4a90e6457": {
+    "assetId": "eip155:1/erc20:0xa876f27f13a9eb6e621202cefdd5afc4a90e6457",
+    "chainId": "eip155:1",
+    "name": "Icy",
+    "precision": 9,
+    "color": "#BF186F",
+    "icon": "https://assets.coingecko.com/coins/images/29666/thumb/1200.png?1696528601",
+    "symbol": "IC",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xa88842ae47dbe87116cf7001dddd1b246fcd8262": {
+    "assetId": "eip155:1/erc20:0xa88842ae47dbe87116cf7001dddd1b246fcd8262",
+    "chainId": "eip155:1",
+    "name": "hiENS3",
+    "precision": 18,
+    "color": "#4F5CFC",
+    "icon": "https://assets.coingecko.com/coins/images/27262/thumb/hiens3.png?1696526315",
+    "symbol": "HIENS3",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xa888d9616c2222788fa19f05f77221a290eef704": {
+    "assetId": "eip155:1/erc20:0xa888d9616c2222788fa19f05f77221a290eef704",
+    "chainId": "eip155:1",
+    "name": "Daruma",
+    "precision": 9,
+    "color": "#DABA5E",
+    "icon": "https://assets.coingecko.com/coins/images/27357/thumb/CGlogo.png?1696526403",
+    "symbol": "DARUMA",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xa88920b4a35f7d0e81bc586ce1875036fced9154": {
+    "assetId": "eip155:1/erc20:0xa88920b4a35f7d0e81bc586ce1875036fced9154",
+    "chainId": "eip155:1",
+    "name": "Kabuni",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/32827/thumb/Kabuni_Coin.1.png?1699585193",
+    "symbol": "KBC",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xa891cf72aeda692570928efe1a832342e9783cdc": {
+    "assetId": "eip155:1/erc20:0xa891cf72aeda692570928efe1a832342e9783cdc",
+    "chainId": "eip155:1",
+    "name": "Interfinex Bills",
+    "precision": 18,
+    "color": "#BCC4D4",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xA891CF72AEDa692570928eFe1A832342e9783CDC/logo.png",
+    "symbol": "IFEX",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xa89b728708be04f57c7a33c6f790b6f077298e26": {
+    "assetId": "eip155:1/erc20:0xa89b728708be04f57c7a33c6f790b6f077298e26",
+    "chainId": "eip155:1",
+    "name": "ReptilianZuckerBidenBartcoin",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/32599/thumb/bart.png?1698724602",
+    "symbol": "BART",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xa89bf95c5f15a847c8eb8d348cd7fed719ad7d80": {
+    "assetId": "eip155:1/erc20:0xa89bf95c5f15a847c8eb8d348cd7fed719ad7d80",
+    "chainId": "eip155:1",
+    "name": "Chat AI on Ethereum",
+    "precision": 18,
+    "color": "#DCDFE1",
+    "icon": "https://assets.coingecko.com/coins/images/29441/thumb/200.png?1696528389",
+    "symbol": "AI",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xa8b0f154a688c22142e361707df64277e0a0be66": {
+    "assetId": "eip155:1/erc20:0xa8b0f154a688c22142e361707df64277e0a0be66",
+    "chainId": "eip155:1",
+    "name": "Rake Finance",
+    "precision": 18,
+    "color": "#FC6E70",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xa8B0F154A688c22142E361707df64277e0A0bE66/logo.png",
+    "symbol": "RAK",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xa8b12cc90abf65191532a12bb5394a714a46d358": {
+    "assetId": "eip155:1/erc20:0xa8b12cc90abf65191532a12bb5394a714a46d358",
+    "chainId": "eip155:1",
+    "name": "pBTC35A",
+    "precision": 18,
+    "color": "#E6C552",
+    "icon": "https://assets.coingecko.com/coins/images/13653/thumb/pBTC35A.png?1696513402",
+    "symbol": "PBTC35A",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xa8b61cff52564758a204f841e636265bebc8db9b": {
+    "assetId": "eip155:1/erc20:0xa8b61cff52564758a204f841e636265bebc8db9b",
+    "chainId": "eip155:1",
+    "name": "Yield Protocol on Ethereum",
+    "precision": 18,
+    "color": "#7EC292",
+    "icon": "https://assets.coingecko.com/coins/images/14220/thumb/yield.png?1696513935",
+    "symbol": "YIELD",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xa8b919680258d369114910511cc87595aec0be6d": {
+    "assetId": "eip155:1/erc20:0xa8b919680258d369114910511cc87595aec0be6d",
+    "chainId": "eip155:1",
+    "name": "LUKSO  OLD ",
+    "precision": 18,
+    "color": "#8C59B2",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xA8b919680258d369114910511cc87595aec0be6D/logo.png",
+    "symbol": "LYXE",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xa8c08d8bb15a2d1a4d3b78def9c635ef1e340e16": {
+    "assetId": "eip155:1/erc20:0xa8c08d8bb15a2d1a4d3b78def9c635ef1e340e16",
+    "chainId": "eip155:1",
+    "name": "SERBIAN DANCING LADY",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/32688/thumb/IMG_20231101_105021_023.jpg?1698938977",
+    "symbol": "",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xa8c8cfb141a3bb59fea1e2ea6b79b5ecbcd7b6ca": {
+    "assetId": "eip155:1/erc20:0xa8c8cfb141a3bb59fea1e2ea6b79b5ecbcd7b6ca",
+    "chainId": "eip155:1",
+    "name": "Syntropy",
+    "precision": 18,
+    "color": "#040404",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xa8c8CfB141A3bB59FEA1E2ea6B79b5ECBCD7b6ca/logo.png",
+    "symbol": "NOIA",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xa9049425b938c46ac3e312d4cdaeccb26282aeb2": {
+    "assetId": "eip155:1/erc20:0xa9049425b938c46ac3e312d4cdaeccb26282aeb2",
+    "chainId": "eip155:1",
+    "name": "WickedBet Casino",
+    "precision": 18,
+    "color": "#BDBDBD",
+    "icon": "https://assets.coingecko.com/coins/images/31721/thumb/WB_B_W.png?1696530542",
+    "symbol": "WIK",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xa91464abd4625a23ab719e3f0fce84dadd54e546": {
+    "assetId": "eip155:1/erc20:0xa91464abd4625a23ab719e3f0fce84dadd54e546",
+    "chainId": "eip155:1",
+    "name": "Inoovi",
+    "precision": 18,
+    "color": "#AA5E2E",
+    "icon": "https://assets.coingecko.com/coins/images/10372/thumb/Bvp7U25U_400x400.jpg?1696510373",
+    "symbol": "IVI",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xa91ac63d040deb1b7a5e4d4134ad23eb0ba07e14": {
+    "assetId": "eip155:1/erc20:0xa91ac63d040deb1b7a5e4d4134ad23eb0ba07e14",
+    "chainId": "eip155:1",
+    "name": "Bella Protocol on Ethereum",
+    "precision": 18,
+    "color": "#F6FBFA",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xA91ac63D040dEB1b7A5E4d4134aD23eb0ba07e14/logo.png",
+    "symbol": "BEL",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xa922a70569a7555518bf4ded5094661a965e23ca": {
+    "assetId": "eip155:1/erc20:0xa922a70569a7555518bf4ded5094661a965e23ca",
+    "chainId": "eip155:1",
+    "name": "MN Bridge on Ethereum",
+    "precision": 8,
+    "color": "#F1FBFA",
+    "icon": "https://assets.coingecko.com/coins/images/32199/thumb/MNB.jpg?1696745894",
+    "symbol": "MNB",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xa92c49c403386111c1629aee00936eed2a9e74a6": {
+    "assetId": "eip155:1/erc20:0xa92c49c403386111c1629aee00936eed2a9e74a6",
+    "chainId": "eip155:1",
+    "name": "Kollector",
+    "precision": 18,
+    "color": "#1C130E",
+    "icon": "https://assets.coingecko.com/coins/images/19926/thumb/kbase_logo.jpg?1696519345",
+    "symbol": "KLTR",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xa92e7c82b11d10716ab534051b271d2f6aef7df5": {
+    "assetId": "eip155:1/erc20:0xa92e7c82b11d10716ab534051b271d2f6aef7df5",
+    "chainId": "eip155:1",
+    "name": "Ara",
+    "precision": 18,
+    "color": "#040404",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xa92E7c82B11d10716aB534051B271D2f6aEf7Df5/logo.png",
+    "symbol": "ARA",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xa9598333b99d14d90bc81cad8af82c4c70625e75": {
+    "assetId": "eip155:1/erc20:0xa9598333b99d14d90bc81cad8af82c4c70625e75",
+    "chainId": "eip155:1",
+    "name": "Metis MTS",
+    "precision": 18,
+    "color": "#E85532",
+    "icon": "https://assets.coingecko.com/coins/images/13218/thumb/1Vd_NuQU_400x400.jpg?1696512997",
+    "symbol": "MTS",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xa95c5ebb86e0de73b4fb8c47a45b792cfea28c23": {
+    "assetId": "eip155:1/erc20:0xa95c5ebb86e0de73b4fb8c47a45b792cfea28c23",
+    "chainId": "eip155:1",
+    "name": "stake link",
+    "precision": 18,
+    "color": "#20223D",
+    "icon": "https://assets.coingecko.com/coins/images/28406/thumb/stake.png?1696527404",
+    "symbol": "SDL",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xa962fc9d092c1e2de00bf600e261cf058b5685b1": {
+    "assetId": "eip155:1/erc20:0xa962fc9d092c1e2de00bf600e261cf058b5685b1",
+    "chainId": "eip155:1",
+    "name": "STYLE Protocol",
+    "precision": 18,
+    "color": "#5424DC",
+    "icon": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAIAAAACACAMAAAD04JH5AAADAFBMVEUtN0hTJtj///8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA8BJnNAAABAHRSTlP/////AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAf6K/dgAAQItJREFUeNoBgEB/vwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgICAgICAgICAgICAgICAQEBAQEBAQEBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgEBAQEBAQECAgICAgICAQEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAAAAAAAAAEBAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAAAAAAAAAEBAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAAAAAAAAAEBAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAAAAAAAAAEBAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAAAAAAAAAEBAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAQMDAwMDAwMDAwMDAwMDAwMDAwMDAgICAgICAgEBAQEBAQEBAwMDAwMDAwMDAwMDAwICAgICAgIDAwMDAwMDAwMDAwMDAwMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQEBAQEBAQAAAAAAAAAAAAICAgICAgIDAAAAAAEBAQEBAQEBAQEBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQEBAQEBAQAAAAAAAAAAAAICAgICAgIDAAAAAAEBAQEBAQEBAQEBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQEBAQEBAQAAAAAAAAAAAAICAgICAgIDAAAAAAEBAQEBAQEBAQEBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQEBAQEBAQAAAAAAAAAAAAICAgICAgIDAAAAAAEBAQEBAQEBAQEBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQEBAQEBAQAAAAAAAAAAAAICAgICAgIDAAAAAAEBAQEBAQEBAQEBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQEBAQEBAQAAAAAAAAAAAAICAgICAgIDAAAAAAEBAQEBAQEBAQEBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAQMDAwMDAwMBAQEBAQEBAQEBAQAAAAAAAAAAAAICAgICAgIDAAAAAAEBAQEBAQEBAQEBAQEBAQEBAwMDAwMDAgICAgICAgEBAQEBAQECAgICAgICAAMDAwMDAwMAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAICAgICAgIDAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAICAgICAgIDAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAICAgICAgIDAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAICAgICAgIDAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAICAgICAgIDAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAICAgICAgIDAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAwMDAwMDAgICAgICAgICAgICAgICAgICAgICAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAICAgICAgIDAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQMDAwMDAwICAgICAgIBAwMDAwMDAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAICAgICAgIDAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAICAgICAgIDAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAICAgICAgIDAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAICAgICAgIDAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAICAgICAgIDAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAICAgICAgIDAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQMDAwMDAwMDAwMDAwMDAwMDAwMDAgICAgICAgEBAQEBAQEBAQEBAQAAAAAAAAAAAAICAgICAgIDAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQEBAQEBAQAAAAAAAAAAAAICAgICAgIDAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQEBAQEBAQAAAAAAAAAAAAICAgICAgIDAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQEBAQEBAQAAAAAAAAAAAAICAgICAgIDAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQEBAQEBAQAAAAAAAAAAAAICAgICAgIDAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQEBAQEBAQAAAAAAAAAAAAICAgICAgIDAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQEBAQEBAQAAAAAAAAAAAAICAgICAgIDAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAQEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQEBAQEBAQAAAAAAAAAAAAICAgICAgIDAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQEBAQEBAQAAAAAAAAAAAAICAgICAgIDAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQEBAQEBAQAAAAAAAAAAAAICAgICAgIDAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQEBAQEBAQAAAAAAAAAAAAICAgICAgIDAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQEBAQEBAQAAAAAAAAAAAAICAgICAgIDAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQEBAQEBAQAAAAAAAAAAAAICAgICAgIDAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQEBAQEBAQAAAAAAAAAAAAICAgICAgIDAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAwMDAwMDAgICAgICAgICAgICAgICAgICAgICAQMDAwMDAwMBAQEBAQEBAQEBAQAAAAAAAAAAAAICAgICAgIDAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAICAgICAgIDAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAICAgICAgIDAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAICAgICAgIDAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAICAgICAgIDAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAICAgICAgIDAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAICAgICAgIDAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQMDAwMDAwMDAwMDAwMDAwMDAwMDAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAADAwMDAwMDAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEDAwMDAwMDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADo6LtRdoUyiAAAAAElFTkSuQmCC",
+    "symbol": "STYLE",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xa974bafd35033ef7c3903bb37d109e7f8920c668": {
+    "assetId": "eip155:1/erc20:0xa974bafd35033ef7c3903bb37d109e7f8920c668",
+    "chainId": "eip155:1",
+    "name": "Coinmix",
+    "precision": 9,
+    "color": "#E1A2AF",
+    "icon": "https://assets.coingecko.com/coins/images/32587/thumb/Tornado_only_transparent.png?1698565426",
+    "symbol": "CM",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xa97cd1c5bcee878496fadb4edee081d05239051f": {
+    "assetId": "eip155:1/erc20:0xa97cd1c5bcee878496fadb4edee081d05239051f",
+    "chainId": "eip155:1",
+    "name": "AICB",
+    "precision": 18,
+    "color": "#B4D4FC",
+    "icon": "https://assets.coingecko.com/coins/images/32348/thumb/AICB-20230925162643.png?1697471641",
+    "symbol": "AICB",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xa9ad6830180f9c150349f2cecadd710586e35cb7": {
+    "assetId": "eip155:1/erc20:0xa9ad6830180f9c150349f2cecadd710586e35cb7",
+    "chainId": "eip155:1",
+    "name": "ETH Stable",
+    "precision": 18,
+    "color": "#9AE4F2",
+    "icon": "https://assets.coingecko.com/coins/images/31464/thumb/ETHS.jpeg?1696530277",
+    "symbol": "ETHS",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xa9b1eb5908cfc3cdf91f9b8b3a74108598009096": {
+    "assetId": "eip155:1/erc20:0xa9b1eb5908cfc3cdf91f9b8b3a74108598009096",
+    "chainId": "eip155:1",
+    "name": "Bounce",
+    "precision": 18,
+    "color": "#E4E4E4",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xA9B1Eb5908CfC3cdf91F9B8B3a74108598009096/logo.png",
+    "symbol": "AUCTION",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xa9d54f37ebb99f83b603cc95fc1a5f3907aaccfd": {
+    "assetId": "eip155:1/erc20:0xa9d54f37ebb99f83b603cc95fc1a5f3907aaccfd",
+    "chainId": "eip155:1",
+    "name": "Pikaboss",
+    "precision": 18,
+    "color": "#CA6F4F",
+    "icon": "https://assets.coingecko.com/coins/images/32061/thumb/logocg.png?1696530858",
+    "symbol": "PIKA",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xa9e201a4e269d6cd5e9f0fcbcb78520cf815878b": {
+    "assetId": "eip155:1/erc20:0xa9e201a4e269d6cd5e9f0fcbcb78520cf815878b",
+    "chainId": "eip155:1",
+    "name": "Aave AMM UniRENWETH",
+    "precision": 18,
+    "color": "#4FA0B4",
+    "icon": "https://assets.coingecko.com/coins/images/17223/thumb/aAmmUniRENWETH.png?1696516778",
+    "symbol": "AAMMUNIRENWETH",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xa9e8acf069c58aec8825542845fd754e41a9489a": {
+    "assetId": "eip155:1/erc20:0xa9e8acf069c58aec8825542845fd754e41a9489a",
+    "chainId": "eip155:1",
+    "name": "PepeCoin",
+    "precision": 18,
+    "color": "#63813D",
+    "icon": "https://assets.coingecko.com/coins/images/30219/thumb/pepecoin.jpeg?1696529130",
+    "symbol": "PEPECOIN",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xa9fbcc25435ad713a9468d8c89dd7baae8914e3a": {
+    "assetId": "eip155:1/erc20:0xa9fbcc25435ad713a9468d8c89dd7baae8914e3a",
+    "chainId": "eip155:1",
+    "name": "Prophet",
+    "precision": 18,
+    "color": "#F2BEFC",
+    "icon": "https://assets.coingecko.com/coins/images/31908/thumb/Logo_200x200.png?1696530717",
+    "symbol": "PROPHET",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xaa0c5b3567fd1bac8a2a11eb16c3f81a49eea90f": {
+    "assetId": "eip155:1/erc20:0xaa0c5b3567fd1bac8a2a11eb16c3f81a49eea90f",
+    "chainId": "eip155:1",
+    "name": "MetamonkeyAi",
+    "precision": 7,
+    "color": "#242D37",
+    "icon": "https://assets.coingecko.com/coins/images/27208/thumb/mmai_new_logo.png?1696526256",
+    "symbol": "MMAI",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xaa19961b6b858d9f18a115f25aa1d98abc1fdba8": {
+    "assetId": "eip155:1/erc20:0xaa19961b6b858d9f18a115f25aa1d98abc1fdba8",
+    "chainId": "eip155:1",
+    "name": "LocalCoinSwap",
+    "precision": 18,
+    "color": "#304EC6",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xAA19961b6B858D9F18a115f25aa1D98ABc1fdBA8/logo.png",
+    "symbol": "LCS",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xaa2ce7ae64066175e0b90497ce7d9c190c315db4": {
+    "assetId": "eip155:1/erc20:0xaa2ce7ae64066175e0b90497ce7d9c190c315db4",
+    "chainId": "eip155:1",
+    "name": "Suterusu",
+    "precision": 18,
+    "color": "#EFECF0",
+    "icon": "https://assets.coingecko.com/coins/images/9830/thumb/p-NFlBlw_400x400.jpg?1696509886",
+    "symbol": "SUTER",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xaa2d8c9a8bd0f7945143bfd509be3ff23dd78918": {
+    "assetId": "eip155:1/erc20:0xaa2d8c9a8bd0f7945143bfd509be3ff23dd78918",
+    "chainId": "eip155:1",
+    "name": "Artizen",
+    "precision": 3,
+    "color": "#CB2C0C",
+    "icon": "https://assets.coingecko.com/coins/images/27263/thumb/ATNT-symbol_200.png?1696526315",
+    "symbol": "ATNT",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xaa4e3edb11afa93c41db59842b29de64b72e355b": {
+    "assetId": "eip155:1/erc20:0xaa4e3edb11afa93c41db59842b29de64b72e355b",
+    "chainId": "eip155:1",
+    "name": "Marginswap on Ethereum",
+    "precision": 18,
+    "color": "#262C34",
+    "icon": "https://assets.coingecko.com/coins/images/13899/thumb/marginswap_logo.png?1696513642",
+    "symbol": "MFI",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xaa602de53347579f86b996d2add74bb6f79462b2": {
+    "assetId": "eip155:1/erc20:0xaa602de53347579f86b996d2add74bb6f79462b2",
+    "chainId": "eip155:1",
+    "name": "Zipmex",
+    "precision": 18,
+    "color": "#101010",
+    "icon": "https://assets.coingecko.com/coins/images/13866/thumb/ZMT_Token.png?1696513611",
+    "symbol": "ZMT",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xaa61d5dec73971cd4a026ef2820bb87b4a4ed8d6": {
+    "assetId": "eip155:1/erc20:0xaa61d5dec73971cd4a026ef2820bb87b4a4ed8d6",
+    "chainId": "eip155:1",
+    "name": "CRE8R DAO",
+    "precision": 18,
+    "color": "#B0B0B0",
+    "icon": "https://assets.coingecko.com/coins/images/22568/thumb/cropped-FINALwithbrick-2-1-1.png?1696521887",
+    "symbol": "CRE8R",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xaa68fd12a3b0f7aea66fe8f7111ae3f8d9ac5058": {
+    "assetId": "eip155:1/erc20:0xaa68fd12a3b0f7aea66fe8f7111ae3f8d9ac5058",
+    "chainId": "eip155:1",
+    "name": "Tweety",
+    "precision": 9,
+    "color": "#D5A434",
+    "icon": "https://assets.coingecko.com/coins/images/30861/thumb/tweety_logo.png?1696529708",
+    "symbol": "TWEETY",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xaa6e8127831c9de45ae56bb1b0d4d4da6e5665bd": {
+    "assetId": "eip155:1/erc20:0xaa6e8127831c9de45ae56bb1b0d4d4da6e5665bd",
+    "chainId": "eip155:1",
+    "name": "Index Coop   ETH 2x Flexible Leverage I on Ethereum",
+    "precision": 18,
+    "color": "#460581",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xAa6E8127831c9DE45ae56bB1b0d4D4Da6e5665BD/logo.png",
+    "symbol": "ETH2X-FLI",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xaa7a9ca87d3694b5755f213b5d04094b8d0f0a6f": {
+    "assetId": "eip155:1/erc20:0xaa7a9ca87d3694b5755f213b5d04094b8d0f0a6f",
+    "chainId": "eip155:1",
+    "name": "OriginTrail",
+    "precision": 18,
+    "color": "#3ECA9F",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xaA7a9CA87d3694B5755f213B5D04094b8d0F0A6F/logo.png",
+    "symbol": "TRAC",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xaa8330fb2b4d5d07abfe7a72262752a8505c6b37": {
+    "assetId": "eip155:1/erc20:0xaa8330fb2b4d5d07abfe7a72262752a8505c6b37",
+    "chainId": "eip155:1",
+    "name": "Polkacity on Ethereum",
+    "precision": 18,
+    "color": "#F1E7F2",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xaA8330FB2B4D5D07ABFE7A72262752a8505C6B37/logo.png",
+    "symbol": "POLC",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xaa846b1ec76cdf864ea03e1df665f6c8d5510923": {
+    "assetId": "eip155:1/erc20:0xaa846b1ec76cdf864ea03e1df665f6c8d5510923",
+    "chainId": "eip155:1",
+    "name": "LeaderDAO",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/32770/thumb/LeaderDAO_Logo_200.jpg?1699342988",
+    "symbol": "LDAO",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xaa99199d1e9644b588796f3215089878440d58e0": {
+    "assetId": "eip155:1/erc20:0xaa99199d1e9644b588796f3215089878440d58e0",
+    "chainId": "eip155:1",
+    "name": "Alphr",
+    "precision": 18,
+    "color": "#497966",
+    "icon": "https://assets.coingecko.com/coins/images/15029/thumb/alphr.jpg?1696514689",
+    "symbol": "ALPHR",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xaaa9214f675316182eaa21c85f0ca99160cc3aaa": {
+    "assetId": "eip155:1/erc20:0xaaa9214f675316182eaa21c85f0ca99160cc3aaa",
+    "chainId": "eip155:1",
+    "name": "QANplatform on Ethereum",
+    "precision": 18,
+    "color": "#9C9C9C",
+    "icon": "https://assets.coingecko.com/coins/images/15977/thumb/qanx.png?1696515591",
+    "symbol": "QANX",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xaaaaaa20d9e0e2461697782ef11675f668207961": {
+    "assetId": "eip155:1/erc20:0xaaaaaa20d9e0e2461697782ef11675f668207961",
+    "chainId": "eip155:1",
+    "name": "Aurora",
+    "precision": 18,
+    "color": "#71CF4E",
+    "icon": "https://assets.coingecko.com/coins/images/20582/thumb/aurora.jpeg?1696519989",
+    "symbol": "AURORA",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xaaaebe6fe48e54f431b0c390cfaf0b017d09d42d": {
+    "assetId": "eip155:1/erc20:0xaaaebe6fe48e54f431b0c390cfaf0b017d09d42d",
+    "chainId": "eip155:1",
+    "name": "Celsius Network on Ethereum",
+    "precision": 4,
+    "color": "#4354A4",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xaaAEBE6Fe48E54f431b0C390CfaF0b017d09D42d/logo.png",
+    "symbol": "CEL",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xaaaf91d9b90df800df4f55c205fd6989c977e73a": {
+    "assetId": "eip155:1/erc20:0xaaaf91d9b90df800df4f55c205fd6989c977e73a",
+    "chainId": "eip155:1",
+    "name": "Monolith",
+    "precision": 8,
+    "color": "#CFCFCF",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xaAAf91D9b90dF800Df4F55c205fd6989c977E73a/logo.png",
+    "symbol": "TKN",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xaac41ec512808d64625576eddd580e7ea40ef8b2": {
+    "assetId": "eip155:1/erc20:0xaac41ec512808d64625576eddd580e7ea40ef8b2",
+    "chainId": "eip155:1",
+    "name": "Gameswap",
+    "precision": 18,
+    "color": "#7375D4",
+    "icon": "https://assets.coingecko.com/coins/images/13026/thumb/gameswap.jpg?1696512814",
+    "symbol": "GSWAP",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xaac679720204aaa68b6c5000aa87d789a3ca0aa5": {
+    "assetId": "eip155:1/erc20:0xaac679720204aaa68b6c5000aa87d789a3ca0aa5",
+    "chainId": "eip155:1",
+    "name": "Huobi Bitcoin Cash",
+    "precision": 18,
+    "color": "#2F58EF",
+    "icon": "https://assets.coingecko.com/coins/images/14105/thumb/HBCh.png?1696513826",
+    "symbol": "HBCH",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xaac88e48767988119b84dea3fc93ceec012f3530": {
+    "assetId": "eip155:1/erc20:0xaac88e48767988119b84dea3fc93ceec012f3530",
+    "chainId": "eip155:1",
+    "name": "BlockbyBlock",
+    "precision": 18,
+    "color": "#B2B0A2",
+    "icon": "https://assets.coingecko.com/coins/images/31389/thumb/bxblogo200by200.png?1696530205",
+    "symbol": "BXB",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xaaca86b876ca011844b5798eca7a67591a9743c8": {
+    "assetId": "eip155:1/erc20:0xaaca86b876ca011844b5798eca7a67591a9743c8",
+    "chainId": "eip155:1",
+    "name": "0x nodes on Ethereum",
+    "precision": 18,
+    "color": "#43B182",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xAACa86B876ca011844b5798ECA7a67591A9743C8/logo.png",
+    "symbol": "BIOS",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xaad483f97f13c6a20b9d05d07c397ce85c42c393": {
+    "assetId": "eip155:1/erc20:0xaad483f97f13c6a20b9d05d07c397ce85c42c393",
+    "chainId": "eip155:1",
+    "name": "Woonkly Power on Ethereum",
+    "precision": 18,
+    "color": "#248CFC",
+    "icon": "https://assets.coingecko.com/coins/images/14494/thumb/Icono_Infinito_Circular_Blanco_Fondo_Azul_2x.png?1696514179",
+    "symbol": "WOOP",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xaada04204e9e1099daf67cf3d5d137e84e41cf41": {
+    "assetId": "eip155:1/erc20:0xaada04204e9e1099daf67cf3d5d137e84e41cf41",
+    "chainId": "eip155:1",
+    "name": "Peepo",
+    "precision": 18,
+    "color": "#1D54F4",
+    "icon": "https://assets.coingecko.com/coins/images/30006/thumb/20230425_175833.png?1696528931",
+    "symbol": "PEEPO",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xaae3cf9968d26925bdb73ce3864e0084a20f4687": {
+    "assetId": "eip155:1/erc20:0xaae3cf9968d26925bdb73ce3864e0084a20f4687",
+    "chainId": "eip155:1",
+    "name": "Farmland Protocol",
+    "precision": 18,
+    "color": "#7AE514",
+    "icon": "https://assets.coingecko.com/coins/images/13497/thumb/70059912.jpg?1696513260",
+    "symbol": "FAR",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xaaee1a9723aadb7afa2810263653a34ba2c21c7a": {
+    "assetId": "eip155:1/erc20:0xaaee1a9723aadb7afa2810263653a34ba2c21c7a",
+    "chainId": "eip155:1",
+    "name": "Mog Coin",
+    "precision": 18,
+    "color": "#806151",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xaaeE1A9723aaDB7afA2810263653A34bA2C21C7a/logo.png",
+    "symbol": "MOG",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xaaef88cea01475125522e117bfe45cf32044e238": {
+    "assetId": "eip155:1/erc20:0xaaef88cea01475125522e117bfe45cf32044e238",
+    "chainId": "eip155:1",
+    "name": "GuildFi",
+    "precision": 18,
+    "color": "#041146",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xAaEf88cEa01475125522e117BFe45cF32044E238/logo.png",
+    "symbol": "GF",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xab2a7b5876d707e0126b3a75ef7781c77c8877ee": {
+    "assetId": "eip155:1/erc20:0xab2a7b5876d707e0126b3a75ef7781c77c8877ee",
+    "chainId": "eip155:1",
+    "name": "Quadency",
+    "precision": 18,
+    "color": "#CACACA",
+    "icon": "https://assets.coingecko.com/coins/images/21364/thumb/GkMXE_7A_400x400.png?1696520730",
+    "symbol": "QUAD",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xab306326bc72c2335bd08f42cbec383691ef8446": {
+    "assetId": "eip155:1/erc20:0xab306326bc72c2335bd08f42cbec383691ef8446",
+    "chainId": "eip155:1",
+    "name": "PPizza",
+    "precision": 18,
+    "color": "#362423",
+    "icon": "https://assets.coingecko.com/coins/images/30063/thumb/iconArtboard_1_10x.png?1696528985",
+    "symbol": "PPIZZA",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xab37e1358b639fd877f015027bb62d3ddaa7557e": {
+    "assetId": "eip155:1/erc20:0xab37e1358b639fd877f015027bb62d3ddaa7557e",
+    "chainId": "eip155:1",
+    "name": "Lien on Ethereum",
+    "precision": 8,
+    "color": "#4CFCE4",
+    "icon": "https://assets.coingecko.com/coins/images/12224/thumb/Lien.png?1696512057",
+    "symbol": "LIEN",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xab5d6508e4726141d29c6074ab366afa03f4ec8d": {
+    "assetId": "eip155:1/erc20:0xab5d6508e4726141d29c6074ab366afa03f4ec8d",
+    "chainId": "eip155:1",
+    "name": "Cybertruck",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/33168/thumb/TRUCK.jpg?1700908260",
+    "symbol": "TRUCK",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xab846fb6c81370327e784ae7cbb6d6a6af6ff4bf": {
+    "assetId": "eip155:1/erc20:0xab846fb6c81370327e784ae7cbb6d6a6af6ff4bf",
+    "chainId": "eip155:1",
+    "name": "Paladin",
+    "precision": 18,
+    "color": "#C05221",
+    "icon": "https://assets.coingecko.com/coins/images/24558/thumb/Circle-Logo.png?1696523734",
+    "symbol": "PAL",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xab85fc558d722a2b7c040ffb77db676bd9e7d322": {
+    "assetId": "eip155:1/erc20:0xab85fc558d722a2b7c040ffb77db676bd9e7d322",
+    "chainId": "eip155:1",
+    "name": "MOROS NET",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/33147/thumb/Moros.jpg?1700822187",
+    "symbol": "MOROS",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xab93df617f51e1e415b5b4f8111f122d6b48e55c": {
+    "assetId": "eip155:1/erc20:0xab93df617f51e1e415b5b4f8111f122d6b48e55c",
+    "chainId": "eip155:1",
+    "name": "Delta Exchange",
+    "precision": 18,
+    "color": "#04B4EC",
+    "icon": "https://assets.coingecko.com/coins/images/14610/thumb/deto-logo.png?1696514288",
+    "symbol": "DETO",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xab97bf5fb097e503bba2c86b7c56c0059ac0dc06": {
+    "assetId": "eip155:1/erc20:0xab97bf5fb097e503bba2c86b7c56c0059ac0dc06",
+    "chainId": "eip155:1",
+    "name": "Chanalog",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/32997/thumb/chanalog_token_logo_200.png?1700111084",
+    "symbol": "CHAN",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xabd601423a2cd5723cb546acc5c40fb01c3422cf": {
+    "assetId": "eip155:1/erc20:0xabd601423a2cd5723cb546acc5c40fb01c3422cf",
+    "chainId": "eip155:1",
+    "name": "Baby X",
+    "precision": 9,
+    "color": "#D5D6D5",
+    "icon": "https://assets.coingecko.com/coins/images/32525/thumb/topimg.png?1698411093",
+    "symbol": "BABYX",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xabec00542d141bddf58649bfe860c6449807237c": {
+    "assetId": "eip155:1/erc20:0xabec00542d141bddf58649bfe860c6449807237c",
+    "chainId": "eip155:1",
+    "name": "CruxDecussata",
+    "precision": 18,
+    "color": "#CCCCCC",
+    "icon": "https://assets.coingecko.com/coins/images/31246/thumb/Asset_1.png?1696530071",
+    "symbol": "X",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xac0968a3e2020ac8ca83e60ccf69081ebc6d3bc3": {
+    "assetId": "eip155:1/erc20:0xac0968a3e2020ac8ca83e60ccf69081ebc6d3bc3",
+    "chainId": "eip155:1",
+    "name": "Cindrum",
+    "precision": 18,
+    "color": "#2D2D2D",
+    "icon": "https://assets.coingecko.com/coins/images/20449/thumb/1_sbv9l6ArIn7oYIhi0oQWoQ.png?1696519854",
+    "symbol": "CIND",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xac0c8da4a4748d8d821a0973d00b157aa78c473d": {
+    "assetId": "eip155:1/erc20:0xac0c8da4a4748d8d821a0973d00b157aa78c473d",
+    "chainId": "eip155:1",
+    "name": "YFIONE",
+    "precision": 18,
+    "color": "#FCA4C4",
+    "icon": "https://assets.coingecko.com/coins/images/13670/thumb/256.png?1696513419",
+    "symbol": "YFO",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xac1419ee74f203c6b9daa3635ad7169b7ebb5c1a": {
+    "assetId": "eip155:1/erc20:0xac1419ee74f203c6b9daa3635ad7169b7ebb5c1a",
+    "chainId": "eip155:1",
+    "name": "Nebula",
+    "precision": 9,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/33029/thumb/20231116_120200.jpg?1700347575",
+    "symbol": "NEBULA",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xac3211a5025414af2866ff09c23fc18bc97e79b1": {
+    "assetId": "eip155:1/erc20:0xac3211a5025414af2866ff09c23fc18bc97e79b1",
+    "chainId": "eip155:1",
+    "name": "Dovu  OLD  on Ethereum",
+    "precision": 18,
+    "color": "#2172F9",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xac3211a5025414Af2866FF09c23FC18bc97e79b1/logo.png",
+    "symbol": "DOV",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xac3e018457b222d93114458476f3e3416abbe38f": {
+    "assetId": "eip155:1/erc20:0xac3e018457b222d93114458476f3e3416abbe38f",
+    "chainId": "eip155:1",
+    "name": "Staked Frax Ether on Ethereum",
+    "precision": 18,
+    "color": "#141414",
+    "icon": "https://assets.coingecko.com/coins/images/28285/thumb/sfrxETH_icon.png?1696527285",
+    "symbol": "SFRXETH",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xac51066d7bec65dc4589368da368b212745d63e8": {
+    "assetId": "eip155:1/erc20:0xac51066d7bec65dc4589368da368b212745d63e8",
+    "chainId": "eip155:1",
+    "name": "My Neighbor Alice on Ethereum",
+    "precision": 6,
+    "color": "#76C3D9",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xAC51066d7bEC65Dc4589368da368b212745d63E8/logo.png",
+    "symbol": "ALICE",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xac57de9c1a09fec648e93eb98875b212db0d460b": {
+    "assetId": "eip155:1/erc20:0xac57de9c1a09fec648e93eb98875b212db0d460b",
+    "chainId": "eip155:1",
+    "name": "Baby Doge Coin on Ethereum",
+    "precision": 9,
+    "color": "#DD9C4C",
+    "icon": "https://assets.coingecko.com/coins/images/16125/thumb/babydoge.jpg?1696515731",
+    "symbol": "BABYDOGE",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xac5b038058bcd0424c9c252c6487c25f032e5ddc": {
+    "assetId": "eip155:1/erc20:0xac5b038058bcd0424c9c252c6487c25f032e5ddc",
+    "chainId": "eip155:1",
+    "name": "EpiK Protocol",
+    "precision": 18,
+    "color": "#DADEF1",
+    "icon": "https://assets.coingecko.com/coins/images/15188/thumb/AIEPK_logo.png?1696514845",
+    "symbol": "AIEPK",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xac6df26a590f08dcc95d5a4705ae8abbc88509ef": {
+    "assetId": "eip155:1/erc20:0xac6df26a590f08dcc95d5a4705ae8abbc88509ef",
+    "chainId": "eip155:1",
+    "name": "Aave ENJ",
+    "precision": 18,
+    "color": "#7489DF",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xaC6Df26a590F08dcC95D5a4705ae8abbc88509Ef/logo.png",
+    "symbol": "AENJ",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xac8e13ecc30da7ff04b842f21a62a1fb0f10ebd5": {
+    "assetId": "eip155:1/erc20:0xac8e13ecc30da7ff04b842f21a62a1fb0f10ebd5",
+    "chainId": "eip155:1",
+    "name": "BabyDoge ETH",
+    "precision": 9,
+    "color": "#F5A023",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xAC8E13ecC30Da7Ff04b842f21A62a1fb0f10eBd5/logo.png",
+    "symbol": "BABYDOGE",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xac9518ba93eeb2336a03137d254d8cc2e4d0fa38": {
+    "assetId": "eip155:1/erc20:0xac9518ba93eeb2336a03137d254d8cc2e4d0fa38",
+    "chainId": "eip155:1",
+    "name": "EDUM",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/32634/thumb/edum_logo_750.png?1698826232",
+    "symbol": "EDUM",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xacb47686b92fdde6d233ec6445c1f8d4d0d59c38": {
+    "assetId": "eip155:1/erc20:0xacb47686b92fdde6d233ec6445c1f8d4d0d59c38",
+    "chainId": "eip155:1",
+    "name": "Swipe Token",
+    "precision": 8,
+    "color": "#FCD6B1",
+    "icon": "https://assets.coingecko.com/coins/images/30601/thumb/SWIPE_%28200_%C3%97_200_px%29.png?1696529471",
+    "symbol": "SWIPE",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xacbd826394189cf2623c6df98a18b41fc8ffc16d": {
+    "assetId": "eip155:1/erc20:0xacbd826394189cf2623c6df98a18b41fc8ffc16d",
+    "chainId": "eip155:1",
+    "name": "NFTify on Ethereum",
+    "precision": 18,
+    "color": "#A617AA",
+    "icon": "https://assets.coingecko.com/coins/images/16095/thumb/n1-token-logo-circle-200x200.png?1696515703",
+    "symbol": "N1",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xacc48f65f8701f376bc4ba13f4bc103f31dda74e": {
+    "assetId": "eip155:1/erc20:0xacc48f65f8701f376bc4ba13f4bc103f31dda74e",
+    "chainId": "eip155:1",
+    "name": "Swift",
+    "precision": 18,
+    "color": "#E6E6E6",
+    "icon": "https://assets.coingecko.com/coins/images/31979/thumb/Safeimagekit-resized-img_%284%29.png?1696530782",
+    "symbol": "SWIFT",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xacdbfcbd4d6d4e9fe72c3ba4280d728ab2ace30f": {
+    "assetId": "eip155:1/erc20:0xacdbfcbd4d6d4e9fe72c3ba4280d728ab2ace30f",
+    "chainId": "eip155:1",
+    "name": "TargetWatch Bot",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/33086/thumb/TARGET_%283%29.png?1700602262",
+    "symbol": "TWB",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xacdf0dba4b9839b96221a8487e9ca660a48212be": {
+    "assetId": "eip155:1/erc20:0xacdf0dba4b9839b96221a8487e9ca660a48212be",
+    "chainId": "eip155:1",
+    "name": "High Yield USD",
+    "precision": 18,
+    "color": "#F4AC04",
+    "icon": "https://assets.coingecko.com/coins/images/30899/thumb/hyusdlogo.png?1700809180",
+    "symbol": "HYUSD",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xacf8d5e515ed005655dfefa09c22673a37a7cdee": {
+    "assetId": "eip155:1/erc20:0xacf8d5e515ed005655dfefa09c22673a37a7cdee",
+    "chainId": "eip155:1",
+    "name": "FunFi",
+    "precision": 18,
+    "color": "#F1AB21",
+    "icon": "https://assets.coingecko.com/coins/images/25872/thumb/FNF-200x200.png?1696524955",
+    "symbol": "FNF",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xacfa209fb73bf3dd5bbfb1101b9bc999c49062a5": {
+    "assetId": "eip155:1/erc20:0xacfa209fb73bf3dd5bbfb1101b9bc999c49062a5",
+    "chainId": "eip155:1",
+    "name": "EvidenZ on Ethereum",
+    "precision": 18,
+    "color": "#38D0C4",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xAcfa209Fb73bF3Dd5bBfb1101B9Bc999C49062a5/logo.png",
+    "symbol": "BCDT",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xad161afae7db2a048b042bd68e11c38c9c042cc1": {
+    "assetId": "eip155:1/erc20:0xad161afae7db2a048b042bd68e11c38c9c042cc1",
+    "chainId": "eip155:1",
+    "name": "Flooring Protocol  Nakamigos",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/32757/thumb/nakamigos.jpg?1699310532",
+    "symbol": "NKMGS",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xad1a5b8538a866ecd56ddd328b50ed57ced5d936": {
+    "assetId": "eip155:1/erc20:0xad1a5b8538a866ecd56ddd328b50ed57ced5d936",
+    "chainId": "eip155:1",
+    "name": "Good Gensler",
+    "precision": 18,
+    "color": "#EFCABD",
+    "icon": "https://assets.coingecko.com/coins/images/29943/thumb/goodgg-logo-.png?1696528870",
+    "symbol": "GENSLR",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xad22f63404f7305e4713ccbd4f296f34770513f4": {
+    "assetId": "eip155:1/erc20:0xad22f63404f7305e4713ccbd4f296f34770513f4",
+    "chainId": "eip155:1",
+    "name": "Atomic Wallet Coin",
+    "precision": 8,
+    "color": "#689FF3",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xaD22f63404f7305e4713CcBd4F296f34770513f4/logo.png",
+    "symbol": "AWC",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xad32a8e6220741182940c5abf610bde99e737b2d": {
+    "assetId": "eip155:1/erc20:0xad32a8e6220741182940c5abf610bde99e737b2d",
+    "chainId": "eip155:1",
+    "name": "PieDAO DOUGH v2",
+    "precision": 18,
+    "color": "#892FDB",
+    "icon": "https://assets.coingecko.com/coins/images/12693/thumb/DOUGH2v.png?1696512496",
+    "symbol": "DOUGH",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xad497ee6a70accc3cbb5eb874e60d87593b86f2f": {
+    "assetId": "eip155:1/erc20:0xad497ee6a70accc3cbb5eb874e60d87593b86f2f",
+    "chainId": "eip155:1",
+    "name": "SCOOBY",
+    "precision": 18,
+    "color": "#A49840",
+    "icon": "https://assets.coingecko.com/coins/images/30253/thumb/I2de-EST_400x400.jpg?1696529162",
+    "symbol": "SCOOBY",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xad5fe5b0b8ec8ff4565204990e4405b2da117d8e": {
+    "assetId": "eip155:1/erc20:0xad5fe5b0b8ec8ff4565204990e4405b2da117d8e",
+    "chainId": "eip155:1",
+    "name": "TronClassic",
+    "precision": 0,
+    "color": "#2B2525",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xaD5Fe5B0B8eC8fF4565204990E4405B2Da117d8e/logo.png",
+    "symbol": "TRXC",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xad6eefb4f4a6ce3e2cd2049c3104f5ce5ed082f0": {
+    "assetId": "eip155:1/erc20:0xad6eefb4f4a6ce3e2cd2049c3104f5ce5ed082f0",
+    "chainId": "eip155:1",
+    "name": "Simpson6900",
+    "precision": 9,
+    "color": "#DCBF5E",
+    "icon": "https://assets.coingecko.com/coins/images/32175/thumb/1111.png?1696742771",
+    "symbol": "SIMPSON690",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xad78d154baec2e9b4e78182d02388981b5093f80": {
+    "assetId": "eip155:1/erc20:0xad78d154baec2e9b4e78182d02388981b5093f80",
+    "chainId": "eip155:1",
+    "name": "Soyjak",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/33041/thumb/soyjak256_%282%29.png?1700428317",
+    "symbol": "SOY",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xad83b92cdd542db07445597f7f06963b31cf9444": {
+    "assetId": "eip155:1/erc20:0xad83b92cdd542db07445597f7f06963b31cf9444",
+    "chainId": "eip155:1",
+    "name": "Bumble C",
+    "precision": 9,
+    "color": "#4E76C1",
+    "icon": "https://assets.coingecko.com/coins/images/29813/thumb/Bumblec_logo.jpg?1696528742",
+    "symbol": "BUMBLEC",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xad8d0de33c43eefe104a279cdb6ae250c12e6214": {
+    "assetId": "eip155:1/erc20:0xad8d0de33c43eefe104a279cdb6ae250c12e6214",
+    "chainId": "eip155:1",
+    "name": "Naruto",
+    "precision": 9,
+    "color": "#2C325F",
+    "icon": "https://assets.coingecko.com/coins/images/29963/thumb/logo.jpg?1696528889",
+    "symbol": "NARUTO",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xad996a45fd2373ed0b10efa4a8ecb9de445a4302": {
+    "assetId": "eip155:1/erc20:0xad996a45fd2373ed0b10efa4a8ecb9de445a4302",
+    "chainId": "eip155:1",
+    "name": "Shirtum on Ethereum",
+    "precision": 18,
+    "color": "#04E43C",
+    "icon": "https://assets.coingecko.com/coins/images/16955/thumb/4fWlpC0.png?1696516523",
+    "symbol": "SHI",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xada86b1b313d1d5267e3fc0bb303f0a2b66d0ea7": {
+    "assetId": "eip155:1/erc20:0xada86b1b313d1d5267e3fc0bb303f0a2b66d0ea7",
+    "chainId": "eip155:1",
+    "name": "Covesting on Ethereum",
+    "precision": 18,
+    "color": "#040404",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xADA86b1b313D1D5267E3FC0bB303f0A2b66D0Ea7/logo.png",
+    "symbol": "COV",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xadb2437e6f65682b85f814fbc12fec0508a7b1d0": {
+    "assetId": "eip155:1/erc20:0xadb2437e6f65682b85f814fbc12fec0508a7b1d0",
+    "chainId": "eip155:1",
+    "name": "UNCX Network on Ethereum",
+    "precision": 18,
+    "color": "#C2FBD8",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xaDB2437e6F65682B85F814fBc12FeC0508A7B1D0/logo.png",
+    "symbol": "UNCX",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xadbf092241f806ae43b0395bca9e0ec83155816b": {
+    "assetId": "eip155:1/erc20:0xadbf092241f806ae43b0395bca9e0ec83155816b",
+    "chainId": "eip155:1",
+    "name": "Labrador",
+    "precision": 18,
+    "color": "#B28F3D",
+    "icon": "https://assets.coingecko.com/coins/images/31629/thumb/lab_degen_%282%29.png?1696530445",
+    "symbol": "LAB",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xadc234a4e90e2045f353f5d4fcde66144d23b458": {
+    "assetId": "eip155:1/erc20:0xadc234a4e90e2045f353f5d4fcde66144d23b458",
+    "chainId": "eip155:1",
+    "name": "Fluid USDT",
+    "precision": 6,
+    "color": "#57A48D",
+    "icon": "https://assets.coingecko.com/coins/images/28472/thumb/fUSDT-200x200.png?1696527466",
+    "symbol": "FUSDT",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xadc3f2c3d728202658930860158c726d8180a38f": {
+    "assetId": "eip155:1/erc20:0xadc3f2c3d728202658930860158c726d8180a38f",
+    "chainId": "eip155:1",
+    "name": "StarkMeta",
+    "precision": 18,
+    "color": "#F7F5F8",
+    "icon": "https://assets.coingecko.com/coins/images/25851/thumb/YcUYwy5f_400x400.jpg?1696524935",
+    "symbol": "SMETA",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xadd5e881984783dd432f80381fb52f45b53f3e70": {
+    "assetId": "eip155:1/erc20:0xadd5e881984783dd432f80381fb52f45b53f3e70",
+    "chainId": "eip155:1",
+    "name": "Vite on Ethereum",
+    "precision": 18,
+    "color": "#0C2CEC",
+    "icon": "https://assets.coingecko.com/coins/images/4513/thumb/Vite.png?1696505098",
+    "symbol": "VITE",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xade00c28244d5ce17d72e40330b1c318cd12b7c3": {
+    "assetId": "eip155:1/erc20:0xade00c28244d5ce17d72e40330b1c318cd12b7c3",
+    "chainId": "eip155:1",
+    "name": "AdEx on Ethereum",
+    "precision": 18,
+    "color": "#0D73BA",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xADE00C28244d5CE17D72E40330B1c318cD12B7c3/logo.png",
+    "symbol": "ADX",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xade6057fcafa57d6d51ffa341c64ce4814995995": {
+    "assetId": "eip155:1/erc20:0xade6057fcafa57d6d51ffa341c64ce4814995995",
+    "chainId": "eip155:1",
+    "name": "Backed ZPR1   1 3 Month T Bill on Ethereum",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/32867/thumb/b-ZPR1-200x200.png?1699671603",
+    "symbol": "BZPR1",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xadf86e75d8f0f57e0288d0970e7407eaa49b3cab": {
+    "assetId": "eip155:1/erc20:0xadf86e75d8f0f57e0288d0970e7407eaa49b3cab",
+    "chainId": "eip155:1",
+    "name": "Apollo Crypto",
+    "precision": 9,
+    "color": "#04D752",
+    "icon": "https://assets.coingecko.com/coins/images/22606/thumb/apollo-icon-green-black-w3-200.png?1696521922",
+    "symbol": "APOLLO",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xae05559e5bc86ecca132956fa0482dd7d4b2d76d": {
+    "assetId": "eip155:1/erc20:0xae05559e5bc86ecca132956fa0482dd7d4b2d76d",
+    "chainId": "eip155:1",
+    "name": "Flooring Protocol  CloneX",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/32767/thumb/clonex_logo.30687847_%281%29.png?1699336155",
+    "symbol": "CLONEX",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xae0585a259a3bcab258d6ee02fb583f7b33c2a12": {
+    "assetId": "eip155:1/erc20:0xae0585a259a3bcab258d6ee02fb583f7b33c2a12",
+    "chainId": "eip155:1",
+    "name": "TemDAO",
+    "precision": 18,
+    "color": "#F9E8F9",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xaE0585a259A3BCAB258D6EE02FB583f7B33C2a12/logo.png",
+    "symbol": "TEM",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xae12c5930881c53715b369cec7606b70d8eb229f": {
+    "assetId": "eip155:1/erc20:0xae12c5930881c53715b369cec7606b70d8eb229f",
+    "chainId": "eip155:1",
+    "name": "Coin98 on Ethereum",
+    "precision": 18,
+    "color": "#D9B44E",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xAE12C5930881c53715B369ceC7606B70d8EB229f/logo.png",
+    "symbol": "C98",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xae3359ed3c567482fb0102c584c23daa2693eacf": {
+    "assetId": "eip155:1/erc20:0xae3359ed3c567482fb0102c584c23daa2693eacf",
+    "chainId": "eip155:1",
+    "name": "DORK",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/32704/thumb/Coin_2.png?1698985483",
+    "symbol": "DORK",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xae36155a55f04a696b8362777620027882b31db5": {
+    "assetId": "eip155:1/erc20:0xae36155a55f04a696b8362777620027882b31db5",
+    "chainId": "eip155:1",
+    "name": "Kishimoto on Ethereum",
+    "precision": 9,
+    "color": "#6C6C6C",
+    "icon": "https://assets.coingecko.com/coins/images/28011/thumb/kishimoto.png?1696527027",
+    "symbol": "KISHIMOTO",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xae377ed00df9b9663b253be93035ef1cfecbc1fb": {
+    "assetId": "eip155:1/erc20:0xae377ed00df9b9663b253be93035ef1cfecbc1fb",
+    "chainId": "eip155:1",
+    "name": "ALERT",
+    "precision": 9,
+    "color": "#141423",
+    "icon": "https://assets.coingecko.com/coins/images/28931/thumb/Safeimagekit-resized-img.png?1696527906",
+    "symbol": "ALERT",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xae697f994fc5ebc000f8e22ebffee04612f98a0d": {
+    "assetId": "eip155:1/erc20:0xae697f994fc5ebc000f8e22ebffee04612f98a0d",
+    "chainId": "eip155:1",
+    "name": "LGCY Network",
+    "precision": 18,
+    "color": "#252525",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xaE697F994Fc5eBC000F8e22EbFfeE04612f98A0d/logo.png",
+    "symbol": "LGCY",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xae6e307c3fe9e922e5674dbd7f830ed49c014c6b": {
+    "assetId": "eip155:1/erc20:0xae6e307c3fe9e922e5674dbd7f830ed49c014c6b",
+    "chainId": "eip155:1",
+    "name": "Credefi on Ethereum",
+    "precision": 18,
+    "color": "#234579",
+    "icon": "https://assets.coingecko.com/coins/images/21396/thumb/e1QbZ4qQ_400x400.jpg?1696520760",
+    "symbol": "CREDI",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xae78736cd615f374d3085123a210448e74fc6393": {
+    "assetId": "eip155:1/erc20:0xae78736cd615f374d3085123a210448e74fc6393",
+    "chainId": "eip155:1",
+    "name": "Rocket Pool ETH on Ethereum",
+    "precision": 18,
+    "color": "#FCA584",
+    "icon": "https://assets.coingecko.com/coins/images/20764/thumb/reth.png?1696520159",
+    "symbol": "RETH",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xae788f80f2756a86aa2f410c651f2af83639b95b": {
+    "assetId": "eip155:1/erc20:0xae788f80f2756a86aa2f410c651f2af83639b95b",
+    "chainId": "eip155:1",
+    "name": "GensoKishi Metaverse on Ethereum",
+    "precision": 18,
+    "color": "#DF8320",
+    "icon": "https://assets.coingecko.com/coins/images/23143/thumb/geno.png?1696522435",
+    "symbol": "MV",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xae7ab96520de3a18e5e111b5eaab095312d7fe84": {
+    "assetId": "eip155:1/erc20:0xae7ab96520de3a18e5e111b5eaab095312d7fe84",
+    "chainId": "eip155:1",
+    "name": "Lido Staked Ether",
+    "precision": 18,
+    "color": "#04A4FC",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xae7ab96520DE3A18E5e111B5EaAb095312D7fE84/logo.png",
+    "symbol": "STETH",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xae83511c4ef07358e2d95b0c219a5f9eb8656a61": {
+    "assetId": "eip155:1/erc20:0xae83511c4ef07358e2d95b0c219a5f9eb8656a61",
+    "chainId": "eip155:1",
+    "name": "Baby Floki on Ethereum",
+    "precision": 18,
+    "color": "#8D72DC",
+    "icon": "https://assets.coingecko.com/coins/images/31514/thumb/photo_2023-08-26_19.34.41.jpeg?1696530324",
+    "symbol": "BABYFLOKI",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xae9d553c85eef99c0ef9169f0d49ef33f5275f94": {
+    "assetId": "eip155:1/erc20:0xae9d553c85eef99c0ef9169f0d49ef33f5275f94",
+    "chainId": "eip155:1",
+    "name": "Dex Sniffer",
+    "precision": 9,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/32944/thumb/DS.jpg?1699887500",
+    "symbol": "DS",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xaea46a60368a7bd060eec7df8cba43b7ef41ad85": {
+    "assetId": "eip155:1/erc20:0xaea46a60368a7bd060eec7df8cba43b7ef41ad85",
+    "chainId": "eip155:1",
+    "name": "Fetch ai on Ethereum",
+    "precision": 18,
+    "color": "#1C2C44",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xaea46A60368A7bD060eec7DF8CBa43b7EF41Ad85/logo.png",
+    "symbol": "FET",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xaeba88c4df7e92af27fcaa7087c18dab4be9e607": {
+    "assetId": "eip155:1/erc20:0xaeba88c4df7e92af27fcaa7087c18dab4be9e607",
+    "chainId": "eip155:1",
+    "name": "Teat",
+    "precision": 9,
+    "color": "#DD7F84",
+    "icon": "https://assets.coingecko.com/coins/images/32064/thumb/Remove_background_project.png?1696530861",
+    "symbol": "TEAT",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009": {
+    "assetId": "eip155:1/erc20:0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009",
+    "chainId": "eip155:1",
+    "name": "SingularDTV",
+    "precision": 0,
+    "color": "#AC0C1C",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xaeC2E87E0A235266D9C5ADc9DEb4b2E29b54D009/logo.png",
+    "symbol": "SNGLS",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xaec65404ddc3af3c897ad89571d5772c1a695f22": {
+    "assetId": "eip155:1/erc20:0xaec65404ddc3af3c897ad89571d5772c1a695f22",
+    "chainId": "eip155:1",
+    "name": "Phoenix Finance on Ethereum",
+    "precision": 18,
+    "color": "#CD2628",
+    "icon": "https://assets.coingecko.com/coins/images/17675/thumb/phx_logo.png?1696517205",
+    "symbol": "PHX",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xaec7d1069e3a914a3eb50f0bfb1796751f2ce48a": {
+    "assetId": "eip155:1/erc20:0xaec7d1069e3a914a3eb50f0bfb1796751f2ce48a",
+    "chainId": "eip155:1",
+    "name": "S4FE on Ethereum",
+    "precision": 18,
+    "color": "#E4B323",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xAec7d1069e3a914a3EB50f0BFB1796751f2ce48a/logo.png",
+    "symbol": "S4F",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xaecc217a749c2405b5ebc9857a16d58bdc1c367f": {
+    "assetId": "eip155:1/erc20:0xaecc217a749c2405b5ebc9857a16d58bdc1c367f",
+    "chainId": "eip155:1",
+    "name": "Pawthereum on Ethereum",
+    "precision": 9,
+    "color": "#FC65B4",
+    "icon": "https://assets.coingecko.com/coins/images/19275/thumb/pawth.png?1696518718",
+    "symbol": "PAWTH",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xaed8077b25c88af2e711abdcc24ef9389b028876": {
+    "assetId": "eip155:1/erc20:0xaed8077b25c88af2e711abdcc24ef9389b028876",
+    "chainId": "eip155:1",
+    "name": "PogeX",
+    "precision": 18,
+    "color": "#67CF64",
+    "icon": "https://assets.coingecko.com/coins/images/31878/thumb/photo_2023-09-02_16-29-11_%281%29.jpg?1696530690",
+    "symbol": "POGEX",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xaedf386b755465871ff874e3e37af5976e247064": {
+    "assetId": "eip155:1/erc20:0xaedf386b755465871ff874e3e37af5976e247064",
+    "chainId": "eip155:1",
+    "name": "Fasttoken",
+    "precision": 18,
+    "color": "#FC048C",
+    "icon": "https://assets.coingecko.com/coins/images/28478/thumb/lightenicon_200x200.png?1696527472",
+    "symbol": "FTN",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xaee433adebe0fbb88daa47ef0c1a513caa52ef02": {
+    "assetId": "eip155:1/erc20:0xaee433adebe0fbb88daa47ef0c1a513caa52ef02",
+    "chainId": "eip155:1",
+    "name": "Pontoon on Ethereum",
+    "precision": 18,
+    "color": "#F4543C",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xaeE433ADeBe0FBB88dAa47eF0C1A513CaA52EF02/logo.png",
+    "symbol": "TOON",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xaef420fd77477d9dc8b46d704d44dd09d6c27866": {
+    "assetId": "eip155:1/erc20:0xaef420fd77477d9dc8b46d704d44dd09d6c27866",
+    "chainId": "eip155:1",
+    "name": "Cogito Protocol on Ethereum",
+    "precision": 6,
+    "color": "#C7CCCA",
+    "icon": "https://assets.coingecko.com/coins/images/30731/thumb/CGV.png?1698667079",
+    "symbol": "CGV",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xaf05ce8a2cef336006e933c02fc89887f5b3c726": {
+    "assetId": "eip155:1/erc20:0xaf05ce8a2cef336006e933c02fc89887f5b3c726",
+    "chainId": "eip155:1",
+    "name": "Lockheed Martin Inu",
+    "precision": 18,
+    "color": "#CABBD7",
+    "icon": "https://assets.coingecko.com/coins/images/32484/thumb/photo_2023-10-11_22-41-52_%281%29_%281%29.jpg?1698290653",
+    "symbol": "LMI",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xaf2ca40d3fc4459436d11b94d21fa4b8a89fb51d": {
+    "assetId": "eip155:1/erc20:0xaf2ca40d3fc4459436d11b94d21fa4b8a89fb51d",
+    "chainId": "eip155:1",
+    "name": "COTI Governance Token",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/32930/thumb/gCOTI_logo_icon200x200.png?1700669092",
+    "symbol": "GCOTI",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xaf4dce16da2877f8c9e00544c93b62ac40631f16": {
+    "assetId": "eip155:1/erc20:0xaf4dce16da2877f8c9e00544c93b62ac40631f16",
+    "chainId": "eip155:1",
+    "name": "Monetha",
+    "precision": 5,
+    "color": "#0D65D5",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xaF4DcE16Da2877f8c9e00544c93B62Ac40631F16/logo.png",
+    "symbol": "MTH",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xaf5191b0de278c7286d6c7cc6ab6bb8a73ba2cd6": {
+    "assetId": "eip155:1/erc20:0xaf5191b0de278c7286d6c7cc6ab6bb8a73ba2cd6",
+    "chainId": "eip155:1",
+    "name": "Stargate Finance on Ethereum",
+    "precision": 18,
+    "color": "#040404",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xAf5191B0De278C7286d6C7CC6ab6BB8A73bA2Cd6/logo.png",
+    "symbol": "STG",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xaf6a1125d4cc55a4110dc63cd2ff6e005afb8676": {
+    "assetId": "eip155:1/erc20:0xaf6a1125d4cc55a4110dc63cd2ff6e005afb8676",
+    "chainId": "eip155:1",
+    "name": "PunkCity",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/31049/thumb/F4FDA24D-1B29-4CBB-8346-854D1BFFE75A.png?1696529883",
+    "symbol": "PUNK",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xaf75d880b3128981d1fed3292fc02e3fb37acd53": {
+    "assetId": "eip155:1/erc20:0xaf75d880b3128981d1fed3292fc02e3fb37acd53",
+    "chainId": "eip155:1",
+    "name": "TruthGPT",
+    "precision": 9,
+    "color": "#161616",
+    "icon": "https://assets.coingecko.com/coins/images/29867/thumb/TruthGPT.png?1696528792",
+    "symbol": "TRUTH",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xaf8942831f3a096f708b8b31f191b8958cf176c5": {
+    "assetId": "eip155:1/erc20:0xaf8942831f3a096f708b8b31f191b8958cf176c5",
+    "chainId": "eip155:1",
+    "name": "Neural Radiance Field",
+    "precision": 18,
+    "color": "#AE4295",
+    "icon": "https://assets.coingecko.com/coins/images/29521/thumb/Neural_Radiance_Field.png?1696528464",
+    "symbol": "NERF",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xaf91e8afbe87642dc628786188a54b78580a4d76": {
+    "assetId": "eip155:1/erc20:0xaf91e8afbe87642dc628786188a54b78580a4d76",
+    "chainId": "eip155:1",
+    "name": "Fund Of Yours",
+    "precision": 18,
+    "color": "#342C19",
+    "icon": "https://assets.coingecko.com/coins/images/16648/thumb/foy200.png?1696516209",
+    "symbol": "FOY",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xaf9f549774ecedbd0966c52f250acc548d3f36e5": {
+    "assetId": "eip155:1/erc20:0xaf9f549774ecedbd0966c52f250acc548d3f36e5",
+    "chainId": "eip155:1",
+    "name": "RioDeFi on Ethereum",
+    "precision": 18,
+    "color": "#4C84F3",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xaf9f549774ecEDbD0966C52f250aCc548D3F36E5/logo.png",
+    "symbol": "RFUEL",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xafcdd4f666c84fed1d8bd825aa762e3714f652c9": {
+    "assetId": "eip155:1/erc20:0xafcdd4f666c84fed1d8bd825aa762e3714f652c9",
+    "chainId": "eip155:1",
+    "name": "Vita Inu on Ethereum",
+    "precision": 18,
+    "color": "#D6BFD8",
+    "icon": "https://assets.coingecko.com/coins/images/20594/thumb/vita-inu-head-wallet-icon-transparent.png?1696520000",
+    "symbol": "VINU",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xafe53eea0cfe20198328890b69107d5fd8159a77": {
+    "assetId": "eip155:1/erc20:0xafe53eea0cfe20198328890b69107d5fd8159a77",
+    "chainId": "eip155:1",
+    "name": "XAI",
+    "precision": 9,
+    "color": "#A9A9A9",
+    "icon": "https://assets.coingecko.com/coins/images/31117/thumb/LOGO.jpg?1696529947",
+    "symbol": "X",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xafe7131a57e44f832cb2de78ade38cad644aac2f": {
+    "assetId": "eip155:1/erc20:0xafe7131a57e44f832cb2de78ade38cad644aac2f",
+    "chainId": "eip155:1",
+    "name": "Morpho Aave Tether USD",
+    "precision": 18,
+    "color": "#56A6AE",
+    "icon": "https://assets.coingecko.com/coins/images/29834/thumb/maUSDT_%284%29.png?1696528762",
+    "symbol": "MAUSDT",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xb009bfaaf85e53f55d8657781eb69feaaed83672": {
+    "assetId": "eip155:1/erc20:0xb009bfaaf85e53f55d8657781eb69feaaed83672",
+    "chainId": "eip155:1",
+    "name": "EdgeSwap",
+    "precision": 18,
+    "color": "#323937",
+    "icon": "https://assets.coingecko.com/coins/images/24878/thumb/egs.png?1696524036",
+    "symbol": "EGS",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xb012be90957d70d9a070918027655f998c123a88": {
+    "assetId": "eip155:1/erc20:0xb012be90957d70d9a070918027655f998c123a88",
+    "chainId": "eip155:1",
+    "name": "Hermes DAO",
+    "precision": 18,
+    "color": "#807465",
+    "icon": "https://assets.coingecko.com/coins/images/29283/thumb/Hermes_DAO.png?1696528235",
+    "symbol": "HMX",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xb045f7f363fe4949954811b113bd56d208c67b23": {
+    "assetId": "eip155:1/erc20:0xb045f7f363fe4949954811b113bd56d208c67b23",
+    "chainId": "eip155:1",
+    "name": "Spider Tanks",
+    "precision": 8,
+    "color": "#EC761A",
+    "icon": "https://assets.coingecko.com/coins/images/28057/thumb/SILK_Logo.png?1696527069",
+    "symbol": "SILK",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xb04bf60e468743418e87291d7c9301a5299d984d": {
+    "assetId": "eip155:1/erc20:0xb04bf60e468743418e87291d7c9301a5299d984d",
+    "chainId": "eip155:1",
+    "name": "FOREVER SHIBA",
+    "precision": 18,
+    "color": "#C66D3E",
+    "icon": "https://assets.coingecko.com/coins/images/29110/thumb/4shiba_logo.png?1696528073",
+    "symbol": "4SHIBA",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xb04dfdb8271ed2d5e13858562c44a77d3ceb9e57": {
+    "assetId": "eip155:1/erc20:0xb04dfdb8271ed2d5e13858562c44a77d3ceb9e57",
+    "chainId": "eip155:1",
+    "name": "BuildUp",
+    "precision": 18,
+    "color": "#E2C26D",
+    "icon": "https://assets.coingecko.com/coins/images/13206/thumb/BUP_-_LOGO.png?1696512987",
+    "symbol": "BUP",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xb056c38f6b7dc4064367403e26424cd2c60655e1": {
+    "assetId": "eip155:1/erc20:0xb056c38f6b7dc4064367403e26424cd2c60655e1",
+    "chainId": "eip155:1",
+    "name": "CEEK Smart VR on Ethereum",
+    "precision": 18,
+    "color": "#1319FB",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xb056c38f6b7Dc4064367403E26424CD2c60655e1/logo.png",
+    "symbol": "CEEK",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xb06b8186cc008a79fd6722b1eefad07c14e97da0": {
+    "assetId": "eip155:1/erc20:0xb06b8186cc008a79fd6722b1eefad07c14e97da0",
+    "chainId": "eip155:1",
+    "name": "Sign Token",
+    "precision": 18,
+    "color": "#8208F4",
+    "icon": "https://assets.coingecko.com/coins/images/26495/thumb/PWRjbqG9_400x400.png?1696525569",
+    "symbol": "SIGN",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xb076bda1abc154ddb4ccd9be45542a823aee290e": {
+    "assetId": "eip155:1/erc20:0xb076bda1abc154ddb4ccd9be45542a823aee290e",
+    "chainId": "eip155:1",
+    "name": "FlexMeme",
+    "precision": 18,
+    "color": "#354444",
+    "icon": "https://assets.coingecko.com/coins/images/30018/thumb/flexmeme.png?1696528942",
+    "symbol": "FLEX",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xb098af638af0c4fa3edb1a24f807e9c22da0fe73": {
+    "color": "#FFFFFF",
+    "icon": "https://raw.githubusercontent.com/Idle-Labs/idle-dashboard/master/public/images/tokens/DAI.svg",
+    "name": "MorphoAave DAI Junior Tranche",
+    "precision": 18,
+    "symbol": "BB_maDAI",
+    "chainId": "eip155:1",
+    "assetId": "eip155:1/erc20:0xb098af638af0c4fa3edb1a24f807e9c22da0fe73",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xb0b195aefa3650a6908f15cdac7d92f8a5791b0b": {
+    "assetId": "eip155:1/erc20:0xb0b195aefa3650a6908f15cdac7d92f8a5791b0b",
+    "chainId": "eip155:1",
+    "name": "BOB on Ethereum",
+    "precision": 18,
+    "color": "#A265FC",
+    "icon": "https://assets.coingecko.com/coins/images/27266/thumb/Bob-logo.png?1696526318",
+    "symbol": "BOB",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xb0c7a3ba49c7a6eaba6cd4a96c55a1391070ac9a": {
+    "assetId": "eip155:1/erc20:0xb0c7a3ba49c7a6eaba6cd4a96c55a1391070ac9a",
+    "chainId": "eip155:1",
+    "name": "Magic on Ethereum",
+    "precision": 18,
+    "color": "#DD3B39",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xB0c7a3Ba49C7a6EaBa6cD4a96C55a1391070Ac9A/logo.png",
+    "symbol": "MAGIC",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xb0e99627bc29adef1178f16117bf495351e81997": {
+    "assetId": "eip155:1/erc20:0xb0e99627bc29adef1178f16117bf495351e81997",
+    "chainId": "eip155:1",
+    "name": "Dex Trade Coin",
+    "precision": 18,
+    "color": "#E6E6EC",
+    "icon": "https://assets.coingecko.com/coins/images/15025/thumb/R1A63oDx_400x400.jpg?1696514686",
+    "symbol": "DXC",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xb0ed33f79d89541dfdcb04a8f04bc2c6be025ecc": {
+    "assetId": "eip155:1/erc20:0xb0ed33f79d89541dfdcb04a8f04bc2c6be025ecc",
+    "chainId": "eip155:1",
+    "name": "ZeroLiquid",
+    "precision": 18,
+    "color": "#2690DE",
+    "icon": "https://assets.coingecko.com/coins/images/29499/thumb/IMG_20230726_094105_915.png?1696528444",
+    "symbol": "ZERO",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xb10cc888cb2cce7036f4c7ecad8a57da16161338": {
+    "assetId": "eip155:1/erc20:0xb10cc888cb2cce7036f4c7ecad8a57da16161338",
+    "chainId": "eip155:1",
+    "name": "Switch Token",
+    "precision": 8,
+    "color": "#EDF8F6",
+    "icon": "https://assets.coingecko.com/coins/images/30140/thumb/SWITCH-200x200-Circle_Token.jpg?1696529061",
+    "symbol": "SWITCH",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xb113c6cf239f60d380359b762e95c13817275277": {
+    "assetId": "eip155:1/erc20:0xb113c6cf239f60d380359b762e95c13817275277",
+    "chainId": "eip155:1",
+    "name": "BitMEX",
+    "precision": 6,
+    "color": "#364AAC",
+    "icon": "https://assets.coingecko.com/coins/images/21831/thumb/bitmex-token.jpeg?1696521187",
+    "symbol": "BMEX",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xb1191f691a355b43542bea9b8847bc73e7abb137": {
+    "assetId": "eip155:1/erc20:0xb1191f691a355b43542bea9b8847bc73e7abb137",
+    "chainId": "eip155:1",
+    "name": "KIRO on Ethereum",
+    "precision": 18,
+    "color": "#445464",
+    "icon": "https://assets.coingecko.com/coins/images/12688/thumb/logo_kirobo-04.png?1696512491",
+    "symbol": "KIRO",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xb131f337c45d386ceec234e194b2663d5c3d9dcf": {
+    "assetId": "eip155:1/erc20:0xb131f337c45d386ceec234e194b2663d5c3d9dcf",
+    "chainId": "eip155:1",
+    "name": "iCommunity",
+    "precision": 18,
+    "color": "#B4CCFC",
+    "icon": "https://assets.coingecko.com/coins/images/23667/thumb/logo-icommunity.png?1696522869",
+    "symbol": "ICOM",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xb131f4a55907b10d1f0a50d8ab8fa09ec342cd74": {
+    "assetId": "eip155:1/erc20:0xb131f4a55907b10d1f0a50d8ab8fa09ec342cd74",
+    "chainId": "eip155:1",
+    "name": "Memecoin on Ethereum",
+    "precision": 18,
+    "color": "#D49B4E",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xb131f4A55907B10d1F0A50d8ab8FA09EC342cd74/logo.png",
+    "symbol": "MEME",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xb13de094cc5cee6c4cc0a3737bf0290166d9ca5d": {
+    "assetId": "eip155:1/erc20:0xb13de094cc5cee6c4cc0a3737bf0290166d9ca5d",
+    "chainId": "eip155:1",
+    "name": "GoWithMi",
+    "precision": 18,
+    "color": "#FCB412",
+    "icon": "https://assets.coingecko.com/coins/images/7162/thumb/qXNbxVny_400x400.png?1696507459",
+    "symbol": "GMAT",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xb14ebf566511b9e6002bb286016ab2497b9b9c9d": {
+    "assetId": "eip155:1/erc20:0xb14ebf566511b9e6002bb286016ab2497b9b9c9d",
+    "chainId": "eip155:1",
+    "name": "Hypersign Identity on Ethereum",
+    "precision": 18,
+    "color": "#3B3B3C",
+    "icon": "https://assets.coingecko.com/coins/images/16158/thumb/hypersign.png?1696515762",
+    "symbol": "HID",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xb167b290d172eb33e221309592df0c042ab9dcdd": {
+    "assetId": "eip155:1/erc20:0xb167b290d172eb33e221309592df0c042ab9dcdd",
+    "chainId": "eip155:1",
+    "name": "SonicBOT",
+    "precision": 9,
+    "color": "#151F2F",
+    "icon": "https://assets.coingecko.com/coins/images/31476/thumb/1000002007.jpg?1696530288",
+    "symbol": "SONICBOT",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xb16ada27e4bc05bc7b113d0b0fd4962fe1ce2813": {
+    "assetId": "eip155:1/erc20:0xb16ada27e4bc05bc7b113d0b0fd4962fe1ce2813",
+    "chainId": "eip155:1",
+    "name": "RugBet",
+    "precision": 18,
+    "color": "#0877BB",
+    "icon": "https://assets.coingecko.com/coins/images/31447/thumb/photo_2023-08-12_20-54-21.jpg?1696530261",
+    "symbol": "RBET",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xb16d3ed603d62b125c6bd45519eda40829549489": {
+    "assetId": "eip155:1/erc20:0xb16d3ed603d62b125c6bd45519eda40829549489",
+    "chainId": "eip155:1",
+    "name": "Insureum",
+    "precision": 18,
+    "color": "#5995C6",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xB16d3Ed603D62b125c6bd45519EDa40829549489/logo.png",
+    "symbol": "ISR",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xb17548c7b510427baac4e267bea62e800b247173": {
+    "assetId": "eip155:1/erc20:0xb17548c7b510427baac4e267bea62e800b247173",
+    "chainId": "eip155:1",
+    "name": "Swarm Markets on Ethereum",
+    "precision": 18,
+    "color": "#047AF4",
+    "icon": "https://assets.coingecko.com/coins/images/17488/thumb/swarm-SMT-token-symbol_200x200.png?1696517029",
+    "symbol": "SMT",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xb17c88bda07d28b3838e0c1de6a30eafbcf52d85": {
+    "assetId": "eip155:1/erc20:0xb17c88bda07d28b3838e0c1de6a30eafbcf52d85",
+    "chainId": "eip155:1",
+    "name": "Shyft Network",
+    "precision": 18,
+    "color": "#B66067",
+    "icon": "https://assets.coingecko.com/coins/images/14534/thumb/TOKEN-Gradient.png?1696514218",
+    "symbol": "SHFT",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xb17d69c91135516b0256c67e8bd32cd238b56161": {
+    "assetId": "eip155:1/erc20:0xb17d69c91135516b0256c67e8bd32cd238b56161",
+    "chainId": "eip155:1",
+    "name": "Gravitas",
+    "precision": 9,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/32995/thumb/200photo_2023-11-12_14-07-05.jpg?1700110430",
+    "symbol": "GRAVITAS",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xb186035490c8602ead853ec98be05e3461521ab2": {
+    "assetId": "eip155:1/erc20:0xb186035490c8602ead853ec98be05e3461521ab2",
+    "chainId": "eip155:1",
+    "name": "Pack",
+    "precision": 18,
+    "color": "#C0945F",
+    "icon": "https://assets.coingecko.com/coins/images/29556/thumb/Pack.png?1696528496",
+    "symbol": "PACK",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xb18f98822c22492bd6b77d19cae9367f3d60fcbf": {
+    "assetId": "eip155:1/erc20:0xb18f98822c22492bd6b77d19cae9367f3d60fcbf",
+    "chainId": "eip155:1",
+    "name": "StealthPad",
+    "precision": 8,
+    "color": "#151515",
+    "icon": "https://assets.coingecko.com/coins/images/31615/thumb/token.png?1696530432",
+    "symbol": "STEALTH",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xb19189fb36c816f3e0f16065057b07b790998fdc": {
+    "assetId": "eip155:1/erc20:0xb19189fb36c816f3e0f16065057b07b790998fdc",
+    "chainId": "eip155:1",
+    "name": "Serum SER",
+    "precision": 18,
+    "color": "#A4FC04",
+    "icon": "https://assets.coingecko.com/coins/images/27757/thumb/Untitled_%28200_x_200_px%29.png?1699041628",
+    "symbol": "SER",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xb197a6fdd8ab825332edeba1ab5c4d1bf97fb9a8": {
+    "assetId": "eip155:1/erc20:0xb197a6fdd8ab825332edeba1ab5c4d1bf97fb9a8",
+    "chainId": "eip155:1",
+    "name": "Shibarium DAO",
+    "precision": 18,
+    "color": "#DDA255",
+    "icon": "https://assets.coingecko.com/coins/images/28881/thumb/200x200.png?1696527858",
+    "symbol": "SHIBDAO",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xb19dd661f076998e3b0456935092a233e12c2280": {
+    "assetId": "eip155:1/erc20:0xb19dd661f076998e3b0456935092a233e12c2280",
+    "chainId": "eip155:1",
+    "name": "Continuum World on Ethereum",
+    "precision": 18,
+    "color": "#7C5026",
+    "icon": "https://assets.coingecko.com/coins/images/18798/thumb/Moneda.png?1696518260",
+    "symbol": "UM",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xb1a30851e3f7d841b231b086479608e17198363a": {
+    "assetId": "eip155:1/erc20:0xb1a30851e3f7d841b231b086479608e17198363a",
+    "chainId": "eip155:1",
+    "name": "Homeros on Ethereum",
+    "precision": 18,
+    "color": "#D2D8DA",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xB1A30851E3f7d841b231B086479608e17198363A/logo.png",
+    "symbol": "HMR",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xb1a822ce8c799b0777ed1f260113819247e1bf26": {
+    "assetId": "eip155:1/erc20:0xb1a822ce8c799b0777ed1f260113819247e1bf26",
+    "chainId": "eip155:1",
+    "name": "HairyPlotterFTX",
+    "precision": 18,
+    "color": "#BFB9B9",
+    "icon": "https://assets.coingecko.com/coins/images/32116/thumb/HairyPlotterFTX.png?1696585812",
+    "symbol": "FTX",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xb1c064c3f2908f741c9dea4afc5773238b53e6cc": {
+    "assetId": "eip155:1/erc20:0xb1c064c3f2908f741c9dea4afc5773238b53e6cc",
+    "chainId": "eip155:1",
+    "name": "WarioXRPDumbledoreYugioh69Inu",
+    "precision": 9,
+    "color": "#785C4E",
+    "icon": "https://assets.coingecko.com/coins/images/31167/thumb/ETYYcV7I_400x400.jpg?1696529995",
+    "symbol": "XRP",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xb1e4a5f70090947e6ad3fa2dc648cba7b6f913e9": {
+    "assetId": "eip155:1/erc20:0xb1e4a5f70090947e6ad3fa2dc648cba7b6f913e9",
+    "chainId": "eip155:1",
+    "name": "Philosoraptor",
+    "precision": 18,
+    "color": "#43E888",
+    "icon": "https://assets.coingecko.com/coins/images/30892/thumb/photo_2023-07-02_10-26-13.jpg?1696529738",
+    "symbol": "RAP",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xb1e9157c2fdcc5a856c8da8b2d89b6c32b3c1229": {
+    "assetId": "eip155:1/erc20:0xb1e9157c2fdcc5a856c8da8b2d89b6c32b3c1229",
+    "chainId": "eip155:1",
+    "name": "Zenfuse on Ethereum",
+    "precision": 18,
+    "color": "#0464FC",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xB1e9157c2Fdcc5a856C8DA8b2d89b6C32b3c1229/logo.png",
+    "symbol": "ZEFU",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xb1e93236ab6073fdac58ada5564897177d4bcc43": {
+    "assetId": "eip155:1/erc20:0xb1e93236ab6073fdac58ada5564897177d4bcc43",
+    "chainId": "eip155:1",
+    "name": "Seele",
+    "precision": 18,
+    "color": "#D5E1E5",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xB1e93236ab6073fdAC58adA5564897177D4bcC43/logo.png",
+    "symbol": "SEELE",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xb1ec065abf6783bcce003b8d6b9f947129504854": {
+    "color": "#FFFFFF",
+    "icon": "https://raw.githubusercontent.com/Idle-Labs/idle-dashboard/master/public/images/tokens/USDT.svg",
+    "name": "Euler USDT Junior Tranche",
+    "precision": 18,
+    "symbol": "BB_eUSDT",
+    "chainId": "eip155:1",
+    "assetId": "eip155:1/erc20:0xb1ec065abf6783bcce003b8d6b9f947129504854",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xb1f136a74e18e4e2921febbf25820d1bb65b5647": {
+    "assetId": "eip155:1/erc20:0xb1f136a74e18e4e2921febbf25820d1bb65b5647",
+    "chainId": "eip155:1",
+    "name": "hiPunks",
+    "precision": 18,
+    "color": "#885044",
+    "icon": "https://assets.coingecko.com/coins/images/26739/thumb/hipunks.png?1696525808",
+    "symbol": "HIPUNKS",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xb1f1ee126e9c96231cc3d3fad7c08b4cf873b1f1": {
+    "assetId": "eip155:1/erc20:0xb1f1ee126e9c96231cc3d3fad7c08b4cf873b1f1",
+    "chainId": "eip155:1",
+    "name": "Beefy",
+    "precision": 18,
+    "color": "#E5DED4",
+    "icon": "https://assets.coingecko.com/coins/images/12704/thumb/bifi.png?1698202580",
+    "symbol": "BIFI",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xb1f1f47061a7be15c69f378cb3f69423bd58f2f8": {
+    "assetId": "eip155:1/erc20:0xb1f1f47061a7be15c69f378cb3f69423bd58f2f8",
+    "chainId": "eip155:1",
+    "name": "Flashstake on Ethereum",
+    "precision": 18,
+    "color": "#070808",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xB1f1F47061A7Be15C69f378CB3f69423bD58F2F8/logo.png",
+    "symbol": "FLASH",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xb1f66997a5760428d3a87d68b90bfe0ae64121cc": {
+    "assetId": "eip155:1/erc20:0xb1f66997a5760428d3a87d68b90bfe0ae64121cc",
+    "chainId": "eip155:1",
+    "name": "LuaSwap",
+    "precision": 18,
+    "color": "#FCBC44",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xB1f66997A5760428D3a87D68b90BfE0aE64121cC/logo.png",
+    "symbol": "LUA",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xb1f871ae9462f1b2c6826e88a7827e76f86751d4": {
+    "assetId": "eip155:1/erc20:0xb1f871ae9462f1b2c6826e88a7827e76f86751d4",
+    "chainId": "eip155:1",
+    "name": "GNY on Ethereum",
+    "precision": 18,
+    "color": "#F2F5F5",
+    "icon": "https://assets.coingecko.com/coins/images/5300/thumb/GNY_LOGO_NEW_TRANS.png?1696505799",
+    "symbol": "GNY",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xb2114e5420927932666a5c5bd1ac4e14d9ede32b": {
+    "assetId": "eip155:1/erc20:0xb2114e5420927932666a5c5bd1ac4e14d9ede32b",
+    "chainId": "eip155:1",
+    "name": "Pig 2 0",
+    "precision": 9,
+    "color": "#D6A8A9",
+    "icon": "https://assets.coingecko.com/coins/images/30942/thumb/200_%284%29.png?1696529781",
+    "symbol": "PIG20",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xb23d80f5fefcddaa212212f028021b41ded428cf": {
+    "assetId": "eip155:1/erc20:0xb23d80f5fefcddaa212212f028021b41ded428cf",
+    "chainId": "eip155:1",
+    "name": "Echelon Prime",
+    "precision": 18,
+    "color": "#9C9C9C",
+    "icon": "https://assets.coingecko.com/coins/images/29053/thumb/prime-logo-small-border_%282%29.png?1696528020",
+    "symbol": "PRIME",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xb244b3574a5627849fca2057e3854340def63071": {
+    "assetId": "eip155:1/erc20:0xb244b3574a5627849fca2057e3854340def63071",
+    "chainId": "eip155:1",
+    "name": "Veil Exchange",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/32624/thumb/HeIMUGIE_400x400.jpg?1698822478",
+    "symbol": "VEIL",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xb2492e97a68a6e4b9e9a11b99f6c42e5accd38c7": {
+    "assetId": "eip155:1/erc20:0xb2492e97a68a6e4b9e9a11b99f6c42e5accd38c7",
+    "chainId": "eip155:1",
+    "name": "Veloce on Ethereum",
+    "precision": 18,
+    "color": "#E7EBF4",
+    "icon": "https://assets.coingecko.com/coins/images/31214/thumb/VEXT_Logo.jpg?1696530041",
+    "symbol": "VEXT",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xb24cd494fae4c180a89975f1328eab2a7d5d8f11": {
+    "assetId": "eip155:1/erc20:0xb24cd494fae4c180a89975f1328eab2a7d5d8f11",
+    "chainId": "eip155:1",
+    "name": "Developer DAO",
+    "precision": 18,
+    "color": "#B9B9B9",
+    "icon": "https://assets.coingecko.com/coins/images/27011/thumb/CHWxD9GV_400x400.jpeg?1696526063",
+    "symbol": "CODE",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xb25ea095997f5bbaa6cea962c4fbf3bfc3c09776": {
+    "assetId": "eip155:1/erc20:0xb25ea095997f5bbaa6cea962c4fbf3bfc3c09776",
+    "chainId": "eip155:1",
+    "name": "Promethios on Ethereum",
+    "precision": 9,
+    "color": "#BC6220",
+    "icon": "https://assets.coingecko.com/coins/images/30750/thumb/Fire_Logo.png?1696529619",
+    "symbol": "FIRE",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xb2617246d0c6c0087f18703d576831899ca94f01": {
+    "assetId": "eip155:1/erc20:0xb2617246d0c6c0087f18703d576831899ca94f01",
+    "chainId": "eip155:1",
+    "name": "Zignaly",
+    "precision": 18,
+    "color": "#8F75C8",
+    "icon": "https://assets.coingecko.com/coins/images/14796/thumb/zignaly.jpg?1696514465",
+    "symbol": "ZIG",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xb26631c6dda06ad89b93c71400d25692de89c068": {
+    "assetId": "eip155:1/erc20:0xb26631c6dda06ad89b93c71400d25692de89c068",
+    "chainId": "eip155:1",
+    "name": "Minds",
+    "precision": 18,
+    "color": "#5A585A",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xB26631c6dda06aD89B93C71400D25692de89c068/logo.png",
+    "symbol": "MINDS",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xb26c4b3ca601136daf98593feaeff9e0ca702a8d": {
+    "assetId": "eip155:1/erc20:0xb26c4b3ca601136daf98593feaeff9e0ca702a8d",
+    "chainId": "eip155:1",
+    "name": "Aladdin DAO",
+    "precision": 18,
+    "color": "#D04814",
+    "icon": "https://assets.coingecko.com/coins/images/18277/thumb/78200839.png?1696517771",
+    "symbol": "ALD",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xb28f803a8772e6584a65ab6dfc535ae6fef8a0b2": {
+    "assetId": "eip155:1/erc20:0xb28f803a8772e6584a65ab6dfc535ae6fef8a0b2",
+    "chainId": "eip155:1",
+    "name": "Lunafi on Ethereum",
+    "precision": 18,
+    "color": "#060708",
+    "icon": "https://assets.coingecko.com/coins/images/24594/thumb/lfi.png?1696523768",
+    "symbol": "LFI",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xb29663aa4e2e81e425294193616c1b102b70a158": {
+    "assetId": "eip155:1/erc20:0xb29663aa4e2e81e425294193616c1b102b70a158",
+    "chainId": "eip155:1",
+    "name": "Ludena Protocol",
+    "precision": 18,
+    "color": "#7434EC",
+    "icon": "https://assets.coingecko.com/coins/images/13372/thumb/LudenaProtocol_symbol_200x200.png?1696513136",
+    "symbol": "LDN",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xb2a63a5dd36c91ec2da59b188ff047f66fac122a": {
+    "assetId": "eip155:1/erc20:0xb2a63a5dd36c91ec2da59b188ff047f66fac122a",
+    "chainId": "eip155:1",
+    "name": "Alpha Impact",
+    "precision": 18,
+    "color": "#141414",
+    "icon": "https://assets.coingecko.com/coins/images/19988/thumb/folo.PNG?1696519411",
+    "symbol": "FOLO",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xb2cabf797bc907b049e4ccb5b84d13be3a8cfc21": {
+    "assetId": "eip155:1/erc20:0xb2cabf797bc907b049e4ccb5b84d13be3a8cfc21",
+    "chainId": "eip155:1",
+    "name": "Arable Protocol on Ethereum",
+    "precision": 18,
+    "color": "#BFC8C0",
+    "icon": "https://assets.coingecko.com/coins/images/23659/thumb/acre_token-02.png?1696522862",
+    "symbol": "ACRE",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xb2d2e1309db33b38a19ee2a7cd9cb5de39d76663": {
+    "assetId": "eip155:1/erc20:0xb2d2e1309db33b38a19ee2a7cd9cb5de39d76663",
+    "chainId": "eip155:1",
+    "name": "colR Coin",
+    "precision": 18,
+    "color": "#F4FCFC",
+    "icon": "https://assets.coingecko.com/coins/images/26701/thumb/Untitled_%281%29.png?1696525774",
+    "symbol": "COLR",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xb2dbf14d0b47ed3ba02bdb7c954e05a72deb7544": {
+    "assetId": "eip155:1/erc20:0xb2dbf14d0b47ed3ba02bdb7c954e05a72deb7544",
+    "chainId": "eip155:1",
+    "name": "MobiFi",
+    "precision": 18,
+    "color": "#29C406",
+    "icon": "https://assets.coingecko.com/coins/images/14697/thumb/MOFI_Coin_Green_200x200.png?1696514369",
+    "symbol": "MOFI",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xb2e96a63479c2edd2fd62b382c89d5ca79f572d3": {
+    "assetId": "eip155:1/erc20:0xb2e96a63479c2edd2fd62b382c89d5ca79f572d3",
+    "chainId": "eip155:1",
+    "name": "Zenon",
+    "precision": 8,
+    "color": "#1E9E25",
+    "icon": "https://assets.coingecko.com/coins/images/30753/thumb/zenon.jpg?1696529622",
+    "symbol": "ZNN",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xb2ee0adbe0ef1281025d0676511bb1df14600f4d": {
+    "assetId": "eip155:1/erc20:0xb2ee0adbe0ef1281025d0676511bb1df14600f4d",
+    "chainId": "eip155:1",
+    "name": "FORE Protocol on Ethereum",
+    "precision": 18,
+    "color": "#040404",
+    "icon": "https://assets.coingecko.com/coins/images/31001/thumb/EXCHANGE_LOGO_FORE.png?1696529839",
+    "symbol": "FORE",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xb2f79d891f11bc8e9805db135defc04ead8d780e": {
+    "assetId": "eip155:1/erc20:0xb2f79d891f11bc8e9805db135defc04ead8d780e",
+    "chainId": "eip155:1",
+    "name": "All In One Wallet",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/32643/thumb/AIO.jpeg?1698892673",
+    "symbol": "AIO",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xb2fd1e0478dbf61772996bcce8a2f1151eeeda37": {
+    "assetId": "eip155:1/erc20:0xb2fd1e0478dbf61772996bcce8a2f1151eeeda37",
+    "chainId": "eip155:1",
+    "name": "Wrapped Pepe",
+    "precision": 18,
+    "color": "#4C8F42",
+    "icon": "https://assets.coingecko.com/coins/images/30961/thumb/200.png?1696529801",
+    "symbol": "WPEPE",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xb30f5d11b94efbbfdeaa4de38edffceec0be6513": {
+    "assetId": "eip155:1/erc20:0xb30f5d11b94efbbfdeaa4de38edffceec0be6513",
+    "chainId": "eip155:1",
+    "name": "Play It Forward DAO",
+    "precision": 18,
+    "color": "#FCBF08",
+    "icon": "https://assets.coingecko.com/coins/images/22904/thumb/pif.png?1696522200",
+    "symbol": "PIF",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xb31ef9e52d94d4120eb44fe1ddfde5b4654a6515": {
+    "assetId": "eip155:1/erc20:0xb31ef9e52d94d4120eb44fe1ddfde5b4654a6515",
+    "chainId": "eip155:1",
+    "name": "DOSE on Ethereum",
+    "precision": 18,
+    "color": "#E8D3C1",
+    "icon": "https://assets.coingecko.com/coins/images/18847/thumb/dose.PNG?1696518308",
+    "symbol": "DOSE",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xb3207935ff56120f3499e8ad08461dd403bf16b8": {
+    "assetId": "eip155:1/erc20:0xb3207935ff56120f3499e8ad08461dd403bf16b8",
+    "chainId": "eip155:1",
+    "name": "dAMM",
+    "precision": 18,
+    "color": "#3577CC",
+    "icon": "https://assets.coingecko.com/coins/images/28082/thumb/dAMM_logo_round_-_dark.png?1696527092",
+    "symbol": "DAMM",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xb3319f5d18bc0d84dd1b4825dcde5d5f7266d407": {
+    "assetId": "eip155:1/erc20:0xb3319f5d18bc0d84dd1b4825dcde5d5f7266d407",
+    "chainId": "eip155:1",
+    "name": "c0x",
+    "precision": 8,
+    "color": "#5DAFCF",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xB3319f5D18Bc0D84dD1b4825Dcde5d5f7266d407/logo.png",
+    "symbol": "CZRX",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xb37ea37de1075b7d2f6b64e768917b174639a59c": {
+    "assetId": "eip155:1/erc20:0xb37ea37de1075b7d2f6b64e768917b174639a59c",
+    "chainId": "eip155:1",
+    "name": "AggrX",
+    "precision": 9,
+    "color": "#871CE4",
+    "icon": "https://assets.coingecko.com/coins/images/31205/thumb/0xb37ea37de1075b7d2f6b64e768917b174639a59c.png?1696530032",
+    "symbol": "AGGRX",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xb39185e33e8c28e0bb3dbbce24da5dea6379ae91": {
+    "assetId": "eip155:1/erc20:0xb39185e33e8c28e0bb3dbbce24da5dea6379ae91",
+    "chainId": "eip155:1",
+    "name": "PHUNK Vault  NFTX ",
+    "precision": 18,
+    "color": "#FAE8EA",
+    "icon": "https://assets.coingecko.com/coins/images/17074/thumb/Phunks.png?1696516636",
+    "symbol": "PHUNK",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xb399511642fe1666c6a07f83483e6e4feaed9a00": {
+    "assetId": "eip155:1/erc20:0xb399511642fe1666c6a07f83483e6e4feaed9a00",
+    "chainId": "eip155:1",
+    "name": "The Standard EURO on Ethereum",
+    "precision": 18,
+    "color": "#EECA27",
+    "icon": "https://assets.coingecko.com/coins/images/32231/thumb/EUROs-coingecko.png?1696936278",
+    "symbol": "EUROS",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xb3999f658c0391d94a37f7ff328f3fec942bcadc": {
+    "assetId": "eip155:1/erc20:0xb3999f658c0391d94a37f7ff328f3fec942bcadc",
+    "chainId": "eip155:1",
+    "name": "Hashflow on Ethereum",
+    "precision": 18,
+    "color": "#C6C9CC",
+    "icon": "https://assets.coingecko.com/coins/images/26136/thumb/hashflow-icon-cmc.png?1696525224",
+    "symbol": "HFT",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xb3a58eb551b5f80ec70b7f69ab7b664453271412": {
+    "assetId": "eip155:1/erc20:0xb3a58eb551b5f80ec70b7f69ab7b664453271412",
+    "chainId": "eip155:1",
+    "name": "Mixaverse",
+    "precision": 18,
+    "color": "#080806",
+    "icon": "https://assets.coingecko.com/coins/images/31471/thumb/IMG_20230824_191015_871.png?1696530284",
+    "symbol": "MIXCOIN",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xb3ad645db386d7f6d753b2b9c3f4b853da6890b8": {
+    "assetId": "eip155:1/erc20:0xb3ad645db386d7f6d753b2b9c3f4b853da6890b8",
+    "chainId": "eip155:1",
+    "name": "Concentrator",
+    "precision": 18,
+    "color": "#060418",
+    "icon": "https://assets.coingecko.com/coins/images/26364/thumb/%E6%9C%AA%E5%91%BD%E5%90%8D%E7%9A%84%E8%AE%BE%E8%AE%A1.jpg?1696525441",
+    "symbol": "CTR",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xb3cb8d5aeff0f4d1f432f353309f47b885e404e3": {
+    "assetId": "eip155:1/erc20:0xb3cb8d5aeff0f4d1f432f353309f47b885e404e3",
+    "chainId": "eip155:1",
+    "name": "MEVerse",
+    "precision": 18,
+    "color": "#131314",
+    "icon": "https://assets.coingecko.com/coins/images/24566/thumb/0sp1DWVw_400x400.png?1696523742",
+    "symbol": "MEV",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xb3e2cb7cccfe139f8ff84013823bf22da6b6390a": {
+    "assetId": "eip155:1/erc20:0xb3e2cb7cccfe139f8ff84013823bf22da6b6390a",
+    "chainId": "eip155:1",
+    "name": "Deutsche Digital Assets",
+    "precision": 18,
+    "color": "#3C4C64",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xB3e2Cb7CccfE139f8FF84013823Bf22dA6B6390A/logo.png",
+    "symbol": "ICNQ",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xb3e6ee8d2c586fa03ab70aef96b8ae6d12d64ec7": {
+    "assetId": "eip155:1/erc20:0xb3e6ee8d2c586fa03ab70aef96b8ae6d12d64ec7",
+    "chainId": "eip155:1",
+    "name": "hiFIDENZA",
+    "precision": 18,
+    "color": "#E7DFD6",
+    "icon": "https://assets.coingecko.com/coins/images/28237/thumb/hifidenza.png?1696527240",
+    "symbol": "HIFIDENZA",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xb4039240e71535100be947116c778d5d98bd9f62": {
+    "assetId": "eip155:1/erc20:0xb4039240e71535100be947116c778d5d98bd9f62",
+    "chainId": "eip155:1",
+    "name": "Magic Shiba Starter",
+    "precision": 18,
+    "color": "#553814",
+    "icon": "https://assets.coingecko.com/coins/images/31051/thumb/magicshiba.jpg?1696529885",
+    "symbol": "MSHIB",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xb40c535c8899f95e3b722df2f0619ebd28c4a4ea": {
+    "assetId": "eip155:1/erc20:0xb40c535c8899f95e3b722df2f0619ebd28c4a4ea",
+    "chainId": "eip155:1",
+    "name": "Kenda",
+    "precision": 18,
+    "color": "#392332",
+    "icon": "https://assets.coingecko.com/coins/images/31692/thumb/kenda_200_200.png?1696530510",
+    "symbol": "KNDA",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xb4272071ecadd69d933adcd19ca99fe80664fc08": {
+    "assetId": "eip155:1/erc20:0xb4272071ecadd69d933adcd19ca99fe80664fc08",
+    "chainId": "eip155:1",
+    "name": "CryptoFranc",
+    "precision": 18,
+    "color": "#CC0C2C",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xB4272071eCAdd69d933AdcD19cA99fe80664fc08/logo.png",
+    "symbol": "XCHF",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xb435a47ecea7f5366b2520e45b9bed7e01d2ffae": {
+    "assetId": "eip155:1/erc20:0xb435a47ecea7f5366b2520e45b9bed7e01d2ffae",
+    "chainId": "eip155:1",
+    "name": "The Nemesis",
+    "precision": 18,
+    "color": "#F8DFBD",
+    "icon": "https://assets.coingecko.com/coins/images/30590/thumb/nems.png?1696529458",
+    "symbol": "NEMS",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xb44377b74ef1773639b663d0754cb8410a847d02": {
+    "assetId": "eip155:1/erc20:0xb44377b74ef1773639b663d0754cb8410a847d02",
+    "chainId": "eip155:1",
+    "name": "Dream",
+    "precision": 18,
+    "color": "#F0F9FB",
+    "icon": "https://assets.coingecko.com/coins/images/24139/thumb/image0.jpeg?1696523330",
+    "symbol": "DREAM",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xb444cb2bcb19180602328fa774738cb8dbd6677b": {
+    "assetId": "eip155:1/erc20:0xb444cb2bcb19180602328fa774738cb8dbd6677b",
+    "chainId": "eip155:1",
+    "name": "Mumon Ginsen",
+    "precision": 9,
+    "color": "#D5D7D7",
+    "icon": "https://assets.coingecko.com/coins/images/29785/thumb/Mumon.jpeg?1696528715",
+    "symbol": "MG",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xb44b653f147569d88a684cbf6549e1968e8b2a1d": {
+    "assetId": "eip155:1/erc20:0xb44b653f147569d88a684cbf6549e1968e8b2a1d",
+    "chainId": "eip155:1",
+    "name": "2DAI io",
+    "precision": 18,
+    "color": "#EAE9EC",
+    "icon": "https://assets.coingecko.com/coins/images/30542/thumb/2dai.jpg?1696529414",
+    "symbol": "2DAI",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xb459f7204a8ac84f9e7758d6d839ebd01670e35c": {
+    "assetId": "eip155:1/erc20:0xb459f7204a8ac84f9e7758d6d839ebd01670e35c",
+    "chainId": "eip155:1",
+    "name": "Lotty",
+    "precision": 18,
+    "color": "#F0C866",
+    "icon": "https://assets.coingecko.com/coins/images/31018/thumb/download.png?1696529854",
+    "symbol": "LOTTY",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xb4622193ca7c7580ac0ecc09c3b7bd74aef0318d": {
+    "assetId": "eip155:1/erc20:0xb4622193ca7c7580ac0ecc09c3b7bd74aef0318d",
+    "chainId": "eip155:1",
+    "name": "Cloak Protocol",
+    "precision": 18,
+    "color": "#282D2F",
+    "icon": "https://assets.coingecko.com/coins/images/31616/thumb/CLOAK.jpg?1696530433",
+    "symbol": "CLOAK",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xb46ec1db4b766d32fbaf7c30aba1428bd470553e": {
+    "assetId": "eip155:1/erc20:0xb46ec1db4b766d32fbaf7c30aba1428bd470553e",
+    "chainId": "eip155:1",
+    "name": "Arena GG",
+    "precision": 18,
+    "color": "#F9F6F3",
+    "icon": "https://assets.coingecko.com/coins/images/32146/thumb/arenalogo.jpg?1696596793",
+    "symbol": "ARENA",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xb475332d25d34b59176f5c1d94cb9bc9b5e3954a": {
+    "assetId": "eip155:1/erc20:0xb475332d25d34b59176f5c1d94cb9bc9b5e3954a",
+    "chainId": "eip155:1",
+    "name": "Hobbes",
+    "precision": 9,
+    "color": "#755244",
+    "icon": "https://assets.coingecko.com/coins/images/30928/thumb/hobbes.jpeg?1696529770",
+    "symbol": "HOBBES",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xb478c6245e3d85d6ec3486b62ea872128d562541": {
+    "assetId": "eip155:1/erc20:0xb478c6245e3d85d6ec3486b62ea872128d562541",
+    "chainId": "eip155:1",
+    "name": "LootBot",
+    "precision": 18,
+    "color": "#D7D0FA",
+    "icon": "https://assets.coingecko.com/coins/images/30985/thumb/K7dMTTKi_400x400.png?1696529824",
+    "symbol": "LOOT",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xb48361032956d52f1ade21c73c273644f4ea24ca": {
+    "assetId": "eip155:1/erc20:0xb48361032956d52f1ade21c73c273644f4ea24ca",
+    "chainId": "eip155:1",
+    "name": "MOONERIUM",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/33081/thumb/200.png?1700552508",
+    "symbol": "MOONERIUM",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xb48eb8368c9c6e9b0734de1ef4ceb9f484b80b9c": {
+    "assetId": "eip155:1/erc20:0xb48eb8368c9c6e9b0734de1ef4ceb9f484b80b9c",
+    "chainId": "eip155:1",
+    "name": "VMPX  ERC20 ",
+    "precision": 18,
+    "color": "#4CDC24",
+    "icon": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAIAAAACACAMAAAD04JH5AAADAFBMVEUtN0hP2Cb///8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADCb3IvAAABAHRSTlP/////AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAf6K/dgAAQItJREFUeNoBgEB/vwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAQEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgEBAQEBAQECAgICAgICAAAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgEBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAwAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAwAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAwAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAwAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAwAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAwAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwMDAwMDAwMDAwMDAwMDAwMDAwMDAgICAgICAgAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAgICAgICAgAAAAAAAAACAgICAgICAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAgICAgICAgMAAAAAAAACAgICAgICAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAgICAgICAgMAAAAAAAACAgICAgICAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAgICAgICAgMAAAAAAAACAgICAgICAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAgICAgICAgMAAAAAAAACAgICAgICAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAgICAgICAgMAAAAAAAACAgICAgICAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAgICAgICAgMAAAAAAAACAgICAgICAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAwMDAwMDAwICAgICAgIAAwMDAwMDAgICAgICAgMBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAAMDAwMDAwMAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAICAgICAgIDAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAwAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAICAgICAgIDAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAwAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAICAgICAgIDAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAwAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAICAgICAgIDAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAwAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAICAgICAgIDAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAwAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAICAgICAgIDAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAwAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAADAwMDAwMDAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAwMDAwMDAgICAgICAgEBAQEBAQECAgICAgICAQMDAwMDAwMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQMDAwMDAwICAgICAgIBAwMDAwMDAwEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgIDAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgIDAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgIDAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgIDAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgIDAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgIDAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEDAwMDAwMDAQEBAQEBAQEBAQEBAQEBAQEBAQEBAwMDAwMDAwAAAAAAAAAAAAAAAAAAAAAAAAEBAQMDAwMDAwMBAQEBAQEBAwMDAwMDAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFYtMHhr6JYcAAAAAElFTkSuQmCC",
+    "symbol": "VMPX",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xb49fa25978abf9a248b8212ab4b87277682301c0": {
+    "assetId": "eip155:1/erc20:0xb49fa25978abf9a248b8212ab4b87277682301c0",
+    "chainId": "eip155:1",
+    "name": "RAI Finance on Ethereum",
+    "precision": 18,
+    "color": "#CC94FC",
+    "icon": "https://assets.coingecko.com/coins/images/14686/thumb/sofi.png?1696514359",
+    "symbol": "SOFI",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xb4a3b0faf0ab53df58001804dda5bfc6a3d59008": {
+    "assetId": "eip155:1/erc20:0xb4a3b0faf0ab53df58001804dda5bfc6a3d59008",
+    "chainId": "eip155:1",
+    "name": "Sperax on Ethereum",
+    "precision": 18,
+    "color": "#1B1E20",
+    "icon": "https://assets.coingecko.com/coins/images/12232/thumb/sperax_logo.jpg?1696512065",
+    "symbol": "SPA",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xb4a677b0e363c3815d46326954a4e4d2b1ace357": {
+    "assetId": "eip155:1/erc20:0xb4a677b0e363c3815d46326954a4e4d2b1ace357",
+    "chainId": "eip155:1",
+    "name": "THENODE",
+    "precision": 18,
+    "color": "#52BFBE",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xB4a677B0E363c3815d46326954a4E4d2B1ACe357/logo.png",
+    "symbol": "THE",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xb4b9dc1c77bdbb135ea907fd5a08094d98883a35": {
+    "assetId": "eip155:1/erc20:0xb4b9dc1c77bdbb135ea907fd5a08094d98883a35",
+    "chainId": "eip155:1",
+    "name": "Sweat Economy",
+    "precision": 18,
+    "color": "#FC0C74",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xB4b9DC1C77bdbb135eA907fd5a08094d98883A35/logo.png",
+    "symbol": "SWEAT",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xb4bd4628e6efb0cb521d9ec35050c75840320374": {
+    "assetId": "eip155:1/erc20:0xb4bd4628e6efb0cb521d9ec35050c75840320374",
+    "chainId": "eip155:1",
+    "name": "frETH",
+    "precision": 18,
+    "color": "#140C24",
+    "icon": "https://assets.coingecko.com/coins/images/28734/thumb/freth.png?1696527714",
+    "symbol": "FRETH",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xb4f8ae8d7d29ac74894cd40ecc24e50f6f146ca6": {
+    "assetId": "eip155:1/erc20:0xb4f8ae8d7d29ac74894cd40ecc24e50f6f146ca6",
+    "chainId": "eip155:1",
+    "name": "FriendSpot",
+    "precision": 9,
+    "color": "#5CC129",
+    "icon": "https://assets.coingecko.com/coins/images/31734/thumb/frenspot-logo_%281%29.png?1696530554",
+    "symbol": "SPOT",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xb4fbed161bebcb37afb1cb4a6f7ca18b977ccb25": {
+    "assetId": "eip155:1/erc20:0xb4fbed161bebcb37afb1cb4a6f7ca18b977ccb25",
+    "chainId": "eip155:1",
+    "name": "Dogeswap",
+    "precision": 18,
+    "color": "#E8DFC4",
+    "icon": "https://assets.coingecko.com/coins/images/12763/thumb/20200926-220107.png?1696512560",
+    "symbol": "DOGES",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xb504035a11e672e12a099f32b1672b9c4a78b22f": {
+    "assetId": "eip155:1/erc20:0xb504035a11e672e12a099f32b1672b9c4a78b22f",
+    "chainId": "eip155:1",
+    "name": "SAFEREUM",
+    "precision": 18,
+    "color": "#04B4B4",
+    "icon": "https://assets.coingecko.com/coins/images/32179/thumb/FD173148-2002-420F-B138-E8DB70F754A0.png?1696743020",
+    "symbol": "SAFEREUM",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xb50721bcf8d664c30412cfbc6cf7a15145234ad1": {
+    "assetId": "eip155:1/erc20:0xb50721bcf8d664c30412cfbc6cf7a15145234ad1",
+    "chainId": "eip155:1",
+    "name": "Arbitrum on Ethereum",
+    "precision": 18,
+    "color": "#2C354C",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xB50721BCf8d664c30412Cfbc6cf7a15145234ad1/logo.png",
+    "symbol": "ARB",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xb533687ef77459093368c43e95f8df1c2b5a1f7a": {
+    "assetId": "eip155:1/erc20:0xb533687ef77459093368c43e95f8df1c2b5a1f7a",
+    "chainId": "eip155:1",
+    "name": "Nekoverse  City of Greed Anima Spirit G",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/32655/thumb/asg.png?1698895535",
+    "symbol": "ASG",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xb53ecf1345cabee6ea1a65100ebb153cebcac40f": {
+    "assetId": "eip155:1/erc20:0xb53ecf1345cabee6ea1a65100ebb153cebcac40f",
+    "chainId": "eip155:1",
+    "name": "Childhoods End",
+    "precision": 18,
+    "color": "#0F3051",
+    "icon": "https://assets.coingecko.com/coins/images/25670/thumb/photo_2022-05-27_12-45-29.jpg?1696524798",
+    "symbol": "O",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xb551b43af192965f74e3dfaa476c890b403cad95": {
+    "assetId": "eip155:1/erc20:0xb551b43af192965f74e3dfaa476c890b403cad95",
+    "chainId": "eip155:1",
+    "name": "Data bot",
+    "precision": 9,
+    "color": "#D1CCCD",
+    "icon": "https://assets.coingecko.com/coins/images/31508/thumb/Databot_LOGO_coingecko.png?1696530318",
+    "symbol": "DATA",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xb55ee890426341fe45ee6dc788d2d93d25b59063": {
+    "assetId": "eip155:1/erc20:0xb55ee890426341fe45ee6dc788d2d93d25b59063",
+    "chainId": "eip155:1",
+    "name": "Love io on Ethereum",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/33011/thumb/IMG_7458.png?1700124277",
+    "symbol": "LOVE",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xb56a1f3310578f23120182fb2e58c087efe6e147": {
+    "assetId": "eip155:1/erc20:0xb56a1f3310578f23120182fb2e58c087efe6e147",
+    "chainId": "eip155:1",
+    "name": "All Coins Yield Capital",
+    "precision": 18,
+    "color": "#7A6DF7",
+    "icon": "https://assets.coingecko.com/coins/images/21109/thumb/acyc.png?1696520489",
+    "symbol": "ACYC",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xb58e26ac9cc14c0422c2b419b0ca555ee4dcb7cb": {
+    "assetId": "eip155:1/erc20:0xb58e26ac9cc14c0422c2b419b0ca555ee4dcb7cb",
+    "chainId": "eip155:1",
+    "name": "Niza Global",
+    "precision": 9,
+    "color": "#EDEC30",
+    "icon": "https://assets.coingecko.com/coins/images/32328/thumb/NizaCoin-logo-transaprent.png?1697451581",
+    "symbol": "NIZA",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xb59490ab09a0f526cc7305822ac65f2ab12f9723": {
+    "assetId": "eip155:1/erc20:0xb59490ab09a0f526cc7305822ac65f2ab12f9723",
+    "chainId": "eip155:1",
+    "name": "Litentry",
+    "precision": 18,
+    "color": "#E8FAF4",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xb59490aB09A0f526Cc7305822aC65f2Ab12f9723/logo.png",
+    "symbol": "LIT",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xb5b1b659da79a2507c27aad509f15b4874edc0cc": {
+    "assetId": "eip155:1/erc20:0xb5b1b659da79a2507c27aad509f15b4874edc0cc",
+    "chainId": "eip155:1",
+    "name": "Dust Protocol on Ethereum",
+    "precision": 9,
+    "color": "#08C8D5",
+    "icon": "https://assets.coingecko.com/coins/images/24289/thumb/6388d49d-1f00-448d-92bc-f2db1441bbce.?1696523472",
+    "symbol": "DUST",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xb5b29320d2dde5ba5bafa1ebcd270052070483ec": {
+    "assetId": "eip155:1/erc20:0xb5b29320d2dde5ba5bafa1ebcd270052070483ec",
+    "chainId": "eip155:1",
+    "name": "YieldETH  Sommelier ",
+    "precision": 18,
+    "color": "#24DC94",
+    "icon": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAIAAAACACAMAAAD04JH5AAADAFBMVEUtN0gm2Jb///8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAoxD5MAAABAHRSTlP/////AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAf6K/dgAAQItJREFUeNoBgEB/vwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAQEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgEBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgEBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQEBAwMDAwMDAwMDAwMDAwICAgICAgIDAwMDAwMDAwMDAwMDAwMBAQEBAQECAgICAgICAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQEBAQEBAQAAAAAAAAAAAAICAgICAgIDAAAAAAEBAQEBAQEBAQEBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQEBAQEBAQAAAAAAAAAAAAICAgICAgIDAAAAAAEBAQEBAQEBAQEBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQEBAQEBAQAAAAAAAAAAAAICAgICAgIDAAAAAAEBAQEBAQEBAQEBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQEBAQEBAQAAAAAAAAAAAAICAgICAgIDAAAAAAEBAQEBAQEBAQEBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQEBAQEBAQAAAAAAAAAAAAICAgICAgIDAAAAAAEBAQEBAQEBAQEBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQEBAQEBAQAAAAAAAAAAAAICAgICAgIDAAAAAAEBAQEBAQEBAQEBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAwMDAwMDAgICAgICAgEBAQEBAQECAgICAgICAQMDAwMDAwMBAQEBAQEBAQEBAQAAAAAAAAAAAAICAgICAgIDAAAAAAEBAQEBAQEBAQEBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAICAgICAgIDAAAAAAEBAQEBAQEBAQEBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAICAgICAgIDAAAAAAEBAQEBAQEBAQEBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAICAgICAgIDAAAAAAEBAQEBAQEBAQEBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAICAgICAgIDAAAAAAEBAQEBAQEBAQEBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAICAgICAgIDAAAAAAEBAQEBAQEBAQEBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAICAgICAgIDAAAAAAEBAQEBAQEBAQEBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQMDAwMDAwICAgICAgIBAwMDAwMDAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAICAgICAgIDAAAAAAEBAQEBAQEBAQEBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgIDAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAICAgICAgIDAAAAAAEBAQEBAQEBAQEBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgIDAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAICAgICAgIDAAAAAAEBAQEBAQEBAQEBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgIDAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAICAgICAgIDAAAAAAEBAQEBAQEBAQEBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgIDAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAICAgICAgIDAAAAAAEBAQEBAQEBAQEBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgIDAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAICAgICAgIDAAAAAAEBAQEBAQEBAQEBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgIDAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAICAgICAgIDAAAAAAEBAQEBAQEBAQEBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgIDAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAICAgICAgIDAAAAAAEBAQEBAQEBAQEBAQEBAQECAgICAgICAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgIDAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAICAgICAgIDAAAAAAEBAQEBAQEBAQEBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgIDAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAICAgICAgIDAAAAAAEBAQEBAQEBAQEBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgIDAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAICAgICAgIDAAAAAAEBAQEBAQEBAQEBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgIDAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAICAgICAgIDAAAAAAEBAQEBAQEBAQEBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgIDAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAICAgICAgIDAAAAAAEBAQEBAQEBAQEBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgIDAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAICAgICAgIDAAAAAAEBAQEBAQEBAQEBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgIDAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAICAgICAgIDAAAAAAEBAQEBAQEBAQEBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgIDAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAICAgICAgIDAAAAAAEBAQEBAQEBAQEBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgIDAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAICAgICAgIDAAAAAAEBAQEBAQEBAQEBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgIDAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAICAgICAgIDAAAAAAEBAQEBAQEBAQEBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgIDAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAICAgICAgIDAAAAAAEBAQEBAQEBAQEBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgIDAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAICAgICAgIDAAAAAAEBAQEBAQEBAQEBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgIDAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAICAgICAgIDAAAAAAEBAQEBAQEBAQEBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgIDAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgEBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgIDAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgIDAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgIDAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgIDAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgIDAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgIDAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEDAwMDAwMDAQEBAQEBAQEBAQEBAQEBAQEBAQEBAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMBAQEBAQEBAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJUKMLHcXUWyAAAAAElFTkSuQmCC",
+    "symbol": "YIELDETH",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xb5be7557fe8f69a2b5707d25fa0aee80dfda512e": {
+    "assetId": "eip155:1/erc20:0xb5be7557fe8f69a2b5707d25fa0aee80dfda512e",
+    "chainId": "eip155:1",
+    "name": "POLYSPORTS on Ethereum",
+    "precision": 18,
+    "color": "#E3E7E6",
+    "icon": "https://assets.coingecko.com/coins/images/25070/thumb/L-T2x_cG_400x400.jpg?1696524218",
+    "symbol": "PS1",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xb5c578947de0fd71303f71f2c3d41767438bd0de": {
+    "assetId": "eip155:1/erc20:0xb5c578947de0fd71303f71f2c3d41767438bd0de",
+    "chainId": "eip155:1",
+    "name": "DeHorizon",
+    "precision": 18,
+    "color": "#F1F7F8",
+    "icon": "https://assets.coingecko.com/coins/images/21373/thumb/A3RjDqet_400x400.jpg?1696520738",
+    "symbol": "DEVT",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xb5ce43fe2fcffffb2eece95ec413d08def28046f": {
+    "assetId": "eip155:1/erc20:0xb5ce43fe2fcffffb2eece95ec413d08def28046f",
+    "chainId": "eip155:1",
+    "name": "PepElon",
+    "precision": 18,
+    "color": "#E9EBE7",
+    "icon": "https://assets.coingecko.com/coins/images/31371/thumb/7gd1S3fr_400x400.jpg?1696530188",
+    "symbol": "PELO",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xb5f1457d6fba1956fb8d31b0b7caca14bde0be4b": {
+    "assetId": "eip155:1/erc20:0xb5f1457d6fba1956fb8d31b0b7caca14bde0be4b",
+    "chainId": "eip155:1",
+    "name": "Stilton",
+    "precision": 9,
+    "color": "#E6C71C",
+    "icon": "https://assets.coingecko.com/coins/images/26132/thumb/2vfQHbe9_400x400.png?1696525220",
+    "symbol": "STILT",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xb5fe099475d3030dde498c3bb6f3854f762a48ad": {
+    "assetId": "eip155:1/erc20:0xb5fe099475d3030dde498c3bb6f3854f762a48ad",
+    "chainId": "eip155:1",
+    "name": "Fnk com",
+    "precision": 18,
+    "color": "#F7D079",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xB5FE099475d3030DDe498c3BB6F3854F762A48Ad/logo.png",
+    "symbol": "FNK",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xb61ebb6bceb7635ecd7e59884ee2e2bcdfd810ba": {
+    "assetId": "eip155:1/erc20:0xb61ebb6bceb7635ecd7e59884ee2e2bcdfd810ba",
+    "chainId": "eip155:1",
+    "name": "XSHIB",
+    "precision": 9,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/32839/thumb/LOGOSHIB.jpg?1699587693",
+    "symbol": "XSHIB",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xb62132e35a6c13ee1ee0f84dc5d40bad8d815206": {
+    "assetId": "eip155:1/erc20:0xb62132e35a6c13ee1ee0f84dc5d40bad8d815206",
+    "chainId": "eip155:1",
+    "name": "NEXO on Ethereum",
+    "precision": 18,
+    "color": "#6DADED",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xB62132e35a6c13ee1EE0f84dC5d40bad8d815206/logo.png",
+    "symbol": "NEXO",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xb622907fbff6cbf7c3ce355173251e3edb13a606": {
+    "assetId": "eip155:1/erc20:0xb622907fbff6cbf7c3ce355173251e3edb13a606",
+    "chainId": "eip155:1",
+    "name": "FortuneBets",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/32966/thumb/fortune-white-on-red.png?1700054670",
+    "symbol": "FRT",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xb624fde1a972b1c89ec1dad691442d5e8e891469": {
+    "assetId": "eip155:1/erc20:0xb624fde1a972b1c89ec1dad691442d5e8e891469",
+    "chainId": "eip155:1",
+    "name": "SporkDAO on Ethereum",
+    "precision": 18,
+    "color": "#928DAD",
+    "icon": "https://assets.coingecko.com/coins/images/23358/thumb/sporkdao.PNG?1696522573",
+    "symbol": "SPORK",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xb627a1bf727f578384ba18b2a2b46f4fb924ab3b": {
+    "assetId": "eip155:1/erc20:0xb627a1bf727f578384ba18b2a2b46f4fb924ab3b",
+    "chainId": "eip155:1",
+    "name": "P3PE HACKER",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/33219/thumb/download.png?1701088202",
+    "symbol": "P3PE",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xb62e24b747eaa41454857cf6011832117df59cb8": {
+    "assetId": "eip155:1/erc20:0xb62e24b747eaa41454857cf6011832117df59cb8",
+    "chainId": "eip155:1",
+    "name": "Epiko",
+    "precision": 18,
+    "color": "#DC24AC",
+    "icon": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAIAAAACACAMAAAD04JH5AAADAFBMVEUtN0jYJq7///8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACrqAe7AAABAHRSTlP/////AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAf6K/dgAAQItJREFUeNoBgEB/vwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgEBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAQEBAQEBAQEBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgAAAAAAAAAAAAACAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMAAAAAAAAAAAACAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMAAAAAAAAAAAACAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMAAAAAAAAAAAACAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMAAAAAAAAAAAACAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMAAAAAAAAAAAACAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMAAAAAAAAAAAACAgICAgICAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMBAQEBAQECAgICAgICAwMDAwMDAwMDAwMDAwMDAwMDAwMDAgICAgICAgEBAQEBAQEBAwMDAwMDAwMDAwMDAwICAgICAgIDAwMDAwMDAwMDAwMDAwMAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAgICAgICAgICAgICAgICAgICAgICAQEBAQEBAQEBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAQMDAwMDAwMBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwEBAQEBAQEBAQEBAQECAgICAgICAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgAAAAAAAAAAAAACAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMAAAAAAAAAAAACAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMAAAAAAAAAAAACAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMAAAAAAAAAAAACAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMAAAAAAAAAAAACAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMAAAAAAAAAAAACAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMAAAAAAAAAAAAAAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMBAQEBAQEBAwMDAwMDAwAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFZqMba23ZEFAAAAAElFTkSuQmCC",
+    "symbol": "EPIKO",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xb62e45c3df611dce236a6ddc7a493d79f9dfadef": {
+    "assetId": "eip155:1/erc20:0xb62e45c3df611dce236a6ddc7a493d79f9dfadef",
+    "chainId": "eip155:1",
+    "name": "Wall Street Memes",
+    "precision": 18,
+    "color": "#BCBCBC",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xB62E45c3Df611dcE236A6Ddc7A493d79F9DFadEf/logo.png",
+    "symbol": "WSM",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xb63b606ac810a52cca15e44bb630fd42d8d1d83d": {
+    "assetId": "eip155:1/erc20:0xb63b606ac810a52cca15e44bb630fd42d8d1d83d",
+    "chainId": "eip155:1",
+    "name": "MCO",
+    "precision": 8,
+    "color": "#FFFFFF",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xB63B606Ac810a52cCa15e44bB630fd42D8d1d83d/logo.png",
+    "symbol": "MCO",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac": {
+    "assetId": "eip155:1/erc20:0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac",
+    "chainId": "eip155:1",
+    "name": "Storj",
+    "precision": 8,
+    "color": "#127CCB",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xB64ef51C888972c908CFacf59B47C1AfBC0Ab8aC/logo.png",
+    "symbol": "STORJ",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xb64fde8f199f073f41c132b9ec7ad5b61de0b1b7": {
+    "assetId": "eip155:1/erc20:0xb64fde8f199f073f41c132b9ec7ad5b61de0b1b7",
+    "chainId": "eip155:1",
+    "name": "Incognito on Ethereum",
+    "precision": 9,
+    "color": "#363636",
+    "icon": "https://assets.coingecko.com/coins/images/21971/thumb/50738351.png?1696521319",
+    "symbol": "PRV",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xb668473944d2e25b6af6d46917eb0233dbac53ae": {
+    "assetId": "eip155:1/erc20:0xb668473944d2e25b6af6d46917eb0233dbac53ae",
+    "chainId": "eip155:1",
+    "name": "Neton",
+    "precision": 18,
+    "color": "#F4F1EE",
+    "icon": "https://assets.coingecko.com/coins/images/25418/thumb/lqT0CJNj_400x400.jpg?1696524549",
+    "symbol": "NTO",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xb67718b98d52318240c52e71a898335da4a28c42": {
+    "assetId": "eip155:1/erc20:0xb67718b98d52318240c52e71a898335da4a28c42",
+    "chainId": "eip155:1",
+    "name": "Innovative Bioresearch Coin",
+    "precision": 6,
+    "color": "#131921",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xB67718b98d52318240c52E71A898335da4A28c42/logo.png",
+    "symbol": "INNBC",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xb67beb26ebeb0dceec354ae0942256d03c01771b": {
+    "assetId": "eip155:1/erc20:0xb67beb26ebeb0dceec354ae0942256d03c01771b",
+    "chainId": "eip155:1",
+    "name": "DeStorage",
+    "precision": 18,
+    "color": "#D7E2F0",
+    "icon": "https://assets.coingecko.com/coins/images/15984/thumb/DS_LOG_Transparent_200x200.png?1696515597",
+    "symbol": "DS",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xb683d83a532e2cb7dfa5275eed3698436371cc9f": {
+    "assetId": "eip155:1/erc20:0xb683d83a532e2cb7dfa5275eed3698436371cc9f",
+    "chainId": "eip155:1",
+    "name": "BTU Protocol on Ethereum",
+    "precision": 18,
+    "color": "#644484",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xb683D83a532e2Cb7DFa5275eED3698436371cc9f/logo.png",
+    "symbol": "BTU",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xb685145d7f127b9093d7f9278bae902ef59ff486": {
+    "assetId": "eip155:1/erc20:0xb685145d7f127b9093d7f9278bae902ef59ff486",
+    "chainId": "eip155:1",
+    "name": "FREQAI",
+    "precision": 18,
+    "color": "#4CDCC4",
+    "icon": "https://assets.coingecko.com/coins/images/29122/thumb/The_Razors_Edge.png?1696528084",
+    "symbol": "FREQAI",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xb68d792329bbca81c2b823e9dbe066db53ef7b16": {
+    "assetId": "eip155:1/erc20:0xb68d792329bbca81c2b823e9dbe066db53ef7b16",
+    "chainId": "eip155:1",
+    "name": "X Chain",
+    "precision": 18,
+    "color": "#364764",
+    "icon": "https://assets.coingecko.com/coins/images/31312/thumb/200x200.png?1696530131",
+    "symbol": "XCHAIN",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xb69753c06bb5c366be51e73bfc0cc2e3dc07e371": {
+    "assetId": "eip155:1/erc20:0xb69753c06bb5c366be51e73bfc0cc2e3dc07e371",
+    "chainId": "eip155:1",
+    "name": "POOH",
+    "precision": 18,
+    "color": "#EFBC34",
+    "icon": "https://assets.coingecko.com/coins/images/30091/thumb/Pooh-icon.png?1696529015",
+    "symbol": "POOH",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xb6a7a1d8f64fc6f984a6f3b52b7426f7b0abab5b": {
+    "assetId": "eip155:1/erc20:0xb6a7a1d8f64fc6f984a6f3b52b7426f7b0abab5b",
+    "chainId": "eip155:1",
+    "name": "Maxwell The Cat",
+    "precision": 18,
+    "color": "#F7F7F7",
+    "icon": "https://assets.coingecko.com/coins/images/31551/thumb/maxwell200.png?1696530363",
+    "symbol": "MAXCAT",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xb6c3dc857845a713d3531cea5ac546f6767992f4": {
+    "assetId": "eip155:1/erc20:0xb6c3dc857845a713d3531cea5ac546f6767992f4",
+    "chainId": "eip155:1",
+    "name": "Advertise Coin",
+    "precision": 6,
+    "color": "#3B3A38",
+    "icon": "https://assets.coingecko.com/coins/images/14344/thumb/advertisecoin200x200.png?1696514031",
+    "symbol": "ADCO",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xb6c4267c4877bb0d6b1685cfd85b0fbe82f105ec": {
+    "assetId": "eip155:1/erc20:0xb6c4267c4877bb0d6b1685cfd85b0fbe82f105ec",
+    "chainId": "eip155:1",
+    "name": "Relevant",
+    "precision": 18,
+    "color": "#242424",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xb6c4267C4877BB0D6b1685Cfd85b0FBe82F105ec/logo.png",
+    "symbol": "REL",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xb6ca7399b4f9ca56fc27cbff44f4d2e4eef1fc81": {
+    "assetId": "eip155:1/erc20:0xb6ca7399b4f9ca56fc27cbff44f4d2e4eef1fc81",
+    "chainId": "eip155:1",
+    "name": "Muse DAO",
+    "precision": 18,
+    "color": "#3B4343",
+    "icon": "https://assets.coingecko.com/coins/images/13230/thumb/muse_logo.png?1696513008",
+    "symbol": "MUSE",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xb6dd77fd132dcaa10f1858734e838a0fa7431580": {
+    "assetId": "eip155:1/erc20:0xb6dd77fd132dcaa10f1858734e838a0fa7431580",
+    "chainId": "eip155:1",
+    "name": "Filipcoin on Ethereum",
+    "precision": 18,
+    "color": "#F3EDD9",
+    "icon": "https://assets.coingecko.com/coins/images/21354/thumb/filip.PNG?1696520719",
+    "symbol": "FCP",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xb6ed7644c69416d67b522e20bc294a9a9b405b31": {
+    "assetId": "eip155:1/erc20:0xb6ed7644c69416d67b522e20bc294a9a9b405b31",
+    "chainId": "eip155:1",
+    "name": "0xBitcoin on Ethereum",
+    "precision": 8,
+    "color": "#FC7B04",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xB6eD7644C69416d67B522e20bC294A9a9B405B31/logo.png",
+    "symbol": "0XBTC",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xb6ee9668771a79be7967ee29a63d4184f8097143": {
+    "assetId": "eip155:1/erc20:0xb6ee9668771a79be7967ee29a63d4184f8097143",
+    "chainId": "eip155:1",
+    "name": "CargoX on Ethereum",
+    "precision": 18,
+    "color": "#243C8B",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xb6EE9668771a79be7967ee29a63D4184F8097143/logo.png",
+    "symbol": "CXO",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xb6ff96b8a8d214544ca0dbc9b33f7ad6503efd32": {
+    "assetId": "eip155:1/erc20:0xb6ff96b8a8d214544ca0dbc9b33f7ad6503efd32",
+    "chainId": "eip155:1",
+    "name": "Sync Network",
+    "precision": 18,
+    "color": "#4DA3BE",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xB6ff96B8A8d214544Ca0dBc9B33f7AD6503eFD32/logo.png",
+    "symbol": "SYNC",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xb705268213d593b8fd88d3fdeff93aff5cbdcfae": {
+    "assetId": "eip155:1/erc20:0xb705268213d593b8fd88d3fdeff93aff5cbdcfae",
+    "chainId": "eip155:1",
+    "name": "IDEX on Ethereum",
+    "precision": 18,
+    "color": "#0B4E6D",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xB705268213D593B8FD88d3FDEFF93AFF5CbDcfAE/logo.png",
+    "symbol": "IDEX",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xb70835d7822ebb9426b56543e391846c107bd32c": {
+    "assetId": "eip155:1/erc20:0xb70835d7822ebb9426b56543e391846c107bd32c",
+    "chainId": "eip155:1",
+    "name": "Game",
+    "precision": 18,
+    "color": "#FC9B42",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xB70835D7822eBB9426B56543E391846C107bd32C/logo.png",
+    "symbol": "GTC",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xb70eaf5d316192881aac8786c90b7907b83f02e8": {
+    "assetId": "eip155:1/erc20:0xb70eaf5d316192881aac8786c90b7907b83f02e8",
+    "chainId": "eip155:1",
+    "name": "MetaReset",
+    "precision": 18,
+    "color": "#2A2A2A",
+    "icon": "https://assets.coingecko.com/coins/images/32314/thumb/reset.jpg?1697271138",
+    "symbol": "RESET",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xb7446b185085e019f0008f1d338de26486a4db10": {
+    "assetId": "eip155:1/erc20:0xb7446b185085e019f0008f1d338de26486a4db10",
+    "chainId": "eip155:1",
+    "name": "Bull Moon",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/32790/thumb/bullmoon_logo_200x200.png?1699427210",
+    "symbol": "BULLMOON",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xb753428af26e81097e7fd17f40c88aaa3e04902c": {
+    "assetId": "eip155:1/erc20:0xb753428af26e81097e7fd17f40c88aaa3e04902c",
+    "chainId": "eip155:1",
+    "name": "saffron finance",
+    "precision": 18,
+    "color": "#C44434",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xb753428af26E81097e7fD17f40c88aaA3E04902c/logo.png",
+    "symbol": "SFI",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xb755506531786c8ac63b756bab1ac387bacb0c04": {
+    "assetId": "eip155:1/erc20:0xb755506531786c8ac63b756bab1ac387bacb0c04",
+    "chainId": "eip155:1",
+    "name": "ZARP Stablecoin",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/27333/thumb/zarp_coin.png?1696526381",
+    "symbol": "ZARP",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xb755d5bc7de83232b9df1886bd5cdb38895933b0": {
+    "assetId": "eip155:1/erc20:0xb755d5bc7de83232b9df1886bd5cdb38895933b0",
+    "chainId": "eip155:1",
+    "name": "hiMFERS",
+    "precision": 18,
+    "color": "#E0E0E0",
+    "icon": "https://assets.coingecko.com/coins/images/28719/thumb/hiMFERs.png?1696527700",
+    "symbol": "HIMFERS",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xb76cf92076adbf1d9c39294fa8e7a67579fde357": {
+    "assetId": "eip155:1/erc20:0xb76cf92076adbf1d9c39294fa8e7a67579fde357",
+    "chainId": "eip155:1",
+    "name": "Aave v3 RPL",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/32909/thumb/RPL.png?1699817497",
+    "symbol": "ARPL",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xb777eb033557490abb7fb8f3948000826423ea07": {
+    "assetId": "eip155:1/erc20:0xb777eb033557490abb7fb8f3948000826423ea07",
+    "chainId": "eip155:1",
+    "name": "Chad Index",
+    "precision": 18,
+    "color": "#5979A8",
+    "icon": "https://assets.coingecko.com/coins/images/31542/thumb/logo.jpg?1696530355",
+    "symbol": "CHAD",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xb794ad95317f75c44090f64955954c3849315ffe": {
+    "assetId": "eip155:1/erc20:0xb794ad95317f75c44090f64955954c3849315ffe",
+    "chainId": "eip155:1",
+    "name": "Ribbit Meme",
+    "precision": 18,
+    "color": "#806C21",
+    "icon": "https://assets.coingecko.com/coins/images/30145/thumb/ribbit-logo.png?1696529066",
+    "symbol": "RIBBIT",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xb7b1570e26315baad369b8ea0a943b7f140db9eb": {
+    "assetId": "eip155:1/erc20:0xb7b1570e26315baad369b8ea0a943b7f140db9eb",
+    "chainId": "eip155:1",
+    "name": "DEEPSPACE on Ethereum",
+    "precision": 9,
+    "color": "#0C060C",
+    "icon": "https://assets.coingecko.com/coins/images/17953/thumb/f1LFu897_400x400.jpg?1696517473",
+    "symbol": "DPS",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xb7bda6a89e724f63572ce68fddc1a6d1d5d24bcf": {
+    "assetId": "eip155:1/erc20:0xb7bda6a89e724f63572ce68fddc1a6d1d5d24bcf",
+    "chainId": "eip155:1",
+    "name": "OGzClub on Ethereum",
+    "precision": 18,
+    "color": "#E7801B",
+    "icon": "https://assets.coingecko.com/coins/images/31121/thumb/25832.png?1696529951",
+    "symbol": "OGZ",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xb7be27ba608641f0b6f152c8b432757f3685d2b0": {
+    "assetId": "eip155:1/erc20:0xb7be27ba608641f0b6f152c8b432757f3685d2b0",
+    "chainId": "eip155:1",
+    "name": "Flooring Protocol  Meebits",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/32769/thumb/meebits_logo.d8ecd01f_%281%29.png?1699337785",
+    "symbol": "",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xb7c2fcd6d7922eddd2a7a9b0524074a60d5b472c": {
+    "assetId": "eip155:1/erc20:0xb7c2fcd6d7922eddd2a7a9b0524074a60d5b472c",
+    "chainId": "eip155:1",
+    "name": "VentiSwap",
+    "precision": 18,
+    "color": "#4765C6",
+    "icon": "https://assets.coingecko.com/coins/images/25591/thumb/output-onlinepngtools-2_2.png?1696524725",
+    "symbol": "VST",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xb7cb1c96db6b22b0d3d9536e0108d062bd488f74": {
+    "assetId": "eip155:1/erc20:0xb7cb1c96db6b22b0d3d9536e0108d062bd488f74",
+    "chainId": "eip155:1",
+    "name": "Waltonchain",
+    "precision": 18,
+    "color": "#8404FC",
+    "icon": "https://assets.coingecko.com/coins/images/1093/thumb/ggx6nnW.png?1696502192",
+    "symbol": "WTC",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xb7dfa8eac59361b1d9f0c2641b516159c5306f60": {
+    "assetId": "eip155:1/erc20:0xb7dfa8eac59361b1d9f0c2641b516159c5306f60",
+    "chainId": "eip155:1",
+    "name": "Livestreambets",
+    "precision": 18,
+    "color": "#D4B7B8",
+    "icon": "https://assets.coingecko.com/coins/images/31239/thumb/Livestreambets.png?1696530065",
+    "symbol": "LIVE",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xb8366948b4a3f07bcbf14eb1739daa42a26b07c4": {
+    "assetId": "eip155:1/erc20:0xb8366948b4a3f07bcbf14eb1739daa42a26b07c4",
+    "chainId": "eip155:1",
+    "name": "VALOBIT",
+    "precision": 18,
+    "color": "#DDA334",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xB8366948B4A3F07BcBf14EB1739daA42A26b07c4/logo.png",
+    "symbol": "VBIT",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xb83c27805aaca5c7082eb45c868d955cf04c337f": {
+    "assetId": "eip155:1/erc20:0xb83c27805aaca5c7082eb45c868d955cf04c337f",
+    "chainId": "eip155:1",
+    "name": "JungleKing TigerCoin",
+    "precision": 18,
+    "color": "#D7B564",
+    "icon": "https://assets.coingecko.com/coins/images/26494/thumb/jungleparty.png?1696525568",
+    "symbol": "TIGER",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xb840d10d840ef47c233fec1fd040f5b145a6dfa5": {
+    "assetId": "eip155:1/erc20:0xb840d10d840ef47c233fec1fd040f5b145a6dfa5",
+    "chainId": "eip155:1",
+    "name": "STREETH",
+    "precision": 18,
+    "color": "#1C1C1C",
+    "icon": "https://assets.coingecko.com/coins/images/24954/thumb/streeth.png?1696524108",
+    "symbol": "STREETH",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xb8647e90c0645152fccf4d9abb6b59eb4aa99052": {
+    "assetId": "eip155:1/erc20:0xb8647e90c0645152fccf4d9abb6b59eb4aa99052",
+    "chainId": "eip155:1",
+    "name": "KeyFi on Ethereum",
+    "precision": 18,
+    "color": "#055CD4",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xB8647e90C0645152Fccf4d9AbB6B59Eb4AA99052/logo.png",
+    "symbol": "KEYFI",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xb870679a7fa65b924026f496de7f27c1dd0e5c5f": {
+    "assetId": "eip155:1/erc20:0xb870679a7fa65b924026f496de7f27c1dd0e5c5f",
+    "chainId": "eip155:1",
+    "name": "Hello Pets on Ethereum",
+    "precision": 18,
+    "color": "#EFEFF0",
+    "icon": "https://assets.coingecko.com/coins/images/14354/thumb/hello_pets.jpg?1696514040",
+    "symbol": "PET",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xb893a8049f250b57efa8c62d51527a22404d7c9a": {
+    "assetId": "eip155:1/erc20:0xb893a8049f250b57efa8c62d51527a22404d7c9a",
+    "chainId": "eip155:1",
+    "name": "American Shiba on Ethereum",
+    "precision": 9,
+    "color": "#DEBAA7",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xB893A8049f250b57eFA8C62D51527a22404D7c9A/logo.png",
+    "symbol": "USHIBA",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xb8a768cd332e4461fccfbdb1d0292ceffbb2bb8a": {
+    "assetId": "eip155:1/erc20:0xb8a768cd332e4461fccfbdb1d0292ceffbb2bb8a",
+    "chainId": "eip155:1",
+    "name": "COLLIE INU on Ethereum",
+    "precision": 18,
+    "color": "#775848",
+    "icon": "https://assets.coingecko.com/coins/images/27365/thumb/Logo_New_200.png?1696526409",
+    "symbol": "COLLIE",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xb8b295df2cd735b15be5eb419517aa626fc43cd5": {
+    "assetId": "eip155:1/erc20:0xb8b295df2cd735b15be5eb419517aa626fc43cd5",
+    "chainId": "eip155:1",
+    "name": "Staked LINK",
+    "precision": 18,
+    "color": "#B4BCEC",
+    "icon": "https://assets.coingecko.com/coins/images/29271/thumb/ST.LINK_tokenl_blue.png?1696528224",
+    "symbol": "STLINK",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xb8baa0e4287890a5f79863ab62b7f175cecbd433": {
+    "assetId": "eip155:1/erc20:0xb8baa0e4287890a5f79863ab62b7f175cecbd433",
+    "chainId": "eip155:1",
+    "name": "Swerve",
+    "precision": 18,
+    "color": "#232424",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xB8BAa0e4287890a5F79863aB62b7F175ceCbD433/logo.png",
+    "symbol": "SWRV",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xb8c3b7a2a618c552c23b1e4701109a9e756bab67": {
+    "assetId": "eip155:1/erc20:0xb8c3b7a2a618c552c23b1e4701109a9e756bab67",
+    "chainId": "eip155:1",
+    "name": "1INCH yVault",
+    "precision": 18,
+    "color": "#E6D8DE",
+    "icon": "https://assets.coingecko.com/coins/images/28795/thumb/yv1INCH-128-0xB8C3B7A2A618C552C23B1E4701109a9E756Bab67.png?1696527773",
+    "symbol": "YV1INCH",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xb8c55c80a1cb7394088a36c6b634dc2bf3c6fb67": {
+    "assetId": "eip155:1/erc20:0xb8c55c80a1cb7394088a36c6b634dc2bf3c6fb67",
+    "chainId": "eip155:1",
+    "name": "Pepe Doge",
+    "precision": 18,
+    "color": "#181D0E",
+    "icon": "https://assets.coingecko.com/coins/images/29968/thumb/Pepedoge.jpeg?1696528894",
+    "symbol": "PEPEDOGE",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xb8c77482e45f1f44de1745f52c74426c631bdd52": {
+    "assetId": "eip155:1/erc20:0xb8c77482e45f1f44de1745f52c74426c631bdd52",
+    "chainId": "eip155:1",
+    "name": "BNB on Ethereum",
+    "precision": 18,
+    "color": "#FBECC6",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xB8c77482e45F1F44dE1745F52C74426C631bDD52/logo.png",
+    "symbol": "BNB",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xb8cb60d07056d54df518785de9600bd4e6b2b53b": {
+    "assetId": "eip155:1/erc20:0xb8cb60d07056d54df518785de9600bd4e6b2b53b",
+    "chainId": "eip155:1",
+    "name": "Javelin",
+    "precision": 18,
+    "color": "#989A9D",
+    "icon": "https://assets.coingecko.com/coins/images/32109/thumb/999.png?1696530905",
+    "symbol": "JVL",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xb8db81b84d30e2387de0ff330420a4aaa6688134": {
+    "assetId": "eip155:1/erc20:0xb8db81b84d30e2387de0ff330420a4aaa6688134",
+    "chainId": "eip155:1",
+    "name": "Aave AMM UniLINKWETH",
+    "precision": 18,
+    "color": "#55A8CD",
+    "icon": "https://assets.coingecko.com/coins/images/17221/thumb/aAmmUniLINKWETH.png?1696516776",
+    "symbol": "AAMMUNILINKWETH",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xb8e2e2101ed11e9138803cd3e06e16dd19910647": {
+    "assetId": "eip155:1/erc20:0xb8e2e2101ed11e9138803cd3e06e16dd19910647",
+    "chainId": "eip155:1",
+    "name": "ArdCoin",
+    "precision": 2,
+    "color": "#604B2A",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xB8E2e2101eD11e9138803cd3e06e16dd19910647/logo.png",
+    "symbol": "ARDX",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xb8e3bb633f7276cc17735d86154e0ad5ec9928c0": {
+    "assetId": "eip155:1/erc20:0xb8e3bb633f7276cc17735d86154e0ad5ec9928c0",
+    "chainId": "eip155:1",
+    "name": "VelasPad on Ethereum",
+    "precision": 18,
+    "color": "#099CB4",
+    "icon": "https://assets.coingecko.com/coins/images/18535/thumb/11654.png?1696518015",
+    "symbol": "VLXPAD",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xb8fa12f8409da31a4fc43d15c4c78c33d8213b9b": {
+    "assetId": "eip155:1/erc20:0xb8fa12f8409da31a4fc43d15c4c78c33d8213b9b",
+    "chainId": "eip155:1",
+    "name": "CaliCoin",
+    "precision": 18,
+    "color": "#A47A22",
+    "icon": "https://assets.coingecko.com/coins/images/14998/thumb/cropped-Logo-transparent-background-1.png?1696514662",
+    "symbol": "CALI",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xb9098d3669a78e9afe8b94a97290407400d9da31": {
+    "assetId": "eip155:1/erc20:0xb9098d3669a78e9afe8b94a97290407400d9da31",
+    "chainId": "eip155:1",
+    "name": "Protectorate Protocol",
+    "precision": 18,
+    "color": "#ABAFAF",
+    "icon": "https://assets.coingecko.com/coins/images/30901/thumb/IMG_1778.png?1696529746",
+    "symbol": "PRTC",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xb90b2a35c65dbc466b04240097ca756ad2005295": {
+    "assetId": "eip155:1/erc20:0xb90b2a35c65dbc466b04240097ca756ad2005295",
+    "chainId": "eip155:1",
+    "name": "BOBO Coin",
+    "precision": 18,
+    "color": "#723E2C",
+    "icon": "https://assets.coingecko.com/coins/images/30388/thumb/bobologo.png?1696529277",
+    "symbol": "BOBO",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xb92ba0a6a843379499770de82aa936d6ba0fd8ca": {
+    "assetId": "eip155:1/erc20:0xb92ba0a6a843379499770de82aa936d6ba0fd8ca",
+    "chainId": "eip155:1",
+    "name": "Youwho on Ethereum",
+    "precision": 18,
+    "color": "#06CC94",
+    "icon": "https://assets.coingecko.com/coins/images/25353/thumb/youwho_200.png?1696524487",
+    "symbol": "YOU",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xb939da54f9748440a1b279d42be1296942732288": {
+    "assetId": "eip155:1/erc20:0xb939da54f9748440a1b279d42be1296942732288",
+    "chainId": "eip155:1",
+    "name": "Fonzy",
+    "precision": 18,
+    "color": "#3D311D",
+    "icon": "https://assets.coingecko.com/coins/images/30245/thumb/FONZY_CROWN_2_HANDS_%282%29.png?1696529154",
+    "symbol": "FONZY",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xb94acdf8662cd955f137e0c9c9fba535c87b57b4": {
+    "assetId": "eip155:1/erc20:0xb94acdf8662cd955f137e0c9c9fba535c87b57b4",
+    "chainId": "eip155:1",
+    "name": "Mona Token",
+    "precision": 18,
+    "color": "#DEBEB1",
+    "icon": "https://assets.coingecko.com/coins/images/32376/thumb/monatoken.png?1698035251",
+    "symbol": "LISA",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xb97048628db6b661d4c2aa833e95dbe1a905b280": {
+    "assetId": "eip155:1/erc20:0xb97048628db6b661d4c2aa833e95dbe1a905b280",
+    "chainId": "eip155:1",
+    "name": "TenX",
+    "precision": 18,
+    "color": "#171922",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xB97048628DB6B661D4C2aA833e95Dbe1A905B280/logo.png",
+    "symbol": "PAY",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xb98d4c97425d9908e66e53a6fdf673acca0be986": {
+    "assetId": "eip155:1/erc20:0xb98d4c97425d9908e66e53a6fdf673acca0be986",
+    "chainId": "eip155:1",
+    "name": "Arcblock",
+    "precision": 18,
+    "color": "#34F6DE",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xB98d4C97425d9908E66E53A6fDf673ACcA0BE986/logo.png",
+    "symbol": "ABT",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xb990d93c308a31c737aa91839e8ba8eaf4017d7a": {
+    "assetId": "eip155:1/erc20:0xb990d93c308a31c737aa91839e8ba8eaf4017d7a",
+    "chainId": "eip155:1",
+    "name": "PirateCash on Ethereum",
+    "precision": 8,
+    "color": "#C0C0C0",
+    "icon": "https://assets.coingecko.com/coins/images/7155/thumb/logo_%281%29.png?1696507453",
+    "symbol": "PIRATE",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xb9d7cb55f463405cdfbe4e90a6d2df01c2b92bf1": {
+    "assetId": "eip155:1/erc20:0xb9d7cb55f463405cdfbe4e90a6d2df01c2b92bf1",
+    "chainId": "eip155:1",
+    "name": "Aave UNI",
+    "precision": 18,
+    "color": "#F11D88",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xB9D7CB55f463405CDfBe4E90a6D2Df01C2B92BF1/logo.png",
+    "symbol": "AUNI",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xb9d7dddca9a4ac480991865efef82e01273f79c3": {
+    "assetId": "eip155:1/erc20:0xb9d7dddca9a4ac480991865efef82e01273f79c3",
+    "chainId": "eip155:1",
+    "name": "Boosted LUSD",
+    "precision": 18,
+    "color": "#3954A7",
+    "icon": "https://assets.coingecko.com/coins/images/27681/thumb/bLUSD_logo.png?1696526709",
+    "symbol": "BLUSD",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xb9d99c33ea2d86ec5ec6b8a4dd816ebba64404af": {
+    "assetId": "eip155:1/erc20:0xb9d99c33ea2d86ec5ec6b8a4dd816ebba64404af",
+    "chainId": "eip155:1",
+    "name": "K21",
+    "precision": 18,
+    "color": "#F1F1F1",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xB9d99C33eA2d86EC5eC6b8A4dD816EBBA64404AF/logo.png",
+    "symbol": "K21",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xb9ef770b6a5e12e45983c5d80545258aa38f3b78": {
+    "assetId": "eip155:1/erc20:0xb9ef770b6a5e12e45983c5d80545258aa38f3b78",
+    "chainId": "eip155:1",
+    "name": "Zus on Ethereum",
+    "precision": 10,
+    "color": "#E0E0E0",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xb9EF770B6A5e12E45983C5D80545258aA38F3B78/logo.png",
+    "symbol": "ZCN",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xba100000625a3754423978a60c9317c58a424e3d": {
+    "assetId": "eip155:1/erc20:0xba100000625a3754423978a60c9317c58a424e3d",
+    "chainId": "eip155:1",
+    "name": "Balancer on Ethereum",
+    "precision": 18,
+    "color": "#040404",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xba100000625a3754423978a60c9317c58a424e3D/logo.png",
+    "symbol": "BAL",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xba10085f901ae4048134e556d579cfd1bfaf89cf": {
+    "assetId": "eip155:1/erc20:0xba10085f901ae4048134e556d579cfd1bfaf89cf",
+    "chainId": "eip155:1",
+    "name": "Flooring Protocol  Elemental",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/32785/thumb/elemental_%281%29.png?1699352536",
+    "symbol": "ELEM",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xba11d00c5f74255f56a5e366f4f77f5a186d7f55": {
+    "assetId": "eip155:1/erc20:0xba11d00c5f74255f56a5e366f4f77f5a186d7f55",
+    "chainId": "eip155:1",
+    "name": "Band Protocol",
+    "precision": 18,
+    "color": "#546CFC",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xBA11D00c5f74255f56a5E366F4F77f5A186d7f55/logo.png",
+    "symbol": "BAND",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xba3335588d9403515223f109edc4eb7269a9ab5d": {
+    "assetId": "eip155:1/erc20:0xba3335588d9403515223f109edc4eb7269a9ab5d",
+    "chainId": "eip155:1",
+    "name": "Gearbox",
+    "precision": 18,
+    "color": "#181922",
+    "icon": "https://assets.coingecko.com/coins/images/21630/thumb/gear.png?1696520990",
+    "symbol": "GEAR",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xba386a4ca26b85fd057ab1ef86e3dc7bdeb5ce70": {
+    "assetId": "eip155:1/erc20:0xba386a4ca26b85fd057ab1ef86e3dc7bdeb5ce70",
+    "chainId": "eip155:1",
+    "name": "Jesus Coin",
+    "precision": 18,
+    "color": "#A58358",
+    "icon": "https://assets.coingecko.com/coins/images/30036/thumb/JESUS_COIN_LOGO.png?1696528959",
+    "symbol": "JESUS",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xba3e5f8b4200a5eb856ff2c3e001ab29444491aa": {
+    "assetId": "eip155:1/erc20:0xba3e5f8b4200a5eb856ff2c3e001ab29444491aa",
+    "chainId": "eip155:1",
+    "name": "Minebase",
+    "precision": 18,
+    "color": "#384443",
+    "icon": "https://assets.coingecko.com/coins/images/27313/thumb/mbase.png?1696526362",
+    "symbol": "MBASE",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xba41ddf06b7ffd89d1267b5a93bfef2424eb2003": {
+    "assetId": "eip155:1/erc20:0xba41ddf06b7ffd89d1267b5a93bfef2424eb2003",
+    "chainId": "eip155:1",
+    "name": "Mythos",
+    "precision": 18,
+    "color": "#EB3649",
+    "icon": "https://assets.coingecko.com/coins/images/28045/thumb/Mythos_Logos_200x200.png?1696527059",
+    "symbol": "MYTH",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xba50933c268f567bdc86e1ac131be072c6b0b71a": {
+    "assetId": "eip155:1/erc20:0xba50933c268f567bdc86e1ac131be072c6b0b71a",
+    "chainId": "eip155:1",
+    "name": "ARPA on Ethereum",
+    "precision": 18,
+    "color": "#C2C9CE",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xBA50933C268F567BDC86E1aC131BE072C6B0b71a/logo.png",
+    "symbol": "ARPA",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xba58444c8050ed9385b7417533a73644036d21eb": {
+    "assetId": "eip155:1/erc20:0xba58444c8050ed9385b7417533a73644036d21eb",
+    "chainId": "eip155:1",
+    "name": "Lord of Dragons",
+    "precision": 18,
+    "color": "#6C3C0C",
+    "icon": "https://assets.coingecko.com/coins/images/29471/thumb/sym_1000.png?1696528416",
+    "symbol": "LOGT",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xba5bde662c17e2adff1075610382b9b691296350": {
+    "assetId": "eip155:1/erc20:0xba5bde662c17e2adff1075610382b9b691296350",
+    "chainId": "eip155:1",
+    "name": "SuperRare",
+    "precision": 18,
+    "color": "#2B9896",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xba5BDe662c17e2aDFF1075610382B9B691296350/logo.png",
+    "symbol": "RARE",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xba6b0dbb2ba8daa8f5d6817946393aef8d3a4487": {
+    "assetId": "eip155:1/erc20:0xba6b0dbb2ba8daa8f5d6817946393aef8d3a4487",
+    "chainId": "eip155:1",
+    "name": "Hillstone Finance on Ethereum",
+    "precision": 18,
+    "color": "#040404",
+    "icon": "https://assets.coingecko.com/coins/images/22335/thumb/logo_-_2022-01-07T094430.368.png?1696521679",
+    "symbol": "HSF",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xba745513acebcbb977497c569d4f7d340f2a936b": {
+    "assetId": "eip155:1/erc20:0xba745513acebcbb977497c569d4f7d340f2a936b",
+    "chainId": "eip155:1",
+    "name": "Mainstream For The Underground on Ethereum",
+    "precision": 18,
+    "color": "#DBD6CF",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xbA745513ACEbcBb977497C569D4F7d340f2A936B/logo.png",
+    "symbol": "MFTU",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xba8a621b4a54e61c442f5ec623687e2a942225ef": {
+    "assetId": "eip155:1/erc20:0xba8a621b4a54e61c442f5ec623687e2a942225ef",
+    "chainId": "eip155:1",
+    "name": "Sandclock on Ethereum",
+    "precision": 18,
+    "color": "#242424",
+    "icon": "https://assets.coingecko.com/coins/images/19368/thumb/sandclock.jpg?1696518808",
+    "symbol": "QUARTZ",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xba93ef534094f8b7001ece2691168140965341ab": {
+    "assetId": "eip155:1/erc20:0xba93ef534094f8b7001ece2691168140965341ab",
+    "chainId": "eip155:1",
+    "name": "Beauty Bakery Linked Operation Transact",
+    "precision": 18,
+    "color": "#15BDF1",
+    "icon": "https://assets.coingecko.com/coins/images/27688/thumb/LOTT.jpg?1696526716",
+    "symbol": "LOTT",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xbaac2b4491727d78d2b78815144570b9f2fe8899": {
+    "assetId": "eip155:1/erc20:0xbaac2b4491727d78d2b78815144570b9f2fe8899",
+    "chainId": "eip155:1",
+    "name": "The Doge NFT on Ethereum",
+    "precision": 18,
+    "color": "#D0B882",
+    "icon": "https://assets.coingecko.com/coins/images/18111/thumb/Doge.png?1696517615",
+    "symbol": "DOG",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xbad96ea5d43156a99a94cd1fd36a330aa7e2273e": {
+    "assetId": "eip155:1/erc20:0xbad96ea5d43156a99a94cd1fd36a330aa7e2273e",
+    "chainId": "eip155:1",
+    "name": "JDB",
+    "precision": 18,
+    "color": "#24343C",
+    "icon": "https://assets.coingecko.com/coins/images/28105/thumb/new_logo.png?1696527114",
+    "symbol": "JDB",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xbadff0ef41d2a68f22de21eabca8a59aaf495cf0": {
+    "assetId": "eip155:1/erc20:0xbadff0ef41d2a68f22de21eabca8a59aaf495cf0",
+    "chainId": "eip155:1",
+    "name": "Kabosu Inu",
+    "precision": 18,
+    "color": "#158DFC",
+    "icon": "https://assets.coingecko.com/coins/images/28619/thumb/Kabosu_Inu.png?1696527604",
+    "symbol": "KABOSU",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xbb0e17ef65f82ab018d8edd776e8dd940327b28b": {
+    "assetId": "eip155:1/erc20:0xbb0e17ef65f82ab018d8edd776e8dd940327b28b",
+    "chainId": "eip155:1",
+    "name": "Axie Infinity on Ethereum",
+    "precision": 18,
+    "color": "#043686",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xBB0E17EF65F82Ab018d8EDd776e8DD940327B28b/logo.png",
+    "symbol": "AXS",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xbb126042235e6bd38b17744cb31a8bf4a206c045": {
+    "assetId": "eip155:1/erc20:0xbb126042235e6bd38b17744cb31a8bf4a206c045",
+    "chainId": "eip155:1",
+    "name": "fanC",
+    "precision": 18,
+    "color": "#EEEDF2",
+    "icon": "https://assets.coingecko.com/coins/images/26500/thumb/hJ6MD49P_400x400.jpeg?1696525574",
+    "symbol": "FANC",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xbb19da2482308ec02a242aced4fe0f09d06b12a7": {
+    "assetId": "eip155:1/erc20:0xbb19da2482308ec02a242aced4fe0f09d06b12a7",
+    "chainId": "eip155:1",
+    "name": "Flash 3 0",
+    "precision": 18,
+    "color": "#FCC404",
+    "icon": "https://assets.coingecko.com/coins/images/31151/thumb/logo_200x200.png?1696529979",
+    "symbol": "FLASH",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xbb1ee07d6c7baeb702949904080eb61f5d5e7732": {
+    "assetId": "eip155:1/erc20:0xbb1ee07d6c7baeb702949904080eb61f5d5e7732",
+    "chainId": "eip155:1",
+    "name": "Dogey Inu",
+    "precision": 18,
+    "color": "#1A1312",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xbb1EE07d6c7BAeB702949904080eb61f5D5e7732/logo.png",
+    "symbol": "DINU",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xbb3a8fd6ec4bf0fdc6cd2739b1e41192d12b1873": {
+    "assetId": "eip155:1/erc20:0xbb3a8fd6ec4bf0fdc6cd2739b1e41192d12b1873",
+    "chainId": "eip155:1",
+    "name": "Orbofi AI on Ethereum",
+    "precision": 18,
+    "color": "#C4DAAA",
+    "icon": "https://assets.coingecko.com/coins/images/30216/thumb/new_V_test2.png?1696529127",
+    "symbol": "OBI",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xbb4f3ad7a2cf75d8effc4f6d7bd21d95f06165ca": {
+    "assetId": "eip155:1/erc20:0xbb4f3ad7a2cf75d8effc4f6d7bd21d95f06165ca",
+    "chainId": "eip155:1",
+    "name": "Sheesh",
+    "precision": 18,
+    "color": "#942018",
+    "icon": "https://assets.coingecko.com/coins/images/30858/thumb/1111.png?1696529705",
+    "symbol": "SHS",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xbb556b0ee2cbd89ed95ddea881477723a3aa8f8b": {
+    "assetId": "eip155:1/erc20:0xbb556b0ee2cbd89ed95ddea881477723a3aa8f8b",
+    "chainId": "eip155:1",
+    "name": "AliceNet",
+    "precision": 18,
+    "color": "#E03421",
+    "icon": "https://assets.coingecko.com/coins/images/29417/thumb/LinkedIn_-_Profile_300_x_300.png?1696528366",
+    "symbol": "ALCA",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xbb63e6be33bc5b5386d7ab0529dc6c400f2ac2ec": {
+    "assetId": "eip155:1/erc20:0xbb63e6be33bc5b5386d7ab0529dc6c400f2ac2ec",
+    "chainId": "eip155:1",
+    "name": "Cuckadoodledoo",
+    "precision": 18,
+    "color": "#D8CCA9",
+    "icon": "https://assets.coingecko.com/coins/images/31631/thumb/Cuckman__%281%29.png?1696530447",
+    "symbol": "CUCK",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xbb6881874825e60e1160416d6c426eae65f2459e": {
+    "assetId": "eip155:1/erc20:0xbb6881874825e60e1160416d6c426eae65f2459e",
+    "chainId": "eip155:1",
+    "name": "Balancer Boosted Aave WETH",
+    "precision": 18,
+    "color": "#E8E9EE",
+    "icon": "https://assets.coingecko.com/coins/images/31285/thumb/eth-diamond-black-gray.png?1696530108",
+    "symbol": "BB-A-WETH",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xbb6cf73a00f480d0951ba979a7606857cdde626b": {
+    "assetId": "eip155:1/erc20:0xbb6cf73a00f480d0951ba979a7606857cdde626b",
+    "chainId": "eip155:1",
+    "name": "Arix on Ethereum",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/13485/thumb/ARIX.png?1696513245",
+    "symbol": "ARIX",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xbb97e381f1d1e94ffa2a5844f6875e6146981009": {
+    "assetId": "eip155:1/erc20:0xbb97e381f1d1e94ffa2a5844f6875e6146981009",
+    "chainId": "eip155:1",
+    "name": "WiBX",
+    "precision": 18,
+    "color": "#11EFAF",
+    "icon": "https://assets.coingecko.com/coins/images/11009/thumb/wibx_new_logo.png?1696510957",
+    "symbol": "WBX",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xbb9fd9fa4863c03c574007ff3370787b9ce65ff6": {
+    "assetId": "eip155:1/erc20:0xbb9fd9fa4863c03c574007ff3370787b9ce65ff6",
+    "chainId": "eip155:1",
+    "name": "HILO",
+    "precision": 18,
+    "color": "#3F28AF",
+    "icon": "https://assets.coingecko.com/coins/images/28661/thumb/cmchiloo.png?1696527646",
+    "symbol": "HILO",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xbba39fd2935d5769116ce38d46a71bde9cf03099": {
+    "assetId": "eip155:1/erc20:0xbba39fd2935d5769116ce38d46a71bde9cf03099",
+    "chainId": "eip155:1",
+    "name": "Choise com",
+    "precision": 18,
+    "color": "#1D1E24",
+    "icon": "https://assets.coingecko.com/coins/images/25935/thumb/cho_%282%29.png?1696525014",
+    "symbol": "CHO",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xbbbbbbb5aa847a2003fbc6b5c16df0bd1e725f61": {
+    "assetId": "eip155:1/erc20:0xbbbbbbb5aa847a2003fbc6b5c16df0bd1e725f61",
+    "chainId": "eip155:1",
+    "name": "B Protocol",
+    "precision": 18,
+    "color": "#0A1213",
+    "icon": "https://assets.coingecko.com/coins/images/15110/thumb/66428641.jpg?1696514768",
+    "symbol": "BPRO",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xbbbbca6a901c926f240b89eacb641d8aec7aeafd": {
+    "assetId": "eip155:1/erc20:0xbbbbca6a901c926f240b89eacb641d8aec7aeafd",
+    "chainId": "eip155:1",
+    "name": "Loopring on Ethereum",
+    "precision": 18,
+    "color": "#2A63F3",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xBBbbCA6A901c926F240b89EacB641d8Aec7AEafD/logo.png",
+    "symbol": "LRC",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xbbc25e2a2948df4abf61a138f570ce6c4e729fb1": {
+    "assetId": "eip155:1/erc20:0xbbc25e2a2948df4abf61a138f570ce6c4e729fb1",
+    "chainId": "eip155:1",
+    "name": "Slurp",
+    "precision": 18,
+    "color": "#E8BA7D",
+    "icon": "https://assets.coingecko.com/coins/images/32065/thumb/photo_2023-09-24_17-31-55.jpg?1696530862",
+    "symbol": "SLURP",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xbbc2ae13b23d715c30720f079fcd9b4a74093505": {
+    "assetId": "eip155:1/erc20:0xbbc2ae13b23d715c30720f079fcd9b4a74093505",
+    "chainId": "eip155:1",
+    "name": "Ethernity Chain",
+    "precision": 18,
+    "color": "#04E4C4",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xBBc2AE13b23d715c30720F079fcd9B4a74093505/logo.png",
+    "symbol": "ERN",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xbbc7f7a6aadac103769c66cbc69ab720f7f9eae3": {
+    "assetId": "eip155:1/erc20:0xbbc7f7a6aadac103769c66cbc69ab720f7f9eae3",
+    "chainId": "eip155:1",
+    "name": "INX Token",
+    "precision": 18,
+    "color": "#142454",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xBBC7f7A6AADAc103769C66CBC69AB720f7F9Eae3/logo.png",
+    "symbol": "INX",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xbbcb0356bb9e6b3faa5cbf9e5f36185d53403ac9": {
+    "assetId": "eip155:1/erc20:0xbbcb0356bb9e6b3faa5cbf9e5f36185d53403ac9",
+    "chainId": "eip155:1",
+    "name": "Backed Coinbase Global on Ethereum",
+    "precision": 18,
+    "color": "#0548DB",
+    "icon": "https://assets.coingecko.com/coins/images/31872/thumb/b-COIN-200x200.png?1696530684",
+    "symbol": "BCOIN",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xbbeca80a4c99c3b1bd3c10e64595d0fc7dc26ee0": {
+    "assetId": "eip155:1/erc20:0xbbeca80a4c99c3b1bd3c10e64595d0fc7dc26ee0",
+    "chainId": "eip155:1",
+    "name": "hiMEEBITS",
+    "precision": 18,
+    "color": "#5547E4",
+    "icon": "https://assets.coingecko.com/coins/images/28126/thumb/himeebit.png?1696527133",
+    "symbol": "HIMEEBITS",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xbbff34e47e559ef680067a6b1c980639eeb64d24": {
+    "assetId": "eip155:1/erc20:0xbbff34e47e559ef680067a6b1c980639eeb64d24",
+    "chainId": "eip155:1",
+    "name": "Leverj Gluon",
+    "precision": 18,
+    "color": "#169ED6",
+    "icon": "https://assets.coingecko.com/coins/images/12950/thumb/Gluon256x256.png?1696512739",
+    "symbol": "L2",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xbc0e2969d23a084a0bb65a2b9a4242e7f9ea65b6": {
+    "assetId": "eip155:1/erc20:0xbc0e2969d23a084a0bb65a2b9a4242e7f9ea65b6",
+    "chainId": "eip155:1",
+    "name": "Clippy AI",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/33124/thumb/PHOTO-2023-11-10-23-46-27.jpg?1700794900",
+    "symbol": "CLIPPY",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xbc17729fdf562723f0267f79ff25ade441056d87": {
+    "assetId": "eip155:1/erc20:0xbc17729fdf562723f0267f79ff25ade441056d87",
+    "chainId": "eip155:1",
+    "name": "Karus Starter on Ethereum",
+    "precision": 18,
+    "color": "#E4047C",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xBc17729fDf562723f0267F79FF25aDE441056d87/logo.png",
+    "symbol": "KST",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xbc194e6f748a222754c3e8b9946922c09e7d4e91": {
+    "assetId": "eip155:1/erc20:0xbc194e6f748a222754c3e8b9946922c09e7d4e91",
+    "chainId": "eip155:1",
+    "name": "Lever Network on Ethereum",
+    "precision": 18,
+    "color": "#242B3B",
+    "icon": "https://assets.coingecko.com/coins/images/15323/thumb/lever.PNG?1696514972",
+    "symbol": "LEV",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xbc19712feb3a26080ebf6f2f7849b417fdd792ca": {
+    "assetId": "eip155:1/erc20:0xbc19712feb3a26080ebf6f2f7849b417fdd792ca",
+    "chainId": "eip155:1",
+    "name": "BoringDAO on Ethereum",
+    "precision": 18,
+    "color": "#2267BD",
+    "icon": "https://assets.coingecko.com/coins/images/16429/thumb/Tjq3pXEH_400x400.jpg?1696516025",
+    "symbol": "BORING",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xbc391e78b0ea0d1db04890732742494e7fbfc118": {
+    "assetId": "eip155:1/erc20:0xbc391e78b0ea0d1db04890732742494e7fbfc118",
+    "chainId": "eip155:1",
+    "name": "VANA WORLD",
+    "precision": 18,
+    "color": "#44545D",
+    "icon": "https://assets.coingecko.com/coins/images/32469/thumb/vana.jpg?1698259899",
+    "symbol": "VANA",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xbc396689893d065f41bc2c6ecbee5e0085233447": {
+    "assetId": "eip155:1/erc20:0xbc396689893d065f41bc2c6ecbee5e0085233447",
+    "chainId": "eip155:1",
+    "name": "Perpetual Protocol on Ethereum",
+    "precision": 18,
+    "color": "#1C5D44",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xbC396689893D065F41bc2C6EcbeE5e0085233447/logo.png",
+    "symbol": "PERP",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xbc4171f45ef0ef66e76f979df021a34b46dcc81d": {
+    "assetId": "eip155:1/erc20:0xbc4171f45ef0ef66e76f979df021a34b46dcc81d",
+    "chainId": "eip155:1",
+    "name": "Dora Factory  OLD ",
+    "precision": 18,
+    "color": "#18191B",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xbc4171f45EF0EF66E76F979dF021a34B46DCc81d/logo.png",
+    "symbol": "DORA",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xbc526a4ae9632d42291ad9d5ef29d36dd4d0ce26": {
+    "assetId": "eip155:1/erc20:0xbc526a4ae9632d42291ad9d5ef29d36dd4d0ce26",
+    "chainId": "eip155:1",
+    "name": "Flooring Protocol  MoonBirds",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/32777/thumb/mmoonbirds_%281%29.png?1699348940",
+    "symbol": "MOONBIRDS",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xbc5991ccd8caceba01edc44c2bb9832712c29cab": {
+    "assetId": "eip155:1/erc20:0xbc5991ccd8caceba01edc44c2bb9832712c29cab",
+    "chainId": "eip155:1",
+    "name": "Unagii USD Coin",
+    "precision": 6,
+    "color": "#3C84CC",
+    "icon": "https://assets.coingecko.com/coins/images/13781/thumb/uUSDC.png?1696513522",
+    "symbol": "UUSDC",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xbc6da0fe9ad5f3b0d58160288917aa56653660e9": {
+    "assetId": "eip155:1/erc20:0xbc6da0fe9ad5f3b0d58160288917aa56653660e9",
+    "chainId": "eip155:1",
+    "name": "Alchemix USD on Ethereum",
+    "precision": 18,
+    "color": "#E4B392",
+    "icon": "https://assets.coingecko.com/coins/images/14114/thumb/Alchemix_USD.png?1696513835",
+    "symbol": "ALUSD",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xbc6e06778708177a18210181b073da747c88490a": {
+    "assetId": "eip155:1/erc20:0xbc6e06778708177a18210181b073da747c88490a",
+    "chainId": "eip155:1",
+    "name": "MOBLAND",
+    "precision": 18,
+    "color": "#FCEC04",
+    "icon": "https://assets.coingecko.com/coins/images/22868/thumb/FullML_Yellow_200px.png?1696522168",
+    "symbol": "SYNR",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xbc8b7ff89eb2b73ecdd579f81424a3b582200808": {
+    "assetId": "eip155:1/erc20:0xbc8b7ff89eb2b73ecdd579f81424a3b582200808",
+    "chainId": "eip155:1",
+    "name": "Curve Inu",
+    "precision": 18,
+    "color": "#EAAE6C",
+    "icon": "https://assets.coingecko.com/coins/images/31759/thumb/0x7ojNgl_400x400.jpg?1696530578",
+    "symbol": "CRVY",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xbc8e35221904f61b4200ca44a08e4dac387ac83a": {
+    "assetId": "eip155:1/erc20:0xbc8e35221904f61b4200ca44a08e4dac387ac83a",
+    "chainId": "eip155:1",
+    "name": "Fair BERC20",
+    "precision": 18,
+    "color": "#FC851D",
+    "icon": "https://assets.coingecko.com/coins/images/30860/thumb/BERClogo3.png_alt_media_token_3c04fa07-9756-4037-8950-e30295030131.png?1696529707",
+    "symbol": "BERC",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xbc953fccbcc9e95dafb35d46992cee966aa972cd": {
+    "assetId": "eip155:1/erc20:0xbc953fccbcc9e95dafb35d46992cee966aa972cd",
+    "chainId": "eip155:1",
+    "name": "DaWae",
+    "precision": 18,
+    "color": "#EEC5A8",
+    "icon": "https://assets.coingecko.com/coins/images/31450/thumb/dawae.jpg?1696530264",
+    "symbol": "DAWAE",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xbcbf09b4b83eb3893d58f0665d21460c04e39d8e": {
+    "assetId": "eip155:1/erc20:0xbcbf09b4b83eb3893d58f0665d21460c04e39d8e",
+    "chainId": "eip155:1",
+    "name": "Sherlock Defi",
+    "precision": 18,
+    "color": "#1B1312",
+    "icon": "https://assets.coingecko.com/coins/images/30020/thumb/20230425_212153_copy_200x200.jpg?1696528944",
+    "symbol": "SLOCK",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xbcc845bb731632ebe8ac0bfacde056170aaaaa06": {
+    "color": "#FFFFFF",
+    "icon": "https://raw.githubusercontent.com/Idle-Labs/idle-dashboard/master/public/images/tokens/USDC.svg",
+    "name": "Clearpool USDC Junior Tranche",
+    "precision": 18,
+    "symbol": "BB_idle_cpFASA-USDC",
+    "chainId": "eip155:1",
+    "assetId": "eip155:1/erc20:0xbcc845bb731632ebe8ac0bfacde056170aaaaa06",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xbcca60bb61934080951369a648fb03df4f96263c": {
+    "assetId": "eip155:1/erc20:0xbcca60bb61934080951369a648fb03df4f96263c",
+    "chainId": "eip155:1",
+    "name": "Aave v2 USDC on Ethereum",
+    "precision": 6,
+    "color": "#B07FB7",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xBcca60bB61934080951369a648Fb03DF4F96263C/logo.png",
+    "symbol": "AUSDC",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xbccd27062ae1a2bea5731c904b96edfb163aba21": {
+    "assetId": "eip155:1/erc20:0xbccd27062ae1a2bea5731c904b96edfb163aba21",
+    "chainId": "eip155:1",
+    "name": "Dogcoin on Ethereum",
+    "precision": 9,
+    "color": "#F9DEAC",
+    "icon": "https://assets.coingecko.com/coins/images/29065/thumb/1024_%281%29.png?1696528032",
+    "symbol": "DOGS",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xbcd4b7de6fde81025f74426d43165a5b0d790fdd": {
+    "assetId": "eip155:1/erc20:0xbcd4b7de6fde81025f74426d43165a5b0d790fdd",
+    "chainId": "eip155:1",
+    "name": "SpiderDAO",
+    "precision": 18,
+    "color": "#047C74",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xbcD4b7dE6fde81025f74426D43165a5b0D790Fdd/logo.png",
+    "symbol": "SPDR",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xbcd657377d4086cc582b215294c3611b997ef1be": {
+    "assetId": "eip155:1/erc20:0xbcd657377d4086cc582b215294c3611b997ef1be",
+    "chainId": "eip155:1",
+    "name": "SnakeBot",
+    "precision": 9,
+    "color": "#B6C6BD",
+    "icon": "https://assets.coingecko.com/coins/images/31256/thumb/snakebot-coingecko.jpg?1696530080",
+    "symbol": "SNAKEBOT",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xbd04ccc050058a6a422851fa6c0f92bb65eb06ca": {
+    "assetId": "eip155:1/erc20:0xbd04ccc050058a6a422851fa6c0f92bb65eb06ca",
+    "chainId": "eip155:1",
+    "name": "Pre Retogeum",
+    "precision": 18,
+    "color": "#EDF2FB",
+    "icon": "https://assets.coingecko.com/coins/images/27397/thumb/IMG_20220921_123729_913.jpg?1696526437",
+    "symbol": "PRTG",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xbd100d061e120b2c67a24453cf6368e63f1be056": {
+    "assetId": "eip155:1/erc20:0xbd100d061e120b2c67a24453cf6368e63f1be056",
+    "chainId": "eip155:1",
+    "name": "iDypius on Ethereum",
+    "precision": 18,
+    "color": "#F8C8C5",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xBD100d061E120b2c67A24453CF6368E63f1Be056/logo.png",
+    "symbol": "IDYP",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xbd15ad921e1b480209af549874a2fcb80dc312bf": {
+    "assetId": "eip155:1/erc20:0xbd15ad921e1b480209af549874a2fcb80dc312bf",
+    "chainId": "eip155:1",
+    "name": "Harpoon",
+    "precision": 18,
+    "color": "#959981",
+    "icon": "https://assets.coingecko.com/coins/images/29889/thumb/Harpoon.jpeg?1696528813",
+    "symbol": "HRP",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xbd1848e1491d4308ad18287a745dd4db2a4bd55b": {
+    "assetId": "eip155:1/erc20:0xbd1848e1491d4308ad18287a745dd4db2a4bd55b",
+    "chainId": "eip155:1",
+    "name": "Mochi Market on Ethereum",
+    "precision": 18,
+    "color": "#D44F73",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xbd1848e1491d4308Ad18287A745DD4DB2A4BD55B/logo.png",
+    "symbol": "MOMA",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xbd2949f67dcdc549c6ebe98696449fa79d988a9f": {
+    "assetId": "eip155:1/erc20:0xbd2949f67dcdc549c6ebe98696449fa79d988a9f",
+    "chainId": "eip155:1",
+    "name": "Meter Governance mapped by Meter io",
+    "precision": 18,
+    "color": "#1C2C5C",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xBd2949F67DcdC549c6Ebe98696449Fa79D988A9F/logo.png",
+    "symbol": "EMTRG",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xbd356a39bff2cada8e9248532dd879147221cf76": {
+    "assetId": "eip155:1/erc20:0xbd356a39bff2cada8e9248532dd879147221cf76",
+    "chainId": "eip155:1",
+    "name": "WOM Protocol",
+    "precision": 18,
+    "color": "#040404",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xBd356a39BFf2cAda8E9248532DD879147221Cf76/logo.png",
+    "symbol": "WOM",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xbd3de9a069648c84d27d74d701c9fa3253098b15": {
+    "assetId": "eip155:1/erc20:0xbd3de9a069648c84d27d74d701c9fa3253098b15",
+    "chainId": "eip155:1",
+    "name": "EQIFi on Ethereum",
+    "precision": 18,
+    "color": "#164D69",
+    "icon": "https://assets.coingecko.com/coins/images/17490/thumb/EQIFI_Logo_Color.png?1696517031",
+    "symbol": "EQX",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xbd434a09191d401da3283a5545bb3515d033b8c4": {
+    "assetId": "eip155:1/erc20:0xbd434a09191d401da3283a5545bb3515d033b8c4",
+    "chainId": "eip155:1",
+    "name": "GoldFinX",
+    "precision": 18,
+    "color": "#ECF5F0",
+    "icon": "https://assets.coingecko.com/coins/images/13292/thumb/KAB_611E_400x400.jpg?1696513064",
+    "symbol": "GIX",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xbd7e92cf6f857be8541fca6abfb72aef8e16c307": {
+    "assetId": "eip155:1/erc20:0xbd7e92cf6f857be8541fca6abfb72aef8e16c307",
+    "chainId": "eip155:1",
+    "name": "Prodigy Bot",
+    "precision": 18,
+    "color": "#408A6F",
+    "icon": "https://assets.coingecko.com/coins/images/31171/thumb/PRODIGY_LOGO_clean_%283%29.png?1696529999",
+    "symbol": "PRO",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xbd89b8d708809e7022135313683663911826977e": {
+    "assetId": "eip155:1/erc20:0xbd89b8d708809e7022135313683663911826977e",
+    "chainId": "eip155:1",
+    "name": "O MEE",
+    "precision": 18,
+    "color": "#929292",
+    "icon": "https://assets.coingecko.com/coins/images/25099/thumb/logo-mark-full-colour-cmyk-693px_300ppi.jpg?1696524249",
+    "symbol": "OME",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xbd9908b0cdd50386f92efcc8e1d71766c2782df0": {
+    "assetId": "eip155:1/erc20:0xbd9908b0cdd50386f92efcc8e1d71766c2782df0",
+    "chainId": "eip155:1",
+    "name": "DAOSquare on Ethereum",
+    "precision": 18,
+    "color": "#FAB9B9",
+    "icon": "https://assets.coingecko.com/coins/images/19084/thumb/tw5gu1dW_400x400.jpeg?1696518537",
+    "symbol": "RICE",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xbdab72602e9ad40fc6a6852caf43258113b8f7a5": {
+    "assetId": "eip155:1/erc20:0xbdab72602e9ad40fc6a6852caf43258113b8f7a5",
+    "chainId": "eip155:1",
+    "name": "Sovryn",
+    "precision": 18,
+    "color": "#040404",
+    "icon": "https://assets.coingecko.com/coins/images/16248/thumb/sov.PNG?1696515847",
+    "symbol": "SOV",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xbdbda38e3aa4216408b2d39fa6fbd17bdfe9af08": {
+    "assetId": "eip155:1/erc20:0xbdbda38e3aa4216408b2d39fa6fbd17bdfe9af08",
+    "chainId": "eip155:1",
+    "name": "Pepe Longstocking",
+    "precision": 18,
+    "color": "#6B5220",
+    "icon": "https://assets.coingecko.com/coins/images/32140/thumb/pepe-long-favicon.png?1696592180",
+    "symbol": "PPLS",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xbddc20ed7978b7d59ef190962f441cd18c14e19f": {
+    "assetId": "eip155:1/erc20:0xbddc20ed7978b7d59ef190962f441cd18c14e19f",
+    "chainId": "eip155:1",
+    "name": "Crypto Asset Governance Alliance",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/32846/thumb/caga_logo.jpg?1699616257",
+    "symbol": "CAGA",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xbddf903f43dc7d9801f3f0034ba306169074ef8e": {
+    "assetId": "eip155:1/erc20:0xbddf903f43dc7d9801f3f0034ba306169074ef8e",
+    "chainId": "eip155:1",
+    "name": "Apes Go Bananas",
+    "precision": 18,
+    "color": "#EEDDD5",
+    "icon": "https://assets.coingecko.com/coins/images/30465/thumb/agb_logo.jpeg?1696529352",
+    "symbol": "AGB",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xbde4c4a9057595fa16d38e0bd7871ef119045a84": {
+    "assetId": "eip155:1/erc20:0xbde4c4a9057595fa16d38e0bd7871ef119045a84",
+    "chainId": "eip155:1",
+    "name": "Friend Room",
+    "precision": 18,
+    "color": "#042464",
+    "icon": "https://assets.coingecko.com/coins/images/31624/thumb/200loho.png?1696530440",
+    "symbol": "FRIEND",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xbe00734799a67a62af2819825580318ac1b1e4ec": {
+    "assetId": "eip155:1/erc20:0xbe00734799a67a62af2819825580318ac1b1e4ec",
+    "chainId": "eip155:1",
+    "name": "ordinex",
+    "precision": 18,
+    "color": "#EAA706",
+    "icon": "https://assets.coingecko.com/coins/images/29084/thumb/tw-logo%281%29.png?1696528048",
+    "symbol": "ORD",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xbe042e9d09cb588331ff911c2b46fd833a3e5bd6": {
+    "assetId": "eip155:1/erc20:0xbe042e9d09cb588331ff911c2b46fd833a3e5bd6",
+    "chainId": "eip155:1",
+    "name": "Pepe Token",
+    "precision": 18,
+    "color": "#274C1B",
+    "icon": "https://assets.coingecko.com/coins/images/31482/thumb/photo_2023-08-25_07-54-16.jpg?1696530294",
+    "symbol": "PEPE",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xbe1a001fe942f96eea22ba08783140b9dcc09d28": {
+    "assetId": "eip155:1/erc20:0xbe1a001fe942f96eea22ba08783140b9dcc09d28",
+    "chainId": "eip155:1",
+    "name": "Beta Finance on Ethereum",
+    "precision": 18,
+    "color": "#2D1C2C",
+    "icon": "https://assets.coingecko.com/coins/images/18715/thumb/beta_finance.jpg?1696518183",
+    "symbol": "BETA",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xbe1bc2e2338defcd88e7f9f5f745ddb222180ab9": {
+    "assetId": "eip155:1/erc20:0xbe1bc2e2338defcd88e7f9f5f745ddb222180ab9",
+    "chainId": "eip155:1",
+    "name": "TeSo",
+    "precision": 9,
+    "color": "#382E40",
+    "icon": "https://assets.coingecko.com/coins/images/31329/thumb/8A255A9F-4860-4D3C-9CDF-A20DC488FD7A.jpeg?1696530148",
+    "symbol": "TESO",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xbe1bea3f6e5f29648fdc88b1622785a1666246e7": {
+    "assetId": "eip155:1/erc20:0xbe1bea3f6e5f29648fdc88b1622785a1666246e7",
+    "chainId": "eip155:1",
+    "name": "Block 0",
+    "precision": 9,
+    "color": "#339B8E",
+    "icon": "https://assets.coingecko.com/coins/images/31341/thumb/photo_2023-08-15_12-07-17.jpg?1696530159",
+    "symbol": "BLOCK-0",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xbe1dbe6741fb988fb571ab1e28cffb36e3c62629": {
+    "assetId": "eip155:1/erc20:0xbe1dbe6741fb988fb571ab1e28cffb36e3c62629",
+    "chainId": "eip155:1",
+    "name": "Massive Protocol",
+    "precision": 18,
+    "color": "#7551DC",
+    "icon": "https://assets.coingecko.com/coins/images/25134/thumb/logo.png?1696524284",
+    "symbol": "MAV",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xbe30f684d62c9f7883a75a29c162c332c0d98f23": {
+    "assetId": "eip155:1/erc20:0xbe30f684d62c9f7883a75a29c162c332c0d98f23",
+    "chainId": "eip155:1",
+    "name": "Global Human Trust",
+    "precision": 18,
+    "color": "#8B692F",
+    "icon": "https://assets.coingecko.com/coins/images/12040/thumb/WechatIMG6648.png?1696511891",
+    "symbol": "GHT",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xbe393aa534f82c0ffac31bf06a23e283acb3352b": {
+    "assetId": "eip155:1/erc20:0xbe393aa534f82c0ffac31bf06a23e283acb3352b",
+    "chainId": "eip155:1",
+    "name": "TokenAsset",
+    "precision": 18,
+    "color": "#0468DD",
+    "icon": "https://assets.coingecko.com/coins/images/13710/thumb/8284.png?1696513455",
+    "symbol": "NTB",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xbe428c3867f05dea2a89fc76a102b544eac7f772": {
+    "assetId": "eip155:1/erc20:0xbe428c3867f05dea2a89fc76a102b544eac7f772",
+    "chainId": "eip155:1",
+    "name": "CyberVein",
+    "precision": 18,
+    "color": "#3C34FC",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xBe428c3867F05deA2A89Fc76a102b544eaC7f772/logo.png",
+    "symbol": "CVT",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xbe56ab825fd35678a32dc35bc4eb17e238e1404f": {
+    "assetId": "eip155:1/erc20:0xbe56ab825fd35678a32dc35bc4eb17e238e1404f",
+    "chainId": "eip155:1",
+    "name": "Digits DAO",
+    "precision": 18,
+    "color": "#26252D",
+    "icon": "https://assets.coingecko.com/coins/images/23551/thumb/Logo-Digits-DAO-Icon-01.jpg?1696522758",
+    "symbol": "DIGITS",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xbe6be64e9e5042b6e84e4c27956cce6353efa5f5": {
+    "assetId": "eip155:1/erc20:0xbe6be64e9e5042b6e84e4c27956cce6353efa5f5",
+    "chainId": "eip155:1",
+    "name": "Beg",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/32799/thumb/beg100px.png?1699446876",
+    "symbol": "BEG",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xbe74a95d159e8e323b8c1a70f825efc85fed27c4": {
+    "assetId": "eip155:1/erc20:0xbe74a95d159e8e323b8c1a70f825efc85fed27c4",
+    "chainId": "eip155:1",
+    "name": "SharesGram",
+    "precision": 18,
+    "color": "#1FB4F1",
+    "icon": "https://assets.coingecko.com/coins/images/31589/thumb/LOGOSHARESGRAM_%282%29.png?1696530406",
+    "symbol": "SG",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xbe82bbd9c47e05f1fac183b106a768717588be73": {
+    "assetId": "eip155:1/erc20:0xbe82bbd9c47e05f1fac183b106a768717588be73",
+    "chainId": "eip155:1",
+    "name": "Crypto Threads",
+    "precision": 18,
+    "color": "#FAEDDE",
+    "icon": "https://assets.coingecko.com/coins/images/31042/thumb/CT.jpeg?1696529877",
+    "symbol": "CT",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xbe92b510007bd3ec0adb3d1fca338dd631e98de7": {
+    "assetId": "eip155:1/erc20:0xbe92b510007bd3ec0adb3d1fca338dd631e98de7",
+    "chainId": "eip155:1",
+    "name": "DegensTogether",
+    "precision": 18,
+    "color": "#C75432",
+    "icon": "https://assets.coingecko.com/coins/images/30487/thumb/degen_logo_twit.png?1696529373",
+    "symbol": "DEGEN",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xbe9385116fbbff5fdbaea0b52c3003b92be7f81c": {
+    "assetId": "eip155:1/erc20:0xbe9385116fbbff5fdbaea0b52c3003b92be7f81c",
+    "chainId": "eip155:1",
+    "name": "The Reaper Coin",
+    "precision": 18,
+    "color": "#6F32AF",
+    "icon": "https://assets.coingecko.com/coins/images/30562/thumb/icon.jpg?1696529433",
+    "symbol": "REAPER",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xbe9895146f7af43049ca1c1ae358b0541ea49704": {
+    "assetId": "eip155:1/erc20:0xbe9895146f7af43049ca1c1ae358b0541ea49704",
+    "chainId": "eip155:1",
+    "name": "Coinbase Wrapped Staked ETH on Ethereum",
+    "precision": 18,
+    "color": "#0957FC",
+    "icon": "https://assets.coingecko.com/coins/images/27008/thumb/cbeth.png?1696526061",
+    "symbol": "CBETH",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xbe9ab37a414c517b2be2bfa5945665bb07379054": {
+    "assetId": "eip155:1/erc20:0xbe9ab37a414c517b2be2bfa5945665bb07379054",
+    "chainId": "eip155:1",
+    "name": "TomTomCoin",
+    "precision": 18,
+    "color": "#5B1820",
+    "icon": "https://assets.coingecko.com/coins/images/22864/thumb/toms_logo_200.png?1696522164",
+    "symbol": "TOMS",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab": {
+    "assetId": "eip155:1/erc20:0xbea0000029ad1c77d3d5d23ba2d8893db9d1efab",
+    "chainId": "eip155:1",
+    "name": "Bean",
+    "precision": 6,
+    "color": "#3CBC4C",
+    "icon": "https://assets.coingecko.com/coins/images/18447/thumb/bean-logo-coingecko.png?1696517934",
+    "symbol": "BEAN",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xbea269038eb75bdab47a9c04d0f5c572d94b93d5": {
+    "assetId": "eip155:1/erc20:0xbea269038eb75bdab47a9c04d0f5c572d94b93d5",
+    "chainId": "eip155:1",
+    "name": "Wrapped FIO",
+    "precision": 9,
+    "color": "#A48CEC",
+    "icon": "https://assets.coingecko.com/coins/images/29183/thumb/fio_light_favicon_transparent_200x200.png?1696528141",
+    "symbol": "WFIO",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xbea98c05eeae2f3bc8c3565db7551eb738c8ccab": {
+    "assetId": "eip155:1/erc20:0xbea98c05eeae2f3bc8c3565db7551eb738c8ccab",
+    "chainId": "eip155:1",
+    "name": "Geyser on Ethereum",
+    "precision": 18,
+    "color": "#147BF4",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xbEa98c05eEAe2f3bC8c3565Db7551Eb738c8CCAb/logo.png",
+    "symbol": "GYSR",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xbeab712832112bd7664226db7cd025b153d3af55": {
+    "assetId": "eip155:1/erc20:0xbeab712832112bd7664226db7cd025b153d3af55",
+    "chainId": "eip155:1",
+    "name": "Bright Union",
+    "precision": 18,
+    "color": "#7439D2",
+    "icon": "https://assets.coingecko.com/coins/images/17552/thumb/BrightToken_Token-only_200x200-1.png?1696517088",
+    "symbol": "BRIGHT",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xbed4ab0019ff361d83ddeb74883dac8a70f5ea1e": {
+    "assetId": "eip155:1/erc20:0xbed4ab0019ff361d83ddeb74883dac8a70f5ea1e",
+    "chainId": "eip155:1",
+    "name": "MerchDAO on Ethereum",
+    "precision": 18,
+    "color": "#FCB6C4",
+    "icon": "https://assets.coingecko.com/coins/images/14540/thumb/logo_256x256.png?1696514224",
+    "symbol": "MRCH",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xbed7d999f1d71ac70c263f64c7c7e009d691be2e": {
+    "assetId": "eip155:1/erc20:0xbed7d999f1d71ac70c263f64c7c7e009d691be2e",
+    "chainId": "eip155:1",
+    "name": "Malaysian Ringgit Coin",
+    "precision": 18,
+    "color": "#0837A2",
+    "icon": "https://assets.coingecko.com/coins/images/32104/thumb/myrc-token-trans-200x200.png?1696530900",
+    "symbol": "MYRC",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xbede1f59fa4412556fef69f1b9969f2003e3f8c1": {
+    "assetId": "eip155:1/erc20:0xbede1f59fa4412556fef69f1b9969f2003e3f8c1",
+    "chainId": "eip155:1",
+    "name": "Meta MVRS",
+    "precision": 18,
+    "color": "#85B5CA",
+    "icon": "https://assets.coingecko.com/coins/images/22140/thumb/mvrs-200x200.png?1696521486",
+    "symbol": "MVRS",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xbededdf2ef49e87037c4fb2ca34d1ff3d3992a11": {
+    "assetId": "eip155:1/erc20:0xbededdf2ef49e87037c4fb2ca34d1ff3d3992a11",
+    "chainId": "eip155:1",
+    "name": "FEG ETH",
+    "precision": 18,
+    "color": "#E8E9EA",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xbededDf2eF49E87037c4fb2cA34d1FF3D3992A11/logo.png",
+    "symbol": "FEG",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xbee709aa42375ace642338f7f657ff859a19c9bc": {
+    "assetId": "eip155:1/erc20:0xbee709aa42375ace642338f7f657ff859a19c9bc",
+    "chainId": "eip155:1",
+    "name": "Muverse MCT",
+    "precision": 18,
+    "color": "#F1D516",
+    "icon": "https://assets.coingecko.com/coins/images/29747/thumb/20230407_171144.jpg?1696528679",
+    "symbol": "MCT",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xbeef8e0982874e0292e6c5751c5a4092b3e1beef": {
+    "assetId": "eip155:1/erc20:0xbeef8e0982874e0292e6c5751c5a4092b3e1beef",
+    "chainId": "eip155:1",
+    "name": "Staked BIFI on Ethereum",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/32597/thumb/319381e63428d3c2ab6e035d5f3abd76.png?1698682355",
+    "symbol": "MOOBIFI",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xbf0b8b7475edb32d103001efd19fdd2753d7b76d": {
+    "assetId": "eip155:1/erc20:0xbf0b8b7475edb32d103001efd19fdd2753d7b76d",
+    "chainId": "eip155:1",
+    "name": "Abachi on Ethereum",
+    "precision": 18,
+    "color": "#E4B7BC",
+    "icon": "https://assets.coingecko.com/coins/images/31225/thumb/Abachi.png?1696530051",
+    "symbol": "ABI",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xbf2179859fc6d5bee9bf9158632dc51678a4100e": {
+    "assetId": "eip155:1/erc20:0xbf2179859fc6d5bee9bf9158632dc51678a4100e",
+    "chainId": "eip155:1",
+    "name": "aelf",
+    "precision": 18,
+    "color": "#F2F6F6",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xbf2179859fc6D5BEE9Bf9158632Dc51678a4100e/logo.png",
+    "symbol": "ELF",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xbf27b3163c25113be5439d56f8acf2209ef3e5bd": {
+    "assetId": "eip155:1/erc20:0xbf27b3163c25113be5439d56f8acf2209ef3e5bd",
+    "chainId": "eip155:1",
+    "name": "Hotel of Secrets on Ethereum",
+    "precision": 18,
+    "color": "#8464FC",
+    "icon": "https://assets.coingecko.com/coins/images/31567/thumb/Hotel_of_Secrets_icon.png?1696530379",
+    "symbol": "HOS",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xbf52f2ab39e26e0951d2a02b49b7702abe30406a": {
+    "assetId": "eip155:1/erc20:0xbf52f2ab39e26e0951d2a02b49b7702abe30406a",
+    "chainId": "eip155:1",
+    "name": "ODEM",
+    "precision": 18,
+    "color": "#D3F2F9",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xbf52F2ab39e26E0951d2a02b49B7702aBe30406a/logo.png",
+    "symbol": "ODE",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xbf628dfd72cf51752574a970c91f42591b173a77": {
+    "assetId": "eip155:1/erc20:0xbf628dfd72cf51752574a970c91f42591b173a77",
+    "chainId": "eip155:1",
+    "name": "X Social Network on Ethereum",
+    "precision": 18,
+    "color": "#046DC1",
+    "icon": "https://assets.coingecko.com/coins/images/29214/thumb/log.png?1696528172",
+    "symbol": "X-AI",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xbf776e4fca664d791c4ee3a71e2722990e003283": {
+    "assetId": "eip155:1/erc20:0xbf776e4fca664d791c4ee3a71e2722990e003283",
+    "chainId": "eip155:1",
+    "name": "Smoothy on Ethereum",
+    "precision": 18,
+    "color": "#5A5F6C",
+    "icon": "https://assets.coingecko.com/coins/images/15039/thumb/dDxKgwPN_400x400.jpg?1696514698",
+    "symbol": "SMTY",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xbf9e72eeb5adb8b558334c8672950b7a379d4266": {
+    "assetId": "eip155:1/erc20:0xbf9e72eeb5adb8b558334c8672950b7a379d4266",
+    "chainId": "eip155:1",
+    "name": "CubToken",
+    "precision": 18,
+    "color": "#1F0E08",
+    "icon": "https://assets.coingecko.com/coins/images/26197/thumb/photo-2022-04-20-13-35-28.jpg?1696525283",
+    "symbol": "CUBT",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xbfabde619ed5c4311811cf422562709710db587d": {
+    "assetId": "eip155:1/erc20:0xbfabde619ed5c4311811cf422562709710db587d",
+    "chainId": "eip155:1",
+    "name": "Diva Staking",
+    "precision": 18,
+    "color": "#DC5C24",
+    "icon": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAIAAAACACAMAAAD04JH5AAADAFBMVEUtN0jYXyb///8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADwPPw2AAABAHRSTlP/////AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAf6K/dgAAQItJREFUeNoBgEB/vwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAgICAgICAgICAgICAgICAgICAgICAQEBAQEBAQEBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgEBAQEBAQECAgICAgICAQEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgAAAAAAAAAAAAACAgICAgICAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAwMDAwMDAwMDAwMDAwMDAwMDAwMDAgICAgICAgEBAQEBAQEBAwMDAwMDAwMDAwMDAwICAgICAgIDAwMDAwMDAwMDAwMDAwMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQEBAQEBAQAAAAAAAAAAAAICAgICAgIDAAAAAAEBAQEBAQEBAQEBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQEBAQEBAQAAAAAAAAAAAAICAgICAgIDAAAAAAEBAQEBAQEBAQEBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQEBAQEBAQAAAAAAAAAAAAICAgICAgIDAAAAAAEBAQEBAQEBAQEBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQEBAQEBAQAAAAAAAAAAAAICAgICAgIDAAAAAAEBAQEBAQEBAQEBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQEBAQEBAQAAAAAAAAAAAAICAgICAgIDAAAAAAEBAQEBAQEBAQEBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQEBAQEBAQAAAAAAAAAAAAICAgICAgIDAAAAAAEBAQEBAQEBAQEBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQEBAQEBAQAAAAAAAAAAAAICAgICAgIDAAAAAAEBAQEBAQEBAQEBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQEBAQEBAQAAAAAAAAAAAAICAgICAgIDAAAAAAEBAQEBAQEBAQEBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQEBAQEBAQAAAAAAAAAAAAICAgICAgIDAAAAAAEBAQEBAQEBAQEBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQEBAQEBAQAAAAAAAAAAAAICAgICAgIDAAAAAAEBAQEBAQEBAQEBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQEBAQEBAQAAAAAAAAAAAAICAgICAgIDAAAAAAEBAQEBAQEBAQEBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQEBAQEBAQAAAAAAAAAAAAICAgICAgIDAAAAAAEBAQEBAQEBAQEBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQEBAQEBAQAAAAAAAAAAAAICAgICAgIDAAAAAAEBAQEBAQEBAQEBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQEBAQEBAQAAAAAAAAAAAAICAgICAgIDAAAAAAEBAQEBAQEBAQEBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQEBAQEBAQAAAAAAAAAAAAICAgICAgIDAAAAAAEBAQEBAQEBAQEBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQEBAQEBAQAAAAAAAAAAAAICAgICAgIDAAAAAAEBAQEBAQEBAQEBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQEBAQEBAQAAAAAAAAAAAAICAgICAgIDAAAAAAEBAQEBAQEBAQEBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQEBAQEBAQAAAAAAAAAAAAICAgICAgIDAAAAAAEBAQEBAQEBAQEBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQEBAQEBAQAAAAAAAAAAAAICAgICAgIDAAAAAAEBAQEBAQEBAQEBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQEBAQEBAQAAAAAAAAAAAAICAgICAgIDAAAAAAEBAQEBAQEBAQEBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQEBAQEBAQAAAAAAAAAAAAICAgICAgIDAAAAAAEBAQEBAQEBAQEBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQEBAQEBAQAAAAAAAAAAAAICAgICAgIDAAAAAAEBAQEBAQEBAQEBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQEBAQEBAQAAAAAAAAAAAAICAgICAgIDAAAAAAEBAQEBAQEBAQEBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQEBAQEBAQAAAAAAAAAAAAICAgICAgIDAAAAAAEBAQEBAQEBAQEBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQEBAQEBAQAAAAAAAAAAAAICAgICAgIDAAAAAAEBAQEBAQEBAQEBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQEBAQEBAQAAAAAAAAAAAAICAgICAgIDAAAAAAEBAQEBAQEBAQEBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQEBAQEBAQAAAAAAAAAAAAICAgICAgIDAAAAAAEBAQEBAQEBAQEBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQEBAQEBAQAAAAAAAAAAAAICAgICAgIDAAAAAAEBAQEBAQEBAQEBAQEBAQEBAwMDAwMDAgICAgICAgEBAQEBAQECAgICAgICAAMDAwMDAwMAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQEBAQEBAQAAAAAAAAAAAAICAgICAgIDAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQEBAQEBAQAAAAAAAAAAAAICAgICAgIDAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQEBAQEBAQAAAAAAAAAAAAICAgICAgIDAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQEBAQEBAQAAAAAAAAAAAAICAgICAgIDAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQEBAQEBAQAAAAAAAAAAAAICAgICAgIDAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQEBAQEBAQAAAAAAAAAAAAICAgICAgIDAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAACAgICAgICAgICAgICAgICAgICAgICAgICAgICAQMDAwMDAwMBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgEBAQEBAQEBAQEBAQEBAQMDAwMDAwICAgICAgIBAwMDAwMDAwAAAAAAAAAAAAAAAAAAAAACAgICAgICAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwEBAQEBAQEBAQEBAQEBAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMBAQEBAQEBAQEBAQEBAQEBAQEBAQEDAwMDAwMDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPv0Mqk9t6lMAAAAAElFTkSuQmCC",
+    "symbol": "DIVA",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xbfb2b6870501a6ff17121d676a0a45a38c9eed1e": {
+    "assetId": "eip155:1/erc20:0xbfb2b6870501a6ff17121d676a0a45a38c9eed1e",
+    "chainId": "eip155:1",
+    "name": "LuckyToad",
+    "precision": 9,
+    "color": "#CC9D29",
+    "icon": "https://assets.coingecko.com/coins/images/28867/thumb/Coingecko_listing.png?1696527840",
+    "symbol": "TOAD",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xbfc66d8cce39e668fd5d3c10fd1b1eabb82c27b7": {
+    "assetId": "eip155:1/erc20:0xbfc66d8cce39e668fd5d3c10fd1b1eabb82c27b7",
+    "chainId": "eip155:1",
+    "name": "OVO",
+    "precision": 18,
+    "color": "#CAC4BF",
+    "icon": "https://assets.coingecko.com/coins/images/29514/thumb/ovotoken200.png?1696528458",
+    "symbol": "OVO",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xbffaa2bf647e5ae6280a8138d884c3a9a95ece7e": {
+    "assetId": "eip155:1/erc20:0xbffaa2bf647e5ae6280a8138d884c3a9a95ece7e",
+    "chainId": "eip155:1",
+    "name": "DYOR Analyzer",
+    "precision": 18,
+    "color": "#060606",
+    "icon": "https://assets.coingecko.com/coins/images/30782/thumb/favicon_%281%29.png?1696529649",
+    "symbol": "DYOR",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xc00e94cb662c3520282e6f5717214004a7f26888": {
+    "assetId": "eip155:1/erc20:0xc00e94cb662c3520282e6f5717214004a7f26888",
+    "chainId": "eip155:1",
+    "name": "Compound on Ethereum",
+    "precision": 18,
+    "color": "#04D393",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xc00e94Cb662C3520282E6f5717214004A7f26888/logo.png",
+    "symbol": "COMP",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xc011a73ee8576fb46f5e1c5751ca3b9fe0af2a6f": {
+    "assetId": "eip155:1/erc20:0xc011a73ee8576fb46f5e1c5751ca3b9fe0af2a6f",
+    "chainId": "eip155:1",
+    "name": "Synthetix Network on Ethereum",
+    "precision": 18,
+    "color": "#0C042C",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xC011a73ee8576Fb46F5E1c5751cA3B9Fe0af2a6F/logo.png",
+    "symbol": "SNX",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xc014186cf1ba36032aaec7f96088f09eb3934347": {
+    "assetId": "eip155:1/erc20:0xc014186cf1ba36032aaec7f96088f09eb3934347",
+    "chainId": "eip155:1",
+    "name": "WeCoOwn",
+    "precision": 18,
+    "color": "#1A1A3F",
+    "icon": "https://assets.coingecko.com/coins/images/14497/thumb/WCX-Token-Logo.png?1696514184",
+    "symbol": "WCX",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xc01b733b2ef479086b80949676a673346b531aa2": {
+    "assetId": "eip155:1/erc20:0xc01b733b2ef479086b80949676a673346b531aa2",
+    "chainId": "eip155:1",
+    "name": "League Bot",
+    "precision": 18,
+    "color": "#451B04",
+    "icon": "https://assets.coingecko.com/coins/images/31222/thumb/logo_lg.png?1696530048",
+    "symbol": "LEAGUE",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2": {
+    "assetId": "eip155:1/erc20:0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2",
+    "chainId": "eip155:1",
+    "name": "WETH on Ethereum",
+    "precision": 18,
+    "color": "#2A2E2E",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2/logo.png",
+    "symbol": "WETH",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xc03b43d492d904406db2d7d57e67c7e8234ba752": {
+    "assetId": "eip155:1/erc20:0xc03b43d492d904406db2d7d57e67c7e8234ba752",
+    "chainId": "eip155:1",
+    "name": "Wrapped USDR on Ethereum",
+    "precision": 9,
+    "color": "#F29499",
+    "icon": "https://assets.coingecko.com/coins/images/28800/thumb/wUSDRlogo.png?1696527777",
+    "symbol": "WUSDR",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xc03fbf20a586fa89c2a5f6f941458e1fbc40c661": {
+    "assetId": "eip155:1/erc20:0xc03fbf20a586fa89c2a5f6f941458e1fbc40c661",
+    "chainId": "eip155:1",
+    "name": "COMBO on Ethereum",
+    "precision": 18,
+    "color": "#09080C",
+    "icon": "https://assets.coingecko.com/coins/images/4932/thumb/COMBO.jpg?1696505472",
+    "symbol": "COMBO",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xc05c3af62f5f3663f2c415473aa4d5ad69200033": {
+    "assetId": "eip155:1/erc20:0xc05c3af62f5f3663f2c415473aa4d5ad69200033",
+    "chainId": "eip155:1",
+    "name": "PIRB",
+    "precision": 18,
+    "color": "#108A60",
+    "icon": "https://assets.coingecko.com/coins/images/31653/thumb/pirb_geckologo.png?1696530468",
+    "symbol": "PIRB",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xc05d14442a510de4d3d71a3d316585aa0ce32b50": {
+    "assetId": "eip155:1/erc20:0xc05d14442a510de4d3d71a3d316585aa0ce32b50",
+    "chainId": "eip155:1",
+    "name": "LINA",
+    "precision": 18,
+    "color": "#040404",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xC05d14442A510De4D3d71a3d316585aA0CE32b50/logo.png",
+    "symbol": "LINA",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xc064f4f215b6a1e4e7f39bd8530c4de0fc43ee9d": {
+    "assetId": "eip155:1/erc20:0xc064f4f215b6a1e4e7f39bd8530c4de0fc43ee9d",
+    "chainId": "eip155:1",
+    "name": "LeisureMeta",
+    "precision": 18,
+    "color": "#1C686B",
+    "icon": "https://assets.coingecko.com/coins/images/25761/thumb/SVG_16533804486374586M.jpg?1696524846",
+    "symbol": "LM",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xc06d9013a1d3f25f76ee5291bbc04a181985814e": {
+    "assetId": "eip155:1/erc20:0xc06d9013a1d3f25f76ee5291bbc04a181985814e",
+    "chainId": "eip155:1",
+    "name": "Yertle The Turtle",
+    "precision": 9,
+    "color": "#102C2E",
+    "icon": "https://assets.coingecko.com/coins/images/32518/thumb/IMG_6911.jpeg?1698406852",
+    "symbol": "YERTLE",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xc07a150ecadf2cc352f5586396e344a6b17625eb": {
+    "assetId": "eip155:1/erc20:0xc07a150ecadf2cc352f5586396e344a6b17625eb",
+    "chainId": "eip155:1",
+    "name": "Bio Passport",
+    "precision": 9,
+    "color": "#2E3A54",
+    "icon": "https://assets.coingecko.com/coins/images/14167/thumb/logo_%2895%29.png?1696513885",
+    "symbol": "BIOT",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xc0804a4eae02fdf7516f55a12990d282640a4961": {
+    "assetId": "eip155:1/erc20:0xc0804a4eae02fdf7516f55a12990d282640a4961",
+    "chainId": "eip155:1",
+    "name": "OpenPool",
+    "precision": 18,
+    "color": "#65A2D2",
+    "icon": "https://assets.coingecko.com/coins/images/31541/thumb/0xc0804a4eae02fdf7516f55a12990d282640a4961.png?1696530354",
+    "symbol": "OPL",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xc08512927d12348f6620a698105e1baac6ecd911": {
+    "assetId": "eip155:1/erc20:0xc08512927d12348f6620a698105e1baac6ecd911",
+    "chainId": "eip155:1",
+    "name": "GYEN on Ethereum",
+    "precision": 6,
+    "color": "#045CAC",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xC08512927D12348F6620a698105e1BAac6EcD911/logo.png",
+    "symbol": "GYEN",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xc0a22849fa6122594e605aec943413734137daab": {
+    "assetId": "eip155:1/erc20:0xc0a22849fa6122594e605aec943413734137daab",
+    "chainId": "eip155:1",
+    "name": "The Vault",
+    "precision": 18,
+    "color": "#7C6941",
+    "icon": "https://assets.coingecko.com/coins/images/32117/thumb/The_Vault_Icon.png?1696585942",
+    "symbol": "VAULT",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xc0a4df35568f116c370e6a6a6022ceb908eeddac": {
+    "assetId": "eip155:1/erc20:0xc0a4df35568f116c370e6a6a6022ceb908eeddac",
+    "chainId": "eip155:1",
+    "name": "UX Chain",
+    "precision": 6,
+    "color": "#BEAEEF",
+    "icon": "https://assets.coingecko.com/coins/images/20635/thumb/yArLkbL.png?1696520039",
+    "symbol": "UX",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xc0ae17eb994fa828540ffa53776b3830233a1b02": {
+    "assetId": "eip155:1/erc20:0xc0ae17eb994fa828540ffa53776b3830233a1b02",
+    "chainId": "eip155:1",
+    "name": "Element Black",
+    "precision": 18,
+    "color": "#ACB4D8",
+    "icon": "https://assets.coingecko.com/coins/images/25160/thumb/4TCtUKHs_400x400.jpg?1696524307",
+    "symbol": "ELT",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xc0b314a8c08637685fc3dafc477b92028c540cfb": {
+    "assetId": "eip155:1/erc20:0xc0b314a8c08637685fc3dafc477b92028c540cfb",
+    "chainId": "eip155:1",
+    "name": "Wombat Exchange on Ethereum",
+    "precision": 18,
+    "color": "#EDCE56",
+    "icon": "https://assets.coingecko.com/coins/images/26946/thumb/Wombat_Token.png?1696526001",
+    "symbol": "WOM",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xc0ba369c8db6eb3924965e5c4fd0b4c1b91e305f": {
+    "assetId": "eip155:1/erc20:0xc0ba369c8db6eb3924965e5c4fd0b4c1b91e305f",
+    "chainId": "eip155:1",
+    "name": "DLP Duck on Ethereum",
+    "precision": 18,
+    "color": "#3B3E3F",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xC0bA369c8Db6eB3924965e5c4FD0b4C1B91e305F/logo.png",
+    "symbol": "DUCK",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xc0c293ce456ff0ed870add98a0828dd4d2903dbf": {
+    "assetId": "eip155:1/erc20:0xc0c293ce456ff0ed870add98a0828dd4d2903dbf",
+    "chainId": "eip155:1",
+    "name": "Aura Finance",
+    "precision": 18,
+    "color": "#8643D0",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xC0c293ce456fF0ED870ADd98a0828Dd4d2903DBF/logo.png",
+    "symbol": "AURA",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xc0eb85285d83217cd7c891702bcbc0fc401e2d9d": {
+    "assetId": "eip155:1/erc20:0xc0eb85285d83217cd7c891702bcbc0fc401e2d9d",
+    "chainId": "eip155:1",
+    "name": "Hiveterminal",
+    "precision": 8,
+    "color": "#12AFF1",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xC0Eb85285d83217CD7c891702bcbC0FC401E2D9D/logo.png",
+    "symbol": "HVN",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xc0ec8caec55f37d47fbfa595727418868a21fd48": {
+    "assetId": "eip155:1/erc20:0xc0ec8caec55f37d47fbfa595727418868a21fd48",
+    "chainId": "eip155:1",
+    "name": "EcoG9coin",
+    "precision": 8,
+    "color": "#060608",
+    "icon": "https://assets.coingecko.com/coins/images/8038/thumb/Screenshot_2019-12-05_at_7.14.34_AM.png?1696508259",
+    "symbol": "EGC",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xc0f1728d9513efc316d0e93a0758c992f88b0809": {
+    "assetId": "eip155:1/erc20:0xc0f1728d9513efc316d0e93a0758c992f88b0809",
+    "chainId": "eip155:1",
+    "name": "SWTCoin on Ethereum",
+    "precision": 8,
+    "color": "#C58A4C",
+    "icon": "https://assets.coingecko.com/coins/images/5985/thumb/swtcoin.jpg?1696506402",
+    "symbol": "SWAT",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xc0f9bd5fa5698b6505f643900ffa515ea5df54a9": {
+    "assetId": "eip155:1/erc20:0xc0f9bd5fa5698b6505f643900ffa515ea5df54a9",
+    "chainId": "eip155:1",
+    "name": "Donut on Ethereum",
+    "precision": 18,
+    "color": "#1E3738",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xC0F9bD5Fa5698B6505F643900FFA515Ea5dF54A9/logo.png",
+    "symbol": "DONUT",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xc12d099be31567add4e4e4d0d45691c3f58f5663": {
+    "assetId": "eip155:1/erc20:0xc12d099be31567add4e4e4d0d45691c3f58f5663",
+    "chainId": "eip155:1",
+    "name": "Auctus on Ethereum",
+    "precision": 18,
+    "color": "#05388F",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xc12d099be31567add4e4e4d0D45691C3F58f5663/logo.png",
+    "symbol": "AUC",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xc14b4d4ca66f40f352d7a50fd230ef8b2fb3b8d4": {
+    "assetId": "eip155:1/erc20:0xc14b4d4ca66f40f352d7a50fd230ef8b2fb3b8d4",
+    "chainId": "eip155:1",
+    "name": "Blocktools",
+    "precision": 18,
+    "color": "#1F2B3B",
+    "icon": "https://assets.coingecko.com/coins/images/31313/thumb/blocktools.jpeg?1696530132",
+    "symbol": "TOOLS",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xc150a5841e5b0f046a46e85fb22cbd05185b20f2": {
+    "assetId": "eip155:1/erc20:0xc150a5841e5b0f046a46e85fb22cbd05185b20f2",
+    "chainId": "eip155:1",
+    "name": "Flash Analytics",
+    "precision": 18,
+    "color": "#5D04F7",
+    "icon": "https://assets.coingecko.com/coins/images/31618/thumb/flashh.png?1696530434",
+    "symbol": "FLASH",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xc1534fe936be00369c7a827a6e731a233bd0ed34": {
+    "assetId": "eip155:1/erc20:0xc1534fe936be00369c7a827a6e731a233bd0ed34",
+    "chainId": "eip155:1",
+    "name": "Cavachon",
+    "precision": 18,
+    "color": "#C5A24F",
+    "icon": "https://assets.coingecko.com/coins/images/31939/thumb/CAVACHON_PROFILES_%281%29_%281%29.png?1696530746",
+    "symbol": "CAVA",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xc17c30e98541188614df99239cabd40280810ca3": {
+    "assetId": "eip155:1/erc20:0xc17c30e98541188614df99239cabd40280810ca3",
+    "chainId": "eip155:1",
+    "name": "EverRise on Ethereum",
+    "precision": 18,
+    "color": "#C43A2E",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xC17c30e98541188614dF99239cABD40280810cA3/logo.png",
+    "symbol": "RISE",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xc18360217d8f7ab5e7c516566761ea12ce7f9d72": {
+    "assetId": "eip155:1/erc20:0xc18360217d8f7ab5e7c516566761ea12ce7f9d72",
+    "chainId": "eip155:1",
+    "name": "Ethereum Name Service",
+    "precision": 18,
+    "color": "#6BA0F7",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xC18360217D8F7Ab5e7c516566761Ea12Ce7F9D72/logo.png",
+    "symbol": "ENS",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xc18c07a18198a6340cf4d94855fe5eb6dd33b46e": {
+    "assetId": "eip155:1/erc20:0xc18c07a18198a6340cf4d94855fe5eb6dd33b46e",
+    "chainId": "eip155:1",
+    "name": "QLINDO",
+    "precision": 0,
+    "color": "#606060",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xC18c07a18198A6340cf4d94855fE5eb6DD33b46E/logo.png",
+    "symbol": "QLINDO",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xc19b6a4ac7c7cc24459f08984bbd09664af17bd1": {
+    "assetId": "eip155:1/erc20:0xc19b6a4ac7c7cc24459f08984bbd09664af17bd1",
+    "chainId": "eip155:1",
+    "name": "SENSO",
+    "precision": 0,
+    "color": "#0C0C0C",
+    "icon": "https://assets.coingecko.com/coins/images/11064/thumb/senso.png?1696511006",
+    "symbol": "SENSO",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xc1abb8c93be6811affc70675b0432926c4bfbb5d": {
+    "assetId": "eip155:1/erc20:0xc1abb8c93be6811affc70675b0432926c4bfbb5d",
+    "chainId": "eip155:1",
+    "name": "UERII",
+    "precision": 18,
+    "color": "#D4D4D4",
+    "icon": "https://assets.coingecko.com/coins/images/29388/thumb/Avatar512.png?1696528334",
+    "symbol": "UERII",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xc1ad0aa69454603a5dee55cf9bd9341e01328544": {
+    "assetId": "eip155:1/erc20:0xc1ad0aa69454603a5dee55cf9bd9341e01328544",
+    "chainId": "eip155:1",
+    "name": "hiGAZERS",
+    "precision": 18,
+    "color": "#41CB8A",
+    "icon": "https://assets.coingecko.com/coins/images/28316/thumb/higazers.png?1696527322",
+    "symbol": "HIGAZERS",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xc1ecfaf43c53bec9b9143ab274f35603fd10b886": {
+    "assetId": "eip155:1/erc20:0xc1ecfaf43c53bec9b9143ab274f35603fd10b886",
+    "chainId": "eip155:1",
+    "name": "StarShip ERC20",
+    "precision": 18,
+    "color": "#232228",
+    "icon": "https://assets.coingecko.com/coins/images/31686/thumb/photo_2023-09-11_12-27-23_%281%29.jpg?1696530505",
+    "symbol": "SSHIP",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xc1f33e0cf7e40a67375007104b929e49a581bafe": {
+    "assetId": "eip155:1/erc20:0xc1f33e0cf7e40a67375007104b929e49a581bafe",
+    "chainId": "eip155:1",
+    "name": "Spot",
+    "precision": 9,
+    "color": "#040404",
+    "icon": "https://assets.coingecko.com/coins/images/28426/thumb/SPOT_Logo_200x200_sq_small_centered.png?1696527423",
+    "symbol": "SPOT",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xc1f976b91217e240885536af8b63bc8b5269a9be": {
+    "assetId": "eip155:1/erc20:0xc1f976b91217e240885536af8b63bc8b5269a9be",
+    "chainId": "eip155:1",
+    "name": "Public Index Network on Ethereum",
+    "precision": 18,
+    "color": "#CC4444",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xc1f976B91217E240885536aF8b63bc8b5269a9BE/logo.png",
+    "symbol": "PIN",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xc221b7e65ffc80de234bbb6667abdd46593d34f0": {
+    "assetId": "eip155:1/erc20:0xc221b7e65ffc80de234bbb6667abdd46593d34f0",
+    "chainId": "eip155:1",
+    "name": "Wrapped Centrifuge",
+    "precision": 18,
+    "color": "#E5E5E5",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xc221b7E65FfC80DE234bbB6667aBDd46593D34F0/logo.png",
+    "symbol": "WCFG",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xc229c69eb3bb51828d0caa3509a05a51083898dd": {
+    "assetId": "eip155:1/erc20:0xc229c69eb3bb51828d0caa3509a05a51083898dd",
+    "chainId": "eip155:1",
+    "name": "Pintu",
+    "precision": 18,
+    "color": "#075ED7",
+    "icon": "https://assets.coingecko.com/coins/images/20281/thumb/image_1_8dd79a68aa.png?1696519686",
+    "symbol": "PTU",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xc237868a9c5729bdf3173dddacaa336a0a5bb6e0": {
+    "assetId": "eip155:1/erc20:0xc237868a9c5729bdf3173dddacaa336a0a5bb6e0",
+    "chainId": "eip155:1",
+    "name": "Wagerr on Ethereum",
+    "precision": 8,
+    "color": "#E30404",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xC237868a9c5729bdF3173dDDacaa336a0a5BB6e0/logo.png",
+    "symbol": "WGR",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xc2456d2118299a2efdfe6522ff79aa48fc5d2b00": {
+    "assetId": "eip155:1/erc20:0xc2456d2118299a2efdfe6522ff79aa48fc5d2b00",
+    "chainId": "eip155:1",
+    "name": "MaruTaro",
+    "precision": 9,
+    "color": "#E49580",
+    "icon": "https://assets.coingecko.com/coins/images/29304/thumb/marutaro_logo.jpg?1696528256",
+    "symbol": "MARU",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xc2544a32872a91f4a553b404c6950e89de901fdb": {
+    "assetId": "eip155:1/erc20:0xc2544a32872a91f4a553b404c6950e89de901fdb",
+    "chainId": "eip155:1",
+    "name": "Frax Price Index Share on Ethereum",
+    "precision": 18,
+    "color": "#D5D5D5",
+    "icon": "https://assets.coingecko.com/coins/images/24944/thumb/FPIS_icon.png?1696524099",
+    "symbol": "FPIS",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xc25a3a3b969415c80451098fa907ec722572917f": {
+    "assetId": "eip155:1/erc20:0xc25a3a3b969415c80451098fa907ec722572917f",
+    "chainId": "eip155:1",
+    "name": "LP sCurve",
+    "precision": 18,
+    "color": "#146267",
+    "icon": "https://assets.coingecko.com/coins/images/11899/thumb/Curvefi_sCrv_32.png?1696511765",
+    "symbol": "SCURVE",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xc2708a3a4ba7f64bddc1a49f92f941bc77cad23a": {
+    "assetId": "eip155:1/erc20:0xc2708a3a4ba7f64bddc1a49f92f941bc77cad23a",
+    "chainId": "eip155:1",
+    "name": "Waves Ducks on Ethereum",
+    "precision": 18,
+    "color": "#689AFC",
+    "icon": "https://assets.coingecko.com/coins/images/17298/thumb/200x200_pixel.png?1696516851",
+    "symbol": "EGG",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xc278041fdd8249fe4c1aad1193876857eea3d68c": {
+    "assetId": "eip155:1/erc20:0xc278041fdd8249fe4c1aad1193876857eea3d68c",
+    "chainId": "eip155:1",
+    "name": "IdleTUSD  Best Yield ",
+    "precision": 18,
+    "color": "#D8D7D8",
+    "icon": "https://assets.coingecko.com/coins/images/11935/thumb/idletusdv3mMaxyield_32.png?1696511796",
+    "symbol": "IDLETUSDYIELD",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xc285b7e09a4584d027e5bc36571785b515898246": {
+    "assetId": "eip155:1/erc20:0xc285b7e09a4584d027e5bc36571785b515898246",
+    "chainId": "eip155:1",
+    "name": "Coin98 Dollar on Ethereum",
+    "precision": 18,
+    "color": "#F4D464",
+    "icon": "https://assets.coingecko.com/coins/images/26588/thumb/CUSD-01.png?1696525663",
+    "symbol": "CUSD",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xc28e27870558cf22add83540d2126da2e4b464c2": {
+    "assetId": "eip155:1/erc20:0xc28e27870558cf22add83540d2126da2e4b464c2",
+    "chainId": "eip155:1",
+    "name": "Sashimi",
+    "precision": 18,
+    "color": "#EC7038",
+    "icon": "https://assets.coingecko.com/coins/images/12427/thumb/SashimiSwap-200x200.png?1696512248",
+    "symbol": "SASHIMI",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xc28e931814725bbeb9e670676fabbcb694fe7df2": {
+    "assetId": "eip155:1/erc20:0xc28e931814725bbeb9e670676fabbcb694fe7df2",
+    "chainId": "eip155:1",
+    "name": "Quadrant Protocol",
+    "precision": 18,
+    "color": "#1C1C4C",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xC28e931814725BbEB9e670676FaBBCb694Fe7DF2/logo.png",
+    "symbol": "EQUAD",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xc3071803b9d23460820b516673fd3cec0415d0ed": {
+    "assetId": "eip155:1/erc20:0xc3071803b9d23460820b516673fd3cec0415d0ed",
+    "chainId": "eip155:1",
+    "name": "KuKu",
+    "precision": 9,
+    "color": "#6B6CA0",
+    "icon": "https://assets.coingecko.com/coins/images/31235/thumb/dssad_%281%29.png?1696530061",
+    "symbol": "KUKU",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xc314b0e758d5ff74f63e307a86ebfe183c95767b": {
+    "assetId": "eip155:1/erc20:0xc314b0e758d5ff74f63e307a86ebfe183c95767b",
+    "chainId": "eip155:1",
+    "name": "Adappter",
+    "precision": 18,
+    "color": "#4069E3",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xc314b0E758D5FF74f63e307A86EbfE183C95767b/logo.png",
+    "symbol": "ADP",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xc31cebf8f9e825d1d1244d73d0a65e44bd5210db": {
+    "assetId": "eip155:1/erc20:0xc31cebf8f9e825d1d1244d73d0a65e44bd5210db",
+    "chainId": "eip155:1",
+    "name": "CRYN",
+    "precision": 8,
+    "color": "#070E1C",
+    "icon": "https://assets.coingecko.com/coins/images/24601/thumb/cryn.png?1696523774",
+    "symbol": "CRYN",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xc32db1d3282e872d98f6437d3bcfa57801ca6d5c": {
+    "assetId": "eip155:1/erc20:0xc32db1d3282e872d98f6437d3bcfa57801ca6d5c",
+    "chainId": "eip155:1",
+    "name": "VoldemortTrumpRobotnik 10Neko",
+    "precision": 18,
+    "color": "#B21920",
+    "icon": "https://assets.coingecko.com/coins/images/31061/thumb/icon_medium.jpg?1696529895",
+    "symbol": "ETHEREUM",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xc353bf07405304aeab75f4c2fac7e88d6a68f98e": {
+    "assetId": "eip155:1/erc20:0xc353bf07405304aeab75f4c2fac7e88d6a68f98e",
+    "chainId": "eip155:1",
+    "name": "Hope money",
+    "precision": 18,
+    "color": "#7C6CDE",
+    "icon": "https://assets.coingecko.com/coins/images/30971/thumb/HOPE.png?1696529810",
+    "symbol": "HOPE",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xc3589f56b6869824804a5ea29f2c9886af1b0fce": {
+    "assetId": "eip155:1/erc20:0xc3589f56b6869824804a5ea29f2c9886af1b0fce",
+    "chainId": "eip155:1",
+    "name": "Honey on Ethereum",
+    "precision": 18,
+    "color": "#FCF49C",
+    "icon": "https://assets.coingecko.com/coins/images/12895/thumb/hnys.png?1696512683",
+    "symbol": "HNY",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xc3681a720605bd6f8fe9a2fabff6a7cdecdc605d": {
+    "assetId": "eip155:1/erc20:0xc3681a720605bd6f8fe9a2fabff6a7cdecdc605d",
+    "chainId": "eip155:1",
+    "name": "Nihao",
+    "precision": 18,
+    "color": "#676767",
+    "icon": "https://assets.coingecko.com/coins/images/30619/thumb/nihaowhitecat.png?1696529493",
+    "symbol": "NIHAO",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xc36ad98e62598ae24d4487d8012209f687c30d45": {
+    "assetId": "eip155:1/erc20:0xc36ad98e62598ae24d4487d8012209f687c30d45",
+    "chainId": "eip155:1",
+    "name": "Asap Sniper Bot",
+    "precision": 18,
+    "color": "#EA7D1A",
+    "icon": "https://assets.coingecko.com/coins/images/30707/thumb/LOGO_%281%29.jpeg?1696529578",
+    "symbol": "ASAP",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xc36b4311b21fc0c2ead46f1ea6ce97c9c4d98d3d": {
+    "assetId": "eip155:1/erc20:0xc36b4311b21fc0c2ead46f1ea6ce97c9c4d98d3d",
+    "chainId": "eip155:1",
+    "name": "Creaticles",
+    "precision": 18,
+    "color": "#04D5E6",
+    "icon": "https://assets.coingecko.com/coins/images/21115/thumb/logo-v3-small.png?1696520495",
+    "symbol": "CRE8",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xc382e04099a435439725bb40647e2b32dc136806": {
+    "assetId": "eip155:1/erc20:0xc382e04099a435439725bb40647e2b32dc136806",
+    "chainId": "eip155:1",
+    "name": "Cogecoin",
+    "precision": 18,
+    "color": "#D5A16C",
+    "icon": "https://assets.coingecko.com/coins/images/16791/thumb/Dog-Logo_1x.png?1696516362",
+    "symbol": "COGE",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xc383a3833a87009fd9597f8184979af5edfad019": {
+    "assetId": "eip155:1/erc20:0xc383a3833a87009fd9597f8184979af5edfad019",
+    "chainId": "eip155:1",
+    "name": "iETH v1",
+    "precision": 18,
+    "color": "#E1E9FC",
+    "icon": "https://assets.coingecko.com/coins/images/25822/thumb/iETH_100x100.png?1696524907",
+    "symbol": "IETH",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xc3960227e41c3f54e9b399ce216149dea5315c34": {
+    "assetId": "eip155:1/erc20:0xc3960227e41c3f54e9b399ce216149dea5315c34",
+    "chainId": "eip155:1",
+    "name": "Changpeng Zhao",
+    "precision": 9,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/33193/thumb/cz_logo.jpg?1700970013",
+    "symbol": "CZ",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xc3c221fe28c33814c28c822b631fd76047ef1a63": {
+    "assetId": "eip155:1/erc20:0xc3c221fe28c33814c28c822b631fd76047ef1a63",
+    "chainId": "eip155:1",
+    "name": "Millimeter",
+    "precision": 18,
+    "color": "#0C0404",
+    "icon": "https://assets.coingecko.com/coins/images/12941/thumb/mm%EB%A1%9C%EA%B3%A0-2.png?1696512730",
+    "symbol": "MM",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xc3c7b03335eb950a2a9207ac5cac0571de34d844": {
+    "assetId": "eip155:1/erc20:0xc3c7b03335eb950a2a9207ac5cac0571de34d844",
+    "chainId": "eip155:1",
+    "name": "BABY WALL STREET MEMES",
+    "precision": 18,
+    "color": "#070707",
+    "icon": "https://assets.coingecko.com/coins/images/32174/thumb/BabyWallStreet-2.png?1696742579",
+    "symbol": "BWSM",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xc3d222685f1acacddd4bf8ae566a288702252f0d": {
+    "assetId": "eip155:1/erc20:0xc3d222685f1acacddd4bf8ae566a288702252f0d",
+    "chainId": "eip155:1",
+    "name": "Roso Elite Gamblers Mansion",
+    "precision": 18,
+    "color": "#68453F",
+    "icon": "https://assets.coingecko.com/coins/images/31422/thumb/IMG_20230821_214332_417.PNG?1696530237",
+    "symbol": "ROSO",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xc3dbd99da846ea38d34430d852795684a211428b": {
+    "assetId": "eip155:1/erc20:0xc3dbd99da846ea38d34430d852795684a211428b",
+    "chainId": "eip155:1",
+    "name": "Lillian Token",
+    "precision": 18,
+    "color": "#3E5AAA",
+    "icon": "https://assets.coingecko.com/coins/images/31349/thumb/LY_Symbol.png?1696530166",
+    "symbol": "LYF",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xc3dca8f61b275d1e88f3ea31b3e311c49f56b24b": {
+    "assetId": "eip155:1/erc20:0xc3dca8f61b275d1e88f3ea31b3e311c49f56b24b",
+    "chainId": "eip155:1",
+    "name": "NPick Block",
+    "precision": 18,
+    "color": "#444444",
+    "icon": "https://assets.coingecko.com/coins/images/25151/thumb/Logo200_%281%29.png?1696524300",
+    "symbol": "NPICK",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xc3eb2622190c57429aac3901808994443b64b466": {
+    "assetId": "eip155:1/erc20:0xc3eb2622190c57429aac3901808994443b64b466",
+    "chainId": "eip155:1",
+    "name": "ORO",
+    "precision": 18,
+    "color": "#BCBCBC",
+    "icon": "https://assets.coingecko.com/coins/images/13114/thumb/oro_logo.png?1696512899",
+    "symbol": "ORO",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xc40f23a3e9613e012944f7957edce97899fa920d": {
+    "assetId": "eip155:1/erc20:0xc40f23a3e9613e012944f7957edce97899fa920d",
+    "chainId": "eip155:1",
+    "name": "dHealth",
+    "precision": 18,
+    "color": "#343484",
+    "icon": "https://assets.coingecko.com/coins/images/20167/thumb/dHealth_Network_Icon_200w.png?1696519580",
+    "symbol": "DHP",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xc4136c364289cc5b42acae1442ea28c1e994aab5": {
+    "assetId": "eip155:1/erc20:0xc4136c364289cc5b42acae1442ea28c1e994aab5",
+    "chainId": "eip155:1",
+    "name": "FineBot",
+    "precision": 18,
+    "color": "#EFEF34",
+    "icon": "https://assets.coingecko.com/coins/images/32075/thumb/FineBot.png?1696530872",
+    "symbol": "FBOT",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xc434268603ca8854e0be1a3ff15cad73bd6ec49a": {
+    "assetId": "eip155:1/erc20:0xc434268603ca8854e0be1a3ff15cad73bd6ec49a",
+    "chainId": "eip155:1",
+    "name": "Zapicorn",
+    "precision": 9,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/33153/thumb/download.png?1700825821",
+    "symbol": "ZAPI",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xc477d038d5420c6a9e0b031712f61c5120090de9": {
+    "assetId": "eip155:1/erc20:0xc477d038d5420c6a9e0b031712f61c5120090de9",
+    "chainId": "eip155:1",
+    "name": "Boson Protocol on Ethereum",
+    "precision": 18,
+    "color": "#53F4BC",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xC477D038d5420C6A9e0b031712f61c5120090de9/logo.png",
+    "symbol": "BOSON",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xc47ef9b19c3e29317a50f5fbe594eba361dada4a": {
+    "assetId": "eip155:1/erc20:0xc47ef9b19c3e29317a50f5fbe594eba361dada4a",
+    "chainId": "eip155:1",
+    "name": "Edelcoin",
+    "precision": 6,
+    "color": "#6C6FD7",
+    "icon": "https://assets.coingecko.com/coins/images/31621/thumb/edelcoin_logo_200_%281%29.png?1696530437",
+    "symbol": "EDLC",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xc4bb7277a74678f053259cb1f96140347efbfd46": {
+    "assetId": "eip155:1/erc20:0xc4bb7277a74678f053259cb1f96140347efbfd46",
+    "chainId": "eip155:1",
+    "name": "Coin of the champions on Ethereum",
+    "precision": 18,
+    "color": "#E4F404",
+    "icon": "https://assets.coingecko.com/coins/images/18478/thumb/COC-Yellow-Transparent-1.png?1696517963",
+    "symbol": "COC",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xc4c2614e694cf534d407ee49f8e44d125e4681c4": {
+    "assetId": "eip155:1/erc20:0xc4c2614e694cf534d407ee49f8e44d125e4681c4",
+    "chainId": "eip155:1",
+    "name": "Chain Games on Ethereum",
+    "precision": 18,
+    "color": "#EA7231",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xC4C2614E694cF534D407Ee49F8E44D125E4681c4/logo.png",
+    "symbol": "CHAIN",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xc4c346edc55504574cceb00aa1091d22404a4bc3": {
+    "assetId": "eip155:1/erc20:0xc4c346edc55504574cceb00aa1091d22404a4bc3",
+    "chainId": "eip155:1",
+    "name": "MEZZ",
+    "precision": 18,
+    "color": "#62565D",
+    "icon": "https://assets.coingecko.com/coins/images/29344/thumb/20230307_234212.png?1696528293",
+    "symbol": "MEZZ",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xc4c75f2a0cb1a9acc33929512dc9733ea1fd6fde": {
+    "assetId": "eip155:1/erc20:0xc4c75f2a0cb1a9acc33929512dc9733ea1fd6fde",
+    "chainId": "eip155:1",
+    "name": "Martin Shkreli Inu on Ethereum",
+    "precision": 18,
+    "color": "#F4E5E1",
+    "icon": "https://assets.coingecko.com/coins/images/26365/thumb/jEYEUxUI_400x400.jpeg?1696525442",
+    "symbol": "MSI",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xc4cb5793bd58bad06bf51fb37717b86b02cbe8a4": {
+    "assetId": "eip155:1/erc20:0xc4cb5793bd58bad06bf51fb37717b86b02cbe8a4",
+    "chainId": "eip155:1",
+    "name": "PROXI DeFi",
+    "precision": 18,
+    "color": "#100F08",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xC4cB5793BD58BaD06bF51FB37717b86B02CBe8A4/logo.png",
+    "symbol": "CREDIT",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xc4d5545392f5fc57eba3af8981815669bb7e2a48": {
+    "assetId": "eip155:1/erc20:0xc4d5545392f5fc57eba3af8981815669bb7e2a48",
+    "chainId": "eip155:1",
+    "name": "HEdpAY on Ethereum",
+    "precision": 4,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/7496/thumb/icon_hedpay.png?1696507765",
+    "symbol": "HDP",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xc4de189abf94c57f396bd4c52ab13b954febefd8": {
+    "assetId": "eip155:1/erc20:0xc4de189abf94c57f396bd4c52ab13b954febefd8",
+    "chainId": "eip155:1",
+    "name": "B20",
+    "precision": 18,
+    "color": "#1A1C1C",
+    "icon": "https://assets.coingecko.com/coins/images/13803/thumb/b20.png?1696513550",
+    "symbol": "B20",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xc4e30d504fe3b18423d82a34e7ebe529a56f89c2": {
+    "assetId": "eip155:1/erc20:0xc4e30d504fe3b18423d82a34e7ebe529a56f89c2",
+    "chainId": "eip155:1",
+    "name": "Wojak 2 0 Coin",
+    "precision": 18,
+    "color": "#E4B038",
+    "icon": "https://assets.coingecko.com/coins/images/30979/thumb/Wojak_2.0_Logo.png?1696529818",
+    "symbol": "WOJAK20",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xc4e8a9d47000ab8e59c7031e311762c68215e467": {
+    "assetId": "eip155:1/erc20:0xc4e8a9d47000ab8e59c7031e311762c68215e467",
+    "chainId": "eip155:1",
+    "name": "STARX",
+    "precision": 18,
+    "color": "#FAD046",
+    "icon": "https://assets.coingecko.com/coins/images/8417/thumb/starworks.PNG?1696508606",
+    "symbol": "STARX",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xc4ee0aa2d993ca7c9263ecfa26c6f7e13009d2b6": {
+    "assetId": "eip155:1/erc20:0xc4ee0aa2d993ca7c9263ecfa26c6f7e13009d2b6",
+    "chainId": "eip155:1",
+    "name": "Hoichi",
+    "precision": 18,
+    "color": "#8CA996",
+    "icon": "https://assets.coingecko.com/coins/images/27227/thumb/3dBs4VvW_400x400.jpeg?1696526278",
+    "symbol": "HOICHI",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xc4f521d163d593a759f526dabf012cc7581d808f": {
+    "assetId": "eip155:1/erc20:0xc4f521d163d593a759f526dabf012cc7581d808f",
+    "chainId": "eip155:1",
+    "name": "Digital Files on Ethereum",
+    "precision": 18,
+    "color": "#A9915E",
+    "icon": "https://assets.coingecko.com/coins/images/29282/thumb/DIFI_logo.png?1696528234",
+    "symbol": "DIFI",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xc4f6e93aeddc11dc22268488465babcaf09399ac": {
+    "assetId": "eip155:1/erc20:0xc4f6e93aeddc11dc22268488465babcaf09399ac",
+    "chainId": "eip155:1",
+    "name": "hi Dollar on Ethereum",
+    "precision": 18,
+    "color": "#B6BCCC",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xC4f6E93AEDdc11dc22268488465bAbcAF09399aC/logo.png",
+    "symbol": "HI",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xc502002aeb1b9309fccb016adf50507987fc6c2b": {
+    "assetId": "eip155:1/erc20:0xc502002aeb1b9309fccb016adf50507987fc6c2b",
+    "chainId": "eip155:1",
+    "name": "GNFT on Ethereum",
+    "precision": 18,
+    "color": "#7A68B4",
+    "icon": "https://assets.coingecko.com/coins/images/23532/thumb/gnft_200x200.png?1696522740",
+    "symbol": "GNFT",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xc5068471fe18eda3b362231d01ae30ba6a91ff0d": {
+    "assetId": "eip155:1/erc20:0xc5068471fe18eda3b362231d01ae30ba6a91ff0d",
+    "chainId": "eip155:1",
+    "name": "Cut It Off",
+    "precision": 18,
+    "color": "#D2D9C7",
+    "icon": "https://assets.coingecko.com/coins/images/30402/thumb/Logo_one.png?1696529291",
+    "symbol": "CUT",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xc5102fe9359fd9a28f877a67e36b0f050d81a3cc": {
+    "assetId": "eip155:1/erc20:0xc5102fe9359fd9a28f877a67e36b0f050d81a3cc",
+    "chainId": "eip155:1",
+    "name": "Hop Protocol on Ethereum",
+    "precision": 18,
+    "color": "#CA62C9",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xc5102fE9359FD9a28f877a67E36B0F050d81a3CC/logo.png",
+    "symbol": "HOP",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xc5170dd7386247cdb8c48545c803f5d0e3347022": {
+    "assetId": "eip155:1/erc20:0xc5170dd7386247cdb8c48545c803f5d0e3347022",
+    "chainId": "eip155:1",
+    "name": "Titanium22",
+    "precision": 18,
+    "color": "#161518",
+    "icon": "https://assets.coingecko.com/coins/images/31197/thumb/TI-AVATAR-1.jpg?1696530024",
+    "symbol": "TI",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xc5190e7fec4d97a3a3b1ab42dfedac608e2d0793": {
+    "assetId": "eip155:1/erc20:0xc5190e7fec4d97a3a3b1ab42dfedac608e2d0793",
+    "chainId": "eip155:1",
+    "name": "FX1Sports",
+    "precision": 18,
+    "color": "#2B4D52",
+    "icon": "https://assets.coingecko.com/coins/images/30078/thumb/fx1_sports_logo.jpg?1696529003",
+    "symbol": "FXI",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xc528c28fec0a90c083328bc45f587ee215760a0f": {
+    "assetId": "eip155:1/erc20:0xc528c28fec0a90c083328bc45f587ee215760a0f",
+    "chainId": "eip155:1",
+    "name": "Endor Protocol",
+    "precision": 18,
+    "color": "#07748B",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xc528c28FEC0A90C083328BC45f587eE215760A0F/logo.png",
+    "symbol": "EDR",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xc52c326331e9ce41f04484d3b5e5648158028804": {
+    "assetId": "eip155:1/erc20:0xc52c326331e9ce41f04484d3b5e5648158028804",
+    "chainId": "eip155:1",
+    "name": "Unizen",
+    "precision": 18,
+    "color": "#04F3A4",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xC52C326331E9Ce41F04484d3B5E5648158028804/logo.png",
+    "symbol": "ZCX",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xc52fafdc900cb92ae01e6e4f8979af7f436e2eb2": {
+    "assetId": "eip155:1/erc20:0xc52fafdc900cb92ae01e6e4f8979af7f436e2eb2",
+    "chainId": "eip155:1",
+    "name": "Settled EthXY Token",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/33032/thumb/logo-circle.png?1700348518",
+    "symbol": "SEXY",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xc53342fd7575f572b0ff4569e31941a5b821ac76": {
+    "assetId": "eip155:1/erc20:0xc53342fd7575f572b0ff4569e31941a5b821ac76",
+    "chainId": "eip155:1",
+    "name": "Ethereum Volatility Index Token",
+    "precision": 18,
+    "color": "#070E0C",
+    "icon": "https://assets.coingecko.com/coins/images/16716/thumb/logo_-_2021-06-28T092549.772.png?1696516290",
+    "symbol": "ETHV",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xc538143202f3b11382d8606aae90a96b042a19db": {
+    "assetId": "eip155:1/erc20:0xc538143202f3b11382d8606aae90a96b042a19db",
+    "chainId": "eip155:1",
+    "name": "Coinsbit Token",
+    "precision": 18,
+    "color": "#A8895C",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xC538143202f3b11382D8606aae90a96b042a19DB/logo.png",
+    "symbol": "CNB",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xc55126051b22ebb829d00368f4b12bde432de5da": {
+    "assetId": "eip155:1/erc20:0xc55126051b22ebb829d00368f4b12bde432de5da",
+    "chainId": "eip155:1",
+    "name": "Redacted",
+    "precision": 18,
+    "color": "#E0E0E0",
+    "icon": "https://assets.coingecko.com/coins/images/26745/thumb/redacted_v2.jpg?1696525813",
+    "symbol": "BTRFLY",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xc55c2175e90a46602fd42e931f62b3acc1a013ca": {
+    "assetId": "eip155:1/erc20:0xc55c2175e90a46602fd42e931f62b3acc1a013ca",
+    "chainId": "eip155:1",
+    "name": "Mogul Productions on Ethereum",
+    "precision": 18,
+    "color": "#E4BC5C",
+    "icon": "https://assets.coingecko.com/coins/images/14975/thumb/STARS_LOGO_PNG.png?1696514635",
+    "symbol": "STARS",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xc56aa8032d2cda3e401171b7787205f6640837d9": {
+    "assetId": "eip155:1/erc20:0xc56aa8032d2cda3e401171b7787205f6640837d9",
+    "chainId": "eip155:1",
+    "name": "Alpine",
+    "precision": 9,
+    "color": "#A6A6A6",
+    "icon": "https://assets.coingecko.com/coins/images/32517/thumb/al_pine200.png?1698406431",
+    "symbol": "ALP",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xc56c2b7e71b54d38aab6d52e94a04cbfa8f604fa": {
+    "assetId": "eip155:1/erc20:0xc56c2b7e71b54d38aab6d52e94a04cbfa8f604fa",
+    "chainId": "eip155:1",
+    "name": "ZUSD on Ethereum",
+    "precision": 6,
+    "color": "#D42B25",
+    "icon": "https://assets.coingecko.com/coins/images/14192/thumb/icon_zusd_200_200.png?1696513910",
+    "symbol": "ZUSD",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xc57d533c50bc22247d49a368880fb49a1caa39f7": {
+    "assetId": "eip155:1/erc20:0xc57d533c50bc22247d49a368880fb49a1caa39f7",
+    "chainId": "eip155:1",
+    "name": "PowerTrade Fuel",
+    "precision": 18,
+    "color": "#AAFA04",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xC57d533c50bC22247d49a368880fb49a1caA39F7/logo.png",
+    "symbol": "PTF",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xc57f1d079c862b70aa12faab19293f827187aaf6": {
+    "assetId": "eip155:1/erc20:0xc57f1d079c862b70aa12faab19293f827187aaf6",
+    "chainId": "eip155:1",
+    "name": "Gilgeous",
+    "precision": 18,
+    "color": "#5DF8F0",
+    "icon": "https://assets.coingecko.com/coins/images/30241/thumb/GLG_200x200.jpg?1696529150",
+    "symbol": "GLG",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xc581b735a1688071a1746c968e0798d642ede491": {
+    "assetId": "eip155:1/erc20:0xc581b735a1688071a1746c968e0798d642ede491",
+    "chainId": "eip155:1",
+    "name": "Euro Tether",
+    "precision": 6,
+    "color": "#A0D4C6",
+    "icon": "https://assets.coingecko.com/coins/images/17385/thumb/Tether_new.png?1696516934",
+    "symbol": "EURT",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xc58f53a8adff2fb4eb16ed56635772075e2ee123": {
+    "assetId": "eip155:1/erc20:0xc58f53a8adff2fb4eb16ed56635772075e2ee123",
+    "chainId": "eip155:1",
+    "name": "Aave AMM UniWBTCWETH",
+    "precision": 18,
+    "color": "#52B4C5",
+    "icon": "https://assets.coingecko.com/coins/images/17231/thumb/aAmmUniWBTCWETH.png?1696516785",
+    "symbol": "AAMMUNIWBTCWETH",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xc590c348d431d544172f5ec4e4c8ea44537b8f4d": {
+    "assetId": "eip155:1/erc20:0xc590c348d431d544172f5ec4e4c8ea44537b8f4d",
+    "chainId": "eip155:1",
+    "name": "AntNetworX",
+    "precision": 9,
+    "color": "#1A161D",
+    "icon": "https://assets.coingecko.com/coins/images/31054/thumb/0ZE35O-t_400x400.jpg?1696529889",
+    "symbol": "ANTX",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xc5b3d3231001a776123194cf1290068e8b0c783b": {
+    "assetId": "eip155:1/erc20:0xc5b3d3231001a776123194cf1290068e8b0c783b",
+    "chainId": "eip155:1",
+    "name": "LIT",
+    "precision": 18,
+    "color": "#FC3D27",
+    "icon": "https://assets.coingecko.com/coins/images/21344/thumb/LitLogo_CG.png?1696520710",
+    "symbol": "LIT",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xc5bcc8ba3f33ab0d64f3473e861bdc0685b19ef5": {
+    "assetId": "eip155:1/erc20:0xc5bcc8ba3f33ab0d64f3473e861bdc0685b19ef5",
+    "chainId": "eip155:1",
+    "name": "Mechanium on Ethereum",
+    "precision": 18,
+    "color": "#0F0F0F",
+    "icon": "https://assets.coingecko.com/coins/images/24374/thumb/w4K4OOMo_400x400.jpg?1696523558",
+    "symbol": "MECHA",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xc5bddf9843308380375a611c18b50fb9341f502a": {
+    "assetId": "eip155:1/erc20:0xc5bddf9843308380375a611c18b50fb9341f502a",
+    "chainId": "eip155:1",
+    "name": "veCRV DAO yVault",
+    "precision": 18,
+    "color": "#5CD0E2",
+    "icon": "https://assets.coingecko.com/coins/images/13065/thumb/yearn_veCRV.png?1696512854",
+    "symbol": "YVE-CRVDAO",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xc5f0f7b66764f6ec8c8dff7ba683102295e16409": {
+    "assetId": "eip155:1/erc20:0xc5f0f7b66764f6ec8c8dff7ba683102295e16409",
+    "chainId": "eip155:1",
+    "name": "First Digital USD on Ethereum",
+    "precision": 18,
+    "color": "#0D1210",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xc5f0f7b66764F6ec8C8Dff7BA683102295E16409/logo.png",
+    "symbol": "FDUSD",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xc5fb36dd2fb59d3b98deff88425a3f425ee469ed": {
+    "assetId": "eip155:1/erc20:0xc5fb36dd2fb59d3b98deff88425a3f425ee469ed",
+    "chainId": "eip155:1",
+    "name": "Dejitaru Tsuka",
+    "precision": 9,
+    "color": "#D2B86F",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xc5fB36dd2fb59d3B98dEfF88425a3F425Ee469eD/logo.png",
+    "symbol": "TSUKA",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xc5fdf3569af74f3b3e97e46a187a626352d2d508": {
+    "assetId": "eip155:1/erc20:0xc5fdf3569af74f3b3e97e46a187a626352d2d508",
+    "chainId": "eip155:1",
+    "name": "Zombie Inu on Ethereum",
+    "precision": 9,
+    "color": "#D4B278",
+    "icon": "https://assets.coingecko.com/coins/images/28562/thumb/zinu_new.png?1696527552",
+    "symbol": "ZINU",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xc608557d966f6b7568e5c9345285f0c8c90a96a2": {
+    "assetId": "eip155:1/erc20:0xc608557d966f6b7568e5c9345285f0c8c90a96a2",
+    "chainId": "eip155:1",
+    "name": "XCatge",
+    "precision": 9,
+    "color": "#A4A4A4",
+    "icon": "https://assets.coingecko.com/coins/images/31449/thumb/vSsO7y6.jpg?1696530263",
+    "symbol": "XCATGE",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xc60d6662027f5797cf873bfe80bcf048e30fc35e": {
+    "assetId": "eip155:1/erc20:0xc60d6662027f5797cf873bfe80bcf048e30fc35e",
+    "chainId": "eip155:1",
+    "name": "SORA Synthetics",
+    "precision": 18,
+    "color": "#D07B7F",
+    "icon": "https://assets.coingecko.com/coins/images/27897/thumb/XST_200x200.png?1696526914",
+    "symbol": "XST",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xc626e0619ac79afea9281c8eb9b1a9f9d3fab532": {
+    "assetId": "eip155:1/erc20:0xc626e0619ac79afea9281c8eb9b1a9f9d3fab532",
+    "chainId": "eip155:1",
+    "name": "Freedom Reserve on Ethereum",
+    "precision": 18,
+    "color": "#2A8466",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xC626e0619aC79AFEa9281c8eB9b1a9f9D3Fab532/logo.png",
+    "symbol": "FR",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xc62def1701309bb76e6b39b6ab8b5fac910a3c87": {
+    "assetId": "eip155:1/erc20:0xc62def1701309bb76e6b39b6ab8b5fac910a3c87",
+    "chainId": "eip155:1",
+    "name": "MetaRare",
+    "precision": 18,
+    "color": "#6C8CA8",
+    "icon": "https://assets.coingecko.com/coins/images/24276/thumb/Logo_200x200_PNG.png?1696523459",
+    "symbol": "MTRA",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xc631120155621ee625835ec810b9885cdd764cd6": {
+    "assetId": "eip155:1/erc20:0xc631120155621ee625835ec810b9885cdd764cd6",
+    "chainId": "eip155:1",
+    "name": "Goldex",
+    "precision": 8,
+    "color": "#947338",
+    "icon": "https://assets.coingecko.com/coins/images/17814/thumb/gldx-logo-200x200.png?1696517334",
+    "symbol": "GLDX",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xc64500dd7b0f1794807e67802f8abbf5f8ffb054": {
+    "assetId": "eip155:1/erc20:0xc64500dd7b0f1794807e67802f8abbf5f8ffb054",
+    "chainId": "eip155:1",
+    "name": "Locus Chain",
+    "precision": 18,
+    "color": "#E5F0F3",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xC64500DD7B0f1794807e67802F8Abbf5F8Ffb054/logo.png",
+    "symbol": "LOCUS",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xc666081073e8dff8d3d1c2292a29ae1a2153ec09": {
+    "assetId": "eip155:1/erc20:0xc666081073e8dff8d3d1c2292a29ae1a2153ec09",
+    "chainId": "eip155:1",
+    "name": "Digitex on Ethereum",
+    "precision": 18,
+    "color": "#7C34EB",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xc666081073E8DfF8D3d1c2292A29aE1A2153eC09/logo.png",
+    "symbol": "DGTX",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xc669928185dbce49d2230cc9b0979be6dc797957": {
+    "assetId": "eip155:1/erc20:0xc669928185dbce49d2230cc9b0979be6dc797957",
+    "chainId": "eip155:1",
+    "name": "BitTorrent",
+    "precision": 18,
+    "color": "#040404",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xC669928185DbCE49d2230CC9B0979BE6DC797957/logo.png",
+    "symbol": "BTT",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xc66cdac744916afb6811c71c277d88de90ce8d5b": {
+    "assetId": "eip155:1/erc20:0xc66cdac744916afb6811c71c277d88de90ce8d5b",
+    "chainId": "eip155:1",
+    "name": "CDbio",
+    "precision": 18,
+    "color": "#949CB0",
+    "icon": "https://assets.coingecko.com/coins/images/26957/thumb/mcd.png?1696526012",
+    "symbol": "MCD",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xc67b12049c2d0cf6e476bc64c7f82fc6c63cffc5": {
+    "assetId": "eip155:1/erc20:0xc67b12049c2d0cf6e476bc64c7f82fc6c63cffc5",
+    "chainId": "eip155:1",
+    "name": "Globe Derivative Exchange",
+    "precision": 8,
+    "color": "#CAD1D4",
+    "icon": "https://assets.coingecko.com/coins/images/15335/thumb/gdt.PNG?1696514983",
+    "symbol": "GDT",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xc690f7c7fcffa6a82b79fab7508c466fefdfc8c5": {
+    "assetId": "eip155:1/erc20:0xc690f7c7fcffa6a82b79fab7508c466fefdfc8c5",
+    "chainId": "eip155:1",
+    "name": "Lympo",
+    "precision": 18,
+    "color": "#EA5557",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xc690F7C7FcfFA6a82b79faB7508c466FEfdfc8c5/logo.png",
+    "symbol": "LYM",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xc691bc298a304d591ad9b352c7a8d216de9f2ced": {
+    "assetId": "eip155:1/erc20:0xc691bc298a304d591ad9b352c7a8d216de9f2ced",
+    "chainId": "eip155:1",
+    "name": "Polaris Share",
+    "precision": 18,
+    "color": "#1C7EFC",
+    "icon": "https://assets.coingecko.com/coins/images/13817/thumb/tHQrxdYQ_400x400.png?1696513563",
+    "symbol": "POLA",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xc6956b78e036b87ba2ab9810bf081eb76eedd17a": {
+    "assetId": "eip155:1/erc20:0xc6956b78e036b87ba2ab9810bf081eb76eedd17a",
+    "chainId": "eip155:1",
+    "name": "H",
+    "precision": 18,
+    "color": "#1C1C1E",
+    "icon": "https://assets.coingecko.com/coins/images/28759/thumb/H.png?1696527738",
+    "symbol": "H",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xc6979ff406f6cd88908009a80fac0fa7cc1d4fbd": {
+    "assetId": "eip155:1/erc20:0xc6979ff406f6cd88908009a80fac0fa7cc1d4fbd",
+    "chainId": "eip155:1",
+    "name": "Socio",
+    "precision": 9,
+    "color": "#EDEDED",
+    "icon": "https://assets.coingecko.com/coins/images/31609/thumb/sociologo-fococlipping-standard.png?1696530425",
+    "symbol": "SOCIO",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xc6980fa29a42e44852e29492268d9285d89c9dac": {
+    "assetId": "eip155:1/erc20:0xc6980fa29a42e44852e29492268d9285d89c9dac",
+    "chainId": "eip155:1",
+    "name": "MeGods",
+    "precision": 18,
+    "color": "#F0F0F0",
+    "icon": "https://assets.coingecko.com/coins/images/31530/thumb/200oTGp1V6N_400x400.jpg?1696530339",
+    "symbol": "MEGODS",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xc6bdb96e29c38dc43f014eed44de4106a6a8eb5f": {
+    "assetId": "eip155:1/erc20:0xc6bdb96e29c38dc43f014eed44de4106a6a8eb5f",
+    "chainId": "eip155:1",
+    "name": "Inu Inu",
+    "precision": 18,
+    "color": "#F5E0D6",
+    "icon": "https://assets.coingecko.com/coins/images/26391/thumb/logo_square_200.png?1696525468",
+    "symbol": "INUINU",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xc6cc3d07c705e39d11c7f60d8836c7c78d4ac5f1": {
+    "assetId": "eip155:1/erc20:0xc6cc3d07c705e39d11c7f60d8836c7c78d4ac5f1",
+    "chainId": "eip155:1",
+    "name": "Olea Token",
+    "precision": 18,
+    "color": "#F4EEEB",
+    "icon": "https://assets.coingecko.com/coins/images/29056/thumb/symbol.png?1696528023",
+    "symbol": "OLEA",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xc6cd44f9630886a7492cea3d9860e0510933a600": {
+    "assetId": "eip155:1/erc20:0xc6cd44f9630886a7492cea3d9860e0510933a600",
+    "chainId": "eip155:1",
+    "name": "Fake Market Cap",
+    "precision": 18,
+    "color": "#248CDC",
+    "icon": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAIAAAACACAMAAAD04JH5AAADAFBMVEUtN0gmiNj///8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA0Vi9yAAABAHRSTlP/////AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAf6K/dgAAQItJREFUeNoBgEB/vwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgICAgICAgICAgICAgICAQEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgICAgICAgICAgICAgICAQEBAQEBAQEBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAwAAAAAAAAAAAAAAAAAAAAACAgICAgICAQMDAwMDAwMDAwMDAwMDAwMDAwMDAgICAgICAgEBAQEBAQECAgICAgICAAMDAwMDAwMDAwMDAwMDAwMDAwMDAgICAgICAgEBAQEBAQECAgICAgICAwMDAwMDAwMDAwMDAwMDAwMDAwMDAgICAgICAgAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAQMDAwMDAwMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAAMDAwMDAwMAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAwAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAwAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAwAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAwAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAwAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAwAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAwMDAwMDAwMDAwMDAwMDAwMDAwMDAgICAgICAgMBAQEBAQECAgICAgICAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAwMDAwMDAgICAgICAgICAgICAgICAgICAgICAQMDAwMDAwMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQMDAwMDAwMDAwMDAwMDAwMDAwMDAwEBAQEBAQEBAQEBAQEBAwMDAwMDAwAAAAAAAAAAAAAAAAAAAAAAAAEBAQMDAwMDAwMBAQEBAQEBAwMDAwMDAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFZyMSJOplUnAAAAAElFTkSuQmCC",
+    "symbol": "CAP",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xc6d1f1d5a46de07e73091f1c8793293b203f01a1": {
+    "assetId": "eip155:1/erc20:0xc6d1f1d5a46de07e73091f1c8793293b203f01a1",
+    "chainId": "eip155:1",
+    "name": "Mission Helios",
+    "precision": 18,
+    "color": "#545454",
+    "icon": "https://assets.coingecko.com/coins/images/18295/thumb/helios.png?1696517787",
+    "symbol": "HELIOS",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xc6dddb5bc6e61e0841c54f3e723ae1f3a807260b": {
+    "assetId": "eip155:1/erc20:0xc6dddb5bc6e61e0841c54f3e723ae1f3a807260b",
+    "chainId": "eip155:1",
+    "name": "Aurox on Ethereum",
+    "precision": 18,
+    "color": "#070F16",
+    "icon": "https://assets.coingecko.com/coins/images/14122/thumb/Aurox.png?1696513842",
+    "symbol": "URUS",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xc6e145421fd494b26dcf2bfeb1b02b7c5721978f": {
+    "assetId": "eip155:1/erc20:0xc6e145421fd494b26dcf2bfeb1b02b7c5721978f",
+    "chainId": "eip155:1",
+    "name": "Crypto Perx",
+    "precision": 18,
+    "color": "#1D251F",
+    "icon": "https://assets.coingecko.com/coins/images/20768/thumb/8iQSd5YY_400x400.jpg?1696520162",
+    "symbol": "CPRX",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xc713e5e149d5d0715dcd1c156a020976e7e56b88": {
+    "assetId": "eip155:1/erc20:0xc713e5e149d5d0715dcd1c156a020976e7e56b88",
+    "chainId": "eip155:1",
+    "name": "Aave MKR",
+    "precision": 18,
+    "color": "#5AB7AE",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xc713e5E149D5D0715DcD1c156a020976e7E56B88/logo.png",
+    "symbol": "AMKR",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xc719d010b63e5bbf2c0551872cd5316ed26acd83": {
+    "assetId": "eip155:1/erc20:0xc719d010b63e5bbf2c0551872cd5316ed26acd83",
+    "chainId": "eip155:1",
+    "name": "Etherisc DIP on Ethereum",
+    "precision": 18,
+    "color": "#F0F8F7",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xc719d010B63E5bbF2C0551872CD5316ED26AcD83/logo.png",
+    "symbol": "DIP",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xc71d8baaa436aa7e42da1f40bec48f11ab3c9e4a": {
+    "assetId": "eip155:1/erc20:0xc71d8baaa436aa7e42da1f40bec48f11ab3c9e4a",
+    "chainId": "eip155:1",
+    "name": "iEthereum",
+    "precision": 8,
+    "color": "#04ACEC",
+    "icon": "https://assets.coingecko.com/coins/images/1065/thumb/ieth.png?1696502169",
+    "symbol": "IETH",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xc72633f995e98ac3bb8a89e6a9c4af335c3d6e44": {
+    "assetId": "eip155:1/erc20:0xc72633f995e98ac3bb8a89e6a9c4af335c3d6e44",
+    "chainId": "eip155:1",
+    "name": "Omnisea on Ethereum",
+    "precision": 18,
+    "color": "#F26286",
+    "icon": "https://assets.coingecko.com/coins/images/26475/thumb/293837892_407994084681555_3167689470652146992_n.png?1696525547",
+    "symbol": "OSEA",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xc7283b66eb1eb5fb86327f08e1b5816b0720212b": {
+    "assetId": "eip155:1/erc20:0xc7283b66eb1eb5fb86327f08e1b5816b0720212b",
+    "chainId": "eip155:1",
+    "name": "Tribe",
+    "precision": 18,
+    "color": "#148CD3",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xc7283b66Eb1EB5FB86327f08e1B5816b0720212B/logo.png",
+    "symbol": "TRIBE",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xc73c167e7a4ba109e4052f70d5466d0c312a344d": {
+    "assetId": "eip155:1/erc20:0xc73c167e7a4ba109e4052f70d5466d0c312a344d",
+    "chainId": "eip155:1",
+    "name": "Sanshu Inu",
+    "precision": 9,
+    "color": "#ED84AE",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xc73C167E7a4Ba109e4052f70D5466D0C312A344D/logo.png",
+    "symbol": "SANSHU",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xc740181345c65552333e1edc797e03f11852b1c8": {
+    "assetId": "eip155:1/erc20:0xc740181345c65552333e1edc797e03f11852b1c8",
+    "chainId": "eip155:1",
+    "name": "Kento",
+    "precision": 18,
+    "color": "#66B9DE",
+    "icon": "https://assets.coingecko.com/coins/images/31352/thumb/knto-cg-200.png?1696530169",
+    "symbol": "KNTO",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xc744df3419a8c9bd4d6b9852a503eb1c5308a326": {
+    "assetId": "eip155:1/erc20:0xc744df3419a8c9bd4d6b9852a503eb1c5308a326",
+    "chainId": "eip155:1",
+    "name": "RED TOKEN",
+    "precision": 18,
+    "color": "#FBE2E2",
+    "icon": "https://assets.coingecko.com/coins/images/27153/thumb/red.png?1696526204",
+    "symbol": "RED",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xc76d53f988820fe70e01eccb0248b312c2f1c7ca": {
+    "assetId": "eip155:1/erc20:0xc76d53f988820fe70e01eccb0248b312c2f1c7ca",
+    "chainId": "eip155:1",
+    "name": "Inu Token",
+    "precision": 18,
+    "color": "#050505",
+    "icon": "https://assets.coingecko.com/coins/images/30755/thumb/0xc76d53f988820fe70e01eccb0248b312c2f1c7ca.png?1696529624",
+    "symbol": "INU",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xc770eefad204b5180df6a14ee197d99d808ee52d": {
+    "assetId": "eip155:1/erc20:0xc770eefad204b5180df6a14ee197d99d808ee52d",
+    "chainId": "eip155:1",
+    "name": "FOX on Ethereum",
+    "precision": 18,
+    "color": "#3761F9",
+    "icon": "https://assets.coincap.io/assets/icons/256/fox.png",
+    "symbol": "FOX",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xc775c0c30840cb9f51e21061b054ebf1a00acc29": {
+    "assetId": "eip155:1/erc20:0xc775c0c30840cb9f51e21061b054ebf1a00acc29",
+    "chainId": "eip155:1",
+    "name": "Pastel",
+    "precision": 5,
+    "color": "#DFDFDF",
+    "icon": "https://assets.coingecko.com/coins/images/14293/thumb/A4qGwEij_400x400.jpg?1696513990",
+    "symbol": "PSL",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xc77b230f31b517f1ef362e59c173c2be6540b5e8": {
+    "assetId": "eip155:1/erc20:0xc77b230f31b517f1ef362e59c173c2be6540b5e8",
+    "chainId": "eip155:1",
+    "name": "VIDY",
+    "precision": 18,
+    "color": "#FB3CAC",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xC77b230F31b517F1ef362e59c173C2BE6540B5E8/logo.png",
+    "symbol": "VIDY",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xc7a2572fa8fdb0f7e81d6d3c4e3ccf78fb0dc374": {
+    "assetId": "eip155:1/erc20:0xc7a2572fa8fdb0f7e81d6d3c4e3ccf78fb0dc374",
+    "chainId": "eip155:1",
+    "name": "Ben s Finale",
+    "precision": 18,
+    "color": "#C2D6E3",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xC7a2572fA8FDB0f7E81d6D3c4e3CCF78FB0DC374/logo.png",
+    "symbol": "FINALE",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xc7b4c17861357b8abb91f25581e7263e08dcb59c": {
+    "assetId": "eip155:1/erc20:0xc7b4c17861357b8abb91f25581e7263e08dcb59c",
+    "chainId": "eip155:1",
+    "name": "Aave v3 SNX",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/32902/thumb/SNX.png?1699802376",
+    "symbol": "ASNX",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xc7b89491bb148551547837ea6ccb4bb5144d8e47": {
+    "assetId": "eip155:1/erc20:0xc7b89491bb148551547837ea6ccb4bb5144d8e47",
+    "chainId": "eip155:1",
+    "name": "Sonar on Ethereum",
+    "precision": 9,
+    "color": "#DB9648",
+    "icon": "https://assets.coingecko.com/coins/images/16463/thumb/sonar_logo-200.png?1696516058",
+    "symbol": "PING",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xc7bba5b765581efb2cdd2679db5bea9ee79b201f": {
+    "assetId": "eip155:1/erc20:0xc7bba5b765581efb2cdd2679db5bea9ee79b201f",
+    "chainId": "eip155:1",
+    "name": "Gems",
+    "precision": 18,
+    "color": "#0D142C",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xc7BbA5b765581eFb2Cdd2679DB5Bea9eE79b201f/logo.png",
+    "symbol": "GEM",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xc7c53760375530e5af29fded5e13989325299382": {
+    "assetId": "eip155:1/erc20:0xc7c53760375530e5af29fded5e13989325299382",
+    "chainId": "eip155:1",
+    "name": "WORLD PEACE COIN",
+    "precision": 9,
+    "color": "#E3E3E3",
+    "icon": "https://assets.coingecko.com/coins/images/32331/thumb/image01_%282%29_2.jpg?1697452381",
+    "symbol": "WPC",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xc7f950271d118a5bdf250dffc39128dcced8472c": {
+    "assetId": "eip155:1/erc20:0xc7f950271d118a5bdf250dffc39128dcced8472c",
+    "chainId": "eip155:1",
+    "name": "Chainback",
+    "precision": 18,
+    "color": "#D5F6F1",
+    "icon": "https://assets.coingecko.com/coins/images/30580/thumb/Chainback-glyph-logo-200.png?1696529444",
+    "symbol": "ARCHIVE",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xc7ff1e126cc81e816915ff48c940ed9d4e6d05d6": {
+    "assetId": "eip155:1/erc20:0xc7ff1e126cc81e816915ff48c940ed9d4e6d05d6",
+    "chainId": "eip155:1",
+    "name": "IjasCoin",
+    "precision": 18,
+    "color": "#EE4C05",
+    "icon": "https://assets.coingecko.com/coins/images/14099/thumb/Ijascode-Flat-Logo-2-24-2021.png?1696513821",
+    "symbol": "IJC",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xc8020985a6b30773d866cbef65a7a11f96773413": {
+    "assetId": "eip155:1/erc20:0xc8020985a6b30773d866cbef65a7a11f96773413",
+    "chainId": "eip155:1",
+    "name": "Envi Coin",
+    "precision": 18,
+    "color": "#CDB354",
+    "icon": "https://assets.coingecko.com/coins/images/32375/thumb/IMG_1970.png?1698035209",
+    "symbol": "ENVI",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xc813ea5e3b48bebeedb796ab42a30c5599b01740": {
+    "assetId": "eip155:1/erc20:0xc813ea5e3b48bebeedb796ab42a30c5599b01740",
+    "chainId": "eip155:1",
+    "name": "Autonio on Ethereum",
+    "precision": 4,
+    "color": "#0C2B3C",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xc813EA5e3b48BEbeedb796ab42A30C5599b01740/logo.png",
+    "symbol": "NIOX",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xc819617f360f6347d222f260e9f4987ca1d0f879": {
+    "assetId": "eip155:1/erc20:0xc819617f360f6347d222f260e9f4987ca1d0f879",
+    "chainId": "eip155:1",
+    "name": "ICLICK Inu on Ethereum",
+    "precision": 18,
+    "color": "#158182",
+    "icon": "https://assets.coingecko.com/coins/images/32060/thumb/Iclick.png?1696530857",
+    "symbol": "ICLICK",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xc81b0d02393a956234e24564805a896f14ad1250": {
+    "assetId": "eip155:1/erc20:0xc81b0d02393a956234e24564805a896f14ad1250",
+    "chainId": "eip155:1",
+    "name": "BeautifulPrincessDisorder",
+    "precision": 9,
+    "color": "#E6EAED",
+    "icon": "https://assets.coingecko.com/coins/images/31824/thumb/6RGuGvnz_400x400.jpg?1696530638",
+    "symbol": "BPD",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xc82e3db60a52cf7529253b4ec688f631aad9e7c2": {
+    "assetId": "eip155:1/erc20:0xc82e3db60a52cf7529253b4ec688f631aad9e7c2",
+    "chainId": "eip155:1",
+    "name": "Arc",
+    "precision": 18,
+    "color": "#1D1D1E",
+    "icon": "https://assets.coingecko.com/coins/images/24235/thumb/arc.png?1696523420",
+    "symbol": "ARC",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xc834fa996fa3bec7aad3693af486ae53d8aa8b50": {
+    "assetId": "eip155:1/erc20:0xc834fa996fa3bec7aad3693af486ae53d8aa8b50",
+    "chainId": "eip155:1",
+    "name": "Convergence",
+    "precision": 18,
+    "color": "#E4243C",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xc834Fa996fA3BeC7aAD3693af486ae53D8aA8B50/logo.png",
+    "symbol": "CONV",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xc86d054809623432210c107af2e3f619dcfbf652": {
+    "assetId": "eip155:1/erc20:0xc86d054809623432210c107af2e3f619dcfbf652",
+    "chainId": "eip155:1",
+    "name": "Sentinel Protocol",
+    "precision": 18,
+    "color": "#1CA4C4",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xC86D054809623432210c107af2e3F619DcFbf652/logo.png",
+    "symbol": "UPP",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xc8807f0f5ba3fa45ffbdc66928d71c5289249014": {
+    "assetId": "eip155:1/erc20:0xc8807f0f5ba3fa45ffbdc66928d71c5289249014",
+    "chainId": "eip155:1",
+    "name": "Ispolink on Ethereum",
+    "precision": 18,
+    "color": "#5B5BEC",
+    "icon": "https://assets.coingecko.com/coins/images/15283/thumb/isolink.PNG?1696514934",
+    "symbol": "ISP",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xc8871267e07408b89aa5aecc58adca5e574557f8": {
+    "assetId": "eip155:1/erc20:0xc8871267e07408b89aa5aecc58adca5e574557f8",
+    "chainId": "eip155:1",
+    "name": "Instadapp USDC",
+    "precision": 6,
+    "color": "#306CF4",
+    "icon": "https://assets.coingecko.com/coins/images/25820/thumb/iUSDC_100x100.png?1696524905",
+    "symbol": "IUSDC",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xc89d9aa9d9e54bb196319c6195aea1038d2bc936": {
+    "assetId": "eip155:1/erc20:0xc89d9aa9d9e54bb196319c6195aea1038d2bc936",
+    "chainId": "eip155:1",
+    "name": "Trend X",
+    "precision": 18,
+    "color": "#047C9C",
+    "icon": "https://assets.coingecko.com/coins/images/29522/thumb/200.png?1696528465",
+    "symbol": "TRENDX",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xc8c424b91d8ce0137bab4b832b7f7d154156ba6c": {
+    "assetId": "eip155:1/erc20:0xc8c424b91d8ce0137bab4b832b7f7d154156ba6c",
+    "chainId": "eip155:1",
+    "name": "apM Coin",
+    "precision": 18,
+    "color": "#040404",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xC8C424B91D8ce0137bAB4B832B7F7D154156BA6c/logo.png",
+    "symbol": "APM",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xc8d1acd9ac1116f8450b375be2a3730f43e916d4": {
+    "assetId": "eip155:1/erc20:0xc8d1acd9ac1116f8450b375be2a3730f43e916d4",
+    "chainId": "eip155:1",
+    "name": "HK Chat",
+    "precision": 18,
+    "color": "#FCF4DF",
+    "icon": "https://assets.coingecko.com/coins/images/31931/thumb/yoho_Token_200_x_200.png?1696530739",
+    "symbol": "YOHO",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xc8d3dcb63c38607cb0c9d3f55e8ecce628a01c36": {
+    "assetId": "eip155:1/erc20:0xc8d3dcb63c38607cb0c9d3f55e8ecce628a01c36",
+    "chainId": "eip155:1",
+    "name": "Matrix Labs on Ethereum",
+    "precision": 18,
+    "color": "#047459",
+    "icon": "https://assets.coingecko.com/coins/images/18297/thumb/matrixlabs.png?1696517789",
+    "symbol": "MATRIX",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xc8de43bfe33ff496fa14c270d9cb29bda196b9b5": {
+    "assetId": "eip155:1/erc20:0xc8de43bfe33ff496fa14c270d9cb29bda196b9b5",
+    "chainId": "eip155:1",
+    "name": "Big Eyes",
+    "precision": 18,
+    "color": "#FBFAEB",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xc8De43Bfe33FF496Fa14c270D9CB29Bda196B9B5/logo.png",
+    "symbol": "BIG",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xc8e6ca6e96a326dc448307a5fde90a0b21fd7f80": {
+    "color": "#FFFFFF",
+    "icon": "https://raw.githubusercontent.com/Idle-Labs/idle-dashboard/master/public/images/tokens/WETH.svg",
+    "name": "WETH Senior Best Yield",
+    "precision": 18,
+    "symbol": "idleWETHYield",
+    "chainId": "eip155:1",
+    "assetId": "eip155:1/erc20:0xc8e6ca6e96a326dc448307a5fde90a0b21fd7f80",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xc8ef1460277ea47d179dec66d1c5f8b7f7ae5a28": {
+    "assetId": "eip155:1/erc20:0xc8ef1460277ea47d179dec66d1c5f8b7f7ae5a28",
+    "chainId": "eip155:1",
+    "name": "Rikkei Finance on Ethereum",
+    "precision": 18,
+    "color": "#A68451",
+    "icon": "https://assets.coingecko.com/coins/images/21309/thumb/rikkei-finance.jpeg?1696520678",
+    "symbol": "RIFI",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xc91a71a1ffa3d8b22ba615ba1b9c01b2bbbf55ad": {
+    "assetId": "eip155:1/erc20:0xc91a71a1ffa3d8b22ba615ba1b9c01b2bbbf55ad",
+    "chainId": "eip155:1",
+    "name": "ZigZag",
+    "precision": 18,
+    "color": "#40CEDC",
+    "icon": "https://assets.coingecko.com/coins/images/26141/thumb/zig_zag.?1696525229",
+    "symbol": "ZZ",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xc91b523a59acc63a64f61fc7bbfb4bfc82dd25f2": {
+    "assetId": "eip155:1/erc20:0xc91b523a59acc63a64f61fc7bbfb4bfc82dd25f2",
+    "chainId": "eip155:1",
+    "name": "Multiverse",
+    "precision": 18,
+    "color": "#043C7C",
+    "icon": "https://assets.coingecko.com/coins/images/16329/thumb/multiverse_logo_full_color_rgb_200px_72ppi.png?1696515930",
+    "symbol": "AI",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xc944e90c64b2c07662a292be6244bdf05cda44a7": {
+    "assetId": "eip155:1/erc20:0xc944e90c64b2c07662a292be6244bdf05cda44a7",
+    "chainId": "eip155:1",
+    "name": "The Graph on Ethereum",
+    "precision": 18,
+    "color": "#433FAD",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xc944E90C64B2c07662A292be6244BDf05Cda44a7/logo.png",
+    "symbol": "GRT",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xc961da88bb5e8ee2ba7dfd4c62a875ef80f7202f": {
+    "assetId": "eip155:1/erc20:0xc961da88bb5e8ee2ba7dfd4c62a875ef80f7202f",
+    "chainId": "eip155:1",
+    "name": "Haram",
+    "precision": 9,
+    "color": "#D8DAD8",
+    "icon": "https://assets.coingecko.com/coins/images/30374/thumb/200x200trans.png?1696529268",
+    "symbol": "HARAM",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xc96df921009b790dffca412375251ed1a2b75c60": {
+    "assetId": "eip155:1/erc20:0xc96df921009b790dffca412375251ed1a2b75c60",
+    "chainId": "eip155:1",
+    "name": "Ormeus Coin on Ethereum",
+    "precision": 8,
+    "color": "#E4BC32",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xc96DF921009B790dfFcA412375251ed1A2b75c60/logo.png",
+    "symbol": "ORME",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xc97232527b62efb0d8ed38cf3ea103a6cca4037e": {
+    "assetId": "eip155:1/erc20:0xc97232527b62efb0d8ed38cf3ea103a6cca4037e",
+    "chainId": "eip155:1",
+    "name": "LP Yearn CRV Vault",
+    "precision": 18,
+    "color": "#DBDA28",
+    "icon": "https://assets.coingecko.com/coins/images/27624/thumb/yearncrvlp_32.png?1696526654",
+    "symbol": "LP-YCRV",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xc97d6c52f3add91fa1c5287a453d7444aecbca83": {
+    "assetId": "eip155:1/erc20:0xc97d6c52f3add91fa1c5287a453d7444aecbca83",
+    "chainId": "eip155:1",
+    "name": "Degen Zoo on Ethereum",
+    "precision": 18,
+    "color": "#1D1D17",
+    "icon": "https://assets.coingecko.com/coins/images/29224/thumb/FAGWW5fe_400x400.jpeg?1696528182",
+    "symbol": "DZOO",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xc983c1bd8393dd5c630a3d6c4fe9e5c92e582328": {
+    "assetId": "eip155:1/erc20:0xc983c1bd8393dd5c630a3d6c4fe9e5c92e582328",
+    "chainId": "eip155:1",
+    "name": "Kekya",
+    "precision": 18,
+    "color": "#2C6C2D",
+    "icon": "https://assets.coingecko.com/coins/images/30510/thumb/kekyalogo_%282%29.png?1696529395",
+    "symbol": "KEKYA",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xc98d64da73a6616c42117b582e832812e7b8d57f": {
+    "assetId": "eip155:1/erc20:0xc98d64da73a6616c42117b582e832812e7b8d57f",
+    "chainId": "eip155:1",
+    "name": "RSS3",
+    "precision": 18,
+    "color": "#FCFCFC",
+    "icon": "https://assets.coingecko.com/coins/images/23575/thumb/RSS3.png?1696522783",
+    "symbol": "RSS3",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xc9a1f104fbbda8b8752946f7d56d59d28284037f": {
+    "assetId": "eip155:1/erc20:0xc9a1f104fbbda8b8752946f7d56d59d28284037f",
+    "chainId": "eip155:1",
+    "name": "Doug",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/32639/thumb/DOUG_Logo_200x200.png?1698854273",
+    "symbol": "DOUG",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xc9b6a17ebb43491635f603a01f8bb3e4b5d22228": {
+    "assetId": "eip155:1/erc20:0xc9b6a17ebb43491635f603a01f8bb3e4b5d22228",
+    "chainId": "eip155:1",
+    "name": "MAGA Coin ETH",
+    "precision": 9,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/27455/thumb/rsz_jimerkya_400x400.png?1696526495",
+    "symbol": "MAGA",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xc9bc48c72154ef3e5425641a3c747242112a46af": {
+    "assetId": "eip155:1/erc20:0xc9bc48c72154ef3e5425641a3c747242112a46af",
+    "chainId": "eip155:1",
+    "name": "Aave RAI",
+    "precision": 18,
+    "color": "#1F3232",
+    "icon": "https://assets.coingecko.com/coins/images/17245/thumb/aRAI_2x.png?1696516802",
+    "symbol": "ARAI",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xc9c4fd7579133701fa2769b6955e7e56bb386db1": {
+    "assetId": "eip155:1/erc20:0xc9c4fd7579133701fa2769b6955e7e56bb386db1",
+    "chainId": "eip155:1",
+    "name": "Bridge Oracle on Ethereum",
+    "precision": 18,
+    "color": "#7A6B34",
+    "icon": "https://assets.coingecko.com/coins/images/12512/thumb/brg.png?1696512327",
+    "symbol": "BRG",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xc9d21e5a24110b67af31af464edfdc2dae5ec7d5": {
+    "assetId": "eip155:1/erc20:0xc9d21e5a24110b67af31af464edfdc2dae5ec7d5",
+    "chainId": "eip155:1",
+    "name": "Bitmeme",
+    "precision": 18,
+    "color": "#0C0907",
+    "icon": "https://assets.coingecko.com/coins/images/30879/thumb/bmpng.png?1696529726",
+    "symbol": "BTM",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xc9fe6e1c76210be83dc1b5b20ec7fd010b0b1d15": {
+    "assetId": "eip155:1/erc20:0xc9fe6e1c76210be83dc1b5b20ec7fd010b0b1d15",
+    "chainId": "eip155:1",
+    "name": "Fringe Finance",
+    "precision": 18,
+    "color": "#929292",
+    "icon": "https://assets.coingecko.com/coins/images/13222/thumb/frin.png?1696513001",
+    "symbol": "FRIN",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xca0e7269600d353f70b14ad118a49575455c0f2f": {
+    "assetId": "eip155:1/erc20:0xca0e7269600d353f70b14ad118a49575455c0f2f",
+    "chainId": "eip155:1",
+    "name": "AMLT Network",
+    "precision": 18,
+    "color": "#171C5C",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xCA0e7269600d353F70b14Ad118A49575455C0f2f/logo.png",
+    "symbol": "AMLT",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xca1207647ff814039530d7d35df0e1dd2e91fa84": {
+    "assetId": "eip155:1/erc20:0xca1207647ff814039530d7d35df0e1dd2e91fa84",
+    "chainId": "eip155:1",
+    "name": "dHEDGE DAO on Ethereum",
+    "precision": 18,
+    "color": "#0C0C0C",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xca1207647Ff814039530D7d35df0e1Dd2e91Fa84/logo.png",
+    "symbol": "DHT",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xca1262e77fb25c0a4112cfc9bad3ff54f617f2e6": {
+    "assetId": "eip155:1/erc20:0xca1262e77fb25c0a4112cfc9bad3ff54f617f2e6",
+    "chainId": "eip155:1",
+    "name": "Jax Network on Ethereum",
+    "precision": 0,
+    "color": "#DDDBD3",
+    "icon": "https://assets.coingecko.com/coins/images/18737/thumb/photo.jpg?1696518203",
+    "symbol": "WJXN",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xca30c93b02514f86d5c86a6e375e3a330b435fb5": {
+    "assetId": "eip155:1/erc20:0xca30c93b02514f86d5c86a6e375e3a330b435fb5",
+    "chainId": "eip155:1",
+    "name": "Backed IB01   Treasury Bond 0 1yr",
+    "precision": 18,
+    "color": "#B9BAC0",
+    "icon": "https://assets.coingecko.com/coins/images/31755/thumb/b-IB01-200x200.png?1696530574",
+    "symbol": "BIB01",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xca3ea3061d638e02113aa960340c98343b5acd62": {
+    "assetId": "eip155:1/erc20:0xca3ea3061d638e02113aa960340c98343b5acd62",
+    "chainId": "eip155:1",
+    "name": "Bittwatt",
+    "precision": 18,
+    "color": "#1892C3",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xcA3Ea3061d638E02113aA960340c98343b5aCd62/logo.png",
+    "symbol": "BWT",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xca4b70beccabce29efa5bc5c86311e5d38461842": {
+    "assetId": "eip155:1/erc20:0xca4b70beccabce29efa5bc5c86311e5d38461842",
+    "chainId": "eip155:1",
+    "name": "Sybulls",
+    "precision": 18,
+    "color": "#DFA743",
+    "icon": "https://assets.coingecko.com/coins/images/31316/thumb/sybulls.png?1696530135",
+    "symbol": "SYBL",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xca5b0ae1d104030a9b8f879523508efd86c14483": {
+    "assetId": "eip155:1/erc20:0xca5b0ae1d104030a9b8f879523508efd86c14483",
+    "chainId": "eip155:1",
+    "name": "Benji Bananas",
+    "precision": 18,
+    "color": "#F7DE04",
+    "icon": "https://assets.coingecko.com/coins/images/31022/thumb/BenjiTokens_FinalFlat.png?1696529858",
+    "symbol": "BENJI",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xca7013ba4bf76bcdc3ffc71735896682644f47c2": {
+    "assetId": "eip155:1/erc20:0xca7013ba4bf76bcdc3ffc71735896682644f47c2",
+    "chainId": "eip155:1",
+    "name": "Degen",
+    "precision": 18,
+    "color": "#CC39CB",
+    "icon": "https://assets.coingecko.com/coins/images/31606/thumb/Degen.png?1696530422",
+    "symbol": "DGN",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xca9f9671765f8d1a7e19ae2639e01fff730f0d9b": {
+    "assetId": "eip155:1/erc20:0xca9f9671765f8d1a7e19ae2639e01fff730f0d9b",
+    "chainId": "eip155:1",
+    "name": "Jaypeggers USDC",
+    "precision": 18,
+    "color": "#96C9C6",
+    "icon": "https://assets.coingecko.com/coins/images/31248/thumb/jay-bird200.png?1696530073",
+    "symbol": "JUSDC",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xcaa79bf8b1d00bf3d4f6dbec6221955871c04618": {
+    "assetId": "eip155:1/erc20:0xcaa79bf8b1d00bf3d4f6dbec6221955871c04618",
+    "chainId": "eip155:1",
+    "name": "CrocBot",
+    "precision": 18,
+    "color": "#AAABDD",
+    "icon": "https://assets.coingecko.com/coins/images/31382/thumb/Frame_123.png?1696530199",
+    "symbol": "CROC",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xcaabcaa4ca42e1d86de1a201c818639def0ba7a7": {
+    "assetId": "eip155:1/erc20:0xcaabcaa4ca42e1d86de1a201c818639def0ba7a7",
+    "chainId": "eip155:1",
+    "name": "Talken",
+    "precision": 18,
+    "color": "#20306A",
+    "icon": "https://assets.coingecko.com/coins/images/18146/thumb/4NNLx3BF_400x400.jpg?1696517648",
+    "symbol": "TALK",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xcadc0acd4b445166f12d2c07eac6e2544fbe2eef": {
+    "assetId": "eip155:1/erc20:0xcadc0acd4b445166f12d2c07eac6e2544fbe2eef",
+    "chainId": "eip155:1",
+    "name": "CAD Coin on Ethereum",
+    "precision": 18,
+    "color": "#FC6464",
+    "icon": "https://assets.coingecko.com/coins/images/14149/thumb/cadc_2.png?1696513868",
+    "symbol": "CADC",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xcae0dd4bda7ff3e700355c7629b24d5d728bd2ce": {
+    "assetId": "eip155:1/erc20:0xcae0dd4bda7ff3e700355c7629b24d5d728bd2ce",
+    "chainId": "eip155:1",
+    "name": "Bowie",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/33218/thumb/logo-200x200.png?1701088140",
+    "symbol": "BOWIE",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xcae3faa4b6cf660aef18474074949ba0948bc025": {
+    "assetId": "eip155:1/erc20:0xcae3faa4b6cf660aef18474074949ba0948bc025",
+    "chainId": "eip155:1",
+    "name": "Generational Wealth",
+    "precision": 18,
+    "color": "#D19341",
+    "icon": "https://assets.coingecko.com/coins/images/30419/thumb/ethericon200x200.png?1696529307",
+    "symbol": "GEN",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xcae72a7a0fd9046cf6b165ca54c9e3a3872109e0": {
+    "assetId": "eip155:1/erc20:0xcae72a7a0fd9046cf6b165ca54c9e3a3872109e0",
+    "chainId": "eip155:1",
+    "name": "AnRKey X on Ethereum",
+    "precision": 18,
+    "color": "#28F6DC",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xCae72A7A0Fd9046cf6b165CA54c9e3a3872109E0/logo.png",
+    "symbol": "ANRX",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xcae7f3aa6d456463bef0e5b508542b69d96f2904": {
+    "assetId": "eip155:1/erc20:0xcae7f3aa6d456463bef0e5b508542b69d96f2904",
+    "chainId": "eip155:1",
+    "name": "InvectAI",
+    "precision": 8,
+    "color": "#DDC4EB",
+    "icon": "https://assets.coingecko.com/coins/images/29333/thumb/Invect.jpeg?1696528283",
+    "symbol": "INVECTAI",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xcaeaf8381d4b20b43afa42061d6f80319a8881f6": {
+    "assetId": "eip155:1/erc20:0xcaeaf8381d4b20b43afa42061d6f80319a8881f6",
+    "chainId": "eip155:1",
+    "name": "R34P",
+    "precision": 8,
+    "color": "#A8C888",
+    "icon": "https://assets.coingecko.com/coins/images/13393/thumb/r34p_logo.png?1696513155",
+    "symbol": "R34P",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xcaeda9650ccd356af7776057a105f9e6ffe68213": {
+    "assetId": "eip155:1/erc20:0xcaeda9650ccd356af7776057a105f9e6ffe68213",
+    "chainId": "eip155:1",
+    "name": "Loong",
+    "precision": 18,
+    "color": "#16111B",
+    "icon": "https://assets.coingecko.com/coins/images/32176/thumb/200x200.png?1696742804",
+    "symbol": "LOONG",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xcafe001067cdef266afb7eb5a286dcfd277f3de5": {
+    "assetId": "eip155:1/erc20:0xcafe001067cdef266afb7eb5a286dcfd277f3de5",
+    "chainId": "eip155:1",
+    "name": "ParaSwap on Ethereum",
+    "precision": 18,
+    "color": "#F6FAF5",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xcAfE001067cDEF266AfB7Eb5A286dCFD277f3dE5/logo.png",
+    "symbol": "PSP",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xcafe34bae6f1b23a6b575303edcc0578d2188131": {
+    "assetId": "eip155:1/erc20:0xcafe34bae6f1b23a6b575303edcc0578d2188131",
+    "chainId": "eip155:1",
+    "name": "Minter Network on Ethereum",
+    "precision": 18,
+    "color": "#CC5B2C",
+    "icon": "https://assets.coingecko.com/coins/images/9982/thumb/Nvoj_6Mu_400x400.jpg?1696510020",
+    "symbol": "BIP",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xcb0d82f4dfa503c9e3b8abc7a3caa01175b2da39": {
+    "assetId": "eip155:1/erc20:0xcb0d82f4dfa503c9e3b8abc7a3caa01175b2da39",
+    "chainId": "eip155:1",
+    "name": "AurusX on Ethereum",
+    "precision": 18,
+    "color": "#E4F8F8",
+    "icon": "https://assets.coingecko.com/coins/images/27871/thumb/AurusX_token_2D.jpg?1696526889",
+    "symbol": "AX",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xcb129aa11ceaa00da1a92d12e26bb776ef3c3628": {
+    "assetId": "eip155:1/erc20:0xcb129aa11ceaa00da1a92d12e26bb776ef3c3628",
+    "chainId": "eip155:1",
+    "name": "PowBlocks",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/32520/thumb/logo.png?1698406955",
+    "symbol": "XPB",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xcb27e0b9530d5107302e3e0691dd0f64faf498b0": {
+    "assetId": "eip155:1/erc20:0xcb27e0b9530d5107302e3e0691dd0f64faf498b0",
+    "chainId": "eip155:1",
+    "name": "Pepe Of Wallstreet",
+    "precision": 18,
+    "color": "#505234",
+    "icon": "https://assets.coingecko.com/coins/images/31579/thumb/photo_2023-09-04_15-13-35_%281%29.jpg?1696530396",
+    "symbol": "POW",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xcb50350ab555ed5d56265e096288536e8cac41eb": {
+    "assetId": "eip155:1/erc20:0xcb50350ab555ed5d56265e096288536e8cac41eb",
+    "chainId": "eip155:1",
+    "name": "0xCoco",
+    "precision": 18,
+    "color": "#F7F2F2",
+    "icon": "https://assets.coingecko.com/coins/images/31102/thumb/FL1-g3Ns_400x400.jpg?1696529933",
+    "symbol": "COCO",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xcb56b52316041a62b6b5d0583dce4a8ae7a3c629": {
+    "assetId": "eip155:1/erc20:0xcb56b52316041a62b6b5d0583dce4a8ae7a3c629",
+    "chainId": "eip155:1",
+    "name": "Cigarette",
+    "precision": 18,
+    "color": "#EE8C1D",
+    "icon": "https://assets.coingecko.com/coins/images/22145/thumb/logo200.png?1696521491",
+    "symbol": "CIG",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xcb84d72e61e383767c4dfeb2d8ff7f4fb89abc6e": {
+    "assetId": "eip155:1/erc20:0xcb84d72e61e383767c4dfeb2d8ff7f4fb89abc6e",
+    "chainId": "eip155:1",
+    "name": "Vega Protocol",
+    "precision": 18,
+    "color": "#0A0A0A",
+    "icon": "https://assets.coingecko.com/coins/images/15870/thumb/vega.PNG?1696515485",
+    "symbol": "VEGA",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xcb86c6a22cb56b6cf40cafedb06ba0df188a416e": {
+    "assetId": "eip155:1/erc20:0xcb86c6a22cb56b6cf40cafedb06ba0df188a416e",
+    "chainId": "eip155:1",
+    "name": "inSure DeFi on Ethereum",
+    "precision": 18,
+    "color": "#D4A8FB",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xcb86c6A22CB56B6cf40CaFEDb06BA0DF188a416E/logo.png",
+    "symbol": "SURE",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xcb8a95e76a16b58c30b01e39dd6aad5949e5e802": {
+    "assetId": "eip155:1/erc20:0xcb8a95e76a16b58c30b01e39dd6aad5949e5e802",
+    "chainId": "eip155:1",
+    "name": "Tetris",
+    "precision": 9,
+    "color": "#0FC581",
+    "icon": "https://assets.coingecko.com/coins/images/31100/thumb/tetris.jpeg?1696529931",
+    "symbol": "TETRIS",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xcb8d1260f9c92a3a545d409466280ffdd7af7042": {
+    "assetId": "eip155:1/erc20:0xcb8d1260f9c92a3a545d409466280ffdd7af7042",
+    "chainId": "eip155:1",
+    "name": "NFT Protocol",
+    "precision": 18,
+    "color": "#C2A7EF",
+    "icon": "https://assets.coingecko.com/coins/images/12174/thumb/nftprotocol_32.png?1696512011",
+    "symbol": "NFT",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xcb8fb2438a805664cd8c3e640b85ac473da5be87": {
+    "assetId": "eip155:1/erc20:0xcb8fb2438a805664cd8c3e640b85ac473da5be87",
+    "chainId": "eip155:1",
+    "name": "ClinTex CTi on Ethereum",
+    "precision": 18,
+    "color": "#04D4AC",
+    "icon": "https://assets.coingecko.com/coins/images/13266/thumb/CTI.png?1696513039",
+    "symbol": "CTI",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xcba78d126f0b1feda0c538bcaf4c852a7a171099": {
+    "assetId": "eip155:1/erc20:0xcba78d126f0b1feda0c538bcaf4c852a7a171099",
+    "chainId": "eip155:1",
+    "name": "MOE",
+    "precision": 18,
+    "color": "#D2C6AF",
+    "icon": "https://assets.coingecko.com/coins/images/31146/thumb/symbol-200.png?1696529975",
+    "symbol": "MOE",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xcbcc0f036ed4788f63fc0fee32873d6a7487b908": {
+    "assetId": "eip155:1/erc20:0xcbcc0f036ed4788f63fc0fee32873d6a7487b908",
+    "chainId": "eip155:1",
+    "name": "Humaniq",
+    "precision": 8,
+    "color": "#538AC4",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xcbCC0F036ED4788F63FC0fEE32873d6A7487b908/logo.png",
+    "symbol": "HMQ",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xcbd55d4ffc43467142761a764763652b48b969ff": {
+    "assetId": "eip155:1/erc20:0xcbd55d4ffc43467142761a764763652b48b969ff",
+    "chainId": "eip155:1",
+    "name": "AstroTools",
+    "precision": 18,
+    "color": "#7C14DC",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xcbd55D4fFc43467142761A764763652b48b969ff/logo.png",
+    "symbol": "ASTRO",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xcbe7142f5c16755d8683ba329efa1abf7b54482d": {
+    "assetId": "eip155:1/erc20:0xcbe7142f5c16755d8683ba329efa1abf7b54482d",
+    "chainId": "eip155:1",
+    "name": "MedicalVeda on Ethereum",
+    "precision": 8,
+    "color": "#4EC4CC",
+    "icon": "https://assets.coingecko.com/coins/images/13069/thumb/medicalveda_new_logo_final_%281%29.png?1696512858",
+    "symbol": "MVEDA",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xcbe771323587ea16dacb6016e269d7f08a7acc4e": {
+    "assetId": "eip155:1/erc20:0xcbe771323587ea16dacb6016e269d7f08a7acc4e",
+    "chainId": "eip155:1",
+    "name": "Spores Network on Ethereum",
+    "precision": 18,
+    "color": "#CCB474",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xcbE771323587EA16dACB6016e269D7F08A7ACC4E/logo.png",
+    "symbol": "SPO",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xcbee6459728019cb1f2bb971dde2ee3271bc7617": {
+    "assetId": "eip155:1/erc20:0xcbee6459728019cb1f2bb971dde2ee3271bc7617",
+    "chainId": "eip155:1",
+    "name": "WemergeToken",
+    "precision": 18,
+    "color": "#D4AC5C",
+    "icon": "https://assets.coingecko.com/coins/images/6833/thumb/wemerge200.png?1696507158",
+    "symbol": "MRG",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xcbfef8fdd706cde6f208460f2bf39aa9c785f05d": {
+    "assetId": "eip155:1/erc20:0xcbfef8fdd706cde6f208460f2bf39aa9c785f05d",
+    "chainId": "eip155:1",
+    "name": "Kine Protocol",
+    "precision": 18,
+    "color": "#EBF3F3",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xCbfef8fdd706cde6F208460f2Bf39Aa9c785F05D/logo.png",
+    "symbol": "KINE",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xcc09f34accdb36ee3ed98358a3b8a6ae5c29ea07": {
+    "assetId": "eip155:1/erc20:0xcc09f34accdb36ee3ed98358a3b8a6ae5c29ea07",
+    "chainId": "eip155:1",
+    "name": "Anon Web3",
+    "precision": 18,
+    "color": "#D4823C",
+    "icon": "https://assets.coingecko.com/coins/images/31814/thumb/IMG_2336.png?1696530628",
+    "symbol": "AW3",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xcc0d1b36d88fd8f5f26fd00e4e769e2dab4e3e07": {
+    "assetId": "eip155:1/erc20:0xcc0d1b36d88fd8f5f26fd00e4e769e2dab4e3e07",
+    "chainId": "eip155:1",
+    "name": "Lightning Bot",
+    "precision": 18,
+    "color": "#0C0C0C",
+    "icon": "https://assets.coingecko.com/coins/images/31123/thumb/output-onlinepngtools_%285%29.png?1696529953",
+    "symbol": "LIGHT",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xcc12abe4ff81c9378d670de1b57f8e0dd228d77a": {
+    "assetId": "eip155:1/erc20:0xcc12abe4ff81c9378d670de1b57f8e0dd228d77a",
+    "chainId": "eip155:1",
+    "name": "Aave REN",
+    "precision": 18,
+    "color": "#B188B8",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xCC12AbE4ff81c9378D670De1b57F8e0Dd228D77a/logo.png",
+    "symbol": "AREN",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xcc2d17dfa245dc2aa3705fc75d2f7df3fe6440c7": {
+    "assetId": "eip155:1/erc20:0xcc2d17dfa245dc2aa3705fc75d2f7df3fe6440c7",
+    "chainId": "eip155:1",
+    "name": "Reserve",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/32672/thumb/download.png?1698910754",
+    "symbol": "RSRV",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xcc4304a31d09258b0029ea7fe63d032f52e44efe": {
+    "assetId": "eip155:1/erc20:0xcc4304a31d09258b0029ea7fe63d032f52e44efe",
+    "chainId": "eip155:1",
+    "name": "TrustSwap on Ethereum",
+    "precision": 18,
+    "color": "#2BCCFC",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xCC4304A31d09258b0029eA7FE63d032f52e44EFe/logo.png",
+    "symbol": "SWAP",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xcc503242b574bc01145da7e2a743b43fb395ec91": {
+    "assetId": "eip155:1/erc20:0xcc503242b574bc01145da7e2a743b43fb395ec91",
+    "chainId": "eip155:1",
+    "name": "ROVI Protocol on Ethereum",
+    "precision": 18,
+    "color": "#BD841B",
+    "icon": "https://assets.coingecko.com/coins/images/28936/thumb/rovi-coin.png?1696527910",
+    "symbol": "ROVI",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xcc6f15be8573cb8243c42d300565566d328213dd": {
+    "assetId": "eip155:1/erc20:0xcc6f15be8573cb8243c42d300565566d328213dd",
+    "chainId": "eip155:1",
+    "name": "OWN Token",
+    "precision": 18,
+    "color": "#EEEEF1",
+    "icon": "https://assets.coingecko.com/coins/images/10950/thumb/cropped-WhatsApp-Image-2020-04-04-at-9.04.01-PM.jpeg?1696510899",
+    "symbol": "OWN",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xcc779bbbd17b2e68ecdccaea3d8c791b1573c66b": {
+    "assetId": "eip155:1/erc20:0xcc779bbbd17b2e68ecdccaea3d8c791b1573c66b",
+    "chainId": "eip155:1",
+    "name": "Fetch",
+    "precision": 18,
+    "color": "#DC1410",
+    "icon": "https://assets.coingecko.com/coins/images/29402/thumb/Fetch.png?1696528352",
+    "symbol": "FETCH",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xcc7ab8d78dba187dc95bf3bb86e65e0c26d0041f": {
+    "assetId": "eip155:1/erc20:0xcc7ab8d78dba187dc95bf3bb86e65e0c26d0041f",
+    "chainId": "eip155:1",
+    "name": "Spacelens",
+    "precision": 18,
+    "color": "#0C0C0C",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xcc7ab8d78dBA187dC95bF3bB86e65E0C26d0041f/logo.png",
+    "symbol": "SPACE",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xcc802c45b55581713cecd1eb17be9ab7fccb0844": {
+    "assetId": "eip155:1/erc20:0xcc802c45b55581713cecd1eb17be9ab7fccb0844",
+    "chainId": "eip155:1",
+    "name": "SBU Honey",
+    "precision": 18,
+    "color": "#F4A41C",
+    "icon": "https://assets.coingecko.com/coins/images/26079/thumb/honey.png?1696525163",
+    "symbol": "BHNY",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xcc8e21f599995d1c8367054841b8af5024ddf01b": {
+    "assetId": "eip155:1/erc20:0xcc8e21f599995d1c8367054841b8af5024ddf01b",
+    "chainId": "eip155:1",
+    "name": "Alpha Gardeners",
+    "precision": 18,
+    "color": "#0A2314",
+    "icon": "https://assets.coingecko.com/coins/images/31153/thumb/AG.png?1696529981",
+    "symbol": "AG",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xcc8fa225d80b9c7d42f96e9570156c65d6caaa25": {
+    "assetId": "eip155:1/erc20:0xcc8fa225d80b9c7d42f96e9570156c65d6caaa25",
+    "chainId": "eip155:1",
+    "name": "Smooth Love Potion",
+    "precision": 0,
+    "color": "#7BC29F",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xCC8Fa225D80b9c7D42F96e9570156c65D6cAAa25/logo.png",
+    "symbol": "SLP",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xcc9e0bd9438ca0056653d134de794abeaff8c676": {
+    "assetId": "eip155:1/erc20:0xcc9e0bd9438ca0056653d134de794abeaff8c676",
+    "chainId": "eip155:1",
+    "name": "Leslie",
+    "precision": 9,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/33189/thumb/IMG_0721_%282%29.png?1700955081",
+    "symbol": "LESLIE",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xcc9ee9483f662091a1de4795249e24ac0ac2630f": {
+    "assetId": "eip155:1/erc20:0xcc9ee9483f662091a1de4795249e24ac0ac2630f",
+    "chainId": "eip155:1",
+    "name": "Aave v3 rETH on Ethereum",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/32885/thumb/reth.png?1699768947",
+    "symbol": "ARETH",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xccba0b2bc4babe4cbfb6bd2f1edc2a9e86b7845f": {
+    "assetId": "eip155:1/erc20:0xccba0b2bc4babe4cbfb6bd2f1edc2a9e86b7845f",
+    "chainId": "eip155:1",
+    "name": "Winter",
+    "precision": 18,
+    "color": "#04ACF4",
+    "icon": "https://assets.coingecko.com/coins/images/25367/thumb/winter.png?1696524500",
+    "symbol": "WINTER",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xccc8cb5229b0ac8069c51fd58367fd1e622afd97": {
+    "assetId": "eip155:1/erc20:0xccc8cb5229b0ac8069c51fd58367fd1e622afd97",
+    "chainId": "eip155:1",
+    "name": "Gods Unchained",
+    "precision": 18,
+    "color": "#61BCE0",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xccC8cb5229B0ac8069C51fd58367Fd1e622aFD97/logo.png",
+    "symbol": "GODS",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xccccb68e1a848cbdb5b60a974e07aae143ed40c3": {
+    "assetId": "eip155:1/erc20:0xccccb68e1a848cbdb5b60a974e07aae143ed40c3",
+    "chainId": "eip155:1",
+    "name": "Hytopia",
+    "precision": 18,
+    "color": "#343534",
+    "icon": "https://assets.coingecko.com/coins/images/31283/thumb/TOPIA-Token-CMC-CG-Compatible.png?1696530106",
+    "symbol": "TOPIA",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xcccd1ba9f7acd6117834e0d28f25645decb1736a": {
+    "assetId": "eip155:1/erc20:0xcccd1ba9f7acd6117834e0d28f25645decb1736a",
+    "chainId": "eip155:1",
+    "name": "ECOx",
+    "precision": 18,
+    "color": "#12224D",
+    "icon": "https://assets.coingecko.com/coins/images/27962/thumb/_ECOx.png?1696526981",
+    "symbol": "ECOX",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xccdae12162566e3f29fefa7bf7f5b24c644493b5": {
+    "assetId": "eip155:1/erc20:0xccdae12162566e3f29fefa7bf7f5b24c644493b5",
+    "chainId": "eip155:1",
+    "name": "Leveraged rETH Staking Yield",
+    "precision": 18,
+    "color": "#353E3D",
+    "icon": "https://assets.coingecko.com/coins/images/31554/thumb/icRETH-token-logo.png?1696530366",
+    "symbol": "ICRETH",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xccdb064a41afcd432bcea6f6d0d1e7c371d0b002": {
+    "assetId": "eip155:1/erc20:0xccdb064a41afcd432bcea6f6d0d1e7c371d0b002",
+    "chainId": "eip155:1",
+    "name": "Qrolli",
+    "precision": 9,
+    "color": "#CCCCCC",
+    "icon": "https://assets.coingecko.com/coins/images/29681/thumb/logoQrolli.png?1696528615",
+    "symbol": "QR",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xccf4429db6322d5c611ee964527d42e5d685dd6a": {
+    "assetId": "eip155:1/erc20:0xccf4429db6322d5c611ee964527d42e5d685dd6a",
+    "chainId": "eip155:1",
+    "name": "cWBTC",
+    "precision": 8,
+    "color": "#ECF0F2",
+    "icon": "https://assets.coingecko.com/coins/images/10823/thumb/cwbtc.png?1696510780",
+    "symbol": "CWBTC",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xcd14517c7397a003aec7404cb8159f16a90f9fe9": {
+    "assetId": "eip155:1/erc20:0xcd14517c7397a003aec7404cb8159f16a90f9fe9",
+    "chainId": "eip155:1",
+    "name": "AirBot",
+    "precision": 18,
+    "color": "#4653A3",
+    "icon": "https://assets.coingecko.com/coins/images/31392/thumb/output-onlinepngtools.png?1696530208",
+    "symbol": "AIRBOT",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xcd17fa52528f37facb3028688e62ec82d9417581": {
+    "assetId": "eip155:1/erc20:0xcd17fa52528f37facb3028688e62ec82d9417581",
+    "chainId": "eip155:1",
+    "name": "Materium",
+    "precision": 0,
+    "color": "#A46495",
+    "icon": "https://assets.coingecko.com/coins/images/24613/thumb/mtrm.png?1696523785",
+    "symbol": "MTRM",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xcd24181edaa0394e1d978d5011e36f67fe41a499": {
+    "assetId": "eip155:1/erc20:0xcd24181edaa0394e1d978d5011e36f67fe41a499",
+    "chainId": "eip155:1",
+    "name": "ORB WIZZ COUNCIL",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/32761/thumb/ORB_WORLD_%281%29.png?1699329160",
+    "symbol": "ORB",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xcd2828fc4d8e8a0ede91bb38cf64b1a81de65bf6": {
+    "assetId": "eip155:1/erc20:0xcd2828fc4d8e8a0ede91bb38cf64b1a81de65bf6",
+    "chainId": "eip155:1",
+    "name": "Oddz on Ethereum",
+    "precision": 18,
+    "color": "#1C7CFC",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xCd2828fc4D8E8a0eDe91bB38CF64B1a81De65Bf6/logo.png",
+    "symbol": "ODDZ",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xcd54df3c19a7ae672897f2a09821d2c287d36326": {
+    "assetId": "eip155:1/erc20:0xcd54df3c19a7ae672897f2a09821d2c287d36326",
+    "chainId": "eip155:1",
+    "name": "Baby Memecoin",
+    "precision": 9,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/32838/thumb/bd0e18c5-ac94-424b-a6ea-9d654770be1f-18213305.png?1699587642",
+    "symbol": "BABYMEME",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xcd58d56906318ce6ad9ef4ae5fb21f61e05c417d": {
+    "assetId": "eip155:1/erc20:0xcd58d56906318ce6ad9ef4ae5fb21f61e05c417d",
+    "chainId": "eip155:1",
+    "name": "PepManCity",
+    "precision": 18,
+    "color": "#CEC7BA",
+    "icon": "https://assets.coingecko.com/coins/images/30761/thumb/pepmancity.png?1696529630",
+    "symbol": "PEPMCITY",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xcd5fe23c85820f7b72d0926fc9b05b43e359b7ee": {
+    "assetId": "eip155:1/erc20:0xcd5fe23c85820f7b72d0926fc9b05b43e359b7ee",
+    "chainId": "eip155:1",
+    "name": "Wrapped eETH",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAIAAAACACAMAAAD04JH5AAADAFBMVEUtN0iq2Cb///8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAzpW0sAAABAHRSTlP/////AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAf6K/dgAAQItJREFUeNoBgEB/vwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAQEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgEBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgEBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMBAQEBAQECAgICAgICAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAQEBAQEBAQEBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAwAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAwAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAwAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAwAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAwAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAwAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQICAgICAgIBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwEBAQEBAQEBAQEBAQECAgICAgICAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQICAgICAgIDAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQICAgICAgIDAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQICAgICAgIDAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQICAgICAgIDAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQICAgICAgIDAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQICAgICAgIDAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQICAgICAgIDAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQICAgICAgIDAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQICAgICAgIDAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQICAgICAgIDAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQICAgICAgIDAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQICAgICAgIDAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQICAgICAgIDAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAwMDAwMDAgICAgICAgEDAwMDAwMCAgICAgICAQMDAwMDAwMBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgEBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMAAAAAAAAAAAAAAAAAAAEBAQMDAwMDAwMBAQEBAQEBAwMDAwMDAwEBAQEBAQEBAQEBAQEBAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMBAQEBAQEBAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHE4M1ozaY+5AAAAAElFTkSuQmCC",
+    "symbol": "WEETH",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xcd6926193308d3b371fdd6a6219067e550000000": {
+    "assetId": "eip155:1/erc20:0xcd6926193308d3b371fdd6a6219067e550000000",
+    "chainId": "eip155:1",
+    "name": "Nest Protocol on Ethereum",
+    "precision": 18,
+    "color": "#050505",
+    "icon": "https://assets.coingecko.com/coins/images/11284/thumb/52954052.png?1696511207",
+    "symbol": "NEST",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xcd6adc6b8bd396e2d53ccd7d7257b4de55be4fbe": {
+    "assetId": "eip155:1/erc20:0xcd6adc6b8bd396e2d53ccd7d7257b4de55be4fbe",
+    "chainId": "eip155:1",
+    "name": "CFL365 Finance on Ethereum",
+    "precision": 18,
+    "color": "#2F3944",
+    "icon": "https://assets.coingecko.com/coins/images/17548/thumb/cfl365.PNG?1696517084",
+    "symbol": "CFL365",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xcd7492db29e2ab436e819b249452ee1bbdf52214": {
+    "assetId": "eip155:1/erc20:0xcd7492db29e2ab436e819b249452ee1bbdf52214",
+    "chainId": "eip155:1",
+    "name": "SafeMoon Inu",
+    "precision": 8,
+    "color": "#19888B",
+    "icon": "https://assets.coingecko.com/coins/images/16091/thumb/SMI.png?1696515699",
+    "symbol": "SMI",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xcd74cf66c43e45abd5703f3642f73d0675d6aff7": {
+    "assetId": "eip155:1/erc20:0xcd74cf66c43e45abd5703f3642f73d0675d6aff7",
+    "chainId": "eip155:1",
+    "name": "Erugo World Coin",
+    "precision": 18,
+    "color": "#F2F1E8",
+    "icon": "https://assets.coingecko.com/coins/images/21652/thumb/Swhwfr3G_400x400.jpg?1696521010",
+    "symbol": "EWC",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xcda4e840411c00a614ad9205caec807c7458a0e3": {
+    "assetId": "eip155:1/erc20:0xcda4e840411c00a614ad9205caec807c7458a0e3",
+    "chainId": "eip155:1",
+    "name": "PureFi on Ethereum",
+    "precision": 18,
+    "color": "#284361",
+    "icon": "https://assets.coingecko.com/coins/images/17341/thumb/purefi.PNG?1696516893",
+    "symbol": "UFI",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xcdb37a4fbc2da5b78aa4e41a432792f9533e85cc": {
+    "assetId": "eip155:1/erc20:0xcdb37a4fbc2da5b78aa4e41a432792f9533e85cc",
+    "chainId": "eip155:1",
+    "name": "CheckDot on Ethereum",
+    "precision": 18,
+    "color": "#3CEC94",
+    "icon": "https://assets.coingecko.com/coins/images/20370/thumb/token-200x200_%281%29.png?1696519781",
+    "symbol": "CDT",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xcdb9d30a3ba48cdfcb0ecbe19317e6cf783672f1": {
+    "assetId": "eip155:1/erc20:0xcdb9d30a3ba48cdfcb0ecbe19317e6cf783672f1",
+    "chainId": "eip155:1",
+    "name": "Mondo Community Coin",
+    "precision": 18,
+    "color": "#0E3E66",
+    "icon": "https://assets.coingecko.com/coins/images/18680/thumb/mndcc_bildmarke_256px.png?1696518149",
+    "symbol": "MNDCC",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xcdd0d11de0225b528b3a20d6436392c8260969d0": {
+    "assetId": "eip155:1/erc20:0xcdd0d11de0225b528b3a20d6436392c8260969d0",
+    "chainId": "eip155:1",
+    "name": "Trade Bionic",
+    "precision": 18,
+    "color": "#DEDEDE",
+    "icon": "https://assets.coingecko.com/coins/images/32357/thumb/9ca5f792-9bee-4d1f-942b-7ef09234510d_2.JPG?1697476642",
+    "symbol": "ONIC",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xcdeb595293511115d9d9d44b189cc0da4a08cfaf": {
+    "assetId": "eip155:1/erc20:0xcdeb595293511115d9d9d44b189cc0da4a08cfaf",
+    "chainId": "eip155:1",
+    "name": "Jellyfish Mobile",
+    "precision": 18,
+    "color": "#5567E5",
+    "icon": "https://assets.coingecko.com/coins/images/31879/thumb/jelly-fish-mix-white_%282%29.png?1696530691",
+    "symbol": "JFISH",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xcdeee767bed58c5325f68500115d4b722b3724ee": {
+    "assetId": "eip155:1/erc20:0xcdeee767bed58c5325f68500115d4b722b3724ee",
+    "chainId": "eip155:1",
+    "name": "Carbon on Ethereum",
+    "precision": 18,
+    "color": "#C81F88",
+    "icon": "https://assets.coingecko.com/coins/images/13262/thumb/carbon.png?1696513037",
+    "symbol": "CRBN",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xcdf7028ceab81fa0c6971208e83fa7872994bee5": {
+    "assetId": "eip155:1/erc20:0xcdf7028ceab81fa0c6971208e83fa7872994bee5",
+    "chainId": "eip155:1",
+    "name": "Threshold Network",
+    "precision": 18,
+    "color": "#DBA8F1",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xCdF7028ceAB81fA0C6971208e83fa7872994beE5/logo.png",
+    "symbol": "T",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xce0e16a9996af71180c5967bd79885c544b50a55": {
+    "assetId": "eip155:1/erc20:0xce0e16a9996af71180c5967bd79885c544b50a55",
+    "chainId": "eip155:1",
+    "name": "Pumpkin",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/32638/thumb/_PUMP_200x200.png?1698852550",
+    "symbol": "PUMP",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xce20bb92ccf9bbf5091ef85649e71e552819ad8c": {
+    "assetId": "eip155:1/erc20:0xce20bb92ccf9bbf5091ef85649e71e552819ad8c",
+    "chainId": "eip155:1",
+    "name": "Smart Game Finance",
+    "precision": 18,
+    "color": "#D388DC",
+    "icon": "https://assets.coingecko.com/coins/images/29072/thumb/smart.png?1696528038",
+    "symbol": "SMART",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xce2b26bec3c6945f0922a983f3cfa11cd79176f4": {
+    "assetId": "eip155:1/erc20:0xce2b26bec3c6945f0922a983f3cfa11cd79176f4",
+    "chainId": "eip155:1",
+    "name": "Elonium",
+    "precision": 9,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/32642/thumb/ELONIUM.png?1698892015",
+    "symbol": "ELON",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xce391315b414d4c7555956120461d21808a69f3a": {
+    "assetId": "eip155:1/erc20:0xce391315b414d4c7555956120461d21808a69f3a",
+    "chainId": "eip155:1",
+    "name": "Bao Finance V2",
+    "precision": 18,
+    "color": "#DCCCC4",
+    "icon": "https://assets.coingecko.com/coins/images/28287/thumb/bao-logo-mark-full-color-rgb-900px-w-72ppi.png?1696527286",
+    "symbol": "BAO",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xce3f08e664693ca792cace4af1364d5e220827b2": {
+    "assetId": "eip155:1/erc20:0xce3f08e664693ca792cace4af1364d5e220827b2",
+    "chainId": "eip155:1",
+    "name": "Saitama",
+    "precision": 9,
+    "color": "#DEDBD8",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xCE3f08e664693ca792caCE4af1364D5e220827B2/logo.png",
+    "symbol": "SAITAMA",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xce593a29905951e8fc579bc092eca72577da575c": {
+    "assetId": "eip155:1/erc20:0xce593a29905951e8fc579bc092eca72577da575c",
+    "chainId": "eip155:1",
+    "name": "GROM",
+    "precision": 6,
+    "color": "#9E8857",
+    "icon": "https://assets.coingecko.com/coins/images/13216/thumb/gr.png?1696512995",
+    "symbol": "GR",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xce9de5365739b1bed5c8546867aee4209fbb8538": {
+    "assetId": "eip155:1/erc20:0xce9de5365739b1bed5c8546867aee4209fbb8538",
+    "chainId": "eip155:1",
+    "name": "Thug Life",
+    "precision": 18,
+    "color": "#18170C",
+    "icon": "https://assets.coingecko.com/coins/images/31036/thumb/IMG_20230717_172433_167.jpg?1696529871",
+    "symbol": "THUG",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xceb53519a2b891d33b36e3826962d2a48f878e45": {
+    "assetId": "eip155:1/erc20:0xceb53519a2b891d33b36e3826962d2a48f878e45",
+    "chainId": "eip155:1",
+    "name": "YellowHeart Protocol",
+    "precision": 18,
+    "color": "#B26194",
+    "icon": "https://assets.coingecko.com/coins/images/25304/thumb/HRTS.png?1696524441",
+    "symbol": "HRTS",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xcedefe438860d2789da6419b3a19cece2a41038d": {
+    "assetId": "eip155:1/erc20:0xcedefe438860d2789da6419b3a19cece2a41038d",
+    "chainId": "eip155:1",
+    "name": "Love Hate Inu",
+    "precision": 18,
+    "color": "#B4D89D",
+    "icon": "https://assets.coingecko.com/coins/images/30455/thumb/lhinu.png?1696529342",
+    "symbol": "LHINU",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xceeb07dd26b36287b6d109f0b06d7e8202ce8c1d": {
+    "assetId": "eip155:1/erc20:0xceeb07dd26b36287b6d109f0b06d7e8202ce8c1d",
+    "chainId": "eip155:1",
+    "name": "Got Guaranteed",
+    "precision": 18,
+    "color": "#EDF8FC",
+    "icon": "https://assets.coingecko.com/coins/images/26107/thumb/%EA%B0%93%EC%A7%80%EB%A1%9C%EA%B3%A0.png?1696525197",
+    "symbol": "GOTG",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xcf0c122c6b73ff809c693db761e7baebe62b6a2e": {
+    "assetId": "eip155:1/erc20:0xcf0c122c6b73ff809c693db761e7baebe62b6a2e",
+    "chainId": "eip155:1",
+    "name": "FLOKI on Ethereum",
+    "precision": 9,
+    "color": "#080706",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xcf0C122c6b73ff809C693DB761e7BaeBe62b6a2E/logo.png",
+    "symbol": "FLOKI",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xcf3c8be2e2c42331da80ef210e9b1b307c03d36a": {
+    "assetId": "eip155:1/erc20:0xcf3c8be2e2c42331da80ef210e9b1b307c03d36a",
+    "chainId": "eip155:1",
+    "name": "BEPRO Network",
+    "precision": 18,
+    "color": "#4454E4",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xCF3C8Be2e2C42331Da80EF210e9B1b307C03d36A/logo.png",
+    "symbol": "BEPRO",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xcf4c68db4c2fa0bf58df07b14f45ce7709a716ac": {
+    "assetId": "eip155:1/erc20:0xcf4c68db4c2fa0bf58df07b14f45ce7709a716ac",
+    "chainId": "eip155:1",
+    "name": "Dejitaru Shirudo",
+    "precision": 18,
+    "color": "#8D5E22",
+    "icon": "https://assets.coingecko.com/coins/images/28500/thumb/200x200.png?1696527494",
+    "symbol": "SHIELD",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xcf5fd05f72ca777d71fb3e38f296aad7ce735cb7": {
+    "color": "#FFFFFF",
+    "icon": "https://raw.githubusercontent.com/Idle-Labs/idle-dashboard/master/public/images/tokens/AGEUR.svg",
+    "name": "Euler AGEUR Junior Tranche",
+    "precision": 18,
+    "symbol": "BB_eagEUR",
+    "chainId": "eip155:1",
+    "assetId": "eip155:1/erc20:0xcf5fd05f72ca777d71fb3e38f296aad7ce735cb7",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xcf9560b9e952b195d408be966e4f6cf4ab8206e5": {
+    "assetId": "eip155:1/erc20:0xcf9560b9e952b195d408be966e4f6cf4ab8206e5",
+    "chainId": "eip155:1",
+    "name": "Doctor Evil",
+    "precision": 18,
+    "color": "#DAB198",
+    "icon": "https://assets.coingecko.com/coins/images/31240/thumb/EvilLogo200x200.png?1696530066",
+    "symbol": "EVIL",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xcfa0885131f602d11d4da248d2c65a62063567a9": {
+    "assetId": "eip155:1/erc20:0xcfa0885131f602d11d4da248d2c65a62063567a9",
+    "chainId": "eip155:1",
+    "name": "TORG on Ethereum",
+    "precision": 18,
+    "color": "#0C5CFC",
+    "icon": "https://assets.coingecko.com/coins/images/17596/thumb/TORG_Logo_200x200.png?1696517129",
+    "symbol": "TORG",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xcfb65079138878b9dd29b99c151b286464f81276": {
+    "assetId": "eip155:1/erc20:0xcfb65079138878b9dd29b99c151b286464f81276",
+    "chainId": "eip155:1",
+    "name": "Bobi",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/32682/thumb/200F9d1nhqWwAA4M5r.jpeg?1698936285",
+    "symbol": "BOBI",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xcfc5bd99915aaa815401c5a41a927ab7a38d29cf": {
+    "assetId": "eip155:1/erc20:0xcfc5bd99915aaa815401c5a41a927ab7a38d29cf",
+    "chainId": "eip155:1",
+    "name": "Threshold USD",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/32274/thumb/thusd.png?1697180081",
+    "symbol": "THUSD",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xcfcecfe2bd2fed07a9145222e8a7ad9cf1ccd22a": {
+    "assetId": "eip155:1/erc20:0xcfcecfe2bd2fed07a9145222e8a7ad9cf1ccd22a",
+    "chainId": "eip155:1",
+    "name": "Adshares on Ethereum",
+    "precision": 11,
+    "color": "#5CB4FC",
+    "icon": "https://assets.coingecko.com/coins/images/868/thumb/rnO9DyJ.png?1696502001",
+    "symbol": "ADS",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xcfcffe432a48db53f59c301422d2edd77b2a88d7": {
+    "assetId": "eip155:1/erc20:0xcfcffe432a48db53f59c301422d2edd77b2a88d7",
+    "chainId": "eip155:1",
+    "name": "Texan",
+    "precision": 18,
+    "color": "#DDD9DC",
+    "icon": "https://assets.coingecko.com/coins/images/28731/thumb/texan_logo_200x200.png?1696527711",
+    "symbol": "TEXAN",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xcfeaead4947f0705a14ec42ac3d44129e1ef3ed5": {
+    "assetId": "eip155:1/erc20:0xcfeaead4947f0705a14ec42ac3d44129e1ef3ed5",
+    "chainId": "eip155:1",
+    "name": "Notional Finance",
+    "precision": 8,
+    "color": "#DCF4F6",
+    "icon": "https://assets.coingecko.com/coins/images/20282/thumb/NOTE-340x340.png?1696519687",
+    "symbol": "NOTE",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xcfeb09c3c5f0f78ad72166d55f9e6e9a60e96eec": {
+    "assetId": "eip155:1/erc20:0xcfeb09c3c5f0f78ad72166d55f9e6e9a60e96eec",
+    "chainId": "eip155:1",
+    "name": "VEMP on Ethereum",
+    "precision": 18,
+    "color": "#0F0F0F",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xcFEB09C3c5F0f78aD72166D55f9e6E9A60e96eEC/logo.png",
+    "symbol": "VEMP",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xd01409314acb3b245cea9500ece3f6fd4d70ea30": {
+    "assetId": "eip155:1/erc20:0xd01409314acb3b245cea9500ece3f6fd4d70ea30",
+    "chainId": "eip155:1",
+    "name": "LTO Network on Ethereum",
+    "precision": 8,
+    "color": "#939CFC",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xd01409314aCb3b245CEa9500eCE3F6Fd4d70ea30/logo.png",
+    "symbol": "LTO",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xd04202abd9568a8a8798484ca1bd8778411f7103": {
+    "assetId": "eip155:1/erc20:0xd04202abd9568a8a8798484ca1bd8778411f7103",
+    "chainId": "eip155:1",
+    "name": "FireBot on Ethereum",
+    "precision": 18,
+    "color": "#43254E",
+    "icon": "https://assets.coingecko.com/coins/images/32532/thumb/firebot.png?1698461366",
+    "symbol": "FIREBOT",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xd049206fb408a611e543791f2d8f102a8bc253dc": {
+    "assetId": "eip155:1/erc20:0xd049206fb408a611e543791f2d8f102a8bc253dc",
+    "chainId": "eip155:1",
+    "name": "NFTDAO",
+    "precision": 18,
+    "color": "#F4DCFC",
+    "icon": "https://assets.coingecko.com/coins/images/22576/thumb/NAO.png?1696521894",
+    "symbol": "NAO",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xd05292be8733c1b189820d042c9e2c3fbabb6966": {
+    "assetId": "eip155:1/erc20:0xd05292be8733c1b189820d042c9e2c3fbabb6966",
+    "chainId": "eip155:1",
+    "name": "KnowYourDev",
+    "precision": 9,
+    "color": "#50063E",
+    "icon": "https://assets.coingecko.com/coins/images/31863/thumb/KYD_%282%29_%282%29.jpg?1696530676",
+    "symbol": "KYD",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xd05e3cfe984a00f5d6a1e5b75dee43d7e9ab63c8": {
+    "assetId": "eip155:1/erc20:0xd05e3cfe984a00f5d6a1e5b75dee43d7e9ab63c8",
+    "chainId": "eip155:1",
+    "name": "Public Violet Fybo",
+    "precision": 18,
+    "color": "#DAECE4",
+    "icon": "https://assets.coingecko.com/coins/images/32494/thumb/PVFYBO.jpg?1698293586",
+    "symbol": "PVFYBO",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xd068c7c941fbbd2300cb2f1841858c2643722dc7": {
+    "assetId": "eip155:1/erc20:0xd068c7c941fbbd2300cb2f1841858c2643722dc7",
+    "chainId": "eip155:1",
+    "name": "DGNAPP AI",
+    "precision": 18,
+    "color": "#8C34E4",
+    "icon": "https://assets.coingecko.com/coins/images/29745/thumb/logo_200x200.png?1696528677",
+    "symbol": "DEGAI",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xd075e95423c5c4ba1e122cae0f4cdfa19b82881b": {
+    "assetId": "eip155:1/erc20:0xd075e95423c5c4ba1e122cae0f4cdfa19b82881b",
+    "chainId": "eip155:1",
+    "name": "OpesAI",
+    "precision": 18,
+    "color": "#44C4FC",
+    "icon": "https://assets.coingecko.com/coins/images/16647/thumb/ai.png?1696516208",
+    "symbol": "WPE",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xd076c4ba62c57b3fa10800bcfd8da66742110e0e": {
+    "assetId": "eip155:1/erc20:0xd076c4ba62c57b3fa10800bcfd8da66742110e0e",
+    "chainId": "eip155:1",
+    "name": "HAVAH",
+    "precision": 18,
+    "color": "#1E594D",
+    "icon": "https://assets.coingecko.com/coins/images/29156/thumb/hvh.png?1696528115",
+    "symbol": "HVH",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xd07d9fe2d2cc067015e2b4917d24933804f42cfa": {
+    "assetId": "eip155:1/erc20:0xd07d9fe2d2cc067015e2b4917d24933804f42cfa",
+    "chainId": "eip155:1",
+    "name": "Tolar",
+    "precision": 18,
+    "color": "#040404",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xd07D9Fe2d2cc067015E2b4917D24933804f42cFA/logo.png",
+    "symbol": "TOL",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xd084944d3c05cd115c09d072b9f44ba3e0e45921": {
+    "assetId": "eip155:1/erc20:0xd084944d3c05cd115c09d072b9f44ba3e0e45921",
+    "chainId": "eip155:1",
+    "name": "Manifold Finance",
+    "precision": 18,
+    "color": "#040404",
+    "icon": "https://assets.coingecko.com/coins/images/15928/thumb/Manifold.png?1696515541",
+    "symbol": "FOLD",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xd084b83c305dafd76ae3e1b4e1f1fe2ecccb3988": {
+    "assetId": "eip155:1/erc20:0xd084b83c305dafd76ae3e1b4e1f1fe2ecccb3988",
+    "chainId": "eip155:1",
+    "name": "Virtua",
+    "precision": 18,
+    "color": "#49879B",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xd084B83C305daFD76AE3E1b4E1F1fe2eCcCb3988/logo.png",
+    "symbol": "TVK",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xd08623fb2a1f044025eec65886011cf5d0f06b01": {
+    "assetId": "eip155:1/erc20:0xd08623fb2a1f044025eec65886011cf5d0f06b01",
+    "chainId": "eip155:1",
+    "name": "Larry",
+    "precision": 18,
+    "color": "#E2F4FA",
+    "icon": "https://assets.coingecko.com/coins/images/30460/thumb/Safeimagekit-resized-img.png?1696529347",
+    "symbol": "LARRY",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xd0929d411954c47438dc1d871dd6081f5c5e149c": {
+    "assetId": "eip155:1/erc20:0xd0929d411954c47438dc1d871dd6081f5c5e149c",
+    "chainId": "eip155:1",
+    "name": "Refereum",
+    "precision": 4,
+    "color": "#9E4572",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xd0929d411954c47438dc1d871dd6081F5C5e149c/logo.png",
+    "symbol": "RFR",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xd0b3a986fff305854a7238a8e099cce1ced01a3d": {
+    "assetId": "eip155:1/erc20:0xd0b3a986fff305854a7238a8e099cce1ced01a3d",
+    "chainId": "eip155:1",
+    "name": "Nova",
+    "precision": 18,
+    "color": "#375A36",
+    "icon": "https://assets.coingecko.com/coins/images/30943/thumb/IMG_20230709_210803_010.jpg?1696529782",
+    "symbol": "NOVA",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xd0cd466b34a24fcb2f87676278af2005ca8a78c4": {
+    "assetId": "eip155:1/erc20:0xd0cd466b34a24fcb2f87676278af2005ca8a78c4",
+    "chainId": "eip155:1",
+    "name": "Popcorn on Ethereum",
+    "precision": 18,
+    "color": "#FC7134",
+    "icon": "https://assets.coingecko.com/coins/images/21438/thumb/pop-1_200_x_200.png?1696520801",
+    "symbol": "POP",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xd0d56273290d339aaf1417d9bfa1bb8cfe8a0933": {
+    "assetId": "eip155:1/erc20:0xd0d56273290d339aaf1417d9bfa1bb8cfe8a0933",
+    "chainId": "eip155:1",
+    "name": "Foom",
+    "precision": 18,
+    "color": "#DD7575",
+    "icon": "https://assets.coingecko.com/coins/images/31308/thumb/f.png?1696530127",
+    "symbol": "FOOM",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xd0e94bf2466979b81d738c34058d4a6559c4d8be": {
+    "assetId": "eip155:1/erc20:0xd0e94bf2466979b81d738c34058d4a6559c4d8be",
+    "chainId": "eip155:1",
+    "name": "Aardvark  OLD ",
+    "precision": 18,
+    "color": "#A76D58",
+    "icon": "https://assets.coingecko.com/coins/images/31451/thumb/Logo_Trans_CG.png?1696530265",
+    "symbol": "ARDVRK",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xd0f395aa1b49ad410b26f52348aebcff109940e8": {
+    "assetId": "eip155:1/erc20:0xd0f395aa1b49ad410b26f52348aebcff109940e8",
+    "chainId": "eip155:1",
+    "name": "Liquid Share",
+    "precision": 18,
+    "color": "#DCC404",
+    "icon": "https://assets.coingecko.com/coins/images/31818/thumb/200x200.png?1696530632",
+    "symbol": "LSHARE",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xd101dcc414f310268c37eeb4cd376ccfa507f571": {
+    "assetId": "eip155:1/erc20:0xd101dcc414f310268c37eeb4cd376ccfa507f571",
+    "chainId": "eip155:1",
+    "name": "ResearchCoin",
+    "precision": 18,
+    "color": "#575FFC",
+    "icon": "https://assets.coingecko.com/coins/images/28146/thumb/RH_Logo_200x200.png?1696527152",
+    "symbol": "RSC",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xd109b2a304587569c84308c55465cd9ff0317bfb": {
+    "assetId": "eip155:1/erc20:0xd109b2a304587569c84308c55465cd9ff0317bfb",
+    "chainId": "eip155:1",
+    "name": "Aave AMM BptBALWETH",
+    "precision": 18,
+    "color": "#E7E7EC",
+    "icon": "https://assets.coingecko.com/coins/images/17261/thumb/aAmmBptBALWETH.png?1696516816",
+    "symbol": "AAMMBPTBALWETH",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xd115a61a25c059c78cd34b97fab7ab25dfc84bc3": {
+    "assetId": "eip155:1/erc20:0xd115a61a25c059c78cd34b97fab7ab25dfc84bc3",
+    "chainId": "eip155:1",
+    "name": "Jesus",
+    "precision": 9,
+    "color": "#FAECAE",
+    "icon": "https://assets.coingecko.com/coins/images/30745/thumb/Favicon_%281%29.png?1696529615",
+    "symbol": "RAPTOR",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xd12443d642d021dc52d0af8f5f6191e02d1e9419": {
+    "assetId": "eip155:1/erc20:0xd12443d642d021dc52d0af8f5f6191e02d1e9419",
+    "chainId": "eip155:1",
+    "name": "Ignite The Chain",
+    "precision": 18,
+    "color": "#208AF8",
+    "icon": "https://assets.coingecko.com/coins/images/31731/thumb/Ignite.png?1696530551",
+    "symbol": "IGNT",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xd139a81d8422bb2ee1f21ce0301e6e28e7696425": {
+    "assetId": "eip155:1/erc20:0xd139a81d8422bb2ee1f21ce0301e6e28e7696425",
+    "chainId": "eip155:1",
+    "name": "XSale",
+    "precision": 18,
+    "color": "#8E8E8E",
+    "icon": "https://assets.coingecko.com/coins/images/31259/thumb/Safeimagekit-resized-img_%281%29.png?1696530083",
+    "symbol": "XS",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xd13c7342e1ef687c5ad21b27c2b65d772cab5c8c": {
+    "assetId": "eip155:1/erc20:0xd13c7342e1ef687c5ad21b27c2b65d772cab5c8c",
+    "chainId": "eip155:1",
+    "name": "Ultra",
+    "precision": 4,
+    "color": "#7B53D3",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xD13c7342e1ef687C5ad21b27c2b65D772cAb5C8c/logo.png",
+    "symbol": "UOS",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xd13cfd3133239a3c73a9e535a5c4dadee36b395c": {
+    "assetId": "eip155:1/erc20:0xd13cfd3133239a3c73a9e535a5c4dadee36b395c",
+    "chainId": "eip155:1",
+    "name": "Vaiot",
+    "precision": 18,
+    "color": "#041CCC",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xD13cfD3133239a3c73a9E535A5c4DadEE36b395c/logo.png",
+    "symbol": "VAI",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xd1420af453fd7bf940573431d416cace7ff8280c": {
+    "assetId": "eip155:1/erc20:0xd1420af453fd7bf940573431d416cace7ff8280c",
+    "chainId": "eip155:1",
+    "name": "Answer Governance",
+    "precision": 18,
+    "color": "#29A6EB",
+    "icon": "https://assets.coingecko.com/coins/images/14383/thumb/AgoV_Logo1.png?1696514074",
+    "symbol": "AGOV",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xd15a1a2a3211b58113e45809f05934252e34e2f8": {
+    "assetId": "eip155:1/erc20:0xd15a1a2a3211b58113e45809f05934252e34e2f8",
+    "chainId": "eip155:1",
+    "name": "Woozoo Music",
+    "precision": 18,
+    "color": "#9972A7",
+    "icon": "https://assets.coingecko.com/coins/images/21891/thumb/logo_200_200_%281%29.png?1696521244",
+    "symbol": "WZM",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xd16fd95d949f996e3808eeea0e3881c59e76ef1e": {
+    "assetId": "eip155:1/erc20:0xd16fd95d949f996e3808eeea0e3881c59e76ef1e",
+    "chainId": "eip155:1",
+    "name": "Para",
+    "precision": 18,
+    "color": "#374741",
+    "icon": "https://assets.coingecko.com/coins/images/24652/thumb/para.jpg?1696523821",
+    "symbol": "PARA",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xd17c18979a45c0f3604331831c409f7bff64d3c1": {
+    "assetId": "eip155:1/erc20:0xd17c18979a45c0f3604331831c409f7bff64d3c1",
+    "chainId": "eip155:1",
+    "name": "Farmer Friends",
+    "precision": 18,
+    "color": "#BEA97C",
+    "icon": "https://assets.coingecko.com/coins/images/31048/thumb/FRENS_logo.png?1696529883",
+    "symbol": "FRENS",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xd1b5651e55d4ceed36251c61c50c889b36f6abb5": {
+    "assetId": "eip155:1/erc20:0xd1b5651e55d4ceed36251c61c50c889b36f6abb5",
+    "chainId": "eip155:1",
+    "name": "Stake DAO CRV",
+    "precision": 18,
+    "color": "#0F272D",
+    "icon": "https://assets.coingecko.com/coins/images/27756/thumb/scCRV-2.png?1696526779",
+    "symbol": "SDCRV",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xd1b624f07a4d9b3e3746e33cb58f42df079b5444": {
+    "assetId": "eip155:1/erc20:0xd1b624f07a4d9b3e3746e33cb58f42df079b5444",
+    "chainId": "eip155:1",
+    "name": "NKCL Classic",
+    "precision": 18,
+    "color": "#A22265",
+    "icon": "https://assets.coingecko.com/coins/images/17893/thumb/w02Nksm-.png?1696517413",
+    "symbol": "NKCLC",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xd1ba9bac957322d6e8c07a160a3a8da11a0d2867": {
+    "assetId": "eip155:1/erc20:0xd1ba9bac957322d6e8c07a160a3a8da11a0d2867",
+    "chainId": "eip155:1",
+    "name": "HUMAN Protocol on Ethereum",
+    "precision": 18,
+    "color": "#4C1E40",
+    "icon": "https://assets.coingecko.com/coins/images/16412/thumb/human_protocol.PNG?1696516009",
+    "symbol": "HMT",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xd1cd47746b8e72359b28c1c84a4f6a19dc1a0ee5": {
+    "assetId": "eip155:1/erc20:0xd1cd47746b8e72359b28c1c84a4f6a19dc1a0ee5",
+    "chainId": "eip155:1",
+    "name": "Sonic Suite",
+    "precision": 18,
+    "color": "#889ECE",
+    "icon": "https://assets.coingecko.com/coins/images/28489/thumb/155EE8AF-26AA-4CEC-9EC5-18532E779474.jpeg?1696527481",
+    "symbol": "SONIC",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xd1d2eb1b1e90b638588728b4130137d262c87cae": {
+    "assetId": "eip155:1/erc20:0xd1d2eb1b1e90b638588728b4130137d262c87cae",
+    "chainId": "eip155:1",
+    "name": "GALA",
+    "precision": 8,
+    "color": "#040404",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xd1d2Eb1B1e90B638588728b4130137D262C87cae/logo.png",
+    "symbol": "GALA",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xd1d92f1c5524d93ced7bf6f418c8bf8abf68ac66": {
+    "assetId": "eip155:1/erc20:0xd1d92f1c5524d93ced7bf6f418c8bf8abf68ac66",
+    "chainId": "eip155:1",
+    "name": "Bull Frog",
+    "precision": 18,
+    "color": "#049CFC",
+    "icon": "https://assets.coingecko.com/coins/images/31612/thumb/Bull200.png?1696530428",
+    "symbol": "BULL",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xd1e06952708771f71e6dd18f06ee418f6e8fc564": {
+    "assetId": "eip155:1/erc20:0xd1e06952708771f71e6dd18f06ee418f6e8fc564",
+    "chainId": "eip155:1",
+    "name": "GazeTV",
+    "precision": 18,
+    "color": "#64F4EC",
+    "icon": "https://assets.coingecko.com/coins/images/14717/thumb/Gaze_Icon_Positive.png?1696514387",
+    "symbol": "GAZE",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xd20523b39faf1d6e9023a4d6085f87b7b0de7926": {
+    "assetId": "eip155:1/erc20:0xd20523b39faf1d6e9023a4d6085f87b7b0de7926",
+    "chainId": "eip155:1",
+    "name": "OATH on Ethereum",
+    "precision": 18,
+    "color": "#0E0E0E",
+    "icon": "https://assets.coingecko.com/coins/images/24075/thumb/OATH.png?1698051304",
+    "symbol": "OATH",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xd2287a52287dd64ae2c690d74322e2e345dc8f69": {
+    "assetId": "eip155:1/erc20:0xd2287a52287dd64ae2c690d74322e2e345dc8f69",
+    "chainId": "eip155:1",
+    "name": "BabyWhale",
+    "precision": 18,
+    "color": "#6890D8",
+    "icon": "https://assets.coingecko.com/coins/images/24168/thumb/babywhale_32.png?1696523357",
+    "symbol": "BBW",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xd22a61e8503bea5842e5e0126ca9ffc4dd492084": {
+    "assetId": "eip155:1/erc20:0xd22a61e8503bea5842e5e0126ca9ffc4dd492084",
+    "chainId": "eip155:1",
+    "name": "Strawberry Elephant",
+    "precision": 18,
+    "color": "#653B32",
+    "icon": "https://assets.coingecko.com/coins/images/31819/thumb/photo_2023-09-15_23-44-10.jpg?1696530633",
+    "symbol": "",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xd230c2c30f6b406f63f2826064034b2002478d1b": {
+    "assetId": "eip155:1/erc20:0xd230c2c30f6b406f63f2826064034b2002478d1b",
+    "chainId": "eip155:1",
+    "name": "Frogo",
+    "precision": 18,
+    "color": "#514C33",
+    "icon": "https://assets.coingecko.com/coins/images/32034/thumb/frogo_200x200.png?1696530831",
+    "symbol": "FROGO",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xd23ac27148af6a2f339bd82d0e3cff380b5093de": {
+    "assetId": "eip155:1/erc20:0xd23ac27148af6a2f339bd82d0e3cff380b5093de",
+    "chainId": "eip155:1",
+    "name": "Siren",
+    "precision": 18,
+    "color": "#232424",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xD23Ac27148aF6A2f339BD82D0e3CFF380b5093de/logo.png",
+    "symbol": "SI",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xd23ed8ca350ce2631f7ecdc5e6bf80d0a1debb7b": {
+    "assetId": "eip155:1/erc20:0xd23ed8ca350ce2631f7ecdc5e6bf80d0a1debb7b",
+    "chainId": "eip155:1",
+    "name": "Planq on Ethereum",
+    "precision": 18,
+    "color": "#486784",
+    "icon": "https://assets.coingecko.com/coins/images/29100/thumb/Planq_256x256-circle.png?1696528063",
+    "symbol": "PLQ",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xd24946147829deaa935be2ad85a3291dbf109c80": {
+    "assetId": "eip155:1/erc20:0xd24946147829deaa935be2ad85a3291dbf109c80",
+    "chainId": "eip155:1",
+    "name": "Aave AMM USDC",
+    "precision": 6,
+    "color": "#3982C5",
+    "icon": "https://assets.coingecko.com/coins/images/17226/thumb/aAMMUSDC_2x.png?1696516780",
+    "symbol": "AAMMUSDC",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xd26114cd6ee289accf82350c8d8487fedb8a0c07": {
+    "assetId": "eip155:1/erc20:0xd26114cd6ee289accf82350c8d8487fedb8a0c07",
+    "chainId": "eip155:1",
+    "name": "OMG Network",
+    "precision": 18,
+    "color": "#141414",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xd26114cd6EE289AccF82350c8d8487fedB8A0C07/logo.png",
+    "symbol": "OMG",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xd26a9c3437f7d121098c8c05c7413f5cc70bb070": {
+    "assetId": "eip155:1/erc20:0xd26a9c3437f7d121098c8c05c7413f5cc70bb070",
+    "chainId": "eip155:1",
+    "name": "Azuma Coin",
+    "precision": 18,
+    "color": "#CDA33E",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xd26a9C3437f7D121098c8C05C7413F5Cc70BB070/logo.png",
+    "symbol": "AZUM",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xd26b94dbf1bbc840774b9d6ba7a0b9145d118589": {
+    "assetId": "eip155:1/erc20:0xd26b94dbf1bbc840774b9d6ba7a0b9145d118589",
+    "chainId": "eip155:1",
+    "name": "Techno Mechanicus",
+    "precision": 9,
+    "color": "#5B4C40",
+    "icon": "https://assets.coingecko.com/coins/images/31685/thumb/TAU_200x200.png?1696530504",
+    "symbol": "TAU",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xd27b128dc6536309cdebf7f1aff0cb7717bc0268": {
+    "assetId": "eip155:1/erc20:0xd27b128dc6536309cdebf7f1aff0cb7717bc0268",
+    "chainId": "eip155:1",
+    "name": "Etherempires",
+    "precision": 18,
+    "color": "#D4B7D6",
+    "icon": "https://assets.coingecko.com/coins/images/31804/thumb/IMG_20230919_125717_505.png?1696530619",
+    "symbol": "ETE",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xd2877702675e6ceb975b4a1dff9fb7baf4c91ea9": {
+    "assetId": "eip155:1/erc20:0xd2877702675e6ceb975b4a1dff9fb7baf4c91ea9",
+    "chainId": "eip155:1",
+    "name": "Wrapped Terra Classic on Ethereum",
+    "precision": 18,
+    "color": "#FCDC5C",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xd2877702675e6cEb975b4A1dFf9fb7BAF4C91ea9/logo.png",
+    "symbol": "LUNC",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xd291e7a03283640fdc51b121ac401383a46cc623": {
+    "assetId": "eip155:1/erc20:0xd291e7a03283640fdc51b121ac401383a46cc623",
+    "chainId": "eip155:1",
+    "name": "Rari Governance on Ethereum",
+    "precision": 18,
+    "color": "#060606",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xD291E7a03283640FDc51b121aC401383A46cC623/logo.png",
+    "symbol": "RGT",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xd2adc1c84443ad06f0017adca346bd9b6fc52cab": {
+    "assetId": "eip155:1/erc20:0xd2adc1c84443ad06f0017adca346bd9b6fc52cab",
+    "chainId": "eip155:1",
+    "name": "dFund",
+    "precision": 18,
+    "color": "#FCB404",
+    "icon": "https://assets.coingecko.com/coins/images/15286/thumb/1zbdX36.png?1696514937",
+    "symbol": "DFND",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xd2b274cfbf9534f56b59ad0fb7e645e0354f4941": {
+    "assetId": "eip155:1/erc20:0xd2b274cfbf9534f56b59ad0fb7e645e0354f4941",
+    "chainId": "eip155:1",
+    "name": "XDOGE",
+    "precision": 8,
+    "color": "#040404",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xd2b274CfBf9534f56b59aD0FB7e645e0354f4941/logo.png",
+    "symbol": "XDOGE",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xd2ba23de8a19316a638dc1e7a9adda1d74233368": {
+    "assetId": "eip155:1/erc20:0xd2ba23de8a19316a638dc1e7a9adda1d74233368",
+    "chainId": "eip155:1",
+    "name": "Quickswap on Ethereum",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/25393/thumb/quickswap.png?1696524525",
+    "symbol": "QUICK",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xd2bdaaf2b9cc6981fd273dcb7c04023bfbe0a7fe": {
+    "assetId": "eip155:1/erc20:0xd2bdaaf2b9cc6981fd273dcb7c04023bfbe0a7fe",
+    "chainId": "eip155:1",
+    "name": "Aviator",
+    "precision": 18,
+    "color": "#6B9EBF",
+    "icon": "https://assets.coingecko.com/coins/images/31024/thumb/Aviator-Icon_200x200.png?1696529860",
+    "symbol": "AVI",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xd2be3722b17b616c51ed9b8944a227d1ce579c24": {
+    "assetId": "eip155:1/erc20:0xd2be3722b17b616c51ed9b8944a227d1ce579c24",
+    "chainId": "eip155:1",
+    "name": "Dtube Coin on Ethereum",
+    "precision": 2,
+    "color": "#F41C34",
+    "icon": "https://assets.coingecko.com/coins/images/13126/thumb/dtube_logo.png?1696512913",
+    "symbol": "DTUBE",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xd2c869382c7ac9f87ff73548d029d67c0f9dee31": {
+    "assetId": "eip155:1/erc20:0xd2c869382c7ac9f87ff73548d029d67c0f9dee31",
+    "chainId": "eip155:1",
+    "name": "Wagie Bot",
+    "precision": 9,
+    "color": "#544936",
+    "icon": "https://assets.coingecko.com/coins/images/30954/thumb/Wagies3%281%29.png?1696529793",
+    "symbol": "WAGIEBOT",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xd2ce625515600b7799a5750a853ec8d2a44fbe27": {
+    "assetId": "eip155:1/erc20:0xd2ce625515600b7799a5750a853ec8d2a44fbe27",
+    "chainId": "eip155:1",
+    "name": "Sugarbaby",
+    "precision": 9,
+    "color": "#FC69BC",
+    "icon": "https://assets.coingecko.com/coins/images/31491/thumb/_SUGAR_Token_Image.png?1696530302",
+    "symbol": "SUGAR",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xd2d6158683aee4cc838067727209a0aaf4359de3": {
+    "assetId": "eip155:1/erc20:0xd2d6158683aee4cc838067727209a0aaf4359de3",
+    "chainId": "eip155:1",
+    "name": "Bounty0x",
+    "precision": 18,
+    "color": "#FB9028",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xd2d6158683aeE4Cc838067727209a0aAF4359de3/logo.png",
+    "symbol": "BNTY",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xd2e5decc08a80be6538f89f9ab8ff296e2f724df": {
+    "assetId": "eip155:1/erc20:0xd2e5decc08a80be6538f89f9ab8ff296e2f724df",
+    "chainId": "eip155:1",
+    "name": "STIMA",
+    "precision": 6,
+    "color": "#D1A4CB",
+    "icon": "https://assets.coingecko.com/coins/images/26101/thumb/STIMA_200x200.png?1696525192",
+    "symbol": "STIMA",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xd3131fb503e9a20261402aec98caf0603cb913f5": {
+    "assetId": "eip155:1/erc20:0xd3131fb503e9a20261402aec98caf0603cb913f5",
+    "chainId": "eip155:1",
+    "name": "Calico Cat",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/33167/thumb/CALIC.jpg?1700907915",
+    "symbol": "CALIC",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xd31695a1d35e489252ce57b129fd4b1b05e6acac": {
+    "assetId": "eip155:1/erc20:0xd31695a1d35e489252ce57b129fd4b1b05e6acac",
+    "chainId": "eip155:1",
+    "name": "TOKPIE on Ethereum",
+    "precision": 18,
+    "color": "#0BAFFC",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xd31695a1d35E489252CE57b129FD4b1B05E6AcaC/logo.png",
+    "symbol": "TKP",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xd31e53966bf212e860d48a3a8651a23d09a7fdc3": {
+    "assetId": "eip155:1/erc20:0xd31e53966bf212e860d48a3a8651a23d09a7fdc3",
+    "chainId": "eip155:1",
+    "name": "DogeAi",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/33023/thumb/DogeAI_logo_200x200.png?1700316738",
+    "symbol": "DOGEAI",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xd32641191578ea9b208125ddd4ec5e7b84fcab4c": {
+    "assetId": "eip155:1/erc20:0xd32641191578ea9b208125ddd4ec5e7b84fcab4c",
+    "chainId": "eip155:1",
+    "name": "MDsquare",
+    "precision": 18,
+    "color": "#E9F8F8",
+    "icon": "https://assets.coingecko.com/coins/images/8558/thumb/bAdnHTWUIl4rFB4EfbH2L50BW7xi2T9ubci7v6xfYDipXkrG8Wb4LS8g6eAiMsSKqLJfV-FjH5TrYALqACw4MM2A9NfK_L6Ujnddhw1uEgL0hmVQnY96xZeL0C4kkFRJalreK9wUBzjZ4pRhZLdQf9h1drSTF7NE9moAdQ7KtuOvJqommn_q-TjQpF8GUB7J2Ejs7zIvhXXsUHGI1.jpg?1696508730",
+    "symbol": "TMED",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xd33526068d116ce69f19a9ee46f0bd304f21a51f": {
+    "assetId": "eip155:1/erc20:0xd33526068d116ce69f19a9ee46f0bd304f21a51f",
+    "chainId": "eip155:1",
+    "name": "Rocket Pool on Ethereum",
+    "precision": 18,
+    "color": "#FCA265",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xD33526068D116cE69F19A9ee46F0bd304F21A51f/logo.png",
+    "symbol": "RPL",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xd337382da15d12bb6e56498e91df64f86c8f1ea8": {
+    "assetId": "eip155:1/erc20:0xd337382da15d12bb6e56498e91df64f86c8f1ea8",
+    "chainId": "eip155:1",
+    "name": "Aelysir",
+    "precision": 18,
+    "color": "#88C8B0",
+    "icon": "https://assets.coingecko.com/coins/images/12955/thumb/ael_logo.png?1696512743",
+    "symbol": "AEL",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xd346e8ada104093adcf5f4186087e1ad309bb3b3": {
+    "assetId": "eip155:1/erc20:0xd346e8ada104093adcf5f4186087e1ad309bb3b3",
+    "chainId": "eip155:1",
+    "name": "Shibnaut",
+    "precision": 18,
+    "color": "#1C1510",
+    "icon": "https://assets.coingecko.com/coins/images/28872/thumb/66EDE430-1CD7-4524-B610-FC58A7DCDA3E.jpeg?1696527850",
+    "symbol": "SHIBN",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xd35c06a2781f648c75290976ecf71e71582188b7": {
+    "assetId": "eip155:1/erc20:0xd35c06a2781f648c75290976ecf71e71582188b7",
+    "chainId": "eip155:1",
+    "name": "Quarashi on Ethereum",
+    "precision": 18,
+    "color": "#8C2C8C",
+    "icon": "https://assets.coingecko.com/coins/images/25589/thumb/Lk2A7ta.png?1696524723",
+    "symbol": "QUA",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xd36306a5d6bfde4f57b5159c6518d93f171fe755": {
+    "assetId": "eip155:1/erc20:0xd36306a5d6bfde4f57b5159c6518d93f171fe755",
+    "chainId": "eip155:1",
+    "name": "Astrid Restaked stETH",
+    "precision": 18,
+    "color": "#C3C3C3",
+    "icon": "https://assets.coingecko.com/coins/images/32266/thumb/astridlogo_copy.png?1697166275",
+    "symbol": "RSTETH",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xd373576a9e738f37dc6882328358ff69c4caf4c6": {
+    "assetId": "eip155:1/erc20:0xd373576a9e738f37dc6882328358ff69c4caf4c6",
+    "chainId": "eip155:1",
+    "name": "Zam io on Ethereum",
+    "precision": 18,
+    "color": "#17233C",
+    "icon": "https://assets.coingecko.com/coins/images/19522/thumb/zam.png?1696518956",
+    "symbol": "ZAM",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xd37ee7e4f452c6638c96536e68090de8cbcdb583": {
+    "assetId": "eip155:1/erc20:0xd37ee7e4f452c6638c96536e68090de8cbcdb583",
+    "chainId": "eip155:1",
+    "name": "Aave GUSD",
+    "precision": 2,
+    "color": "#2ED0EB",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xD37EE7e4f452C6638c96536e68090De8cBcdb583/logo.png",
+    "symbol": "AGUSD",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xd38b5bf25976378b7c33d39f508119545ab90535": {
+    "assetId": "eip155:1/erc20:0xd38b5bf25976378b7c33d39f508119545ab90535",
+    "chainId": "eip155:1",
+    "name": "CRAZYPEPE",
+    "precision": 18,
+    "color": "#5A6430",
+    "icon": "https://assets.coingecko.com/coins/images/32224/thumb/CRAZYPEPE.jpg?1696930969",
+    "symbol": "CRAZYPEPE",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xd38bb40815d2b0c2d2c866e0c72c5728ffc76dd9": {
+    "assetId": "eip155:1/erc20:0xd38bb40815d2b0c2d2c866e0c72c5728ffc76dd9",
+    "chainId": "eip155:1",
+    "name": "Symbiosis on Ethereum",
+    "precision": 18,
+    "color": "#070B06",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xd38BB40815d2B0c2d2c866e0c72c5728ffC76dd9/logo.png",
+    "symbol": "SIS",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xd38e031f4529a07996aab977d2b79f0e00656c56": {
+    "assetId": "eip155:1/erc20:0xd38e031f4529a07996aab977d2b79f0e00656c56",
+    "chainId": "eip155:1",
+    "name": "wTBT on Ethereum",
+    "precision": 18,
+    "color": "#DEDEDE",
+    "icon": "https://assets.coingecko.com/coins/images/29772/thumb/WTBT.png?1696528703",
+    "symbol": "WTBT",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xd39a2cecba2657e125ba6a5c98ad2f6b6d7e83fd": {
+    "assetId": "eip155:1/erc20:0xd39a2cecba2657e125ba6a5c98ad2f6b6d7e83fd",
+    "chainId": "eip155:1",
+    "name": "Luxo",
+    "precision": 18,
+    "color": "#353432",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xD39a2CeCBA2657e125Ba6a5c98ad2F6b6D7E83FD/logo.png",
+    "symbol": "LUXO",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xd3ac016b1b8c80eeadde4d186a9138c9324e4189": {
+    "assetId": "eip155:1/erc20:0xd3ac016b1b8c80eeadde4d186a9138c9324e4189",
+    "chainId": "eip155:1",
+    "name": "Okcash on Ethereum",
+    "precision": 18,
+    "color": "#040811",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xd3Ac016b1B8C80EeAdDe4D186A9138C9324e4189/logo.png",
+    "symbol": "OK",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xd3b9a9e5ee4aab3963c95dd715882def4f22b449": {
+    "assetId": "eip155:1/erc20:0xd3b9a9e5ee4aab3963c95dd715882def4f22b449",
+    "chainId": "eip155:1",
+    "name": "Revhub",
+    "precision": 18,
+    "color": "#DC2464",
+    "icon": "https://assets.coingecko.com/coins/images/31841/thumb/Revhub.jpg?1696530655",
+    "symbol": "REVHUB",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xd3c325848d7c6e29b574cb0789998b2ff901f17e": {
+    "assetId": "eip155:1/erc20:0xd3c325848d7c6e29b574cb0789998b2ff901f17e",
+    "chainId": "eip155:1",
+    "name": "OneArt on Ethereum",
+    "precision": 18,
+    "color": "#4E7CD9",
+    "icon": "https://assets.coingecko.com/coins/images/19307/thumb/token_light_3x.png?1696518749",
+    "symbol": "1ART",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xd3c51de3e6dd9b53d7f37699afb3ee3bf9b9b3f4": {
+    "assetId": "eip155:1/erc20:0xd3c51de3e6dd9b53d7f37699afb3ee3bf9b9b3f4",
+    "chainId": "eip155:1",
+    "name": "MContent on Ethereum",
+    "precision": 6,
+    "color": "#CEC13B",
+    "icon": "https://assets.coingecko.com/coins/images/16781/thumb/Image_mcontent.jpeg?1696516353",
+    "symbol": "MCONTENT",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xd3e4ba569045546d09cf021ecc5dfe42b1d7f6e4": {
+    "assetId": "eip155:1/erc20:0xd3e4ba569045546d09cf021ecc5dfe42b1d7f6e4",
+    "chainId": "eip155:1",
+    "name": "Morpheus Network on Ethereum",
+    "precision": 18,
+    "color": "#E0E4E8",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xd3E4Ba569045546D09CF021ECC5dFe42b1d7f6E4/logo.png",
+    "symbol": "MNW",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xd4126f195a8de772eeffa61a4ab6dd43462f4e39": {
+    "assetId": "eip155:1/erc20:0xd4126f195a8de772eeffa61a4ab6dd43462f4e39",
+    "chainId": "eip155:1",
+    "name": "Hikari Protocol",
+    "precision": 18,
+    "color": "#302E2A",
+    "icon": "https://assets.coingecko.com/coins/images/28953/thumb/HIKARI.png?1696527926",
+    "symbol": "HIKARI",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xd417144312dbf50465b1c641d016962017ef6240": {
+    "assetId": "eip155:1/erc20:0xd417144312dbf50465b1c641d016962017ef6240",
+    "chainId": "eip155:1",
+    "name": "Covalent",
+    "precision": 18,
+    "color": "#040424",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xD417144312DbF50465b1C641d016962017Ef6240/logo.png",
+    "symbol": "CQT",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xd433138d12beb9929ff6fd583dc83663eea6aaa5": {
+    "assetId": "eip155:1/erc20:0xd433138d12beb9929ff6fd583dc83663eea6aaa5",
+    "chainId": "eip155:1",
+    "name": "Bitrue Coin",
+    "precision": 18,
+    "color": "#E2C647",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xd433138d12beB9929FF6fd583DC83663eea6Aaa5/logo.png",
+    "symbol": "BTR",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xd4342a57ecf2fe7ffa37c33cb8f63b1500e575e6": {
+    "assetId": "eip155:1/erc20:0xd4342a57ecf2fe7ffa37c33cb8f63b1500e575e6",
+    "chainId": "eip155:1",
+    "name": "Apron",
+    "precision": 18,
+    "color": "#1C247C",
+    "icon": "https://assets.coingecko.com/coins/images/14916/thumb/1_GOjoDhGzzpqnMPGpHGeWhg.png?1696514578",
+    "symbol": "APN",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xd43be54c1aedf7ee4099104f2dae4ea88b18a249": {
+    "assetId": "eip155:1/erc20:0xd43be54c1aedf7ee4099104f2dae4ea88b18a249",
+    "chainId": "eip155:1",
+    "name": "Traxx",
+    "precision": 18,
+    "color": "#ECECEC",
+    "icon": "https://assets.coingecko.com/coins/images/24441/thumb/TT.png?1696523622",
+    "symbol": "TRAXX",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xd46ba6d942050d489dbd938a2c909a5d5039a161": {
+    "assetId": "eip155:1/erc20:0xd46ba6d942050d489dbd938a2c909a5d5039a161",
+    "chainId": "eip155:1",
+    "name": "Ampleforth on Ethereum",
+    "precision": 9,
+    "color": "#040404",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xD46bA6D942050d489DBd938a2C909A5d5039A161/logo.png",
+    "symbol": "AMPL",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xd478161c952357f05f0292b56012cd8457f1cfbf": {
+    "assetId": "eip155:1/erc20:0xd478161c952357f05f0292b56012cd8457f1cfbf",
+    "chainId": "eip155:1",
+    "name": "Polkamarkets",
+    "precision": 18,
+    "color": "#4A54DB",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xD478161C952357F05f0292B56012Cd8457F1cfbF/logo.png",
+    "symbol": "POLK",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xd47bdf574b4f76210ed503e0efe81b58aa061f3d": {
+    "assetId": "eip155:1/erc20:0xd47bdf574b4f76210ed503e0efe81b58aa061f3d",
+    "chainId": "eip155:1",
+    "name": "TRVL on Ethereum",
+    "precision": 18,
+    "color": "#202934",
+    "icon": "https://assets.coingecko.com/coins/images/20911/thumb/trvl.jpeg?1696520301",
+    "symbol": "TRVL",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xd487892bb4c57edbe7ab401d9fe801c8fe6473f5": {
+    "assetId": "eip155:1/erc20:0xd487892bb4c57edbe7ab401d9fe801c8fe6473f5",
+    "chainId": "eip155:1",
+    "name": "Uhive",
+    "precision": 18,
+    "color": "#E1ECFC",
+    "icon": "https://assets.coingecko.com/coins/images/3811/thumb/hve2.png?1696504483",
+    "symbol": "HVE2",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xd49ff13661451313ca1553fd6954bd1d9b6e02b9": {
+    "assetId": "eip155:1/erc20:0xd49ff13661451313ca1553fd6954bd1d9b6e02b9",
+    "chainId": "eip155:1",
+    "name": "Electrify Asia",
+    "precision": 18,
+    "color": "#FBCE0E",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xD49ff13661451313cA1553fd6954BD1d9b6E02b9/logo.png",
+    "symbol": "ELEC",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xd4ae236a5080a09c0f7bd6e6b84919523573a43b": {
+    "assetId": "eip155:1/erc20:0xd4ae236a5080a09c0f7bd6e6b84919523573a43b",
+    "chainId": "eip155:1",
+    "name": "Future T I M E Dividend",
+    "precision": 18,
+    "color": "#24DC2C",
+    "icon": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAIAAAACACAMAAAD04JH5AAADAFBMVEUtN0gm2C7///8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAC1bC+bAAABAHRSTlP/////AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAf6K/dgAAQItJREFUeNoBgEB/vwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgEBAQEBAQECAgICAgICAAAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgEBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgAAAAAAAAAAAAACAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMAAAAAAAAAAAACAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMAAAAAAAAAAAACAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMAAAAAAAAAAAACAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMAAAAAAAAAAAACAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMAAAAAAAAAAAACAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMAAAAAAAAAAAACAgICAgICAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQEBAwMDAwMDAwMDAwMDAwICAgICAgIDAwMDAwMDAwMDAwMDAwMAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAgICAgICAgICAgICAgICAgICAgICAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAwMDAwMDAgICAgICAgICAgICAgICAgICAgICAQMDAwMDAwMBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAwMDAwMDAwEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAMDAwMDAwMDAwMDAwMDAwMDAwMDAwEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEDAwMDAwMDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAsVLuGu6enDAAAAAElFTkSuQmCC",
+    "symbol": "FUTURE",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xd4c435f5b09f855c3317c8524cb1f586e42795fa": {
+    "assetId": "eip155:1/erc20:0xd4c435f5b09f855c3317c8524cb1f586e42795fa",
+    "chainId": "eip155:1",
+    "name": "Cindicator",
+    "precision": 18,
+    "color": "#161D28",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xd4c435F5B09F855C3317c8524Cb1F586E42795fa/logo.png",
+    "symbol": "CND",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xd4d4b7b55b30fb096c30ad202e746d010b47dc30": {
+    "assetId": "eip155:1/erc20:0xd4d4b7b55b30fb096c30ad202e746d010b47dc30",
+    "chainId": "eip155:1",
+    "name": "Alpha Bot Calls",
+    "precision": 18,
+    "color": "#E2595C",
+    "icon": "https://assets.coingecko.com/coins/images/31168/thumb/ABC_Token_CG.png?1696529996",
+    "symbol": "ABC",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xd4df22556e07148e591b4c7b4f555a17188cf5cf": {
+    "assetId": "eip155:1/erc20:0xd4df22556e07148e591b4c7b4f555a17188cf5cf",
+    "chainId": "eip155:1",
+    "name": "Twitfi",
+    "precision": 9,
+    "color": "#2C2E2E",
+    "icon": "https://assets.coingecko.com/coins/images/28755/thumb/23251.png?1696527734",
+    "symbol": "TWT",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xd4e245848d6e1220dbe62e155d89fa327e43cb06": {
+    "assetId": "eip155:1/erc20:0xd4e245848d6e1220dbe62e155d89fa327e43cb06",
+    "chainId": "eip155:1",
+    "name": "Aave v3 FRAX on Ethereum",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/32904/thumb/FRAX.png?1699802848",
+    "symbol": "AFRAX",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a": {
+    "assetId": "eip155:1/erc20:0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a",
+    "chainId": "eip155:1",
+    "name": "Populous",
+    "precision": 8,
+    "color": "#132B41",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xd4fa1460F537bb9085d22C7bcCB5DD450Ef28e3a/logo.png",
+    "symbol": "PPT",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xd502f487e1841fdc805130e13eae80c61186bc98": {
+    "assetId": "eip155:1/erc20:0xd502f487e1841fdc805130e13eae80c61186bc98",
+    "chainId": "eip155:1",
+    "name": "Integral",
+    "precision": 18,
+    "color": "#B4A69A",
+    "icon": "https://assets.coingecko.com/coins/images/18381/thumb/icon.png?1696517873",
+    "symbol": "ITGR",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xd528cf2e081f72908e086f8800977df826b5a483": {
+    "assetId": "eip155:1/erc20:0xd528cf2e081f72908e086f8800977df826b5a483",
+    "chainId": "eip155:1",
+    "name": "Paribus on Ethereum",
+    "precision": 18,
+    "color": "#CCD6FA",
+    "icon": "https://assets.coingecko.com/coins/images/18410/thumb/paribus.PNG?1696517900",
+    "symbol": "PBX",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xd52aae39a2b5cc7812f7b9450ebb61dfef702b15": {
+    "assetId": "eip155:1/erc20:0xd52aae39a2b5cc7812f7b9450ebb61dfef702b15",
+    "chainId": "eip155:1",
+    "name": "MetaBrands on Ethereum",
+    "precision": 18,
+    "color": "#709B99",
+    "icon": "https://assets.coingecko.com/coins/images/21244/thumb/MAGE-CG.png?1696520617",
+    "symbol": "MAGE",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xd533a949740bb3306d119cc777fa900ba034cd52": {
+    "assetId": "eip155:1/erc20:0xd533a949740bb3306d119cc777fa900ba034cd52",
+    "chainId": "eip155:1",
+    "name": "Curve DAO on Ethereum",
+    "precision": 18,
+    "color": "#24CCD6",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xD533a949740bb3306d119CC777fa900bA034cd52/logo.png",
+    "symbol": "CRV",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xd54619e0b9899d74cc9b981354eb6b59732c43b1": {
+    "assetId": "eip155:1/erc20:0xd54619e0b9899d74cc9b981354eb6b59732c43b1",
+    "chainId": "eip155:1",
+    "name": "GalleryCoin",
+    "precision": 18,
+    "color": "#FADFC8",
+    "icon": "https://assets.coingecko.com/coins/images/29372/thumb/%EA%B0%A4%EB%9F%AC%EB%A6%AC%EC%BD%94%EC%9D%B8_%EB%A1%9C%EA%B3%A0%28200_200%29.png?1696528319",
+    "symbol": "GLR",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xd559f20296ff4895da39b5bd9add54b442596a61": {
+    "assetId": "eip155:1/erc20:0xd559f20296ff4895da39b5bd9add54b442596a61",
+    "chainId": "eip155:1",
+    "name": "FintruX",
+    "precision": 18,
+    "color": "#24A49C",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xd559f20296FF4895da39b5bd9ADd54b442596a61/logo.png",
+    "symbol": "FTX",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xd567b5f02b9073ad3a982a099a23bf019ff11d1c": {
+    "assetId": "eip155:1/erc20:0xd567b5f02b9073ad3a982a099a23bf019ff11d1c",
+    "chainId": "eip155:1",
+    "name": "Gamestarter on Ethereum",
+    "precision": 5,
+    "color": "#090909",
+    "icon": "https://assets.coingecko.com/coins/images/17604/thumb/gpMi14-r_400x400.jpg?1696517136",
+    "symbol": "GAME",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xd578779dbc9252218e12d18d628e3cb27e4a56f2": {
+    "assetId": "eip155:1/erc20:0xd578779dbc9252218e12d18d628e3cb27e4a56f2",
+    "chainId": "eip155:1",
+    "name": "Britto",
+    "precision": 18,
+    "color": "#E0E4EA",
+    "icon": "https://assets.coingecko.com/coins/images/22830/thumb/britto-coin-logo.jpg?1696522131",
+    "symbol": "BRT",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xd585aaafa2b58b1cd75092b51ade9fa4ce52f247": {
+    "assetId": "eip155:1/erc20:0xd585aaafa2b58b1cd75092b51ade9fa4ce52f247",
+    "chainId": "eip155:1",
+    "name": "peg eUSD on Ethereum",
+    "precision": 18,
+    "color": "#CEF2DE",
+    "icon": "https://assets.coingecko.com/coins/images/31521/thumb/peUSD_200x200.png?1696530331",
+    "symbol": "PEUSD",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xd5930c307d7395ff807f2921f12c5eb82131a789": {
+    "assetId": "eip155:1/erc20:0xd5930c307d7395ff807f2921f12c5eb82131a789",
+    "chainId": "eip155:1",
+    "name": "Bolt",
+    "precision": 18,
+    "color": "#2B9BCB",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xD5930C307d7395Ff807F2921F12C5EB82131a789/logo.png",
+    "symbol": "BOLT",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xd5a98e77d1feb091344096301ea336a5c07a6a41": {
+    "assetId": "eip155:1/erc20:0xd5a98e77d1feb091344096301ea336a5c07a6a41",
+    "chainId": "eip155:1",
+    "name": "Alpha Capital",
+    "precision": 18,
+    "color": "#CDDEE6",
+    "icon": "https://assets.coingecko.com/coins/images/24044/thumb/gfSKeO3.png?1696523235",
+    "symbol": "ACAP",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xd5d86fc8d5c0ea1ac1ac5dfab6e529c9967a45e9": {
+    "assetId": "eip155:1/erc20:0xd5d86fc8d5c0ea1ac1ac5dfab6e529c9967a45e9",
+    "chainId": "eip155:1",
+    "name": "NFT Worlds on Ethereum",
+    "precision": 18,
+    "color": "#1B1D1C",
+    "icon": "https://assets.coingecko.com/coins/images/22112/thumb/ZyBrRgfO.jpg?1696521454",
+    "symbol": "WRLD",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xd5dc24c9ef8a21e6d7caa603f9502e4a0dc7fe8a": {
+    "assetId": "eip155:1/erc20:0xd5dc24c9ef8a21e6d7caa603f9502e4a0dc7fe8a",
+    "chainId": "eip155:1",
+    "name": "Red Team",
+    "precision": 9,
+    "color": "#EC4444",
+    "icon": "https://assets.coingecko.com/coins/images/31439/thumb/red_team_click.jpeg?1696530254",
+    "symbol": "RED",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xd5df655087d99b7b720a5bc8711f296180a4f44b": {
+    "assetId": "eip155:1/erc20:0xd5df655087d99b7b720a5bc8711f296180a4f44b",
+    "chainId": "eip155:1",
+    "name": "Catgirl Optimus",
+    "precision": 18,
+    "color": "#2A2D30",
+    "icon": "https://assets.coingecko.com/coins/images/29669/thumb/Optigpng.png?1696528604",
+    "symbol": "OPTIG",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xd6327ce1fb9d6020e8c2c0e124a1ec23dcab7536": {
+    "assetId": "eip155:1/erc20:0xd6327ce1fb9d6020e8c2c0e124a1ec23dcab7536",
+    "chainId": "eip155:1",
+    "name": "Cuminu",
+    "precision": 18,
+    "color": "#F2DCC6",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xd6327ce1fb9D6020E8C2c0E124A1eC23DCAb7536/logo.png",
+    "symbol": "CUMINU",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xd64809f5f7d772d9112a6bd379de00a77188199e": {
+    "assetId": "eip155:1/erc20:0xd64809f5f7d772d9112a6bd379de00a77188199e",
+    "chainId": "eip155:1",
+    "name": "Lyfe Silver",
+    "precision": 18,
+    "color": "#B4B4B4",
+    "icon": "https://assets.coingecko.com/coins/images/14939/thumb/LSILVER-Logo-200.png?1696514598",
+    "symbol": "LSILVER",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xd66c27518e72be89999ab1e53c3d9ff73f7f2858": {
+    "assetId": "eip155:1/erc20:0xd66c27518e72be89999ab1e53c3d9ff73f7f2858",
+    "chainId": "eip155:1",
+    "name": "HermioneGrangerClintonAmberAmyRose9Inu",
+    "precision": 8,
+    "color": "#DC2444",
+    "icon": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAIAAAACACAMAAAD04JH5AAADAFBMVEUtN0jYJkf///8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABNKT+mAAABAHRSTlP/////AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAf6K/dgAAQItJREFUeNoBgEB/vwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgEBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgEBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgAAAAAAAAAAAAACAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMAAAAAAAAAAAACAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMAAAAAAAAAAAACAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMAAAAAAAAAAAACAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMAAAAAAAAAAAACAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMAAAAAAAAAAAACAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMAAAAAAAAAAAAAAwMDAwMDAwMDAwMDAwICAgICAgIDAwMDAwMDAwMDAwMDAwMBAQEBAQECAgICAgICAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMBAQEBAQEBAwMDAwMDAwMDAwMDAwICAgICAgIDAwMDAwMDAwMDAwMDAwMAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgIDAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgIDAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgIDAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgIDAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgIDAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgIDAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgIDAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgIDAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgIDAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgIDAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgIDAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgIDAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgIDAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgIDAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgIDAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgIDAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgIDAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgIDAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgIDAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgIDAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgIDAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgIDAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgIDAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgIDAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgIDAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgIDAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgIDAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgIDAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgIDAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgIDAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgIDAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgIDAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgIDAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgIDAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgIDAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgEBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgIDAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgIDAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgIDAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgIDAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgIDAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgIDAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEDAwMDAwMDAQEBAQEBAQEBAQEBAQEBAQEBAQEBAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMBAQEBAQEBAQEBAQEBAQEBAQEBAQEDAwMDAwMDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPXILyXDC+FmAAAAAElFTkSuQmCC",
+    "symbol": "TETHER",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xd689933dafeec0041385d278adf5492a2b3b68fb": {
+    "assetId": "eip155:1/erc20:0xd689933dafeec0041385d278adf5492a2b3b68fb",
+    "chainId": "eip155:1",
+    "name": "Decentralized Intelligence Agency",
+    "precision": 18,
+    "color": "#090909",
+    "icon": "https://assets.coingecko.com/coins/images/32596/thumb/DIA.jpg?1698674064",
+    "symbol": "DIA",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xd69c52e6af3ae708ee4b3d3e7c0c5b4cf4d6244b": {
+    "color": "#FFFFFF",
+    "icon": "https://raw.githubusercontent.com/Idle-Labs/idle-dashboard/master/public/images/tokens/WETH.svg",
+    "name": "MorphoAave WETH Junior Tranche",
+    "precision": 18,
+    "symbol": "BB_maWETH",
+    "chainId": "eip155:1",
+    "assetId": "eip155:1/erc20:0xd69c52e6af3ae708ee4b3d3e7c0c5b4cf4d6244b",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xd69f306549e9d96f183b1aeca30b8f4353c2ecc3": {
+    "assetId": "eip155:1/erc20:0xd69f306549e9d96f183b1aeca30b8f4353c2ecc3",
+    "chainId": "eip155:1",
+    "name": "MCH Coin on Ethereum",
+    "precision": 18,
+    "color": "#7F78EE",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xD69F306549e9d96f183B1AecA30B8f4353c2ECC3/logo.png",
+    "symbol": "MCHC",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xd6a5ab46ead26f49b03bbb1f9eb1ad5c1767974a": {
+    "assetId": "eip155:1/erc20:0xd6a5ab46ead26f49b03bbb1f9eb1ad5c1767974a",
+    "chainId": "eip155:1",
+    "name": "Ethermon on Ethereum",
+    "precision": 18,
+    "color": "#EBC93E",
+    "icon": "https://assets.coingecko.com/coins/images/15889/thumb/LtET0reH_400x400.jpg?1696515504",
+    "symbol": "EMON",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xd6bd97a26232ba02172ff86b055d5d7be789335b": {
+    "assetId": "eip155:1/erc20:0xd6bd97a26232ba02172ff86b055d5d7be789335b",
+    "chainId": "eip155:1",
+    "name": "Ormeus Cash on Ethereum",
+    "precision": 18,
+    "color": "#1C3C84",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xd6bD97a26232bA02172Ff86b055d5D7bE789335B/logo.png",
+    "symbol": "OMC",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xd6caf5bd23cf057f5fccce295dcc50c01c198707": {
+    "assetId": "eip155:1/erc20:0xd6caf5bd23cf057f5fccce295dcc50c01c198707",
+    "chainId": "eip155:1",
+    "name": "Evanesco Network",
+    "precision": 18,
+    "color": "#AB0984",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xd6cAF5Bd23CF057f5FcCCE295Dcc50C01C198707/logo.png",
+    "symbol": "EVA",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xd6d9f4385bff8670d66a708b258969913619a673": {
+    "assetId": "eip155:1/erc20:0xd6d9f4385bff8670d66a708b258969913619a673",
+    "chainId": "eip155:1",
+    "name": "LEETCoin",
+    "precision": 9,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/32934/thumb/logo100.png?1699870536",
+    "symbol": "LEET",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xd6e460f70e1cf60e55b770f66e568b44bf3657d0": {
+    "assetId": "eip155:1/erc20:0xd6e460f70e1cf60e55b770f66e568b44bf3657d0",
+    "chainId": "eip155:1",
+    "name": "Funex on Ethereum",
+    "precision": 18,
+    "color": "#26444D",
+    "icon": "https://assets.coingecko.com/coins/images/26814/thumb/20220809_135138.png?1696525874",
+    "symbol": "FUNEX",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xd711d7d893de57dc13ff465763218770bd42db1d": {
+    "assetId": "eip155:1/erc20:0xd711d7d893de57dc13ff465763218770bd42db1d",
+    "chainId": "eip155:1",
+    "name": "ARYZE eGBP on Ethereum",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/32989/thumb/ARYZE_eGBP.png?1700099647",
+    "symbol": "EGBP",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xd714d91a169127e11d8fab3665d72e8b7ef9dbe2": {
+    "assetId": "eip155:1/erc20:0xd714d91a169127e11d8fab3665d72e8b7ef9dbe2",
+    "chainId": "eip155:1",
+    "name": "BlackHole Protocol",
+    "precision": 18,
+    "color": "#D3D3D3",
+    "icon": "https://assets.coingecko.com/coins/images/15124/thumb/blackhole.PNG?1696514781",
+    "symbol": "BLACK",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xd71ecff9342a5ced620049e616c5035f1db98620": {
+    "assetId": "eip155:1/erc20:0xd71ecff9342a5ced620049e616c5035f1db98620",
+    "chainId": "eip155:1",
+    "name": "sEUR",
+    "precision": 18,
+    "color": "#D6D5DC",
+    "icon": "https://assets.coingecko.com/coins/images/13637/thumb/sEUR.png?1696513385",
+    "symbol": "SEUR",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xd721706581d97ecd202bbab5c71b5a85f0f78e69": {
+    "assetId": "eip155:1/erc20:0xd721706581d97ecd202bbab5c71b5a85f0f78e69",
+    "chainId": "eip155:1",
+    "name": "DOGE 1",
+    "precision": 9,
+    "color": "#1F3C50",
+    "icon": "https://assets.coingecko.com/coins/images/32298/thumb/200.png?1697185878",
+    "symbol": "DOGE1",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xd7394087e1dbbe477fe4f1cf373b9ac9459565ff": {
+    "assetId": "eip155:1/erc20:0xd7394087e1dbbe477fe4f1cf373b9ac9459565ff",
+    "chainId": "eip155:1",
+    "name": "RealTract",
+    "precision": 8,
+    "color": "#141414",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xD7394087E1DBBE477FE4F1CF373B9Ac9459565fF/logo.png",
+    "symbol": "RET",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xd75c5aa683485780940cf0f78c08aac051e5573d": {
+    "assetId": "eip155:1/erc20:0xd75c5aa683485780940cf0f78c08aac051e5573d",
+    "chainId": "eip155:1",
+    "name": "Awoke",
+    "precision": 18,
+    "color": "#CAB899",
+    "icon": "https://assets.coingecko.com/coins/images/31029/thumb/200.png?1696529865",
+    "symbol": "AWOKE",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xd75f1f81b69bdd4df8efbb70e9c6f4609009d753": {
+    "assetId": "eip155:1/erc20:0xd75f1f81b69bdd4df8efbb70e9c6f4609009d753",
+    "chainId": "eip155:1",
+    "name": "YASHA",
+    "precision": 18,
+    "color": "#CCB2A4",
+    "icon": "https://assets.coingecko.com/coins/images/24040/thumb/oX9E7Q7.png?1696523231",
+    "symbol": "YASHA",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xd76050f75627e508fa14b84036fbf40b8cc549bd": {
+    "assetId": "eip155:1/erc20:0xd76050f75627e508fa14b84036fbf40b8cc549bd",
+    "chainId": "eip155:1",
+    "name": "SCRIV",
+    "precision": 8,
+    "color": "#E5F5F8",
+    "icon": "https://assets.coingecko.com/coins/images/5684/thumb/Al7TZrAN_400x400.jpg?1696506143",
+    "symbol": "SCRIV",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xd77401a76d6cdb7ac3bb031bf25dec07615509e7": {
+    "assetId": "eip155:1/erc20:0xd77401a76d6cdb7ac3bb031bf25dec07615509e7",
+    "chainId": "eip155:1",
+    "name": "Metropoly",
+    "precision": 18,
+    "color": "#1C84C4",
+    "icon": "https://assets.coingecko.com/coins/images/30138/thumb/Metropoly_Icon.png?1696529059",
+    "symbol": "METRO",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xd779eea9936b4e323cddff2529eb6f13d0a4d66e": {
+    "assetId": "eip155:1/erc20:0xd779eea9936b4e323cddff2529eb6f13d0a4d66e",
+    "chainId": "eip155:1",
+    "name": "EnterDAO",
+    "precision": 18,
+    "color": "#FAD4DA",
+    "icon": "https://assets.coingecko.com/coins/images/18684/thumb/entr.png?1696518153",
+    "symbol": "ENTR",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xd794dd1cada4cf79c9eebaab8327a1b0507ef7d4": {
+    "assetId": "eip155:1/erc20:0xd794dd1cada4cf79c9eebaab8327a1b0507ef7d4",
+    "chainId": "eip155:1",
+    "name": "Hyve on Ethereum",
+    "precision": 18,
+    "color": "#ADADAD",
+    "icon": "https://assets.coingecko.com/coins/images/13072/thumb/bAe1G-lD_400x400.png?1696512861",
+    "symbol": "HYVE",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xd7c302fc3ac829c7e896a32c4bd126f3e8bd0a1f": {
+    "assetId": "eip155:1/erc20:0xd7c302fc3ac829c7e896a32c4bd126f3e8bd0a1f",
+    "chainId": "eip155:1",
+    "name": "Bit2Me on Ethereum",
+    "precision": 18,
+    "color": "#3684DC",
+    "icon": "https://assets.coingecko.com/coins/images/19848/thumb/b2m-circle-solid-default.png?1696519271",
+    "symbol": "B2M",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xd7c49cee7e9188cca6ad8ff264c1da2e69d4cf3b": {
+    "assetId": "eip155:1/erc20:0xd7c49cee7e9188cca6ad8ff264c1da2e69d4cf3b",
+    "chainId": "eip155:1",
+    "name": "Nexus Mutual",
+    "precision": 18,
+    "color": "#2C2C2C",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xd7c49CEE7E9188cCa6AD8FF264C1DA2e69D4Cf3B/logo.png",
+    "symbol": "NXM",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xd7c9f0e536dc865ae858b0c0453fe76d13c3beac": {
+    "assetId": "eip155:1/erc20:0xd7c9f0e536dc865ae858b0c0453fe76d13c3beac",
+    "chainId": "eip155:1",
+    "name": "XAI Stablecoin",
+    "precision": 18,
+    "color": "#D6D6D6",
+    "icon": "https://assets.coingecko.com/coins/images/28254/thumb/Xai_logo.png?1696527256",
+    "symbol": "XAI",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xd7d05bda4bf5876ba1254b3eaaf8b47d2f5676eb": {
+    "assetId": "eip155:1/erc20:0xd7d05bda4bf5876ba1254b3eaaf8b47d2f5676eb",
+    "chainId": "eip155:1",
+    "name": "STABLE ASSET",
+    "precision": 18,
+    "color": "#B6DEE9",
+    "icon": "https://assets.coingecko.com/coins/images/12313/thumb/stable_200x200.png?1696512142",
+    "symbol": "STA",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xd7d706ed3598a354a4adfce5d8c5383df99a4461": {
+    "assetId": "eip155:1/erc20:0xd7d706ed3598a354a4adfce5d8c5383df99a4461",
+    "chainId": "eip155:1",
+    "name": "Dain",
+    "precision": 18,
+    "color": "#4A97C4",
+    "icon": "https://assets.coingecko.com/coins/images/14811/thumb/%C2%B4%C3%99%C3%80%C3%8E%C2%B7%C3%8E%C2%B0%C3%AD.png?1696514480",
+    "symbol": "DAIN",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xd7d8f3b8bc8bc48d3acc37879eaba7b85889fa52": {
+    "assetId": "eip155:1/erc20:0xd7d8f3b8bc8bc48d3acc37879eaba7b85889fa52",
+    "chainId": "eip155:1",
+    "name": "ClearDAO",
+    "precision": 18,
+    "color": "#6494F4",
+    "icon": "https://assets.coingecko.com/coins/images/22389/thumb/clh_small_logo_png.png?1696521733",
+    "symbol": "CLH",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xd7dcd9b99787c619b4d57979521258d1a7267ad7": {
+    "assetId": "eip155:1/erc20:0xd7dcd9b99787c619b4d57979521258d1a7267ad7",
+    "chainId": "eip155:1",
+    "name": "Evrynet",
+    "precision": 18,
+    "color": "#7CCCBC",
+    "icon": "https://assets.coingecko.com/coins/images/19194/thumb/evry.png?1696518642",
+    "symbol": "EVRY",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xd7efb00d12c2c13131fd319336fdf952525da2af": {
+    "assetId": "eip155:1/erc20:0xd7efb00d12c2c13131fd319336fdf952525da2af",
+    "chainId": "eip155:1",
+    "name": "XPR Network on Ethereum",
+    "precision": 4,
+    "color": "#4404E4",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xD7EFB00d12C2c13131FD319336Fdf952525dA2af/logo.png",
+    "symbol": "XPR",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xd7f0cc50ad69408ae58be033f4f85d2367c2e468": {
+    "assetId": "eip155:1/erc20:0xd7f0cc50ad69408ae58be033f4f85d2367c2e468",
+    "chainId": "eip155:1",
+    "name": "Vera on Ethereum",
+    "precision": 18,
+    "color": "#1CB6E4",
+    "icon": "https://assets.coingecko.com/coins/images/18519/thumb/JJXTVFOE_400x400.png?1696518000",
+    "symbol": "VERA",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xd7f5cabdf696d7d1bf384d7688926a4bdb092c67": {
+    "assetId": "eip155:1/erc20:0xd7f5cabdf696d7d1bf384d7688926a4bdb092c67",
+    "chainId": "eip155:1",
+    "name": "DRC Mobility",
+    "precision": 18,
+    "color": "#040404",
+    "icon": "https://assets.coingecko.com/coins/images/13457/thumb/drc_symbol.png?1696513220",
+    "symbol": "DRC",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xd807f7e2818db8eda0d28b5be74866338eaedb86": {
+    "assetId": "eip155:1/erc20:0xd807f7e2818db8eda0d28b5be74866338eaedb86",
+    "chainId": "eip155:1",
+    "name": "Jim",
+    "precision": 18,
+    "color": "#2F2F2E",
+    "icon": "https://assets.coingecko.com/coins/images/30235/thumb/_jim_Logo.png?1696529145",
+    "symbol": "JIM",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xd81b71cbb89b2800cdb000aa277dc1491dc923c3": {
+    "assetId": "eip155:1/erc20:0xd81b71cbb89b2800cdb000aa277dc1491dc923c3",
+    "chainId": "eip155:1",
+    "name": "NFTMart",
+    "precision": 18,
+    "color": "#B6B6B6",
+    "icon": "https://assets.coingecko.com/coins/images/15811/thumb/NFTMART.png?1696515430",
+    "symbol": "NMT",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xd82fd4d6d62f89a1e50b1db69ad19932314aa408": {
+    "assetId": "eip155:1/erc20:0xd82fd4d6d62f89a1e50b1db69ad19932314aa408",
+    "chainId": "eip155:1",
+    "name": "Liquis",
+    "precision": 18,
+    "color": "#0482FB",
+    "icon": "https://assets.coingecko.com/coins/images/31587/thumb/Liqblue.png?1696530404",
+    "symbol": "LIQ",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xd85a6ae55a7f33b0ee113c234d2ee308edeaf7fd": {
+    "assetId": "eip155:1/erc20:0xd85a6ae55a7f33b0ee113c234d2ee308edeaf7fd",
+    "chainId": "eip155:1",
+    "name": "Cobak on Ethereum",
+    "precision": 18,
+    "color": "#2474FB",
+    "icon": "https://assets.coingecko.com/coins/images/13459/thumb/cbk-128-128.png?1696513222",
+    "symbol": "CBK",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xd85ad783cc94bd04196a13dc042a3054a9b52210": {
+    "assetId": "eip155:1/erc20:0xd85ad783cc94bd04196a13dc042a3054a9b52210",
+    "chainId": "eip155:1",
+    "name": "TribeOne on Ethereum",
+    "precision": 18,
+    "color": "#B91EA3",
+    "icon": "https://assets.coingecko.com/coins/images/16575/thumb/USqW1QX.png?1696516136",
+    "symbol": "HAKA",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xd8684adc4664bc2a0c78ddc8657dc005e804af15": {
+    "assetId": "eip155:1/erc20:0xd8684adc4664bc2a0c78ddc8657dc005e804af15",
+    "chainId": "eip155:1",
+    "name": "Copycat DAO",
+    "precision": 18,
+    "color": "#120C0D",
+    "icon": "https://assets.coingecko.com/coins/images/30728/thumb/twitter-logo.jpeg?1696529599",
+    "symbol": "CCD",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xd87996ff3d06858bfc20989aef50cc5fcd4d84ca": {
+    "assetId": "eip155:1/erc20:0xd87996ff3d06858bfc20989aef50cc5fcd4d84ca",
+    "chainId": "eip155:1",
+    "name": "Golden Inu on Ethereum",
+    "precision": 9,
+    "color": "#863920",
+    "icon": "https://assets.coingecko.com/coins/images/31473/thumb/200x200_logo_golden_inu.png?1696530285",
+    "symbol": "GOLDEN",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xd87d72248093597df8d56d2a53c1ab7c1a0cc8da": {
+    "assetId": "eip155:1/erc20:0xd87d72248093597df8d56d2a53c1ab7c1a0cc8da",
+    "chainId": "eip155:1",
+    "name": "HAHA",
+    "precision": 18,
+    "color": "#9A8050",
+    "icon": "https://assets.coingecko.com/coins/images/30070/thumb/2.png?1696528991",
+    "symbol": "HAHA",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xd87de4ccef2c2fe651bc4d130cb1a365248f21fa": {
+    "assetId": "eip155:1/erc20:0xd87de4ccef2c2fe651bc4d130cb1a365248f21fa",
+    "chainId": "eip155:1",
+    "name": "Lyfe",
+    "precision": 18,
+    "color": "#2E91A2",
+    "icon": "https://assets.coingecko.com/coins/images/28608/thumb/lyfe-32.png?1696527594",
+    "symbol": "LYFE",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xd8912c10681d8b21fd3742244f44658dba12264e": {
+    "assetId": "eip155:1/erc20:0xd8912c10681d8b21fd3742244f44658dba12264e",
+    "chainId": "eip155:1",
+    "name": "Pluton",
+    "precision": 18,
+    "color": "#D1AB52",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xD8912C10681D8B21Fd3742244f44658dBA12264E/logo.png",
+    "symbol": "PLU",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xd89310f4baedb33afb36d7cc45bb8847f4463060": {
+    "assetId": "eip155:1/erc20:0xd89310f4baedb33afb36d7cc45bb8847f4463060",
+    "chainId": "eip155:1",
+    "name": "MEMEX",
+    "precision": 18,
+    "color": "#050705",
+    "icon": "https://assets.coingecko.com/coins/images/15448/thumb/V46Sq63d_400x400.jpg?1696515092",
+    "symbol": "MEMEX",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xd8b90d2e680ea535eacce1b025c998b347892f68": {
+    "assetId": "eip155:1/erc20:0xd8b90d2e680ea535eacce1b025c998b347892f68",
+    "chainId": "eip155:1",
+    "name": "Chatter Shield",
+    "precision": 18,
+    "color": "#61352D",
+    "icon": "https://assets.coingecko.com/coins/images/31140/thumb/CABDF194-1-FCF-4418-8-BA1-F537-D227288-F.png?1696529969",
+    "symbol": "SHIELD",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xd8c1232fcd219286e341271385bd70601503b3d7": {
+    "assetId": "eip155:1/erc20:0xd8c1232fcd219286e341271385bd70601503b3d7",
+    "chainId": "eip155:1",
+    "name": "Dogira on Ethereum",
+    "precision": 9,
+    "color": "#3F2C2C",
+    "icon": "https://assets.coingecko.com/coins/images/14634/thumb/IQgaRw0.png?1696514312",
+    "symbol": "DOGIRA",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xd8e163967fed76806df0097b704ba721b9b37656": {
+    "assetId": "eip155:1/erc20:0xd8e163967fed76806df0097b704ba721b9b37656",
+    "chainId": "eip155:1",
+    "name": "Cope Coin",
+    "precision": 18,
+    "color": "#99B2DC",
+    "icon": "https://assets.coingecko.com/coins/images/29912/thumb/QxzD6QZa_400x400_1_200x200.jpg?1696528840",
+    "symbol": "COPE",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xd8e2d95c8614f28169757cd6445a71c291dec5bf": {
+    "assetId": "eip155:1/erc20:0xd8e2d95c8614f28169757cd6445a71c291dec5bf",
+    "chainId": "eip155:1",
+    "name": "Grumpy Cat",
+    "precision": 18,
+    "color": "#CCAE8B",
+    "icon": "https://assets.coingecko.com/coins/images/30322/thumb/logo_200x200.png?1696529223",
+    "symbol": "GRUMPYCAT",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xd8f1460044925d2d5c723c7054cd9247027415b7": {
+    "assetId": "eip155:1/erc20:0xd8f1460044925d2d5c723c7054cd9247027415b7",
+    "chainId": "eip155:1",
+    "name": "SAIL",
+    "precision": 18,
+    "color": "#AFBDF3",
+    "icon": "https://assets.coingecko.com/coins/images/31380/thumb/SAIL-Logo.png?1696530197",
+    "symbol": "SAIL",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xd8fa690304d2b2824d918c0c7376e2823704557a": {
+    "assetId": "eip155:1/erc20:0xd8fa690304d2b2824d918c0c7376e2823704557a",
+    "chainId": "eip155:1",
+    "name": "SquidGrow on Ethereum",
+    "precision": 9,
+    "color": "#EEE628",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xd8Fa690304D2B2824D918C0c7376e2823704557A/logo.png",
+    "symbol": "SQUIDGROW",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xd9016a907dc0ecfa3ca425ab20b6b785b42f2373": {
+    "assetId": "eip155:1/erc20:0xd9016a907dc0ecfa3ca425ab20b6b785b42f2373",
+    "chainId": "eip155:1",
+    "name": "GAMEE on Ethereum",
+    "precision": 18,
+    "color": "#4F69F7",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xD9016A907Dc0ECfA3ca425ab20B6b785B42F2373/logo.png",
+    "symbol": "GMEE",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xd909c5862cdb164adb949d92622082f0092efc3d": {
+    "assetId": "eip155:1/erc20:0xd909c5862cdb164adb949d92622082f0092efc3d",
+    "chainId": "eip155:1",
+    "name": "Interest Protocol Token",
+    "precision": 18,
+    "color": "#A4C4AC",
+    "icon": "https://assets.coingecko.com/coins/images/27000/thumb/logo.white_%281%29.png?1696526052",
+    "symbol": "IPT",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xd90e69f67203ebe02c917b5128629e77b4cd92dc": {
+    "assetId": "eip155:1/erc20:0xd90e69f67203ebe02c917b5128629e77b4cd92dc",
+    "chainId": "eip155:1",
+    "name": "One Cash",
+    "precision": 18,
+    "color": "#DFDFDF",
+    "icon": "https://assets.coingecko.com/coins/images/13529/thumb/onc_logo.png?1696513290",
+    "symbol": "ONC",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xd92b7adfdb79c26b5983a56ba7540d48d4616b8e": {
+    "assetId": "eip155:1/erc20:0xd92b7adfdb79c26b5983a56ba7540d48d4616b8e",
+    "chainId": "eip155:1",
+    "name": "DorkOrdinalBitcoinBinance",
+    "precision": 18,
+    "color": "#9A8E70",
+    "icon": "https://assets.coingecko.com/coins/images/32186/thumb/IMG_20231007_152908_722.jpg?1696743691",
+    "symbol": "DOBBY",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xd939212f16560447ed82ce46ca40a63db62419b5": {
+    "assetId": "eip155:1/erc20:0xd939212f16560447ed82ce46ca40a63db62419b5",
+    "chainId": "eip155:1",
+    "name": "Mega Yacht Cult",
+    "precision": 18,
+    "color": "#191724",
+    "icon": "https://assets.coingecko.com/coins/images/32456/thumb/Untitled_design_%283%29_%281%29.png?1698241312",
+    "symbol": "MYC",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xd945d2031b4c63c0e363304fb771f709b502dc0a": {
+    "assetId": "eip155:1/erc20:0xd945d2031b4c63c0e363304fb771f709b502dc0a",
+    "chainId": "eip155:1",
+    "name": "BountyMarketCap",
+    "precision": 18,
+    "color": "#040404",
+    "icon": "https://assets.coingecko.com/coins/images/13472/thumb/bmc-logo-200.png?1696513233",
+    "symbol": "BMC",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xd96e84ddbc7cbe1d73c55b6fe8c64f3a6550deea": {
+    "assetId": "eip155:1/erc20:0xd96e84ddbc7cbe1d73c55b6fe8c64f3a6550deea",
+    "chainId": "eip155:1",
+    "name": "Gemach",
+    "precision": 18,
+    "color": "#E0E0E0",
+    "icon": "https://assets.coingecko.com/coins/images/32334/thumb/gmac-200x200.png?1697452788",
+    "symbol": "GMAC",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xd971a3f840359ac4a23a9e75038934855e5ed8d5": {
+    "assetId": "eip155:1/erc20:0xd971a3f840359ac4a23a9e75038934855e5ed8d5",
+    "chainId": "eip155:1",
+    "name": "Okiku Kento",
+    "precision": 9,
+    "color": "#703720",
+    "icon": "https://assets.coingecko.com/coins/images/31078/thumb/OKEN_PFP_200x200.jpg?1696529912",
+    "symbol": "OKEN",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xd9788f3931ede4d5018184e198699dc6d66c1915": {
+    "assetId": "eip155:1/erc20:0xd9788f3931ede4d5018184e198699dc6d66c1915",
+    "chainId": "eip155:1",
+    "name": "Aave yVault",
+    "precision": 18,
+    "color": "#7087B3",
+    "icon": "https://assets.coingecko.com/coins/images/28784/thumb/yvAAVE-128-0xd9788f3931Ede4D5018184E198699dC6d66C1915.png?1696527763",
+    "symbol": "YVAAVE",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xd98f75b1a3261dab9eed4956c93f33749027a964": {
+    "assetId": "eip155:1/erc20:0xd98f75b1a3261dab9eed4956c93f33749027a964",
+    "chainId": "eip155:1",
+    "name": "Share on Ethereum",
+    "precision": 2,
+    "color": "#1A6FB5",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xd98F75b1A3261dab9eEd4956c93F33749027a964/logo.png",
+    "symbol": "SHR",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xd9adfb67381d392c6e9671f64cdd9014bfcd74f2": {
+    "assetId": "eip155:1/erc20:0xd9adfb67381d392c6e9671f64cdd9014bfcd74f2",
+    "chainId": "eip155:1",
+    "name": "Morra",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/33180/thumb/CGicon.png?1700924946",
+    "symbol": "MORRA",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xd9c2d319cd7e6177336b0a9c93c21cb48d84fb54": {
+    "assetId": "eip155:1/erc20:0xd9c2d319cd7e6177336b0a9c93c21cb48d84fb54",
+    "chainId": "eip155:1",
+    "name": "HAPI on Ethereum",
+    "precision": 18,
+    "color": "#F5F310",
+    "icon": "https://assets.coingecko.com/coins/images/14298/thumb/Hapi_logo_square_%281%29.png?1696513995",
+    "symbol": "HAPI",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xd9dcd611bed2be9a4700c725a3810870b9bff094": {
+    "assetId": "eip155:1/erc20:0xd9dcd611bed2be9a4700c725a3810870b9bff094",
+    "chainId": "eip155:1",
+    "name": "Power",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/31321/thumb/PWR_Logo_200x200.jpg?1696530140",
+    "symbol": "PWR",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xd9fcd98c322942075a5c3860693e9f4f03aae07b": {
+    "assetId": "eip155:1/erc20:0xd9fcd98c322942075a5c3860693e9f4f03aae07b",
+    "chainId": "eip155:1",
+    "name": "Euler",
+    "precision": 18,
+    "color": "#0F242B",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xd9Fcd98c322942075A5C3860693e9f4f03AAE07b/logo.png",
+    "symbol": "EUL",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xda0c94c73d127ee191955fb46bacd7ff999b2bcd": {
+    "assetId": "eip155:1/erc20:0xda0c94c73d127ee191955fb46bacd7ff999b2bcd",
+    "chainId": "eip155:1",
+    "name": "Construct",
+    "precision": 18,
+    "color": "#042036",
+    "icon": "https://assets.coingecko.com/coins/images/20119/thumb/construct200px.png?1696519536",
+    "symbol": "STANDARD",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xda30f261a962d5aae94c9ecd170544600d193766": {
+    "assetId": "eip155:1/erc20:0xda30f261a962d5aae94c9ecd170544600d193766",
+    "chainId": "eip155:1",
+    "name": "Orbler",
+    "precision": 18,
+    "color": "#0B191A",
+    "icon": "https://assets.coingecko.com/coins/images/24056/thumb/orbr200.png?1696523246",
+    "symbol": "ORBR",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xda47862a83dac0c112ba89c6abc2159b95afd71c": {
+    "assetId": "eip155:1/erc20:0xda47862a83dac0c112ba89c6abc2159b95afd71c",
+    "chainId": "eip155:1",
+    "name": "Prisma Governance Token",
+    "precision": 18,
+    "color": "#39A0B1",
+    "icon": "https://assets.coingecko.com/coins/images/31520/thumb/PRISMA_200.png?1696530330",
+    "symbol": "PRISMA",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xda4dd9586d27202a338843dd6b9824d267006783": {
+    "assetId": "eip155:1/erc20:0xda4dd9586d27202a338843dd6b9824d267006783",
+    "chainId": "eip155:1",
+    "name": "Echain Network",
+    "precision": 9,
+    "color": "#2C2E2E",
+    "icon": "https://assets.coingecko.com/coins/images/28133/thumb/1666808362379-8226c3c3451e049842cfe21d65cb91ad.png?1696527140",
+    "symbol": "ECT",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xda70fbac9e1c9ac3475c24a3a847f85f1388c429": {
+    "assetId": "eip155:1/erc20:0xda70fbac9e1c9ac3475c24a3a847f85f1388c429",
+    "chainId": "eip155:1",
+    "name": "YourWallet ETH",
+    "precision": 18,
+    "color": "#0A3D7E",
+    "icon": "https://assets.coingecko.com/coins/images/28937/thumb/logo_200.png?1696527911",
+    "symbol": "YOURWALLET",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xda7c0810ce6f8329786160bb3d1734cf6661ca6e": {
+    "assetId": "eip155:1/erc20:0xda7c0810ce6f8329786160bb3d1734cf6661ca6e",
+    "chainId": "eip155:1",
+    "name": "Jaypeggers",
+    "precision": 18,
+    "color": "#85BABC",
+    "icon": "https://assets.coingecko.com/coins/images/30074/thumb/jay.jpg?1696528999",
+    "symbol": "JAY",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xda816459f1ab5631232fe5e97a05bbbb94970c95": {
+    "assetId": "eip155:1/erc20:0xda816459f1ab5631232fe5e97a05bbbb94970c95",
+    "chainId": "eip155:1",
+    "name": "yvDAI",
+    "precision": 18,
+    "color": "#F4B434",
+    "icon": "https://assets.coingecko.com/coins/images/28743/thumb/yvdai.png?1696527723",
+    "symbol": "YVDAI",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xda8263d8ce3f726233f8b5585bcb86a3120a58b6": {
+    "assetId": "eip155:1/erc20:0xda8263d8ce3f726233f8b5585bcb86a3120a58b6",
+    "chainId": "eip155:1",
+    "name": "DogeClub",
+    "precision": 18,
+    "color": "#E1E0A9",
+    "icon": "https://assets.coingecko.com/coins/images/30733/thumb/200*200.png?1696529603",
+    "symbol": "DOGC",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xda9fdab21bc4a5811134a6e0ba6ca06624e67c07": {
+    "assetId": "eip155:1/erc20:0xda9fdab21bc4a5811134a6e0ba6ca06624e67c07",
+    "chainId": "eip155:1",
+    "name": "Quidd on Ethereum",
+    "precision": 18,
+    "color": "#641CCC",
+    "icon": "https://assets.coingecko.com/coins/images/19725/thumb/quidd.png?1696519150",
+    "symbol": "QUIDD",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xdab396ccf3d84cf2d07c4454e10c8a6f5b008d2b": {
+    "assetId": "eip155:1/erc20:0xdab396ccf3d84cf2d07c4454e10c8a6f5b008d2b",
+    "chainId": "eip155:1",
+    "name": "Goldfinch",
+    "precision": 18,
+    "color": "#605773",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xdab396cCF3d84Cf2D07C4454e10C8A6F5b008D2b/logo.png",
+    "symbol": "GFI",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xdac17f958d2ee523a2206206994597c13d831ec7": {
+    "assetId": "eip155:1/erc20:0xdac17f958d2ee523a2206206994597c13d831ec7",
+    "chainId": "eip155:1",
+    "name": "Tether on Ethereum",
+    "precision": 6,
+    "color": "#24A37B",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xdAC17F958D2ee523a2206206994597C13D831ec7/logo.png",
+    "symbol": "USDT",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xdac657ffd44a3b9d8aba8749830bf14beb66ff2d": {
+    "assetId": "eip155:1/erc20:0xdac657ffd44a3b9d8aba8749830bf14beb66ff2d",
+    "chainId": "eip155:1",
+    "name": "humanDAO on Ethereum",
+    "precision": 18,
+    "color": "#C9B1E9",
+    "icon": "https://assets.coingecko.com/coins/images/21138/thumb/Untitled-2.jpg?1696520516",
+    "symbol": "HDAO",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xdacd69347de42babfaecd09dc88958378780fb62": {
+    "assetId": "eip155:1/erc20:0xdacd69347de42babfaecd09dc88958378780fb62",
+    "chainId": "eip155:1",
+    "name": "Atari on Ethereum",
+    "precision": 0,
+    "color": "#B6A264",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xdacD69347dE42baBfAEcD09dC88958378780FB62/logo.png",
+    "symbol": "ATRI",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xdad33e12e61dc2f2692f2c12e6303b5ade7277ba": {
+    "assetId": "eip155:1/erc20:0xdad33e12e61dc2f2692f2c12e6303b5ade7277ba",
+    "chainId": "eip155:1",
+    "name": "Brewlabs on Ethereum",
+    "precision": 9,
+    "color": "#F5DA0C",
+    "icon": "https://assets.coingecko.com/coins/images/21928/thumb/7xgmOCBW_400x400.jpg?1696521278",
+    "symbol": "BREWLABS",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xdadb4ae5b5d3099dd1f586f990b845f2404a1c4c": {
+    "assetId": "eip155:1/erc20:0xdadb4ae5b5d3099dd1f586f990b845f2404a1c4c",
+    "chainId": "eip155:1",
+    "name": "Lenny Face",
+    "precision": 18,
+    "color": "#565656",
+    "icon": "https://assets.coingecko.com/coins/images/29138/thumb/Lenny_Face.png?1696528099",
+    "symbol": "",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xdb0170e2d0c1cc1b2e7a90313d9b9afa4f250289": {
+    "assetId": "eip155:1/erc20:0xdb0170e2d0c1cc1b2e7a90313d9b9afa4f250289",
+    "chainId": "eip155:1",
+    "name": "ADAPad on Ethereum",
+    "precision": 18,
+    "color": "#1C3A94",
+    "icon": "https://assets.coingecko.com/coins/images/18273/thumb/EhSqPTtG_400x400.jpg?1696517767",
+    "symbol": "ADAPAD",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xdb05ea0877a2622883941b939f0bb11d1ac7c400": {
+    "assetId": "eip155:1/erc20:0xdb05ea0877a2622883941b939f0bb11d1ac7c400",
+    "chainId": "eip155:1",
+    "name": "Opacity on Ethereum",
+    "precision": 18,
+    "color": "#EBF0F5",
+    "icon": "https://assets.coingecko.com/coins/images/7237/thumb/Opacity.jpg?1696507532",
+    "symbol": "OPCT",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xdb25ca703181e7484a155dd612b06f57e12be5f0": {
+    "assetId": "eip155:1/erc20:0xdb25ca703181e7484a155dd612b06f57e12be5f0",
+    "chainId": "eip155:1",
+    "name": "YFI yVault",
+    "precision": 18,
+    "color": "#046AD8",
+    "icon": "https://assets.coingecko.com/coins/images/28785/thumb/yvYFI-128-0xE14d13d8B3b85aF791b2AADD661cDBd5E6097Db1.png?1696527764",
+    "symbol": "YVYFI",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xdb25f211ab05b1c97d595516f45794528a807ad8": {
+    "assetId": "eip155:1/erc20:0xdb25f211ab05b1c97d595516f45794528a807ad8",
+    "chainId": "eip155:1",
+    "name": "STASIS EURO on Ethereum",
+    "precision": 2,
+    "color": "#239CF5",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xdB25f211AB05b1c97D595516F45794528a807ad8/logo.png",
+    "symbol": "EURS",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xdb298285fe4c5410b05390ca80e8fbe9de1f259b": {
+    "assetId": "eip155:1/erc20:0xdb298285fe4c5410b05390ca80e8fbe9de1f259b",
+    "chainId": "eip155:1",
+    "name": "handle fi on Ethereum",
+    "precision": 18,
+    "color": "#2D353D",
+    "icon": "https://assets.coingecko.com/coins/images/18533/thumb/handle.fiFOREXLogoDark200x200.png?1696518013",
+    "symbol": "FOREX",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xdb2f2bcce3efa95eda95a233af45f3e0d4f00e2a": {
+    "assetId": "eip155:1/erc20:0xdb2f2bcce3efa95eda95a233af45f3e0d4f00e2a",
+    "chainId": "eip155:1",
+    "name": "Aegis",
+    "precision": 8,
+    "color": "#1B74BB",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xdB2F2bCCe3efa95EDA95a233aF45F3e0d4f00e2A/logo.png",
+    "symbol": "AGS",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xdb5c3c46e28b53a39c255aa39a411dd64e5fed9c": {
+    "assetId": "eip155:1/erc20:0xdb5c3c46e28b53a39c255aa39a411dd64e5fed9c",
+    "chainId": "eip155:1",
+    "name": "Neos Credits",
+    "precision": 18,
+    "color": "#FCD1A5",
+    "icon": "https://assets.coingecko.com/coins/images/17935/thumb/s4C4tVi.png?1696517456",
+    "symbol": "NCR",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xdb726152680ece3c9291f1016f1d36f3995f6941": {
+    "assetId": "eip155:1/erc20:0xdb726152680ece3c9291f1016f1d36f3995f6941",
+    "chainId": "eip155:1",
+    "name": "Media Network",
+    "precision": 6,
+    "color": "#3AC4ED",
+    "icon": "https://assets.coingecko.com/coins/images/15142/thumb/media50x50.png?1696514798",
+    "symbol": "MEDIA",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xdb85f6685950e285b1e611037bebe5b34e2b7d78": {
+    "assetId": "eip155:1/erc20:0xdb85f6685950e285b1e611037bebe5b34e2b7d78",
+    "chainId": "eip155:1",
+    "name": "Zano",
+    "precision": 18,
+    "color": "#1C9CE7",
+    "icon": "https://assets.coingecko.com/coins/images/8370/thumb/zano.png?1696508563",
+    "symbol": "ZANO",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xdb8ad3c6d7f9f364d59af9a62c3139cf5c6be88e": {
+    "assetId": "eip155:1/erc20:0xdb8ad3c6d7f9f364d59af9a62c3139cf5c6be88e",
+    "chainId": "eip155:1",
+    "name": "XNOVA",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/33087/thumb/Transparent_Logo_%28Black-Purple%29_%282%29.png?1700602472",
+    "symbol": "XNOVA",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xdb8d6d3ac21e4efe3675bbb18514010ac9c5558f": {
+    "assetId": "eip155:1/erc20:0xdb8d6d3ac21e4efe3675bbb18514010ac9c5558f",
+    "chainId": "eip155:1",
+    "name": "Energreen",
+    "precision": 18,
+    "color": "#6CFCCC",
+    "icon": "https://assets.coingecko.com/coins/images/30583/thumb/energreen.png?1696529447",
+    "symbol": "EGRN",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xdbdb4d16eda451d0503b854cf79d55697f90c8df": {
+    "assetId": "eip155:1/erc20:0xdbdb4d16eda451d0503b854cf79d55697f90c8df",
+    "chainId": "eip155:1",
+    "name": "Alchemix",
+    "precision": 18,
+    "color": "#9E8170",
+    "icon": "https://assets.coingecko.com/coins/images/14113/thumb/Alchemix.png?1696513834",
+    "symbol": "ALCX",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xdbecdd726f6ad8e24afc78fe3cc8eb7b73c2d94d": {
+    "assetId": "eip155:1/erc20:0xdbecdd726f6ad8e24afc78fe3cc8eb7b73c2d94d",
+    "chainId": "eip155:1",
+    "name": "Chaintools",
+    "precision": 18,
+    "color": "#3A1098",
+    "icon": "https://assets.coingecko.com/coins/images/30896/thumb/IMG_0501.png?1696529742",
+    "symbol": "CTLS",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xdc0327d50e6c73db2f8117760592c8bbf1cdcf38": {
+    "assetId": "eip155:1/erc20:0xdc0327d50e6c73db2f8117760592c8bbf1cdcf38",
+    "chainId": "eip155:1",
+    "name": "Stronger",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xDc0327D50E6C73db2F8117760592C8BBf1CDCF38/logo.png",
+    "symbol": "STRNGR",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xdc349913d53b446485e98b76800b6254f43df695": {
+    "assetId": "eip155:1/erc20:0xdc349913d53b446485e98b76800b6254f43df695",
+    "chainId": "eip155:1",
+    "name": "Bezoge Earth",
+    "precision": 9,
+    "color": "#E0B555",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xDC349913d53b446485E98b76800b6254f43Df695/logo.png",
+    "symbol": "BEZOGE",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xdc47f2ba852669b178699449e50682d6ceaf8c07": {
+    "assetId": "eip155:1/erc20:0xdc47f2ba852669b178699449e50682d6ceaf8c07",
+    "chainId": "eip155:1",
+    "name": "Ston",
+    "precision": 18,
+    "color": "#385BC1",
+    "icon": "https://assets.coingecko.com/coins/images/13001/thumb/ston-v2-200x200.png?1696512790",
+    "symbol": "STON",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xdc49108ce5c57bc3408c3a5e95f3d864ec386ed3": {
+    "assetId": "eip155:1/erc20:0xdc49108ce5c57bc3408c3a5e95f3d864ec386ed3",
+    "chainId": "eip155:1",
+    "name": "FOX Yieldy",
+    "precision": 18,
+    "color": "#CE3885",
+    "icon": "https://raw.githubusercontent.com/shapeshift/lib/main/packages/asset-service/src/generateAssetData/ethereum/icons/foxy-icon.png",
+    "symbol": "FOXy",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xdc524e3c6910257744c1f93cf15e9f472b5bd236": {
+    "assetId": "eip155:1/erc20:0xdc524e3c6910257744c1f93cf15e9f472b5bd236",
+    "chainId": "eip155:1",
+    "name": "Witch Token",
+    "precision": 18,
+    "color": "#39BCFC",
+    "icon": "https://assets.coingecko.com/coins/images/17205/thumb/download_%2829%29.png?1696516761",
+    "symbol": "WITCH",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xdc580d4dc6b702b72a3511ac1802fa700ad182bb": {
+    "assetId": "eip155:1/erc20:0xdc580d4dc6b702b72a3511ac1802fa700ad182bb",
+    "chainId": "eip155:1",
+    "name": "Pumpkin",
+    "precision": 9,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/32842/thumb/IMG_20231108_220727_983.jpg?1699589128",
+    "symbol": "PUMPKIN",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xdc5864ede28bd4405aa04d93e05a0531797d9d59": {
+    "assetId": "eip155:1/erc20:0xdc5864ede28bd4405aa04d93e05a0531797d9d59",
+    "chainId": "eip155:1",
+    "name": "Falcon Project",
+    "precision": 6,
+    "color": "#040404",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xDc5864eDe28BD4405aa04d93E05A0531797D9D59/logo.png",
+    "symbol": "FNT",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xdc5e9445169c73cf21e1da0b270e8433cac69959": {
+    "assetId": "eip155:1/erc20:0xdc5e9445169c73cf21e1da0b270e8433cac69959",
+    "chainId": "eip155:1",
+    "name": "Ketaicoin",
+    "precision": 9,
+    "color": "#E8E8E8",
+    "icon": "https://assets.coingecko.com/coins/images/31326/thumb/photo_2023-08-15_21-35-43.jpg?1696530145",
+    "symbol": "ETHEREUM",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xdc63269ea166b70d4780b3a11f5c825c2b761b01": {
+    "assetId": "eip155:1/erc20:0xdc63269ea166b70d4780b3a11f5c825c2b761b01",
+    "chainId": "eip155:1",
+    "name": "PAWSWAP",
+    "precision": 18,
+    "color": "#E2352E",
+    "icon": "https://assets.coingecko.com/coins/images/28946/thumb/PawLogo.png?1699394612",
+    "symbol": "PAW",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xdc7777c771a6e4b3a82830781bdde4dbc78f320e": {
+    "color": "#FFFFFF",
+    "icon": "https://raw.githubusercontent.com/Idle-Labs/idle-dashboard/master/public/images/tokens/USDC.svg",
+    "name": "USDC Junior Best Yield",
+    "precision": 18,
+    "symbol": "idleUSDCJunior",
+    "chainId": "eip155:1",
+    "assetId": "eip155:1/erc20:0xdc7777c771a6e4b3a82830781bdde4dbc78f320e",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xdc8af07a7861bedd104b8093ae3e9376fc8596d2": {
+    "assetId": "eip155:1/erc20:0xdc8af07a7861bedd104b8093ae3e9376fc8596d2",
+    "chainId": "eip155:1",
+    "name": "RocketX exchange on Ethereum",
+    "precision": 18,
+    "color": "#3D2A24",
+    "icon": "https://assets.coingecko.com/coins/images/14728/thumb/avatar-correct-size-official.png?1696514397",
+    "symbol": "RVF",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xdc9a328a55a9241fe14abc03498d57124063665b": {
+    "assetId": "eip155:1/erc20:0xdc9a328a55a9241fe14abc03498d57124063665b",
+    "chainId": "eip155:1",
+    "name": "Garden",
+    "precision": 9,
+    "color": "#A93442",
+    "icon": "https://assets.coingecko.com/coins/images/30708/thumb/GARDEN.png?1696529579",
+    "symbol": "GRDN",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xdc9ac3c20d1ed0b540df9b1fedc10039df13f99c": {
+    "assetId": "eip155:1/erc20:0xdc9ac3c20d1ed0b540df9b1fedc10039df13f99c",
+    "chainId": "eip155:1",
+    "name": "xMoney",
+    "precision": 18,
+    "color": "#6C34D4",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xdc9Ac3C20D1ed0B540dF9b1feDC10039Df13F99c/logo.png",
+    "symbol": "UTK",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xdca1dae87f5c733c84e0593984967ed756579bee": {
+    "color": "#FFFFFF",
+    "icon": "https://raw.githubusercontent.com/Idle-Labs/idle-dashboard/master/public/images/tokens/USDC.svg",
+    "name": "Clearpool USDC Senior Tranche",
+    "precision": 18,
+    "symbol": "AA_idle_cpFASA-USDC",
+    "chainId": "eip155:1",
+    "assetId": "eip155:1/erc20:0xdca1dae87f5c733c84e0593984967ed756579bee",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xdcb5645eda1ed34c5641d81b927d33ebae9cf2a4": {
+    "assetId": "eip155:1/erc20:0xdcb5645eda1ed34c5641d81b927d33ebae9cf2a4",
+    "chainId": "eip155:1",
+    "name": "PayB",
+    "precision": 18,
+    "color": "#040404",
+    "icon": "https://assets.coingecko.com/coins/images/25805/thumb/logo_payb_200_x_200.png?1696524891",
+    "symbol": "PAYB",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xdcc97d2c1048e8f3f2fc58ace9024ab8b350e4b1": {
+    "assetId": "eip155:1/erc20:0xdcc97d2c1048e8f3f2fc58ace9024ab8b350e4b1",
+    "chainId": "eip155:1",
+    "name": "BENCOIN",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/32701/thumb/BEN_COIN_BACK_%281%29.png?1698985208",
+    "symbol": "BEN",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xdcd85914b8ae28c1e62f1c488e1d968d5aaffe2b": {
+    "assetId": "eip155:1/erc20:0xdcd85914b8ae28c1e62f1c488e1d968d5aaffe2b",
+    "chainId": "eip155:1",
+    "name": "TOP Network",
+    "precision": 18,
+    "color": "#ECD45C",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xdcD85914b8aE28c1E62f1C488E1D968D5aaFfE2b/logo.png",
+    "symbol": "TOP",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xdcee70654261af21c44c093c300ed3bb97b78192": {
+    "assetId": "eip155:1/erc20:0xdcee70654261af21c44c093c300ed3bb97b78192",
+    "chainId": "eip155:1",
+    "name": "Wrapped OETH",
+    "precision": 18,
+    "color": "#DFF0FC",
+    "icon": "https://assets.coingecko.com/coins/images/29734/thumb/wOETH.png?1696528664",
+    "symbol": "WOETH",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xdcfa8c46ec015d4bf13d6be492cb7a8eb4580899": {
+    "assetId": "eip155:1/erc20:0xdcfa8c46ec015d4bf13d6be492cb7a8eb4580899",
+    "chainId": "eip155:1",
+    "name": "impactMarket on Ethereum",
+    "precision": 18,
+    "color": "#A6C0FC",
+    "icon": "https://assets.coingecko.com/coins/images/21907/thumb/PACT_Token_Ticker_Blue_2x.png?1696521258",
+    "symbol": "PACT",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xdd13dedecebda566322195bc4451d672a148752c": {
+    "assetId": "eip155:1/erc20:0xdd13dedecebda566322195bc4451d672a148752c",
+    "chainId": "eip155:1",
+    "name": "PRIMAL on Ethereum",
+    "precision": 18,
+    "color": "#F62F3C",
+    "icon": "https://assets.coingecko.com/coins/images/28435/thumb/PRIMAL_ICON_200px.jpg?1696527432",
+    "symbol": "PRIMAL",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xdd16ec0f66e54d453e6756713e533355989040e4": {
+    "assetId": "eip155:1/erc20:0xdd16ec0f66e54d453e6756713e533355989040e4",
+    "chainId": "eip155:1",
+    "name": "Tokenomy",
+    "precision": 18,
+    "color": "#0484BC",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xDD16eC0F66E54d453e6756713E533355989040E4/logo.png",
+    "symbol": "TEN",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xdd1ad9a21ce722c151a836373babe42c868ce9a4": {
+    "assetId": "eip155:1/erc20:0xdd1ad9a21ce722c151a836373babe42c868ce9a4",
+    "chainId": "eip155:1",
+    "name": "Universal Basic Income",
+    "precision": 18,
+    "color": "#B1F2E1",
+    "icon": "https://assets.coingecko.com/coins/images/15269/thumb/ubi.png?1696514921",
+    "symbol": "UBI",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xdd1b6b259986571a85da82a84f461e1c212591c0": {
+    "assetId": "eip155:1/erc20:0xdd1b6b259986571a85da82a84f461e1c212591c0",
+    "chainId": "eip155:1",
+    "name": "BlazeX on Ethereum",
+    "precision": 9,
+    "color": "#FAAE9E",
+    "icon": "https://assets.coingecko.com/coins/images/31194/thumb/200x200.png?1696530022",
+    "symbol": "BLAZEX",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xdd2a36ae937bc134ea694d77fc7e2e36f5d86de0": {
+    "assetId": "eip155:1/erc20:0xdd2a36ae937bc134ea694d77fc7e2e36f5d86de0",
+    "chainId": "eip155:1",
+    "name": "WELD on Ethereum",
+    "precision": 18,
+    "color": "#C2B759",
+    "icon": "https://assets.coingecko.com/coins/images/18544/thumb/weld.png?1696518023",
+    "symbol": "WELD",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xdd2e93924bdd4e20c3cf4a8736e5955224fa450e": {
+    "assetId": "eip155:1/erc20:0xdd2e93924bdd4e20c3cf4a8736e5955224fa450e",
+    "chainId": "eip155:1",
+    "name": "Foho Coin on Ethereum",
+    "precision": 8,
+    "color": "#31A6CD",
+    "icon": "https://assets.coingecko.com/coins/images/17933/thumb/FOHO.Coin_colour-02-1.png?1696517454",
+    "symbol": "FOHO",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xdd50c053c096cb04a3e3362e2b622529ec5f2e8a": {
+    "assetId": "eip155:1/erc20:0xdd50c053c096cb04a3e3362e2b622529ec5f2e8a",
+    "chainId": "eip155:1",
+    "name": "OpenEden TBILL",
+    "precision": 6,
+    "color": "#040404",
+    "icon": "https://assets.coingecko.com/coins/images/30576/thumb/OE_Logo_200x200_Transparent.png?1696529441",
+    "symbol": "TBILL",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xdd69db25f6d620a7bad3023c5d32761d353d3de9": {
+    "assetId": "eip155:1/erc20:0xdd69db25f6d620a7bad3023c5d32761d353d3de9",
+    "chainId": "eip155:1",
+    "name": "Goerli ETH",
+    "precision": 18,
+    "color": "#D9DADC",
+    "icon": "https://assets.coingecko.com/coins/images/29217/thumb/goerli-eth.png?1696528175",
+    "symbol": "GETH",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xdd782657af86492771bdb369caeb8c246be362f5": {
+    "assetId": "eip155:1/erc20:0xdd782657af86492771bdb369caeb8c246be362f5",
+    "chainId": "eip155:1",
+    "name": "RUGAME",
+    "precision": 12,
+    "color": "#664832",
+    "icon": "https://assets.coingecko.com/coins/images/29925/thumb/rugame.png?1696528853",
+    "symbol": "RUG",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xdd78b3e430361560a70b9cbb7d98d961f0428b61": {
+    "assetId": "eip155:1/erc20:0xdd78b3e430361560a70b9cbb7d98d961f0428b61",
+    "chainId": "eip155:1",
+    "name": "Patrick",
+    "precision": 18,
+    "color": "#F44848",
+    "icon": "https://assets.coingecko.com/coins/images/30266/thumb/500x500_%282%29.png?1696529174",
+    "symbol": "PAT",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xdd974d5c2e2928dea5f71b9825b8b646686bd200": {
+    "assetId": "eip155:1/erc20:0xdd974d5c2e2928dea5f71b9825b8b646686bd200",
+    "chainId": "eip155:1",
+    "name": "Kyber Network Crystal Legacy",
+    "precision": 18,
+    "color": "#34CB9C",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xdd974D5C2e2928deA5F71b9825b8b646686BD200/logo.png",
+    "symbol": "KNCL",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xddb3422497e61e13543bea06989c0789117555c5": {
+    "assetId": "eip155:1/erc20:0xddb3422497e61e13543bea06989c0789117555c5",
+    "chainId": "eip155:1",
+    "name": "COTI on Ethereum",
+    "precision": 18,
+    "color": "#BDD5E1",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xDDB3422497E61e13543BeA06989C0789117555c5/logo.png",
+    "symbol": "COTI",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xddcea43727558126c00eea772d660dfbe9c39613": {
+    "assetId": "eip155:1/erc20:0xddcea43727558126c00eea772d660dfbe9c39613",
+    "chainId": "eip155:1",
+    "name": "Grizzly Bot",
+    "precision": 9,
+    "color": "#E6DED4",
+    "icon": "https://assets.coingecko.com/coins/images/31611/thumb/gz2.jpg?1696530427",
+    "symbol": "GRIZZLY",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xddd5592cf4759313c649eb4e624a79541ed222ed": {
+    "assetId": "eip155:1/erc20:0xddd5592cf4759313c649eb4e624a79541ed222ed",
+    "chainId": "eip155:1",
+    "name": "PepeXL",
+    "precision": 18,
+    "color": "#AB3433",
+    "icon": "https://assets.coingecko.com/coins/images/30343/thumb/plogo200.png?1696529243",
+    "symbol": "PEPEXL",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xddd6a0ecc3c6f6c102e5ea3d8af7b801d1a77ac8": {
+    "assetId": "eip155:1/erc20:0xddd6a0ecc3c6f6c102e5ea3d8af7b801d1a77ac8",
+    "chainId": "eip155:1",
+    "name": "UniX on Ethereum",
+    "precision": 18,
+    "color": "#C4C0D8",
+    "icon": "https://assets.coingecko.com/coins/images/20674/thumb/unix.png?1696520075",
+    "symbol": "UNIX",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xdddddd4301a082e62e84e43f474f044423921918": {
+    "assetId": "eip155:1/erc20:0xdddddd4301a082e62e84e43f474f044423921918",
+    "chainId": "eip155:1",
+    "name": "Rhino fi on Ethereum",
+    "precision": 18,
+    "color": "#5606FC",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xDDdddd4301A082e62E84e43F474f044423921918/logo.png",
+    "symbol": "DVF",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xddf688e96cb2531a69bf6347c02f069266c1aa81": {
+    "assetId": "eip155:1/erc20:0xddf688e96cb2531a69bf6347c02f069266c1aa81",
+    "chainId": "eip155:1",
+    "name": "MEMEVENGERS",
+    "precision": 18,
+    "color": "#140E09",
+    "icon": "https://assets.coingecko.com/coins/images/32000/thumb/MMVG.jpg?1696530801",
+    "symbol": "MMVG",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xddf7fd345d54ff4b40079579d4c4670415dbfd0a": {
+    "assetId": "eip155:1/erc20:0xddf7fd345d54ff4b40079579d4c4670415dbfd0a",
+    "chainId": "eip155:1",
+    "name": "SocialGood on Ethereum",
+    "precision": 18,
+    "color": "#60CCD8",
+    "icon": "https://assets.coingecko.com/coins/images/3948/thumb/logo_200.png?1696504592",
+    "symbol": "SG",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xde0220b69ce3e855a0124433a8e8d093f53a6be4": {
+    "assetId": "eip155:1/erc20:0xde0220b69ce3e855a0124433a8e8d093f53a6be4",
+    "chainId": "eip155:1",
+    "name": "Where Did The ETH Go ",
+    "precision": 18,
+    "color": "#342B30",
+    "icon": "https://assets.coingecko.com/coins/images/31486/thumb/WHETH_logo_transparent_200px.png?1696530297",
+    "symbol": "WHETH",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xde075d9adbd0240b4462f124af926452ad0bac91": {
+    "assetId": "eip155:1/erc20:0xde075d9adbd0240b4462f124af926452ad0bac91",
+    "chainId": "eip155:1",
+    "name": "Bubblefong",
+    "precision": 18,
+    "color": "#F2D04E",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xDE075D9ADbD0240b4462F124af926452Ad0BAC91/logo.png",
+    "symbol": "BBF",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xde0e9bd25dc63a629f40e1ec7959b57726e94d88": {
+    "assetId": "eip155:1/erc20:0xde0e9bd25dc63a629f40e1ec7959b57726e94d88",
+    "chainId": "eip155:1",
+    "name": "MemeStation",
+    "precision": 18,
+    "color": "#FC9506",
+    "icon": "https://assets.coingecko.com/coins/images/31568/thumb/200x200.png?1696530380",
+    "symbol": "MEMES",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xde16ce60804a881e9f8c4ebb3824646edecd478d": {
+    "assetId": "eip155:1/erc20:0xde16ce60804a881e9f8c4ebb3824646edecd478d",
+    "chainId": "eip155:1",
+    "name": "MagicCraft on Ethereum",
+    "precision": 9,
+    "color": "#CDC7DE",
+    "icon": "https://assets.coingecko.com/coins/images/21318/thumb/mcrt.png?1696520686",
+    "symbol": "MCRT",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xde171d5151668a330ecf5f6e882b98aff5f3d24e": {
+    "assetId": "eip155:1/erc20:0xde171d5151668a330ecf5f6e882b98aff5f3d24e",
+    "chainId": "eip155:1",
+    "name": "FURIE",
+    "precision": 9,
+    "color": "#786763",
+    "icon": "https://assets.coingecko.com/coins/images/31774/thumb/FURIE.jpg?1696530592",
+    "symbol": "FURIE",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xde2f7766c8bf14ca67193128535e5c7454f8387c": {
+    "assetId": "eip155:1/erc20:0xde2f7766c8bf14ca67193128535e5c7454f8387c",
+    "chainId": "eip155:1",
+    "name": "Metadium",
+    "precision": 18,
+    "color": "#141014",
+    "icon": "https://assets.coingecko.com/coins/images/5247/thumb/META_Logo_black.png?1696505751",
+    "symbol": "META",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xde30da39c46104798bb5aa3fe8b9e0e1f348163f": {
+    "assetId": "eip155:1/erc20:0xde30da39c46104798bb5aa3fe8b9e0e1f348163f",
+    "chainId": "eip155:1",
+    "name": "Gitcoin",
+    "precision": 18,
+    "color": "#0C0736",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xDe30da39c46104798bB5aA3fe8B9e0e1F348163F/logo.png",
+    "symbol": "GTC",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xde47a2460e4b6c36b26919ef9255b4f3f86de0a0": {
+    "assetId": "eip155:1/erc20:0xde47a2460e4b6c36b26919ef9255b4f3f86de0a0",
+    "chainId": "eip155:1",
+    "name": "OoLong",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/32627/thumb/rabbit2_200x200.png?1698822914",
+    "symbol": "",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xde4ce5447ce0c67920a1371605a39187cb6847c8": {
+    "assetId": "eip155:1/erc20:0xde4ce5447ce0c67920a1371605a39187cb6847c8",
+    "chainId": "eip155:1",
+    "name": "Deesse",
+    "precision": 18,
+    "color": "#949997",
+    "icon": "https://assets.coingecko.com/coins/images/22524/thumb/GaqpKHEP_400x400.jpg?1696521847",
+    "symbol": "LOVE",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xde4ee8057785a7e8e800db58f9784845a5c2cbd6": {
+    "assetId": "eip155:1/erc20:0xde4ee8057785a7e8e800db58f9784845a5c2cbd6",
+    "chainId": "eip155:1",
+    "name": "DeXe on Ethereum",
+    "precision": 18,
+    "color": "#7BFBD3",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xde4EE8057785A7e8e800Db58F9784845A5C2Cbd6/logo.png",
+    "symbol": "DEXE",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xde5ea375ffbdc8b25a80fe13d631e8ba0ab4bb02": {
+    "assetId": "eip155:1/erc20:0xde5ea375ffbdc8b25a80fe13d631e8ba0ab4bb02",
+    "chainId": "eip155:1",
+    "name": "Gera Coin",
+    "precision": 18,
+    "color": "#FCC890",
+    "icon": "https://assets.coingecko.com/coins/images/13686/thumb/GeraCoin_Logo-icon-1000px.png?1696513434",
+    "symbol": "GERA",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xde5ed76e7c05ec5e4572cfc88d1acea165109e44": {
+    "assetId": "eip155:1/erc20:0xde5ed76e7c05ec5e4572cfc88d1acea165109e44",
+    "chainId": "eip155:1",
+    "name": "DEUS Finance on Ethereum",
+    "precision": 18,
+    "color": "#040404",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xDE5ed76E7c05eC5e4572CfC88d1ACEA165109E44/logo.png",
+    "symbol": "DEUS",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xde67d97b8770dc98c746a3fc0093c538666eb493": {
+    "assetId": "eip155:1/erc20:0xde67d97b8770dc98c746a3fc0093c538666eb493",
+    "chainId": "eip155:1",
+    "name": "Bitrock",
+    "precision": 9,
+    "color": "#131414",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xde67d97b8770dC98C746A3FC0093c538666eB493/logo.png",
+    "symbol": "BROCK",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xde6cec925d3e76e2cb94cf5805159244ba4cbb91": {
+    "assetId": "eip155:1/erc20:0xde6cec925d3e76e2cb94cf5805159244ba4cbb91",
+    "chainId": "eip155:1",
+    "name": "Hermes Bot",
+    "precision": 18,
+    "color": "#3F1E0A",
+    "icon": "https://assets.coingecko.com/coins/images/31376/thumb/IMG_5885_2.jpg?1696530193",
+    "symbol": "HERMES",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xde7d85157d9714eadf595045cc12ca4a5f3e2adb": {
+    "assetId": "eip155:1/erc20:0xde7d85157d9714eadf595045cc12ca4a5f3e2adb",
+    "chainId": "eip155:1",
+    "name": "STP",
+    "precision": 18,
+    "color": "#64A4DB",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xDe7D85157d9714EADf595045CC12Ca4A5f3E2aDb/logo.png",
+    "symbol": "STPT",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xdeadface8503399df4b083ef42fa8e02fd39dead": {
+    "assetId": "eip155:1/erc20:0xdeadface8503399df4b083ef42fa8e02fd39dead",
+    "chainId": "eip155:1",
+    "name": "Tribe Token on Ethereum",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/33036/thumb/Tribe.jpg?1700403321",
+    "symbol": "TRIBE",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xdecade1c6bf2cd9fb89afad73e4a519c867adcf5": {
+    "assetId": "eip155:1/erc20:0xdecade1c6bf2cd9fb89afad73e4a519c867adcf5",
+    "chainId": "eip155:1",
+    "name": "Experty Wisdom",
+    "precision": 18,
+    "color": "#5F728C",
+    "icon": "https://assets.coingecko.com/coins/images/13133/thumb/n0MTVBrm_400x400.jpg?1696512920",
+    "symbol": "WIS",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xdef1ca1fb7fbcdc777520aa7f396b4e015f497ab": {
+    "assetId": "eip155:1/erc20:0xdef1ca1fb7fbcdc777520aa7f396b4e015f497ab",
+    "chainId": "eip155:1",
+    "name": "CoW Protocol on Ethereum",
+    "precision": 18,
+    "color": "#1D1E22",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xDEf1CA1fb7FBcDC777520aa7f396b4E015F497aB/logo.png",
+    "symbol": "COW",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xdefa4e8a7bcba345f687a2f1456f5edd9ce97202": {
+    "assetId": "eip155:1/erc20:0xdefa4e8a7bcba345f687a2f1456f5edd9ce97202",
+    "chainId": "eip155:1",
+    "name": "Kyber Network Crystal on Ethereum",
+    "precision": 18,
+    "color": "#04B494",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xdeFA4e8a7bcBA345F687a2f1456F5Edd9CE97202/logo.png",
+    "symbol": "KNC",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xdefcafe7eac90d31bbba841038df365de3c4e207": {
+    "assetId": "eip155:1/erc20:0xdefcafe7eac90d31bbba841038df365de3c4e207",
+    "chainId": "eip155:1",
+    "name": "0xDEFCAFE on Ethereum",
+    "precision": 9,
+    "color": "#577D92",
+    "icon": "https://assets.coingecko.com/coins/images/31738/thumb/200x200.png?1696530557",
+    "symbol": "CAFE",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xdf09a216fac5adc3e640db418c0b956076509503": {
+    "assetId": "eip155:1/erc20:0xdf09a216fac5adc3e640db418c0b956076509503",
+    "chainId": "eip155:1",
+    "name": "Poken on Ethereum",
+    "precision": 18,
+    "color": "#04FAFA",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xdf09a216Fac5ADC3e640Db418C0b956076509503/logo.png",
+    "symbol": "PKN",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xdf121180af07cb906d970799627a430d2440c36d": {
+    "assetId": "eip155:1/erc20:0xdf121180af07cb906d970799627a430d2440c36d",
+    "chainId": "eip155:1",
+    "name": "Piggy Bank",
+    "precision": 18,
+    "color": "#EEC464",
+    "icon": "https://assets.coingecko.com/coins/images/30594/thumb/piggy_bank_logo_png.png?1696529462",
+    "symbol": "PIGGY",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xdf290b162a7d3e0a328cf198308d421954f08b94": {
+    "assetId": "eip155:1/erc20:0xdf290b162a7d3e0a328cf198308d421954f08b94",
+    "chainId": "eip155:1",
+    "name": "Beyond Protocol",
+    "precision": 18,
+    "color": "#040404",
+    "icon": "https://assets.coingecko.com/coins/images/4732/thumb/b-logo-200x200.png?1696505293",
+    "symbol": "BP",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xdf2c7238198ad8b389666574f2d8bc411a4b7428": {
+    "assetId": "eip155:1/erc20:0xdf2c7238198ad8b389666574f2d8bc411a4b7428",
+    "chainId": "eip155:1",
+    "name": "Mainframe",
+    "precision": 18,
+    "color": "#08A5E2",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xDF2C7238198Ad8B389666574f2d8bc411A4b7428/logo.png",
+    "symbol": "MFT",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xdf347911910b6c9a4286ba8e2ee5ea4a39eb2134": {
+    "assetId": "eip155:1/erc20:0xdf347911910b6c9a4286ba8e2ee5ea4a39eb2134",
+    "chainId": "eip155:1",
+    "name": "Bob s Repair",
+    "precision": 18,
+    "color": "#E3AD38",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xDF347911910b6c9A4286bA8E2EE5ea4a39eB2134/logo.png",
+    "symbol": "BOB",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xdf35988d795d90711e785b488bb2127692e6f956": {
+    "assetId": "eip155:1/erc20:0xdf35988d795d90711e785b488bb2127692e6f956",
+    "chainId": "eip155:1",
+    "name": "BabyFloki",
+    "precision": 9,
+    "color": "#4891BA",
+    "icon": "https://assets.coingecko.com/coins/images/16712/thumb/floki.jpg?1696516286",
+    "symbol": "BABYFLOKI",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xdf3ac4f479375802a821f7b7b46cd7eb5e4262cc": {
+    "assetId": "eip155:1/erc20:0xdf3ac4f479375802a821f7b7b46cd7eb5e4262cc",
+    "chainId": "eip155:1",
+    "name": "eUSD",
+    "precision": 18,
+    "color": "#85BCDF",
+    "icon": "https://assets.coingecko.com/coins/images/31603/thumb/eusd.png?1696530419",
+    "symbol": "EUSD",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xdf49c9f599a0a9049d97cff34d0c30e468987389": {
+    "assetId": "eip155:1/erc20:0xdf49c9f599a0a9049d97cff34d0c30e468987389",
+    "chainId": "eip155:1",
+    "name": "SaTT",
+    "precision": 18,
+    "color": "#040404",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xDf49C9f599A0A9049D97CFF34D0C30E468987389/logo.png",
+    "symbol": "SATT",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xdf4ef6ee483953fe3b84abd08c6a060445c01170": {
+    "assetId": "eip155:1/erc20:0xdf4ef6ee483953fe3b84abd08c6a060445c01170",
+    "chainId": "eip155:1",
+    "name": "Wrapped Accumulate",
+    "precision": 8,
+    "color": "#5BA3FB",
+    "icon": "https://assets.coingecko.com/coins/images/27207/thumb/accumulate-logo-200x200.png?1696526255",
+    "symbol": "WACME",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xdf574c24545e5ffecb9a659c229253d4111d87e1": {
+    "assetId": "eip155:1/erc20:0xdf574c24545e5ffecb9a659c229253d4111d87e1",
+    "chainId": "eip155:1",
+    "name": "HUSD",
+    "precision": 8,
+    "color": "#1B63F3",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xdF574c24545E5FfEcb9a659c229253D4111d87e1/logo.png",
+    "symbol": "HUSD",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xdf5e0e81dff6faf3a7e52ba697820c5e32d806a8": {
+    "assetId": "eip155:1/erc20:0xdf5e0e81dff6faf3a7e52ba697820c5e32d806a8",
+    "chainId": "eip155:1",
+    "name": "LP yCurve",
+    "precision": 18,
+    "color": "#1A848E",
+    "icon": "https://assets.coingecko.com/coins/images/11858/thumb/yCrv.png?1696511728",
+    "symbol": "YCURVE",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xdf7ff54aacacbff42dfe29dd6144a69b629f8c9e": {
+    "assetId": "eip155:1/erc20:0xdf7ff54aacacbff42dfe29dd6144a69b629f8c9e",
+    "chainId": "eip155:1",
+    "name": "Aave ZRX",
+    "precision": 18,
+    "color": "#7689B3",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xDf7FF54aAcAcbFf42dfe29DD6144A69b629f8C9e/logo.png",
+    "symbol": "AZRX",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xdf801468a808a32656d2ed2d2d80b72a129739f4": {
+    "assetId": "eip155:1/erc20:0xdf801468a808a32656d2ed2d2d80b72a129739f4",
+    "chainId": "eip155:1",
+    "name": "Somnium Space CUBEs",
+    "precision": 8,
+    "color": "#05735B",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xDf801468a808a32656D2eD2D2d80B72A129739f4/logo.png",
+    "symbol": "CUBE",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xdf906f6fd89ce60c16baed3c96ceb08bca65ad82": {
+    "assetId": "eip155:1/erc20:0xdf906f6fd89ce60c16baed3c96ceb08bca65ad82",
+    "chainId": "eip155:1",
+    "name": "TeamToken",
+    "precision": 18,
+    "color": "#F4042C",
+    "icon": "https://assets.coingecko.com/coins/images/31640/thumb/TT-Icon-Logo-200x200.png?1696530456",
+    "symbol": "TT",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xdfbc9050f5b01df53512dcc39b4f2b2bbacd517a": {
+    "assetId": "eip155:1/erc20:0xdfbc9050f5b01df53512dcc39b4f2b2bbacd517a",
+    "chainId": "eip155:1",
+    "name": "Jobchain",
+    "precision": 8,
+    "color": "#192975",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xdfbc9050F5B01DF53512DCC39B4f2B2BBaCD517A/logo.png",
+    "symbol": "JOB",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xdfc3829b127761a3218bfcee7fc92e1232c9d116": {
+    "assetId": "eip155:1/erc20:0xdfc3829b127761a3218bfcee7fc92e1232c9d116",
+    "chainId": "eip155:1",
+    "name": "PRivaCY Coin on Ethereum",
+    "precision": 8,
+    "color": "#319A8A",
+    "icon": "https://assets.coingecko.com/coins/images/14151/thumb/prcy.png?1696513870",
+    "symbol": "PRCY",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xdfdb7f72c1f195c5951a234e8db9806eb0635346": {
+    "assetId": "eip155:1/erc20:0xdfdb7f72c1f195c5951a234e8db9806eb0635346",
+    "chainId": "eip155:1",
+    "name": "Feisty Doge NFT",
+    "precision": 18,
+    "color": "#BC9D59",
+    "icon": "https://assets.coingecko.com/coins/images/17834/thumb/doge-fractionalized.png?1696517355",
+    "symbol": "NFD",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xdfddf7a69716124bc346ba556d4b9f9e74c4a8bc": {
+    "assetId": "eip155:1/erc20:0xdfddf7a69716124bc346ba556d4b9f9e74c4a8bc",
+    "chainId": "eip155:1",
+    "name": "Succession",
+    "precision": 18,
+    "color": "#22244F",
+    "icon": "https://assets.coingecko.com/coins/images/25377/thumb/sccn.png?1696524510",
+    "symbol": "SCCN",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xdfe691f37b6264a90ff507eb359c45d55037951c": {
+    "assetId": "eip155:1/erc20:0xdfe691f37b6264a90ff507eb359c45d55037951c",
+    "chainId": "eip155:1",
+    "name": "Karma DAO",
+    "precision": 4,
+    "color": "#E9E6ED",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xdfe691F37b6264a90Ff507EB359C45d55037951C/logo.png",
+    "symbol": "KARMA",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xdffa3a7f5b40789c7a437dbe7b31b47f9b08fe75": {
+    "assetId": "eip155:1/erc20:0xdffa3a7f5b40789c7a437dbe7b31b47f9b08fe75",
+    "chainId": "eip155:1",
+    "name": "CryptoPunk  7171",
+    "precision": 18,
+    "color": "#5F7583",
+    "icon": "https://assets.coingecko.com/coins/images/17842/thumb/cryptopunk-hoodie.png?1696517365",
+    "symbol": "HOODIE",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xe0151763455a8a021e64880c238ba1cff3787ff0": {
+    "assetId": "eip155:1/erc20:0xe0151763455a8a021e64880c238ba1cff3787ff0",
+    "chainId": "eip155:1",
+    "name": "Aped",
+    "precision": 18,
+    "color": "#484E5C",
+    "icon": "https://assets.coingecko.com/coins/images/29906/thumb/Aped.png?1696528835",
+    "symbol": "APED",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xe020b01b6fbd83066aa2e8ee0ccd1eb8d9cc70bf": {
+    "assetId": "eip155:1/erc20:0xe020b01b6fbd83066aa2e8ee0ccd1eb8d9cc70bf",
+    "chainId": "eip155:1",
+    "name": "Arcade Protocol",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/33112/thumb/IMG_6563.png?1700708371",
+    "symbol": "ARCD",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xe02d1524e385d67613e2ee969c60395be9a89f92": {
+    "assetId": "eip155:1/erc20:0xe02d1524e385d67613e2ee969c60395be9a89f92",
+    "chainId": "eip155:1",
+    "name": "The 1  Club",
+    "precision": 18,
+    "color": "#D894AC",
+    "icon": "https://assets.coingecko.com/coins/images/31331/thumb/IMG_8362.jpeg?1696530149",
+    "symbol": "1%",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xe03b2642a5111ad0efc0cbce766498c2dd562ae9": {
+    "assetId": "eip155:1/erc20:0xe03b2642a5111ad0efc0cbce766498c2dd562ae9",
+    "chainId": "eip155:1",
+    "name": "Old Bitcoin",
+    "precision": 9,
+    "color": "#E6CC7B",
+    "icon": "https://assets.coingecko.com/coins/images/28832/thumb/bitcoinlogo.png?1696527808",
+    "symbol": "BC",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xe04f47ff45576249bc5083dfdf987e03d0550113": {
+    "assetId": "eip155:1/erc20:0xe04f47ff45576249bc5083dfdf987e03d0550113",
+    "chainId": "eip155:1",
+    "name": "Moonsama",
+    "precision": 18,
+    "color": "#291C22",
+    "icon": "https://assets.coingecko.com/coins/images/28308/thumb/Small.png?1696527312",
+    "symbol": "SAMA",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xe063f04f280c60aeca68b38341c2eecbec703ae2": {
+    "assetId": "eip155:1/erc20:0xe063f04f280c60aeca68b38341c2eecbec703ae2",
+    "chainId": "eip155:1",
+    "name": "f x  Protocol Leveraged ETH",
+    "precision": 18,
+    "color": "#F9DCDF",
+    "icon": "https://assets.coingecko.com/coins/images/32165/thumb/0xe063f04f280c60aeca68b38341c2eecbec703ae2.png?1696724194",
+    "symbol": "XETH",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xe07c41e9cdf7e0a7800e4bbf90d414654fd6413d": {
+    "assetId": "eip155:1/erc20:0xe07c41e9cdf7e0a7800e4bbf90d414654fd6413d",
+    "chainId": "eip155:1",
+    "name": "CBDC",
+    "precision": 9,
+    "color": "#E3D621",
+    "icon": "https://assets.coingecko.com/coins/images/31665/thumb/MThOhXH1_400x400.jpg?1696530482",
+    "symbol": "CBDC",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xe08ef9206a8a7c9337cc6611b4f5226fdafc4772": {
+    "assetId": "eip155:1/erc20:0xe08ef9206a8a7c9337cc6611b4f5226fdafc4772",
+    "chainId": "eip155:1",
+    "name": "MESSI COIN",
+    "precision": 9,
+    "color": "#6890B5",
+    "icon": "https://assets.coingecko.com/coins/images/30762/thumb/x4aUydEr_400x400.jpg?1696529631",
+    "symbol": "MESSI",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xe0a189c975e4928222978a74517442239a0b86ff": {
+    "assetId": "eip155:1/erc20:0xe0a189c975e4928222978a74517442239a0b86ff",
+    "chainId": "eip155:1",
+    "name": "Keys",
+    "precision": 9,
+    "color": "#F1B44C",
+    "icon": "https://assets.coingecko.com/coins/images/20604/thumb/200x200_%2843%29.png?1696520010",
+    "symbol": "KEYS",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xe0a458bf4acf353cb45e211281a334bb1d837885": {
+    "assetId": "eip155:1/erc20:0xe0a458bf4acf353cb45e211281a334bb1d837885",
+    "chainId": "eip155:1",
+    "name": "4Chan",
+    "precision": 9,
+    "color": "#4A893E",
+    "icon": "https://assets.coingecko.com/coins/images/30124/thumb/4CHAN.png?1696529046",
+    "symbol": "4CHAN",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xe0ad1806fd3e7edf6ff52fdb822432e847411033": {
+    "assetId": "eip155:1/erc20:0xe0ad1806fd3e7edf6ff52fdb822432e847411033",
+    "chainId": "eip155:1",
+    "name": "OnX Finance on Ethereum",
+    "precision": 18,
+    "color": "#4B2DF9",
+    "icon": "https://assets.coingecko.com/coins/images/13445/thumb/onxlogo-1.png?1696513209",
+    "symbol": "ONX",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xe0b0c16038845bed3fcf70304d3e167df81ce225": {
+    "assetId": "eip155:1/erc20:0xe0b0c16038845bed3fcf70304d3e167df81ce225",
+    "chainId": "eip155:1",
+    "name": "CrossSwap on Ethereum",
+    "precision": 18,
+    "color": "#493D89",
+    "icon": "https://assets.coingecko.com/coins/images/18002/thumb/cross.png?1696517518",
+    "symbol": "CSWAP",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xe0b9a2c3e9f40cf74b2c7f591b2b0cca055c3112": {
+    "assetId": "eip155:1/erc20:0xe0b9a2c3e9f40cf74b2c7f591b2b0cca055c3112",
+    "chainId": "eip155:1",
+    "name": "Genesis Shards on Ethereum",
+    "precision": 18,
+    "color": "#040404",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xe0B9a2C3E9f40CF74B2C7F591B2b0CCa055c3112/logo.png",
+    "symbol": "GS",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xe0b9bcd54bf8a730ea5d3f1ffce0885e911a502c": {
+    "assetId": "eip155:1/erc20:0xe0b9bcd54bf8a730ea5d3f1ffce0885e911a502c",
+    "chainId": "eip155:1",
+    "name": "ZUM on Ethereum",
+    "precision": 8,
+    "color": "#AC7AB4",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xe0b9BcD54bF8A730EA5d3f1fFCe0885E911a502c/logo.png",
+    "symbol": "ZUM",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xe0bceef36f3a6efdd5eebfacd591423f8549b9d5": {
+    "assetId": "eip155:1/erc20:0xe0bceef36f3a6efdd5eebfacd591423f8549b9d5",
+    "chainId": "eip155:1",
+    "name": "Defactor on Ethereum",
+    "precision": 18,
+    "color": "#5C5CEC",
+    "icon": "https://assets.coingecko.com/coins/images/19201/thumb/jFLSu4U9_400x400.png?1696518648",
+    "symbol": "FACTR",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xe0c05ec44775e4ad62cdc2eecdf337aa7a143363": {
+    "assetId": "eip155:1/erc20:0xe0c05ec44775e4ad62cdc2eecdf337aa7a143363",
+    "chainId": "eip155:1",
+    "name": "Mancium",
+    "precision": 2,
+    "color": "#2D285A",
+    "icon": "https://assets.coingecko.com/coins/images/25084/thumb/IKpuMYuGaMHEE0nrDUwpf6DqLQ5zTfZ1sak6ZqeIe2snV4GqQbh4Eic6hHcPl_OpBmlhcrRJ5kqoGzwB1CezMiDYnwR6rDT08_l8zb3-y3aPhTv7_0x5g4IO9JpQXDViEIqTZ7gYzTXqkcP6MH_uCFxQF-l-ohR0-FdT8O-ZTmNUKm--OuqEf9DVa-miAFp4t2pN-kcJ5Jv8woPj51yk-zna8c.jpg?1696524235",
+    "symbol": "MANC",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xe0c8b298db4cffe05d1bea0bb1ba414522b33c1b": {
+    "assetId": "eip155:1/erc20:0xe0c8b298db4cffe05d1bea0bb1ba414522b33c1b",
+    "chainId": "eip155:1",
+    "name": "nuco cloud",
+    "precision": 18,
+    "color": "#1C6CB4",
+    "icon": "https://assets.coingecko.com/coins/images/8932/thumb/nucloud_logo.png?1696509080",
+    "symbol": "NCDT",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xe0c99ed6950ccb38347154abd06e10eba5a1f89a": {
+    "assetId": "eip155:1/erc20:0xe0c99ed6950ccb38347154abd06e10eba5a1f89a",
+    "chainId": "eip155:1",
+    "name": "Blui",
+    "precision": 18,
+    "color": "#2C336A",
+    "icon": "https://assets.coingecko.com/coins/images/31671/thumb/Blui_Logo.png?1696530487",
+    "symbol": "BLUI",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xe0e51a3f1d9c65bba1326e4a0b1d99b737efc2c0": {
+    "assetId": "eip155:1/erc20:0xe0e51a3f1d9c65bba1326e4a0b1d99b737efc2c0",
+    "chainId": "eip155:1",
+    "name": "RedneckMountainDew",
+    "precision": 8,
+    "color": "#E4888A",
+    "icon": "https://assets.coingecko.com/coins/images/32395/thumb/mountain_dew_%282%29_%281%29_%281%29.png?1698053570",
+    "symbol": "RMD",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xe0f126236d2a5b13f26e72cbb1d1ff5f297dda07": {
+    "color": "#FFFFFF",
+    "icon": "https://raw.githubusercontent.com/Idle-Labs/idle-dashboard/master/public/images/tokens/USDT.svg",
+    "name": "Euler USDT Senior Tranche",
+    "precision": 18,
+    "symbol": "AA_eUSDT",
+    "chainId": "eip155:1",
+    "assetId": "eip155:1/erc20:0xe0f126236d2a5b13f26e72cbb1d1ff5f297dda07",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xe0f63a424a4439cbe457d80e4f4b51ad25b2c56c": {
+    "assetId": "eip155:1/erc20:0xe0f63a424a4439cbe457d80e4f4b51ad25b2c56c",
+    "chainId": "eip155:1",
+    "name": "SPX6900",
+    "precision": 8,
+    "color": "#43491D",
+    "icon": "https://assets.coingecko.com/coins/images/31401/thumb/spx6900.jpeg?1696530217",
+    "symbol": "SPX",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xe1005bfbbc9a17d5d844c7a4371cbf6b2b387380": {
+    "assetId": "eip155:1/erc20:0xe1005bfbbc9a17d5d844c7a4371cbf6b2b387380",
+    "chainId": "eip155:1",
+    "name": "GRN Grid",
+    "precision": 8,
+    "color": "#1F6450",
+    "icon": "https://assets.coingecko.com/coins/images/26126/thumb/MQrn5TGl_400x400.jpg?1696525215",
+    "symbol": "G",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xe11679cdb4587fee907d69e9ec4a7d3f0c2bcf3b": {
+    "color": "#FFFFFF",
+    "icon": "https://raw.githubusercontent.com/Idle-Labs/idle-dashboard/master/public/images/tokens/USDC.svg",
+    "name": "Euler USDC Junior Tranche",
+    "precision": 18,
+    "symbol": "BB_eUSDC",
+    "chainId": "eip155:1",
+    "assetId": "eip155:1/erc20:0xe11679cdb4587fee907d69e9ec4a7d3f0c2bcf3b",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xe11ba472f74869176652c35d30db89854b5ae84d": {
+    "assetId": "eip155:1/erc20:0xe11ba472f74869176652c35d30db89854b5ae84d",
+    "chainId": "eip155:1",
+    "name": "HEGIC yVault",
+    "precision": 18,
+    "color": "#43FAF2",
+    "icon": "https://assets.coingecko.com/coins/images/28798/thumb/yvHEGIC-128-0xe11ba472F74869176652C35D30dB89854b5ae84D.png?1696527776",
+    "symbol": "YVHEGIC",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xe153f65ddaf4f2234bd56f51f546d4b493acb091": {
+    "assetId": "eip155:1/erc20:0xe153f65ddaf4f2234bd56f51f546d4b493acb091",
+    "chainId": "eip155:1",
+    "name": "Zeus",
+    "precision": 18,
+    "color": "#CFBF37",
+    "icon": "https://assets.coingecko.com/coins/images/31730/thumb/200.png?1696530550",
+    "symbol": "ZEUS",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xe1590a6fa0cff9c960181cb77d8a873601772f64": {
+    "assetId": "eip155:1/erc20:0xe1590a6fa0cff9c960181cb77d8a873601772f64",
+    "chainId": "eip155:1",
+    "name": "WallStreetBets DApp on Ethereum",
+    "precision": 18,
+    "color": "#BD95A2",
+    "icon": "https://assets.coingecko.com/coins/images/15093/thumb/Pe1mrDu.png?1696514751",
+    "symbol": "WSB",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xe15a66b7b8e385caa6f69fd0d55984b96d7263cf": {
+    "assetId": "eip155:1/erc20:0xe15a66b7b8e385caa6f69fd0d55984b96d7263cf",
+    "chainId": "eip155:1",
+    "name": "Arch USD Div  Yield on Ethereum",
+    "precision": 18,
+    "color": "#0E6EF4",
+    "icon": "https://assets.coingecko.com/coins/images/30484/thumb/ADDY.png?1696529370",
+    "symbol": "ADDY",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xe19f85c920b572ca48942315b06d6cac86585c87": {
+    "assetId": "eip155:1/erc20:0xe19f85c920b572ca48942315b06d6cac86585c87",
+    "chainId": "eip155:1",
+    "name": "PLEB Token",
+    "precision": 18,
+    "color": "#51381D",
+    "icon": "https://assets.coingecko.com/coins/images/29923/thumb/PLEBToken.png?1696528851",
+    "symbol": "PLEB",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xe1a3864dbf62fb94834b108ff6bf439ce70183ac": {
+    "assetId": "eip155:1/erc20:0xe1a3864dbf62fb94834b108ff6bf439ce70183ac",
+    "chainId": "eip155:1",
+    "name": "vXDEFI",
+    "precision": 18,
+    "color": "#E1F8F0",
+    "icon": "https://assets.coingecko.com/coins/images/30479/thumb/vXDEFI.jpg?1696529365",
+    "symbol": "VXDEFI",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xe1a70b24e109f7a8b39806c554e123efc6769e91": {
+    "assetId": "eip155:1/erc20:0xe1a70b24e109f7a8b39806c554e123efc6769e91",
+    "chainId": "eip155:1",
+    "name": "Liquid Savings DAI",
+    "precision": 18,
+    "color": "#272324",
+    "icon": "https://assets.coingecko.com/coins/images/31219/thumb/lsdai-logo.png?1696530045",
+    "symbol": "LSDAI",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xe1ba035fe04200da932378c4509e1fafdd08e187": {
+    "assetId": "eip155:1/erc20:0xe1ba035fe04200da932378c4509e1fafdd08e187",
+    "chainId": "eip155:1",
+    "name": "Radical Chess",
+    "precision": 18,
+    "color": "#301B54",
+    "icon": "https://assets.coingecko.com/coins/images/29355/thumb/CHESS.png?1696528303",
+    "symbol": "CHESS",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xe1ba0fb44ccb0d11b80f92f4f8ed94ca3ff51d00": {
+    "assetId": "eip155:1/erc20:0xe1ba0fb44ccb0d11b80f92f4f8ed94ca3ff51d00",
+    "chainId": "eip155:1",
+    "name": "Aave BAT v1",
+    "precision": 18,
+    "color": "#884993",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xE1BA0FB44CCb0D11b80F92f4f8Ed94CA3fF51D00/logo.png",
+    "symbol": "ABAT",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xe1bad922f84b198a08292fb600319300ae32471b": {
+    "assetId": "eip155:1/erc20:0xe1bad922f84b198a08292fb600319300ae32471b",
+    "chainId": "eip155:1",
+    "name": "Firmachain",
+    "precision": 18,
+    "color": "#41586C",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xE1bAD922F84b198A08292FB600319300ae32471b/logo.png",
+    "symbol": "FCT",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xe1bda0c3bfa2be7f740f0119b6a34f057bd58eba": {
+    "assetId": "eip155:1/erc20:0xe1bda0c3bfa2be7f740f0119b6a34f057bd58eba",
+    "chainId": "eip155:1",
+    "name": "Winkies on Ethereum",
+    "precision": 18,
+    "color": "#363638",
+    "icon": "https://assets.coingecko.com/coins/images/22260/thumb/wnk.png?1696521605",
+    "symbol": "WNK",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xe1c7e30c42c24582888c758984f6e382096786bd": {
+    "assetId": "eip155:1/erc20:0xe1c7e30c42c24582888c758984f6e382096786bd",
+    "chainId": "eip155:1",
+    "name": "Curate on Ethereum",
+    "precision": 8,
+    "color": "#FFFFFF",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xE1c7E30C42C24582888C758984f6e382096786bd/logo.png",
+    "symbol": "XCUR",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xe1d7c7a4596b038ced2a84bf65b8647271c53208": {
+    "assetId": "eip155:1/erc20:0xe1d7c7a4596b038ced2a84bf65b8647271c53208",
+    "chainId": "eip155:1",
+    "name": "NFTY on Ethereum",
+    "precision": 18,
+    "color": "#F2E4F0",
+    "icon": "https://assets.coingecko.com/coins/images/18741/thumb/coingecko.png?1696518206",
+    "symbol": "NFTY",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xe1ec350ea16d1ddaff57f31387b2d9708eb7ce28": {
+    "assetId": "eip155:1/erc20:0xe1ec350ea16d1ddaff57f31387b2d9708eb7ce28",
+    "chainId": "eip155:1",
+    "name": "Pepechain",
+    "precision": 9,
+    "color": "#3A260E",
+    "icon": "https://assets.coingecko.com/coins/images/30059/thumb/Pepechain.png?1696528980",
+    "symbol": "PC",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xe1fc4455f62a6e89476f1072530c20cf1a0622da": {
+    "assetId": "eip155:1/erc20:0xe1fc4455f62a6e89476f1072530c20cf1a0622da",
+    "chainId": "eip155:1",
+    "name": "Phuture",
+    "precision": 18,
+    "color": "#112A61",
+    "icon": "https://assets.coingecko.com/coins/images/16071/thumb/phtr.png?1696515680",
+    "symbol": "PHTR",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xe20b9e246db5a0d21bf9209e4858bc9a3ff7a034": {
+    "assetId": "eip155:1/erc20:0xe20b9e246db5a0d21bf9209e4858bc9a3ff7a034",
+    "chainId": "eip155:1",
+    "name": "Wrapped Banano on Ethereum",
+    "precision": 18,
+    "color": "#373739",
+    "icon": "https://assets.coingecko.com/coins/images/32617/thumb/WBAN.jpg?1698749253",
+    "symbol": "WBAN",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xe22910d04bdc9d55570f3bc52e786b49dddf37b4": {
+    "assetId": "eip155:1/erc20:0xe22910d04bdc9d55570f3bc52e786b49dddf37b4",
+    "chainId": "eip155:1",
+    "name": "Gatsby Inu  OLD ",
+    "precision": 18,
+    "color": "#605D5C",
+    "icon": "https://assets.coingecko.com/coins/images/29585/thumb/gatsby_logo_large.png?1696528524",
+    "symbol": "GATSBY",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xe2353069f71a27bbbe66eeabff05de109c7d5e19": {
+    "assetId": "eip155:1/erc20:0xe2353069f71a27bbbe66eeabff05de109c7d5e19",
+    "chainId": "eip155:1",
+    "name": "Bonsai3",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/33162/thumb/logo-bonsai3200x200.png?1700830408",
+    "symbol": "SEED",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xe28027c99c7746ffb56b0113e5d9708ac86fae8f": {
+    "assetId": "eip155:1/erc20:0xe28027c99c7746ffb56b0113e5d9708ac86fae8f",
+    "chainId": "eip155:1",
+    "name": "KING",
+    "precision": 9,
+    "color": "#E8CE1C",
+    "icon": "https://assets.coingecko.com/coins/images/30183/thumb/king.png?1696529102",
+    "symbol": "KING",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xe28b3b32b6c345a34ff64674606124dd5aceca30": {
+    "assetId": "eip155:1/erc20:0xe28b3b32b6c345a34ff64674606124dd5aceca30",
+    "chainId": "eip155:1",
+    "name": "Injective on Ethereum",
+    "precision": 18,
+    "color": "#131414",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xe28b3B32B6c345A34Ff64674606124Dd5Aceca30/logo.png",
+    "symbol": "INJ",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xe29f1241e6015a4949cb7e3f07234ba794006181": {
+    "assetId": "eip155:1/erc20:0xe29f1241e6015a4949cb7e3f07234ba794006181",
+    "chainId": "eip155:1",
+    "name": "BIGCAP",
+    "precision": 18,
+    "color": "#973DE8",
+    "icon": "https://assets.coingecko.com/coins/images/29708/thumb/BIGCAP_Logo.png?1696528640",
+    "symbol": "BIGCAP",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xe2ba8693ce7474900a045757fe0efca900f6530b": {
+    "assetId": "eip155:1/erc20:0xe2ba8693ce7474900a045757fe0efca900f6530b",
+    "chainId": "eip155:1",
+    "name": "Flux DAI",
+    "precision": 8,
+    "color": "#F4AC34",
+    "icon": "https://assets.coingecko.com/coins/images/29052/thumb/fDAI_200x200.png?1696528019",
+    "symbol": "FDAI",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xe2cfbbedbce1bd59b1b799c44282e6396d692b84": {
+    "assetId": "eip155:1/erc20:0xe2cfbbedbce1bd59b1b799c44282e6396d692b84",
+    "chainId": "eip155:1",
+    "name": "Dexioprotocol",
+    "precision": 18,
+    "color": "#0E82AD",
+    "icon": "https://assets.coingecko.com/coins/images/27075/thumb/DEXI_cirle_R.png?1696526125",
+    "symbol": "DEXIO",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xe2dc070524a6e305ddb64d8513dc444b6a1ec845": {
+    "assetId": "eip155:1/erc20:0xe2dc070524a6e305ddb64d8513dc444b6a1ec845",
+    "chainId": "eip155:1",
+    "name": "Nash on Ethereum",
+    "precision": 8,
+    "color": "#0453F2",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xE2dc070524A6e305ddB64d8513DC444B6a1ec845/logo.png",
+    "symbol": "NEX",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xe2f2a5c287993345a840db3b0845fbc70f5935a5": {
+    "assetId": "eip155:1/erc20:0xe2f2a5c287993345a840db3b0845fbc70f5935a5",
+    "chainId": "eip155:1",
+    "name": "mStable USD",
+    "precision": 18,
+    "color": "#F3F3F3",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xe2f2a5C287993345a840Db3B0845fbC70f5935a5/logo.png",
+    "symbol": "MUSD",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xe2f668f6166eda65620a01c4c116a5f6e5528614": {
+    "assetId": "eip155:1/erc20:0xe2f668f6166eda65620a01c4c116a5f6e5528614",
+    "chainId": "eip155:1",
+    "name": "Me Gusta",
+    "precision": 18,
+    "color": "#959595",
+    "icon": "https://assets.coingecko.com/coins/images/30348/thumb/NoMeGusta.jpg?1696529248",
+    "symbol": "GUSTA",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xe2f98dd7506807ef82d1988aa77c320bc52f8df4": {
+    "assetId": "eip155:1/erc20:0xe2f98dd7506807ef82d1988aa77c320bc52f8df4",
+    "chainId": "eip155:1",
+    "name": "Hold On for Dear Life",
+    "precision": 9,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/32636/thumb/HODL.jpg?1698850454",
+    "symbol": "HODL",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xe304283c3e60cefaf7ea514007cf4e8fdc3d869d": {
+    "assetId": "eip155:1/erc20:0xe304283c3e60cefaf7ea514007cf4e8fdc3d869d",
+    "chainId": "eip155:1",
+    "name": "Gecoin",
+    "precision": 18,
+    "color": "#EED8CD",
+    "icon": "https://assets.coingecko.com/coins/images/25646/thumb/62162f0d583e5a047dc02e7e_gecoin_200x200.png?1696524779",
+    "symbol": "GEC",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xe308a6a13a74fae24f542a6c4c3d6fc2cd8e664a": {
+    "assetId": "eip155:1/erc20:0xe308a6a13a74fae24f542a6c4c3d6fc2cd8e664a",
+    "chainId": "eip155:1",
+    "name": "The Roman Empire",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/32708/thumb/rome.png?1698986439",
+    "symbol": "ROME",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xe33ae4e795114279721047484e5ad5cc7df24fcb": {
+    "assetId": "eip155:1/erc20:0xe33ae4e795114279721047484e5ad5cc7df24fcb",
+    "chainId": "eip155:1",
+    "name": "MCFinance",
+    "precision": 10,
+    "color": "#7447F9",
+    "icon": "https://assets.coingecko.com/coins/images/17608/thumb/arFRQ0b.png?1696517140",
+    "symbol": "MCF",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xe340b25fe32b1011616bb8ec495a4d503e322177": {
+    "assetId": "eip155:1/erc20:0xe340b25fe32b1011616bb8ec495a4d503e322177",
+    "chainId": "eip155:1",
+    "name": "Aave AMM UniDAIUSDC",
+    "precision": 18,
+    "color": "#EDECF3",
+    "icon": "https://assets.coingecko.com/coins/images/17218/thumb/aAmmUniDAIUSDC.png?1696516773",
+    "symbol": "AAMMUNIDAIUSDC",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xe35009059cb55ded065027e9832a2c564aff7512": {
+    "assetId": "eip155:1/erc20:0xe35009059cb55ded065027e9832a2c564aff7512",
+    "chainId": "eip155:1",
+    "name": "SecureChain AI on Ethereum",
+    "precision": 18,
+    "color": "#212121",
+    "icon": "https://assets.coingecko.com/coins/images/31680/thumb/SCAI-icon-3.png?1696530499",
+    "symbol": "SCAI",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xe38149abc673a117abeb8af7d1ff3d0d1aa5af15": {
+    "assetId": "eip155:1/erc20:0xe38149abc673a117abeb8af7d1ff3d0d1aa5af15",
+    "chainId": "eip155:1",
+    "name": "Astrid Restaked cbETH",
+    "precision": 18,
+    "color": "#C3C3C3",
+    "icon": "https://assets.coingecko.com/coins/images/32268/thumb/astridlogo_copy.png?1697166282",
+    "symbol": "RCBETH",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xe3818504c1b32bf1557b16c238b2e01fd3149c17": {
+    "assetId": "eip155:1/erc20:0xe3818504c1b32bf1557b16c238b2e01fd3149c17",
+    "chainId": "eip155:1",
+    "name": "Pillar on Ethereum",
+    "precision": 18,
+    "color": "#040404",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xe3818504c1B32bF1557b16C238B2E01Fd3149C17/logo.png",
+    "symbol": "PLR",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xe387140d52ebb0dd729683dc062aefbc5f7f549a": {
+    "assetId": "eip155:1/erc20:0xe387140d52ebb0dd729683dc062aefbc5f7f549a",
+    "chainId": "eip155:1",
+    "name": "NitroBot",
+    "precision": 18,
+    "color": "#080509",
+    "icon": "https://assets.coingecko.com/coins/images/31035/thumb/LdysiUUX_400x400.jpg?1696529870",
+    "symbol": "NBOT",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xe3944ab788a60ca266f1eec3c26925b95f6370ad": {
+    "assetId": "eip155:1/erc20:0xe3944ab788a60ca266f1eec3c26925b95f6370ad",
+    "chainId": "eip155:1",
+    "name": "Precipitate ai",
+    "precision": 18,
+    "color": "#4A83EC",
+    "icon": "https://assets.coingecko.com/coins/images/32405/thumb/bluedrop_200-removebg-preview.png?1698056874",
+    "symbol": "RAIN",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xe3a46b2bc1d83c731d58cab765d3b45bce789095": {
+    "assetId": "eip155:1/erc20:0xe3a46b2bc1d83c731d58cab765d3b45bce789095",
+    "chainId": "eip155:1",
+    "name": "DAYSTARTER",
+    "precision": 18,
+    "color": "#FC9C04",
+    "icon": "https://assets.coingecko.com/coins/images/28006/thumb/daystarter_logo_200_200.png?1696527023",
+    "symbol": "DST",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xe3c408bd53c31c085a1746af401a4042954ff740": {
+    "assetId": "eip155:1/erc20:0xe3c408bd53c31c085a1746af401a4042954ff740",
+    "chainId": "eip155:1",
+    "name": "STEPN on Ethereum",
+    "precision": 8,
+    "color": "#D9BA69",
+    "icon": "https://assets.coingecko.com/coins/images/23597/thumb/gmt.png?1696522804",
+    "symbol": "GMT",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xe3fedaecd47aa8eab6b23227b0ee56f092c967a9": {
+    "assetId": "eip155:1/erc20:0xe3fedaecd47aa8eab6b23227b0ee56f092c967a9",
+    "chainId": "eip155:1",
+    "name": "Primas",
+    "precision": 18,
+    "color": "#ED6C0F",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xE3feDAeCD47aa8EAb6b23227b0eE56F092C967a9/logo.png",
+    "symbol": "PST",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xe410fbd0977c8a2f276283425de488129f7faff9": {
+    "assetId": "eip155:1/erc20:0xe410fbd0977c8a2f276283425de488129f7faff9",
+    "chainId": "eip155:1",
+    "name": "Sesterce",
+    "precision": 9,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/32327/thumb/Screenshot_2023-10-13_185155-removebg-preview_%281%29.png?1697451481",
+    "symbol": "SES",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xe41d2489571d322189246dafa5ebde1f4699f498": {
+    "assetId": "eip155:1/erc20:0xe41d2489571d322189246dafa5ebde1f4699f498",
+    "chainId": "eip155:1",
+    "name": "0x Protocol on Ethereum",
+    "precision": 18,
+    "color": "#1C1C1C",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xE41d2489571d322189246DaFA5ebDe1F4699F498/logo.png",
+    "symbol": "ZRX",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xe44ac096d96b7918afc0d98cb18d40c5ca5868ab": {
+    "assetId": "eip155:1/erc20:0xe44ac096d96b7918afc0d98cb18d40c5ca5868ab",
+    "chainId": "eip155:1",
+    "name": "Osmo Bot",
+    "precision": 18,
+    "color": "#040404",
+    "icon": "https://assets.coingecko.com/coins/images/31780/thumb/osmo.png?1696530598",
+    "symbol": "OSMO",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xe45dfc26215312edc131e34ea9299fbca53275ca": {
+    "assetId": "eip155:1/erc20:0xe45dfc26215312edc131e34ea9299fbca53275ca",
+    "chainId": "eip155:1",
+    "name": "Relation Native Token",
+    "precision": 18,
+    "color": "#EC649C",
+    "icon": "https://assets.coingecko.com/coins/images/30656/thumb/2.png?1696529526",
+    "symbol": "REL",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xe46091dce9c67691bcf22768bbee0bc9e20d4beb": {
+    "assetId": "eip155:1/erc20:0xe46091dce9c67691bcf22768bbee0bc9e20d4beb",
+    "chainId": "eip155:1",
+    "name": "WSB Classic",
+    "precision": 9,
+    "color": "#67492F",
+    "icon": "https://assets.coingecko.com/coins/images/30165/thumb/photo_2023-05-05_07-44-23.jpg?1696529085",
+    "symbol": "WSBC",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xe477292f1b3268687a29376116b0ed27a9c76170": {
+    "assetId": "eip155:1/erc20:0xe477292f1b3268687a29376116b0ed27a9c76170",
+    "chainId": "eip155:1",
+    "name": "HEROcoin",
+    "precision": 18,
+    "color": "#F3FAF9",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xE477292f1B3268687A29376116B0ED27A9c76170/logo.png",
+    "symbol": "PLAY",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xe47f1cd2a37c6fe69e3501ae45eca263c5a87b2b": {
+    "assetId": "eip155:1/erc20:0xe47f1cd2a37c6fe69e3501ae45eca263c5a87b2b",
+    "chainId": "eip155:1",
+    "name": "Zunami Ether",
+    "precision": 18,
+    "color": "#FCC0BA",
+    "icon": "https://assets.coingecko.com/coins/images/31176/thumb/Brand_symbol_Color.png?1696530004",
+    "symbol": "ZETH",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xe4815ae53b124e7263f08dcdbbb757d41ed658c6": {
+    "assetId": "eip155:1/erc20:0xe4815ae53b124e7263f08dcdbbb757d41ed658c6",
+    "chainId": "eip155:1",
+    "name": "ZKSpace",
+    "precision": 18,
+    "color": "#754216",
+    "icon": "https://assets.coingecko.com/coins/images/13585/thumb/zkslogo640.png?1696513337",
+    "symbol": "ZKS",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xe4a6f23fb9e00fca037aa0ea0a6954de0a6c53bf": {
+    "assetId": "eip155:1/erc20:0xe4a6f23fb9e00fca037aa0ea0a6954de0a6c53bf",
+    "chainId": "eip155:1",
+    "name": "tGOLD on Ethereum",
+    "precision": 18,
+    "color": "#DFC264",
+    "icon": "https://assets.coingecko.com/coins/images/27828/thumb/tGOLD_token_2D.jpg?1696526846",
+    "symbol": "TXAU",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xe4ab0be415e277d82c38625b72bd7dea232c2e7d": {
+    "assetId": "eip155:1/erc20:0xe4ab0be415e277d82c38625b72bd7dea232c2e7d",
+    "chainId": "eip155:1",
+    "name": "XRP20",
+    "precision": 18,
+    "color": "#151F24",
+    "icon": "https://assets.coingecko.com/coins/images/31435/thumb/xrp20_logo_resize.png?1696530250",
+    "symbol": "XRP20",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xe4b91faf8810f8895772e7ca065d4cb889120f94": {
+    "assetId": "eip155:1/erc20:0xe4b91faf8810f8895772e7ca065d4cb889120f94",
+    "chainId": "eip155:1",
+    "name": "Cat in a Box Fee Token",
+    "precision": 18,
+    "color": "#191919",
+    "icon": "https://assets.coingecko.com/coins/images/29928/thumb/boxFEE.png?1696528856",
+    "symbol": "BOXFEE",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xe4cfe9eaa8cdb0942a80b7bc68fd8ab0f6d44903": {
+    "assetId": "eip155:1/erc20:0xe4cfe9eaa8cdb0942a80b7bc68fd8ab0f6d44903",
+    "chainId": "eip155:1",
+    "name": "Xend Finance on Ethereum",
+    "precision": 18,
+    "color": "#F3EAE8",
+    "icon": "https://assets.coingecko.com/coins/images/14496/thumb/WeChat_Image_20210325163206.png?1696514181",
+    "symbol": "XEND",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xe4d0941ad4ff744948704f7532dc00e01f33ed4d": {
+    "assetId": "eip155:1/erc20:0xe4d0941ad4ff744948704f7532dc00e01f33ed4d",
+    "chainId": "eip155:1",
+    "name": "Momo",
+    "precision": 9,
+    "color": "#EFDEC8",
+    "icon": "https://assets.coingecko.com/coins/images/31039/thumb/QmeLzvzLVBt3xzP8maKYoP83zX5WVn5Xg9VtQYtHhcDUAa.png?1696529874",
+    "symbol": "MOMO",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xe4dae00bc1c46ea2f44ae71b1beb8b171c15d812": {
+    "assetId": "eip155:1/erc20:0xe4dae00bc1c46ea2f44ae71b1beb8b171c15d812",
+    "chainId": "eip155:1",
+    "name": "PREMA",
+    "precision": 18,
+    "color": "#E7BCBC",
+    "icon": "https://assets.coingecko.com/coins/images/27600/thumb/prmx.png?1696526631",
+    "symbol": "PRMX",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xe4efdd2eb216a4620cfa55c5cc67bd09dc64ff24": {
+    "assetId": "eip155:1/erc20:0xe4efdd2eb216a4620cfa55c5cc67bd09dc64ff24",
+    "chainId": "eip155:1",
+    "name": " ",
+    "precision": 9,
+    "color": "#F2C94E",
+    "icon": "https://assets.coingecko.com/coins/images/31535/thumb/KB0nEHf__400x400.jpg?1696530344",
+    "symbol": "",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xe50365f5d679cb98a1dd62d6f6e58e59321bcddf": {
+    "assetId": "eip155:1/erc20:0xe50365f5d679cb98a1dd62d6f6e58e59321bcddf",
+    "chainId": "eip155:1",
+    "name": "LA",
+    "precision": 18,
+    "color": "#141C3C",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xE50365f5D679CB98a1dd62D6F6e58e59321BcdDf/logo.png",
+    "symbol": "LA",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xe508364efad1f04572f052d76779d7407dcff3d9": {
+    "assetId": "eip155:1/erc20:0xe508364efad1f04572f052d76779d7407dcff3d9",
+    "chainId": "eip155:1",
+    "name": "Bahamas Network",
+    "precision": 9,
+    "color": "#685346",
+    "icon": "https://assets.coingecko.com/coins/images/31858/thumb/logo_resized.png?1696530671",
+    "symbol": "BN",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xe5097d9baeafb89f9bcb78c9290d545db5f9e9cb": {
+    "assetId": "eip155:1/erc20:0xe5097d9baeafb89f9bcb78c9290d545db5f9e9cb",
+    "chainId": "eip155:1",
+    "name": "Hummingbot on Ethereum",
+    "precision": 18,
+    "color": "#E4E9E6",
+    "icon": "https://assets.coingecko.com/coins/images/21717/thumb/PDPuf0tJ_400x400.jpg?1696521072",
+    "symbol": "HBOT",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xe516d78d784c77d479977be58905b3f2b1111126": {
+    "assetId": "eip155:1/erc20:0xe516d78d784c77d479977be58905b3f2b1111126",
+    "chainId": "eip155:1",
+    "name": "Bitspawn",
+    "precision": 18,
+    "color": "#8088B4",
+    "icon": "https://assets.coingecko.com/coins/images/16513/thumb/token_logo.png?1696516077",
+    "symbol": "SPWN",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xe51b8ab09008285a0380dd2680cd9dd5e13924d3": {
+    "assetId": "eip155:1/erc20:0xe51b8ab09008285a0380dd2680cd9dd5e13924d3",
+    "chainId": "eip155:1",
+    "name": "BallSwap on Ethereum",
+    "precision": 18,
+    "color": "#F08A1D",
+    "icon": "https://assets.coingecko.com/coins/images/14050/thumb/bsp.png?1696513775",
+    "symbol": "BSP",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xe530441f4f73bdb6dc2fa5af7c3fc5fd551ec838": {
+    "assetId": "eip155:1/erc20:0xe530441f4f73bdb6dc2fa5af7c3fc5fd551ec838",
+    "chainId": "eip155:1",
+    "name": "GSENetwork",
+    "precision": 4,
+    "color": "#0C94FB",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xe530441f4f73bDB6DC2fA5aF7c3fC5fD551Ec838/logo.png",
+    "symbol": "GSE",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xe53ec727dbdeb9e2d5456c3be40cff031ab40a55": {
+    "assetId": "eip155:1/erc20:0xe53ec727dbdeb9e2d5456c3be40cff031ab40a55",
+    "chainId": "eip155:1",
+    "name": "SuperVerse on Ethereum",
+    "precision": 18,
+    "color": "#7414FC",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xe53EC727dbDEB9E2d5456c3be40cFF031AB40A55/logo.png",
+    "symbol": "SUPER",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xe5597f0723eeaba1b26948e06f008bf0fc1e37e6": {
+    "assetId": "eip155:1/erc20:0xe5597f0723eeaba1b26948e06f008bf0fc1e37e6",
+    "chainId": "eip155:1",
+    "name": "GM",
+    "precision": 18,
+    "color": "#6E6E6E",
+    "icon": "https://assets.coingecko.com/coins/images/20066/thumb/PQ29R4D.png?1696519484",
+    "symbol": "GM",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xe55d97a97ae6a17706ee281486e98a84095d8aaf": {
+    "assetId": "eip155:1/erc20:0xe55d97a97ae6a17706ee281486e98a84095d8aaf",
+    "chainId": "eip155:1",
+    "name": "AIPad on Ethereum",
+    "precision": 18,
+    "color": "#ABADAD",
+    "icon": "https://assets.coingecko.com/coins/images/28894/thumb/JZadeHu.jpeg?1696527870",
+    "symbol": "AIPAD",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xe57425f1598f9b0d6219706b77f4b3da573a3695": {
+    "assetId": "eip155:1/erc20:0xe57425f1598f9b0d6219706b77f4b3da573a3695",
+    "chainId": "eip155:1",
+    "name": "Bitcoin BR on Ethereum",
+    "precision": 18,
+    "color": "#F0950E",
+    "icon": "https://assets.coingecko.com/coins/images/21205/thumb/btcbr.png?1696520580",
+    "symbol": "BTCBR",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xe580074a10360404af3abfe2d524d5806d993ea3": {
+    "assetId": "eip155:1/erc20:0xe580074a10360404af3abfe2d524d5806d993ea3",
+    "chainId": "eip155:1",
+    "name": "PayBolt on Ethereum",
+    "precision": 18,
+    "color": "#040404",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xe580074A10360404AF3ABfe2d524D5806D993ea3/logo.png",
+    "symbol": "PAY",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xe5867608b51a2c9c78b9587355cc093140a49b0a": {
+    "assetId": "eip155:1/erc20:0xe5867608b51a2c9c78b9587355cc093140a49b0a",
+    "chainId": "eip155:1",
+    "name": "Speed Mining Service",
+    "precision": 3,
+    "color": "#FCF3F0",
+    "icon": "https://assets.coingecko.com/coins/images/1807/thumb/speed-mining-service.png?1548610827",
+    "symbol": "SMS",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xe59d2ff6995a926a574390824a657eed36801e55": {
+    "assetId": "eip155:1/erc20:0xe59d2ff6995a926a574390824a657eed36801e55",
+    "chainId": "eip155:1",
+    "name": "Aave AMM UniAAVEWETH",
+    "precision": 18,
+    "color": "#F1EEF2",
+    "icon": "https://assets.coingecko.com/coins/images/17232/thumb/aAmmUniAAVEWETH.png?1696516786",
+    "symbol": "AAMMUNIAAVEWETH",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xe5a3229ccb22b6484594973a03a3851dcd948756": {
+    "assetId": "eip155:1/erc20:0xe5a3229ccb22b6484594973a03a3851dcd948756",
+    "chainId": "eip155:1",
+    "name": "Receive Access Ecosystem",
+    "precision": 18,
+    "color": "#3C3C54",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xE5a3229CCb22b6484594973A03a3851dCd948756/logo.png",
+    "symbol": "RAE",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xe5a733681bbe6cd8c764bb8078ef8e13a576dd78": {
+    "assetId": "eip155:1/erc20:0xe5a733681bbe6cd8c764bb8078ef8e13a576dd78",
+    "chainId": "eip155:1",
+    "name": "Devour",
+    "precision": 18,
+    "color": "#473277",
+    "icon": "https://assets.coingecko.com/coins/images/27191/thumb/DPAY_-_Icon_%28200_%C3%97_200_px%29.png?1696526240",
+    "symbol": "DPAY",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xe5b826ca2ca02f09c1725e9bd98d9a8874c30532": {
+    "assetId": "eip155:1/erc20:0xe5b826ca2ca02f09c1725e9bd98d9a8874c30532",
+    "chainId": "eip155:1",
+    "name": "ZEON Network",
+    "precision": 18,
+    "color": "#212121",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xE5B826Ca2Ca02F09c1725e9bd98d9a8874C30532/logo.png",
+    "symbol": "ZEON",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xe5ca70281149be03da30778fb5ec6183d339f7a5": {
+    "assetId": "eip155:1/erc20:0xe5ca70281149be03da30778fb5ec6183d339f7a5",
+    "chainId": "eip155:1",
+    "name": "Genius Playboy Billionaire Philanthropi",
+    "precision": 9,
+    "color": "#D9929B",
+    "icon": "https://assets.coingecko.com/coins/images/30827/thumb/photo_2023-06-20_16.17.43_copy.jpeg?1696529681",
+    "symbol": "GPBP",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xe5caef4af8780e59df925470b050fb23c43ca68c": {
+    "assetId": "eip155:1/erc20:0xe5caef4af8780e59df925470b050fb23c43ca68c",
+    "chainId": "eip155:1",
+    "name": "Ferrum Network on Ethereum",
+    "precision": 6,
+    "color": "#D7D6D8",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xE5CAeF4Af8780E59Df925470b050Fb23C43CA68C/logo.png",
+    "symbol": "FRM",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xe5d2e173b120341face9e9970889c9fe64081ffd": {
+    "assetId": "eip155:1/erc20:0xe5d2e173b120341face9e9970889c9fe64081ffd",
+    "chainId": "eip155:1",
+    "name": "Bluejay",
+    "precision": 18,
+    "color": "#9EDBFC",
+    "icon": "https://assets.coingecko.com/coins/images/28085/thumb/Bluejay.png?1696527095",
+    "symbol": "BLU",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xe5ef42d0e5e4aa6b36c613d00db8dad303d505f3": {
+    "assetId": "eip155:1/erc20:0xe5ef42d0e5e4aa6b36c613d00db8dad303d505f3",
+    "chainId": "eip155:1",
+    "name": "BTour Chain",
+    "precision": 18,
+    "color": "#5E4481",
+    "icon": "https://assets.coingecko.com/coins/images/13141/thumb/msot.png?1696512927",
+    "symbol": "MSOT",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xe60779cc1b2c1d0580611c526a8df0e3f870ec48": {
+    "assetId": "eip155:1/erc20:0xe60779cc1b2c1d0580611c526a8df0e3f870ec48",
+    "chainId": "eip155:1",
+    "name": "unshETHing Token on Ethereum",
+    "precision": 18,
+    "color": "#04C6FA",
+    "icon": "https://assets.coingecko.com/coins/images/29337/thumb/unsheth_large_logo.png?1696528287",
+    "symbol": "USH",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xe616adb3f729f6f3df19c876eda66472a308d397": {
+    "assetId": "eip155:1/erc20:0xe616adb3f729f6f3df19c876eda66472a308d397",
+    "chainId": "eip155:1",
+    "name": "ThePepe AI",
+    "precision": 18,
+    "color": "#060606",
+    "icon": "https://assets.coingecko.com/coins/images/29759/thumb/20230411_161618.jpg?1696528691",
+    "symbol": "PPAI",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xe62be16aa3c50bafb1855b4ded7799d9150bb1a1": {
+    "assetId": "eip155:1/erc20:0xe62be16aa3c50bafb1855b4ded7799d9150bb1a1",
+    "chainId": "eip155:1",
+    "name": "Dyl",
+    "precision": 18,
+    "color": "#C4AE64",
+    "icon": "https://assets.coingecko.com/coins/images/32550/thumb/Dyl-pfp-200x.png?1698479973",
+    "symbol": "DYL",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xe632ea2ef2cfd8fc4a2731c76f99078aef6a4b31": {
+    "assetId": "eip155:1/erc20:0xe632ea2ef2cfd8fc4a2731c76f99078aef6a4b31",
+    "chainId": "eip155:1",
+    "name": "THX Network on Ethereum",
+    "precision": 18,
+    "color": "#FAE314",
+    "icon": "https://assets.coingecko.com/coins/images/21323/thumb/logo-thx-resized-200-200.png?1696520690",
+    "symbol": "THX",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xe63684bcf2987892cefb4caa79bd21b34e98a291": {
+    "assetId": "eip155:1/erc20:0xe63684bcf2987892cefb4caa79bd21b34e98a291",
+    "chainId": "eip155:1",
+    "name": "Chicken",
+    "precision": 18,
+    "color": "#E08C27",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xE63684BcF2987892CEfB4caA79BD21b34e98A291/logo.png",
+    "symbol": "KFC",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xe64b47931f28f89cc7a0c6965ecf89eadb4975f5": {
+    "assetId": "eip155:1/erc20:0xe64b47931f28f89cc7a0c6965ecf89eadb4975f5",
+    "chainId": "eip155:1",
+    "name": "Ludos Protocol",
+    "precision": 18,
+    "color": "#EEDCEA",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xe64b47931f28f89Cc7A0C6965Ecf89EaDB4975f5/logo.png",
+    "symbol": "LUD",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xe65cdb6479bac1e22340e4e755fae7e509ecd06c": {
+    "assetId": "eip155:1/erc20:0xe65cdb6479bac1e22340e4e755fae7e509ecd06c",
+    "chainId": "eip155:1",
+    "name": "cAAVE",
+    "precision": 8,
+    "color": "#E6F1F5",
+    "icon": "https://assets.coingecko.com/coins/images/17527/thumb/caave.PNG?1696517065",
+    "symbol": "CAAVE",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xe6602b34d8510b033e000975b3322537c7172441": {
+    "assetId": "eip155:1/erc20:0xe6602b34d8510b033e000975b3322537c7172441",
+    "chainId": "eip155:1",
+    "name": "Frontrow",
+    "precision": 18,
+    "color": "#EC54E5",
+    "icon": "https://assets.coingecko.com/coins/images/21658/thumb/uZsO4yI7_400x400.jpg?1696521016",
+    "symbol": "FRR",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xe66747a101bff2dba3697199dcce5b743b454759": {
+    "assetId": "eip155:1/erc20:0xe66747a101bff2dba3697199dcce5b743b454759",
+    "chainId": "eip155:1",
+    "name": "Gate",
+    "precision": 18,
+    "color": "#CA5454",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xE66747a101bFF2dBA3697199DCcE5b743b454759/logo.png",
+    "symbol": "GT",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xe66b3aa360bb78468c00bebe163630269db3324f": {
+    "assetId": "eip155:1/erc20:0xe66b3aa360bb78468c00bebe163630269db3324f",
+    "chainId": "eip155:1",
+    "name": "Merchant",
+    "precision": 18,
+    "color": "#3876BB",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xE66b3AA360bB78468c00Bebe163630269DB3324F/logo.png",
+    "symbol": "MTO",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xe67f943af5eb6051ef56f05979cc30b732717fa6": {
+    "assetId": "eip155:1/erc20:0xe67f943af5eb6051ef56f05979cc30b732717fa6",
+    "chainId": "eip155:1",
+    "name": "WATTTON",
+    "precision": 4,
+    "color": "#181814",
+    "icon": "https://assets.coingecko.com/coins/images/27215/thumb/CG_WATT_LOGO.png?1696526262",
+    "symbol": "WATT",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xe69d699cbcd79cb1b55f82cf36bf1a2836053562": {
+    "assetId": "eip155:1/erc20:0xe69d699cbcd79cb1b55f82cf36bf1a2836053562",
+    "chainId": "eip155:1",
+    "name": "DropCoin",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/32835/thumb/Frame_5_%2848%29.jpg?1699586509",
+    "symbol": "DROP",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xe6d2c3cb986db66818c14c7032db05d1d2a6ee74": {
+    "assetId": "eip155:1/erc20:0xe6d2c3cb986db66818c14c7032db05d1d2a6ee74",
+    "chainId": "eip155:1",
+    "name": "Finexbox",
+    "precision": 8,
+    "color": "#273E5A",
+    "icon": "https://assets.coingecko.com/coins/images/8419/thumb/p1WP-viw_400x400.jpg?1696508608",
+    "symbol": "FNB",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xe6de3a77b4e71356f4e5e52fd695ead5e5dbcd27": {
+    "color": "#FFFFFF",
+    "icon": "https://raw.githubusercontent.com/Idle-Labs/idle-dashboard/master/public/images/tokens/USDC.svg",
+    "name": "Clearpool USDC Junior Tranche",
+    "precision": 18,
+    "symbol": "BB_idle_cpWINC-USDC",
+    "chainId": "eip155:1",
+    "assetId": "eip155:1/erc20:0xe6de3a77b4e71356f4e5e52fd695ead5e5dbcd27",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xe6f47303032a09c8c0f8ebb713c00e6ed345e8c3": {
+    "assetId": "eip155:1/erc20:0xe6f47303032a09c8c0f8ebb713c00e6ed345e8c3",
+    "chainId": "eip155:1",
+    "name": "Risitas on Ethereum",
+    "precision": 18,
+    "color": "#D68F46",
+    "icon": "https://assets.coingecko.com/coins/images/30333/thumb/200x200.png?1696529234",
+    "symbol": "RISITA",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xe6fd75ff38adca4b97fbcd938c86b98772431867": {
+    "assetId": "eip155:1/erc20:0xe6fd75ff38adca4b97fbcd938c86b98772431867",
+    "chainId": "eip155:1",
+    "name": "Elastos",
+    "precision": 18,
+    "color": "#040404",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xe6fd75ff38Adca4B97FBCD938c86b98772431867/logo.png",
+    "symbol": "ELA",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xe70e1d6a2e971ff6debc21dd2540064c25c9bc0d": {
+    "assetId": "eip155:1/erc20:0xe70e1d6a2e971ff6debc21dd2540064c25c9bc0d",
+    "chainId": "eip155:1",
+    "name": "Spider Spirit",
+    "precision": 18,
+    "color": "#C42C31",
+    "icon": "https://assets.coingecko.com/coins/images/30741/thumb/200x2001.png?1696529611",
+    "symbol": "SPIDER",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xe74be071f3b62f6a4ac23ca68e5e2a39797a3c30": {
+    "assetId": "eip155:1/erc20:0xe74be071f3b62f6a4ac23ca68e5e2a39797a3c30",
+    "chainId": "eip155:1",
+    "name": "Recharge on Ethereum",
+    "precision": 18,
+    "color": "#282828",
+    "icon": "https://assets.coingecko.com/coins/images/18120/thumb/thecharge.PNG?1696517623",
+    "symbol": "RCG",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xe75ad3aab14e4b0df8c5da4286608dabb21bd864": {
+    "assetId": "eip155:1/erc20:0xe75ad3aab14e4b0df8c5da4286608dabb21bd864",
+    "chainId": "eip155:1",
+    "name": "Double A Chain",
+    "precision": 5,
+    "color": "#251E0B",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xe75ad3aAB14E4B0dF8c5da4286608DaBb21Bd864/logo.png",
+    "symbol": "AAC",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xe76c6c83af64e4c60245d8c7de953df673a7a33d": {
+    "assetId": "eip155:1/erc20:0xe76c6c83af64e4c60245d8c7de953df673a7a33d",
+    "chainId": "eip155:1",
+    "name": "Railgun",
+    "precision": 18,
+    "color": "#8D8D8D",
+    "icon": "https://assets.coingecko.com/coins/images/16840/thumb/railgun.jpeg?1696516407",
+    "symbol": "RAIL",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xe77f82f288a6a7eb4ac295a86fccb1f6d240499b": {
+    "assetId": "eip155:1/erc20:0xe77f82f288a6a7eb4ac295a86fccb1f6d240499b",
+    "chainId": "eip155:1",
+    "name": "Plan B DAO",
+    "precision": 18,
+    "color": "#063344",
+    "icon": "https://assets.coingecko.com/coins/images/29663/thumb/planb200x200.png?1696528598",
+    "symbol": "PLANB",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xe785ec36356b973d8c0a071d478940d6f42c0178": {
+    "assetId": "eip155:1/erc20:0xe785ec36356b973d8c0a071d478940d6f42c0178",
+    "chainId": "eip155:1",
+    "name": "Bigfoot Monster",
+    "precision": 8,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/32795/thumb/Safeimagekit-resized-img_%284%29.png?1699445622",
+    "symbol": "BIGF",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xe796d6ca1ceb1b022ece5296226bf784110031cd": {
+    "assetId": "eip155:1/erc20:0xe796d6ca1ceb1b022ece5296226bf784110031cd",
+    "chainId": "eip155:1",
+    "name": "Blind Boxes on Ethereum",
+    "precision": 18,
+    "color": "#090909",
+    "icon": "https://assets.coingecko.com/coins/images/14537/thumb/BLES-Logo-BW.png?1696514221",
+    "symbol": "BLES",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xe7976c4efc60d9f4c200cc1bcef1a1e3b02c73e7": {
+    "assetId": "eip155:1/erc20:0xe7976c4efc60d9f4c200cc1bcef1a1e3b02c73e7",
+    "chainId": "eip155:1",
+    "name": "MAX",
+    "precision": 18,
+    "color": "#394476",
+    "icon": "https://assets.coingecko.com/coins/images/6454/thumb/MAX_Token.jpg?1696506816",
+    "symbol": "MAX",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xe7ac8545e34771de3706598abb3db9a19af2a07f": {
+    "assetId": "eip155:1/erc20:0xe7ac8545e34771de3706598abb3db9a19af2a07f",
+    "chainId": "eip155:1",
+    "name": "MONKED",
+    "precision": 8,
+    "color": "#764314",
+    "icon": "https://assets.coingecko.com/coins/images/30011/thumb/monked200.png?1696528935",
+    "symbol": "MONKED",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xe7ae6d0c56cacaf007b7e4d312f9af686a9e9a04": {
+    "assetId": "eip155:1/erc20:0xe7ae6d0c56cacaf007b7e4d312f9af686a9e9a04",
+    "chainId": "eip155:1",
+    "name": "Vabble on Ethereum",
+    "precision": 18,
+    "color": "#C22BBE",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xe7aE6D0C56CACaf007b7e4d312f9af686a9E9a04/logo.png",
+    "symbol": "VAB",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xe7c8537f92b4feefdc19bd6b4023dfe79400cb30": {
+    "assetId": "eip155:1/erc20:0xe7c8537f92b4feefdc19bd6b4023dfe79400cb30",
+    "chainId": "eip155:1",
+    "name": "Bones",
+    "precision": 18,
+    "color": "#D76448",
+    "icon": "https://assets.coingecko.com/coins/images/32232/thumb/IMG_20231008_075551_623_%281%29.jpg?1696936788",
+    "symbol": "BONES",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xe7eaec9bca79d537539c00c58ae93117fb7280b9": {
+    "assetId": "eip155:1/erc20:0xe7eaec9bca79d537539c00c58ae93117fb7280b9",
+    "chainId": "eip155:1",
+    "name": "Doge Protocol",
+    "precision": 18,
+    "color": "#349BCF",
+    "icon": "https://assets.coingecko.com/coins/images/23689/thumb/LjhKBldd_400x400.png?1696522890",
+    "symbol": "DOGEP",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xe7ef051c6ea1026a70967e8f04da143c67fa4e1f": {
+    "assetId": "eip155:1/erc20:0xe7ef051c6ea1026a70967e8f04da143c67fa4e1f",
+    "chainId": "eip155:1",
+    "name": "VetMe",
+    "precision": 9,
+    "color": "#DCE6F9",
+    "icon": "https://assets.coingecko.com/coins/images/28787/thumb/2.png?1696527765",
+    "symbol": "VETME",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xe7f58a92476056627f9fdb92286778abd83b285f": {
+    "assetId": "eip155:1/erc20:0xe7f58a92476056627f9fdb92286778abd83b285f",
+    "chainId": "eip155:1",
+    "name": "DecentraWeb on Ethereum",
+    "precision": 18,
+    "color": "#4C94F4",
+    "icon": "https://assets.coingecko.com/coins/images/18971/thumb/dweb-logo-transparent.png?1696518425",
+    "symbol": "DWEB",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xe7f72bc0252ca7b16dbb72eeee1afcdb2429f2dd": {
+    "assetId": "eip155:1/erc20:0xe7f72bc0252ca7b16dbb72eeee1afcdb2429f2dd",
+    "chainId": "eip155:1",
+    "name": "NFTLaunch on Ethereum",
+    "precision": 18,
+    "color": "#E1E1E5",
+    "icon": "https://assets.coingecko.com/coins/images/18140/thumb/nftl.PNG?1696517643",
+    "symbol": "NFTL",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xe803178b48a0e560c2b19f3b3d4e504f79d229ce": {
+    "assetId": "eip155:1/erc20:0xe803178b48a0e560c2b19f3b3d4e504f79d229ce",
+    "chainId": "eip155:1",
+    "name": "Bobcoin on Ethereum",
+    "precision": 18,
+    "color": "#AA9266",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xe803178b48A0e560C2b19F3b3d4e504f79D229ce/logo.png",
+    "symbol": "BOBC",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xe80c0cd204d654cebe8dd64a4857cab6be8345a3": {
+    "assetId": "eip155:1/erc20:0xe80c0cd204d654cebe8dd64a4857cab6be8345a3",
+    "chainId": "eip155:1",
+    "name": "JPEG d",
+    "precision": 18,
+    "color": "#C7F6E4",
+    "icon": "https://assets.coingecko.com/coins/images/24025/thumb/et_43CNi_400x400.jpg?1696523217",
+    "symbol": "JPEG",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xe8272210954ea85de6d2ae739806ab593b5d9c51": {
+    "assetId": "eip155:1/erc20:0xe8272210954ea85de6d2ae739806ab593b5d9c51",
+    "chainId": "eip155:1",
+    "name": "Alpha5",
+    "precision": 18,
+    "color": "#7E8C94",
+    "icon": "https://assets.coingecko.com/coins/images/13848/thumb/a5t.jpg?1696513595",
+    "symbol": "A5T",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xe831f96a7a1dce1aa2eb760b1e296c6a74caa9d5": {
+    "assetId": "eip155:1/erc20:0xe831f96a7a1dce1aa2eb760b1e296c6a74caa9d5",
+    "chainId": "eip155:1",
+    "name": "Nexum on Ethereum",
+    "precision": 8,
+    "color": "#04D2D4",
+    "icon": "https://assets.coingecko.com/coins/images/23472/thumb/200_-_200_coinmarketcap.png?1696522683",
+    "symbol": "NEXM",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xe83d5fb2c60b3a2597452e248cf7b2f52a7e731e": {
+    "assetId": "eip155:1/erc20:0xe83d5fb2c60b3a2597452e248cf7b2f52a7e731e",
+    "chainId": "eip155:1",
+    "name": "ARTIC Foundation",
+    "precision": 18,
+    "color": "#1C1C54",
+    "icon": "https://assets.coingecko.com/coins/images/24279/thumb/Artic_logo_02.png?1696523462",
+    "symbol": "ARTIC",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xe8438c23157de97bde8bedd2eeabc8e7e44de18a": {
+    "assetId": "eip155:1/erc20:0xe8438c23157de97bde8bedd2eeabc8e7e44de18a",
+    "chainId": "eip155:1",
+    "name": "Lunatics  ETH ",
+    "precision": 9,
+    "color": "#24231C",
+    "icon": "https://assets.coingecko.com/coins/images/30526/thumb/whvem.png?1696529402",
+    "symbol": "LUNAT",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xe857734840dc188b4283d5af14ab8685467ab87d": {
+    "assetId": "eip155:1/erc20:0xe857734840dc188b4283d5af14ab8685467ab87d",
+    "chainId": "eip155:1",
+    "name": "ESG Chain",
+    "precision": 18,
+    "color": "#2CAC78",
+    "icon": "https://assets.coingecko.com/coins/images/22085/thumb/logo-01.png?1696521428",
+    "symbol": "ESGC",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xe8663a64a96169ff4d95b4299e7ae9a76b905b31": {
+    "assetId": "eip155:1/erc20:0xe8663a64a96169ff4d95b4299e7ae9a76b905b31",
+    "chainId": "eip155:1",
+    "name": "DPRating",
+    "precision": 8,
+    "color": "#6383FC",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xE8663A64A96169ff4d95b4299E7ae9a76b905B31/logo.png",
+    "symbol": "RATING",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xe86df1970055e9caee93dae9b7d5fd71595d0e18": {
+    "assetId": "eip155:1/erc20:0xe86df1970055e9caee93dae9b7d5fd71595d0e18",
+    "chainId": "eip155:1",
+    "name": "Bitcoin20",
+    "precision": 18,
+    "color": "#434343",
+    "icon": "https://assets.coingecko.com/coins/images/31284/thumb/BTC20_logo_%281%29.png?1696530107",
+    "symbol": "BTC20",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xe87e15b9c7d989474cb6d8c56b3db4efad5b21e8": {
+    "assetId": "eip155:1/erc20:0xe87e15b9c7d989474cb6d8c56b3db4efad5b21e8",
+    "chainId": "eip155:1",
+    "name": "HOKK Finance on Ethereum",
+    "precision": 18,
+    "color": "#F2CFA1",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xe87e15B9c7d989474Cb6d8c56b3DB4eFAD5b21E8/logo.png",
+    "symbol": "HOKK",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xe88f8313e61a97cec1871ee37fbbe2a8bf3ed1e4": {
+    "assetId": "eip155:1/erc20:0xe88f8313e61a97cec1871ee37fbbe2a8bf3ed1e4",
+    "chainId": "eip155:1",
+    "name": "Sora Validator",
+    "precision": 18,
+    "color": "#E5C16D",
+    "icon": "https://assets.coingecko.com/coins/images/13299/thumb/val-gold-256.png?1696513070",
+    "symbol": "VAL",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xe89751b31cd4e2eb7006ce168857f72c8e37bceb": {
+    "assetId": "eip155:1/erc20:0xe89751b31cd4e2eb7006ce168857f72c8e37bceb",
+    "chainId": "eip155:1",
+    "name": "Math Coin",
+    "precision": 18,
+    "color": "#87A192",
+    "icon": "https://assets.coingecko.com/coins/images/30734/thumb/A0BC5523-B2CF-4BC2-B55E-576BF45A0AAC.jpeg?1696529604",
+    "symbol": "MATH",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xe8e06a5613dc86d459bc8fb989e173bb8b256072": {
+    "assetId": "eip155:1/erc20:0xe8e06a5613dc86d459bc8fb989e173bb8b256072",
+    "chainId": "eip155:1",
+    "name": "Feyorra",
+    "precision": 18,
+    "color": "#ECECEC",
+    "icon": "https://assets.coingecko.com/coins/images/13689/thumb/1_XiKKk5_400x400.jpg?1696513436",
+    "symbol": "FEY",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xe8e8486228753e01dbc222da262aa706bd67e601": {
+    "assetId": "eip155:1/erc20:0xe8e8486228753e01dbc222da262aa706bd67e601",
+    "chainId": "eip155:1",
+    "name": "Arch Ethereum Web3 on Ethereum",
+    "precision": 18,
+    "color": "#FCC40E",
+    "icon": "https://assets.coingecko.com/coins/images/26562/thumb/WEB3-TOKEN.png?1696525635",
+    "symbol": "WEB3",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xe8ff5c9c75deb346acac493c463c8950be03dfba": {
+    "assetId": "eip155:1/erc20:0xe8ff5c9c75deb346acac493c463c8950be03dfba",
+    "chainId": "eip155:1",
+    "name": "VIBE",
+    "precision": 18,
+    "color": "#171817",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xe8Ff5C9c75dEb346acAc493C463C8950Be03Dfba/logo.png",
+    "symbol": "VIBE",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xe925aa77d51746b865e5c05165a879820cb4b720": {
+    "assetId": "eip155:1/erc20:0xe925aa77d51746b865e5c05165a879820cb4b720",
+    "chainId": "eip155:1",
+    "name": "C Cash",
+    "precision": 18,
+    "color": "#D6DBDD",
+    "icon": "https://assets.coingecko.com/coins/images/31644/thumb/200x.png?1696530460",
+    "symbol": "CCASH",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xe9287543684f440b2f29983a3472987bf7b0ed12": {
+    "assetId": "eip155:1/erc20:0xe9287543684f440b2f29983a3472987bf7b0ed12",
+    "chainId": "eip155:1",
+    "name": "Shiba Nodes",
+    "precision": 18,
+    "color": "#20141F",
+    "icon": "https://assets.coingecko.com/coins/images/28890/thumb/output-onlinepngtools_%281%29.png?1696527866",
+    "symbol": "SHINO",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xe94b97b6b43639e238c851a7e693f50033efd75c": {
+    "assetId": "eip155:1/erc20:0xe94b97b6b43639e238c851a7e693f50033efd75c",
+    "chainId": "eip155:1",
+    "name": "HaloDAO",
+    "precision": 18,
+    "color": "#5946E0",
+    "icon": "https://assets.coingecko.com/coins/images/16754/thumb/RNBW-256x256.png?1696516327",
+    "symbol": "RNBW",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xe9514a6eba63a0bbbe2faea919e773ebe0f527c1": {
+    "assetId": "eip155:1/erc20:0xe9514a6eba63a0bbbe2faea919e773ebe0f527c1",
+    "chainId": "eip155:1",
+    "name": "Kekcoin  ETH ",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/33224/thumb/Kekcoin_BTC.png?1701089230",
+    "symbol": "KEK",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xe95a203b1a91a908f9b9ce46459d101078c2c3cb": {
+    "assetId": "eip155:1/erc20:0xe95a203b1a91a908f9b9ce46459d101078c2c3cb",
+    "chainId": "eip155:1",
+    "name": "Ankr Staked ETH on Ethereum",
+    "precision": 18,
+    "color": "#FBEB1B",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xE95A203B1a91a908F9B9CE46459d101078c2c3cb/logo.png",
+    "symbol": "ANKRETH",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xe973e453977195422b48e1852a207b7ee9c913c7": {
+    "assetId": "eip155:1/erc20:0xe973e453977195422b48e1852a207b7ee9c913c7",
+    "chainId": "eip155:1",
+    "name": "ADreward",
+    "precision": 18,
+    "color": "#04B4F4",
+    "icon": "https://assets.coingecko.com/coins/images/29639/thumb/ADreward_AD_Logo_CoinGecko_200X200_%EB%B6%88%ED%88%AC%EB%AA%85.png?1696528576",
+    "symbol": "AD",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xe97db8503dd3e3eb0286aafc50327c598efdb578": {
+    "assetId": "eip155:1/erc20:0xe97db8503dd3e3eb0286aafc50327c598efdb578",
+    "chainId": "eip155:1",
+    "name": "Jinko AI",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/32633/thumb/Jinko_Logo_BY_Colour.png?1698826087",
+    "symbol": "JINKO",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xe9966c1184f8552fcb16f65addba9dd08fe8f4ea": {
+    "assetId": "eip155:1/erc20:0xe9966c1184f8552fcb16f65addba9dd08fe8f4ea",
+    "chainId": "eip155:1",
+    "name": "MY Ceremonial Event",
+    "precision": 18,
+    "color": "#9D5524",
+    "icon": "https://assets.coingecko.com/coins/images/19182/thumb/BuoVrgpA_400x400.png?1696518630",
+    "symbol": "MYCE",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xe9a95d175a5f4c9369f3b74222402eb1b837693b": {
+    "assetId": "eip155:1/erc20:0xe9a95d175a5f4c9369f3b74222402eb1b837693b",
+    "chainId": "eip155:1",
+    "name": "ChangeNOW",
+    "precision": 8,
+    "color": "#2B2C34",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xE9A95d175a5f4C9369f3b74222402eB1b837693b/logo.png",
+    "symbol": "NOW",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xe9a97b0798b1649045c1d7114f8c432846828404": {
+    "assetId": "eip155:1/erc20:0xe9a97b0798b1649045c1d7114f8c432846828404",
+    "chainId": "eip155:1",
+    "name": "Froge",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/33216/thumb/frog.jpeg?1701087620",
+    "symbol": "FROGE",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xe9b076b476d8865cdf79d1cf7df420ee397a7f75": {
+    "assetId": "eip155:1/erc20:0xe9b076b476d8865cdf79d1cf7df420ee397a7f75",
+    "chainId": "eip155:1",
+    "name": "Unification",
+    "precision": 9,
+    "color": "#8DBEE1",
+    "icon": "https://assets.coingecko.com/coins/images/7845/thumb/DV80FOp.png?1696508079",
+    "symbol": "FUND",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xe9b7b5d5e8d2bcc78884f9f9099bfa42a9e5c1a5": {
+    "assetId": "eip155:1/erc20:0xe9b7b5d5e8d2bcc78884f9f9099bfa42a9e5c1a5",
+    "chainId": "eip155:1",
+    "name": "Zenland on Ethereum",
+    "precision": 18,
+    "color": "#5FA7FC",
+    "icon": "https://assets.coingecko.com/coins/images/29477/thumb/tokenicon200px.png?1696528421",
+    "symbol": "ZENF",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xe9da5e227e3fa4fc933b5f540be021e7ecc3fd81": {
+    "assetId": "eip155:1/erc20:0xe9da5e227e3fa4fc933b5f540be021e7ecc3fd81",
+    "chainId": "eip155:1",
+    "name": "GMFAM",
+    "precision": 18,
+    "color": "#453C2B",
+    "icon": "https://assets.coingecko.com/coins/images/30547/thumb/GMFAM-logo_%282%29.png?1696529419",
+    "symbol": "GMFAM",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xe9f1d62c671efe99896492766c0b416bd3fb9e52": {
+    "assetId": "eip155:1/erc20:0xe9f1d62c671efe99896492766c0b416bd3fb9e52",
+    "chainId": "eip155:1",
+    "name": "XOYCoin",
+    "precision": 8,
+    "color": "#04FC64",
+    "icon": "https://assets.coingecko.com/coins/images/26641/thumb/xoycoin_logo.png?1696525713",
+    "symbol": "XOY",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xe9f721e7419423f11863e83dbd710b5d6127b5b0": {
+    "assetId": "eip155:1/erc20:0xe9f721e7419423f11863e83dbd710b5d6127b5b0",
+    "chainId": "eip155:1",
+    "name": "ePhiat",
+    "precision": 18,
+    "color": "#E63D75",
+    "icon": "https://assets.coingecko.com/coins/images/29737/thumb/ePHIAT_Trust.png?1696528667",
+    "symbol": "EPHIAT",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xe9f84d418b008888a992ff8c6d22389c2c3504e0": {
+    "assetId": "eip155:1/erc20:0xe9f84d418b008888a992ff8c6d22389c2c3504e0",
+    "chainId": "eip155:1",
+    "name": "Maximus BASE",
+    "precision": 8,
+    "color": "#E47537",
+    "icon": "https://assets.coingecko.com/coins/images/27683/thumb/IMG_1131.PNG?1696526711",
+    "symbol": "BASE",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xe9fa21e671bcfb04e6868784b89c19d5aa2424ea": {
+    "assetId": "eip155:1/erc20:0xe9fa21e671bcfb04e6868784b89c19d5aa2424ea",
+    "chainId": "eip155:1",
+    "name": "EurocoinToken",
+    "precision": 18,
+    "color": "#04DC83",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xe9fa21E671BcfB04E6868784b89C19d5aa2424Ea/logo.png",
+    "symbol": "ECTE",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xea01906843ea8d910658a2c485ffce7c104ab2b6": {
+    "assetId": "eip155:1/erc20:0xea01906843ea8d910658a2c485ffce7c104ab2b6",
+    "chainId": "eip155:1",
+    "name": "Qtoken",
+    "precision": 18,
+    "color": "#F8F8F2",
+    "icon": "https://assets.coingecko.com/coins/images/26024/thumb/8QyOrTCm_400x400.jpg?1696525101",
+    "symbol": "QTO",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xea068fba19ce95f12d252ad8cb2939225c4ea02d": {
+    "assetId": "eip155:1/erc20:0xea068fba19ce95f12d252ad8cb2939225c4ea02d",
+    "chainId": "eip155:1",
+    "name": "Fief on Ethereum",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/23710/thumb/61f837d2703b649ab0213d45_Black_logo_-_no_background-p-500.png?1696522910",
+    "symbol": "FIEF",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xea18dc833653172bbe819feb5320d9da9f99799a": {
+    "assetId": "eip155:1/erc20:0xea18dc833653172bbe819feb5320d9da9f99799a",
+    "chainId": "eip155:1",
+    "name": "Dogelon Mars 2 0",
+    "precision": 18,
+    "color": "#342426",
+    "icon": "https://assets.coingecko.com/coins/images/30963/thumb/ABE04427-81C7-4AF2-9308-AE35C661E66E.jpeg?1696529803",
+    "symbol": "ELON20",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xea1ea0972fa092dd463f2968f9bb51cc4c981d71": {
+    "assetId": "eip155:1/erc20:0xea1ea0972fa092dd463f2968f9bb51cc4c981d71",
+    "chainId": "eip155:1",
+    "name": "Modefi on Ethereum",
+    "precision": 18,
+    "color": "#043C84",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xEA1ea0972fa092dd463f2968F9bB51Cc4c981D71/logo.png",
+    "symbol": "MOD",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xea26c4ac16d4a5a106820bc8aee85fd0b7b2b664": {
+    "assetId": "eip155:1/erc20:0xea26c4ac16d4a5a106820bc8aee85fd0b7b2b664",
+    "chainId": "eip155:1",
+    "name": "QuarkChain",
+    "precision": 18,
+    "color": "#297CBA",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xEA26c4aC16D4a5A106820BC8AEE85fd0b7b2b664/logo.png",
+    "symbol": "QKC",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xea38eaa3c86c8f9b751533ba2e562deb9acded40": {
+    "assetId": "eip155:1/erc20:0xea38eaa3c86c8f9b751533ba2e562deb9acded40",
+    "chainId": "eip155:1",
+    "name": "Etherparty",
+    "precision": 18,
+    "color": "#348BCB",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xEA38eAa3C86c8F9B751533Ba2E562deb9acDED40/logo.png",
+    "symbol": "FUEL",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xea3983fc6d0fbbc41fb6f6091f68f3e08894dc06": {
+    "assetId": "eip155:1/erc20:0xea3983fc6d0fbbc41fb6f6091f68f3e08894dc06",
+    "chainId": "eip155:1",
+    "name": "Unido on Ethereum",
+    "precision": 18,
+    "color": "#2C3444",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xea3983Fc6D0fbbC41fb6F6091f68F3e08894dC06/logo.png",
+    "symbol": "UDO",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xea4a2327e75252517535fd013b7c6706609819db": {
+    "assetId": "eip155:1/erc20:0xea4a2327e75252517535fd013b7c6706609819db",
+    "chainId": "eip155:1",
+    "name": "Shibarium Name Service",
+    "precision": 18,
+    "color": "#CDAB65",
+    "icon": "https://assets.coingecko.com/coins/images/29486/thumb/shibarium.jpg?1696528430",
+    "symbol": "SNS",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xea60cd69f2b9fd6eb067bddbbf86a5bdeffbbc55": {
+    "assetId": "eip155:1/erc20:0xea60cd69f2b9fd6eb067bddbbf86a5bdeffbbc55",
+    "chainId": "eip155:1",
+    "name": "Wecan",
+    "precision": 18,
+    "color": "#E4041C",
+    "icon": "https://assets.coingecko.com/coins/images/32150/thumb/Wecan_logo_RGB.png?1696597439",
+    "symbol": "WECAN",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xea7b7dc089c9a4a916b5a7a37617f59fd54e37e4": {
+    "assetId": "eip155:1/erc20:0xea7b7dc089c9a4a916b5a7a37617f59fd54e37e4",
+    "chainId": "eip155:1",
+    "name": "HyperCycle on Ethereum",
+    "precision": 6,
+    "color": "#6CBC54",
+    "icon": "https://assets.coingecko.com/coins/images/29917/thumb/HyperCycle-Logo-2022_icon_copy_%281%29.png?1696528845",
+    "symbol": "HYPC",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xea7cc765ebc94c4805e3bff28d7e4ae48d06468a": {
+    "assetId": "eip155:1/erc20:0xea7cc765ebc94c4805e3bff28d7e4ae48d06468a",
+    "chainId": "eip155:1",
+    "name": "Pad Fi",
+    "precision": 18,
+    "color": "#5A56E7",
+    "icon": "https://assets.coingecko.com/coins/images/18117/thumb/pad.fi.png?1696517620",
+    "symbol": "PAD",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xea81dab2e0ecbc6b5c4172de4c22b6ef6e55bd8f": {
+    "assetId": "eip155:1/erc20:0xea81dab2e0ecbc6b5c4172de4c22b6ef6e55bd8f",
+    "chainId": "eip155:1",
+    "name": "Plebbit",
+    "precision": 18,
+    "color": "#E4E4E4",
+    "icon": "https://assets.coingecko.com/coins/images/31903/thumb/WgMdNjT4_400x400.png?1696530713",
+    "symbol": "PLEB",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xeabb8996ea1662cad2f7fb715127852cd3262ae9": {
+    "assetId": "eip155:1/erc20:0xeabb8996ea1662cad2f7fb715127852cd3262ae9",
+    "chainId": "eip155:1",
+    "name": "Connect Financial on Ethereum",
+    "precision": 18,
+    "color": "#060606",
+    "icon": "https://assets.coingecko.com/coins/images/13592/thumb/cf-logo-iconic-black.png?1696513344",
+    "symbol": "CNFI",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xead482da0793b00bbae0e34c8cfae6daf29a44b2": {
+    "assetId": "eip155:1/erc20:0xead482da0793b00bbae0e34c8cfae6daf29a44b2",
+    "chainId": "eip155:1",
+    "name": "Versailles Heroes",
+    "precision": 18,
+    "color": "#1C3A44",
+    "icon": "https://assets.coingecko.com/coins/images/27860/thumb/VRH___200-200.png?1696526878",
+    "symbol": "VRH",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xeadc218ac4cb7895a5a56e6484646b48f841c45a": {
+    "assetId": "eip155:1/erc20:0xeadc218ac4cb7895a5a56e6484646b48f841c45a",
+    "chainId": "eip155:1",
+    "name": "MetaFinance on Ethereum",
+    "precision": 18,
+    "color": "#9D8861",
+    "icon": "https://assets.coingecko.com/coins/images/17365/thumb/meta.PNG?1696516916",
+    "symbol": "MFI",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xeaf61fc150cd5c3bea75744e830d916e60ea5a9f": {
+    "assetId": "eip155:1/erc20:0xeaf61fc150cd5c3bea75744e830d916e60ea5a9f",
+    "chainId": "eip155:1",
+    "name": "Typerium",
+    "precision": 4,
+    "color": "#04F4F4",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xeaf61FC150CD5c3BeA75744e830D916E60EA5A9F/logo.png",
+    "symbol": "TYPE",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xeb2f5a4e1441df330670dc7b0cf4eac0f7ab5fa5": {
+    "assetId": "eip155:1/erc20:0xeb2f5a4e1441df330670dc7b0cf4eac0f7ab5fa5",
+    "chainId": "eip155:1",
+    "name": "hiFRIENDS",
+    "precision": 18,
+    "color": "#B5CCD3",
+    "icon": "https://assets.coingecko.com/coins/images/29086/thumb/hifriends.png?1696528050",
+    "symbol": "HIFRIENDS",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xeb31ba344310bc4872c6188ff210d7341a301ea9": {
+    "assetId": "eip155:1/erc20:0xeb31ba344310bc4872c6188ff210d7341a301ea9",
+    "chainId": "eip155:1",
+    "name": "GuessOnChain",
+    "precision": 9,
+    "color": "#9A70CC",
+    "icon": "https://assets.coingecko.com/coins/images/32279/thumb/Guess_200px.png?1697180810",
+    "symbol": "GUESS",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xeb4c2781e4eba804ce9a9803c67d0893436bb27d": {
+    "assetId": "eip155:1/erc20:0xeb4c2781e4eba804ce9a9803c67d0893436bb27d",
+    "chainId": "eip155:1",
+    "name": "renBTC on Ethereum",
+    "precision": 8,
+    "color": "#848B8C",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xEB4C2781e4ebA804CE9a9803C67d0893436bB27D/logo.png",
+    "symbol": "RENBTC",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xeb575c45004bd7b61c6a8d3446a62a05a6ce18d8": {
+    "assetId": "eip155:1/erc20:0xeb575c45004bd7b61c6a8d3446a62a05a6ce18d8",
+    "chainId": "eip155:1",
+    "name": "Ethlas",
+    "precision": 18,
+    "color": "#070707",
+    "icon": "https://assets.coingecko.com/coins/images/30331/thumb/ELS_Logo_200x200.png?1696529232",
+    "symbol": "ELS",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xeb953eda0dc65e3246f43dc8fa13f35623bdd5ed": {
+    "assetId": "eip155:1/erc20:0xeb953eda0dc65e3246f43dc8fa13f35623bdd5ed",
+    "chainId": "eip155:1",
+    "name": "Raini on Ethereum",
+    "precision": 18,
+    "color": "#9879E6",
+    "icon": "https://assets.coingecko.com/coins/images/14491/thumb/logo-200x200.png?1696514176",
+    "symbol": "RAINI",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xeb986da994e4a118d5956b02d8b7c3c7ce373674": {
+    "assetId": "eip155:1/erc20:0xeb986da994e4a118d5956b02d8b7c3c7ce373674",
+    "chainId": "eip155:1",
+    "name": "Gather on Ethereum",
+    "precision": 18,
+    "color": "#3C53E3",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xeb986DA994E4a118d5956b02d8b7c3C7CE373674/logo.png",
+    "symbol": "GTH",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xebb4c56dd5490156ae94a96e11903a2d5ff81deb": {
+    "assetId": "eip155:1/erc20:0xebb4c56dd5490156ae94a96e11903a2d5ff81deb",
+    "chainId": "eip155:1",
+    "name": "GMBot",
+    "precision": 9,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/32823/thumb/SD6IB_md_400x400.jpg?1699582313",
+    "symbol": "GMBT",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xebb82c932759b515b2efc1cfbb6bf2f6dbace404": {
+    "assetId": "eip155:1/erc20:0xebb82c932759b515b2efc1cfbb6bf2f6dbace404",
+    "chainId": "eip155:1",
+    "name": "shares finance",
+    "precision": 18,
+    "color": "#594CE4",
+    "icon": "https://assets.coingecko.com/coins/images/31379/thumb/shares.jpeg?1696530196",
+    "symbol": "SHARES",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xebcf2fbe20e7bbbd5232eb186b85c143d362074e": {
+    "assetId": "eip155:1/erc20:0xebcf2fbe20e7bbbd5232eb186b85c143d362074e",
+    "chainId": "eip155:1",
+    "name": "Dream",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/32665/thumb/DREAM_200x200.png?1698902861",
+    "symbol": "DREAM",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xebd9d99a3982d547c5bb4db7e3b1f9f14b67eb83": {
+    "assetId": "eip155:1/erc20:0xebd9d99a3982d547c5bb4db7e3b1f9f14b67eb83",
+    "chainId": "eip155:1",
+    "name": "Everest on Ethereum",
+    "precision": 18,
+    "color": "#4FC4B7",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xEBd9D99A3982d547C5Bb4DB7E3b1F9F14b67Eb83/logo.png",
+    "symbol": "ID",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xebf2096e01455108badcbaf86ce30b6e5a72aa52": {
+    "assetId": "eip155:1/erc20:0xebf2096e01455108badcbaf86ce30b6e5a72aa52",
+    "chainId": "eip155:1",
+    "name": "XIDR on Ethereum",
+    "precision": 6,
+    "color": "#F41414",
+    "icon": "https://assets.coingecko.com/coins/images/21126/thumb/XIDR_Logo_256_X_256.png?1696520505",
+    "symbol": "XIDR",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xec19caef9c046f5f87a497154766742ab9c90820": {
+    "assetId": "eip155:1/erc20:0xec19caef9c046f5f87a497154766742ab9c90820",
+    "chainId": "eip155:1",
+    "name": "Flooring Protocol  Y00ts",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/32780/thumb/y00ts_%281%29.png?1699350631",
+    "symbol": "Y00TS",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xec213f83defb583af3a000b1c0ada660b1902a0f": {
+    "assetId": "eip155:1/erc20:0xec213f83defb583af3a000b1c0ada660b1902a0f",
+    "chainId": "eip155:1",
+    "name": "Presearch",
+    "precision": 18,
+    "color": "#2B8CFC",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xEC213F83defB583af3A000B1c0ada660b1902A0F/logo.png",
+    "symbol": "PRE",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xec363faa5c4dd0e51f3d9b5d0101263760e7cdeb": {
+    "assetId": "eip155:1/erc20:0xec363faa5c4dd0e51f3d9b5d0101263760e7cdeb",
+    "chainId": "eip155:1",
+    "name": "Instadapp WBTC",
+    "precision": 8,
+    "color": "#306CF4",
+    "icon": "https://assets.coingecko.com/coins/images/25784/thumb/iWBTC-100x100.png?1696524871",
+    "symbol": "IWBTC",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xec505c81d6a7567b5bde804870b1038832fe6da1": {
+    "assetId": "eip155:1/erc20:0xec505c81d6a7567b5bde804870b1038832fe6da1",
+    "chainId": "eip155:1",
+    "name": "Coinhound",
+    "precision": 18,
+    "color": "#141414",
+    "icon": "https://assets.coingecko.com/coins/images/30056/thumb/%28200x200%29_Coinhound_Icon.png?1696528977",
+    "symbol": "CND",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xec5483804e637d45cde22fa0869656b64b5ab1ab": {
+    "assetId": "eip155:1/erc20:0xec5483804e637d45cde22fa0869656b64b5ab1ab",
+    "chainId": "eip155:1",
+    "name": "Acent",
+    "precision": 18,
+    "color": "#137DCF",
+    "icon": "https://assets.coingecko.com/coins/images/15211/thumb/acent-logo.png?1696514867",
+    "symbol": "ACE",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xec67005c4e498ec7f55e092bd1d35cbc47c91892": {
+    "assetId": "eip155:1/erc20:0xec67005c4e498ec7f55e092bd1d35cbc47c91892",
+    "chainId": "eip155:1",
+    "name": "Enzyme",
+    "precision": 18,
+    "color": "#040404",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xec67005c4E498Ec7f55E092bd1d35cbC47C91892/logo.png",
+    "symbol": "MLN",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xec681f28f4561c2a9534799aa38e0d36a83cf478": {
+    "assetId": "eip155:1/erc20:0xec681f28f4561c2a9534799aa38e0d36a83cf478",
+    "chainId": "eip155:1",
+    "name": "YVS Finance on Ethereum",
+    "precision": 18,
+    "color": "#EA453D",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xEC681F28f4561c2a9534799AA38E0d36A83Cf478/logo.png",
+    "symbol": "YVS",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xec6d73557937974077911a0b6fdc436b0ff70296": {
+    "assetId": "eip155:1/erc20:0xec6d73557937974077911a0b6fdc436b0ff70296",
+    "chainId": "eip155:1",
+    "name": "Skrimples",
+    "precision": 18,
+    "color": "#D61B0C",
+    "icon": "https://assets.coingecko.com/coins/images/30080/thumb/skrimples_logo200.png?1696529004",
+    "symbol": "SKRIMP",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xec70ff4a5b09110e4d20ada4f2db4a86ec61fac6": {
+    "assetId": "eip155:1/erc20:0xec70ff4a5b09110e4d20ada4f2db4a86ec61fac6",
+    "chainId": "eip155:1",
+    "name": "Grape",
+    "precision": 18,
+    "color": "#FC790E",
+    "icon": "https://assets.coingecko.com/coins/images/31106/thumb/grape_logo-removebg-preview_%281%29.png?1696529937",
+    "symbol": "GRP",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xec9482040e6483b7459cc0db05d51dfa3d3068e1": {
+    "color": "#FFFFFF",
+    "icon": "https://raw.githubusercontent.com/Idle-Labs/idle-dashboard/master/public/images/tokens/DAI.svg",
+    "name": "DAI Junior Best Yield",
+    "precision": 18,
+    "symbol": "idleDAIJunior",
+    "chainId": "eip155:1",
+    "assetId": "eip155:1/erc20:0xec9482040e6483b7459cc0db05d51dfa3d3068e1",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xeca82185adce47f39c684352b0439f030f860318": {
+    "assetId": "eip155:1/erc20:0xeca82185adce47f39c684352b0439f030f860318",
+    "chainId": "eip155:1",
+    "name": "PERL eco on Ethereum",
+    "precision": 18,
+    "color": "#35B1E3",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xeca82185adCE47f39c684352B0439f030f860318/logo.png",
+    "symbol": "PERL",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xecbddf83687e9842837e08c5a650658f2260b376": {
+    "assetId": "eip155:1/erc20:0xecbddf83687e9842837e08c5a650658f2260b376",
+    "chainId": "eip155:1",
+    "name": "Curve Network",
+    "precision": 9,
+    "color": "#56DE92",
+    "icon": "https://assets.coingecko.com/coins/images/29934/thumb/IMG_20230416_170503_492_%281%29.png?1696528862",
+    "symbol": "CURVE",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xecbee2fae67709f718426ddc3bf770b26b95ed20": {
+    "assetId": "eip155:1/erc20:0xecbee2fae67709f718426ddc3bf770b26b95ed20",
+    "chainId": "eip155:1",
+    "name": "Clips",
+    "precision": 18,
+    "color": "#BCB4F2",
+    "icon": "https://assets.coingecko.com/coins/images/30151/thumb/clips-logo.png?1696529071",
+    "symbol": "CLIPS",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xecc0f1f860a82ab3b442382d93853c02d6384389": {
+    "assetId": "eip155:1/erc20:0xecc0f1f860a82ab3b442382d93853c02d6384389",
+    "chainId": "eip155:1",
+    "name": "Axis DeFi",
+    "precision": 18,
+    "color": "#042424",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xecC0F1F860a82aB3b442382D93853C02d6384389/logo.png",
+    "symbol": "AXIS",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xeccf15a4b5976a1365baed5297058b4ca42777c0": {
+    "assetId": "eip155:1/erc20:0xeccf15a4b5976a1365baed5297058b4ca42777c0",
+    "chainId": "eip155:1",
+    "name": "Nosturis",
+    "precision": 18,
+    "color": "#ECE5E7",
+    "icon": "https://assets.coingecko.com/coins/images/9990/thumb/47010860_203643113858754_2966343352238211072_n.jpg?1696510027",
+    "symbol": "NTRS",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xed03ed872159e199065401b6d0d487d78d9464aa": {
+    "assetId": "eip155:1/erc20:0xed03ed872159e199065401b6d0d487d78d9464aa",
+    "chainId": "eip155:1",
+    "name": "Mexican Peso Tether",
+    "precision": 6,
+    "color": "#6CBFB9",
+    "icon": "https://assets.coingecko.com/coins/images/26087/thumb/MXNT_green.jpg?1696525178",
+    "symbol": "MXNT",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xed0439eacf4c4965ae4613d77a5c2efe10e5f183": {
+    "assetId": "eip155:1/erc20:0xed0439eacf4c4965ae4613d77a5c2efe10e5f183",
+    "chainId": "eip155:1",
+    "name": "Niftyx Protocol",
+    "precision": 18,
+    "color": "#A3FB34",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xEd0439EACf4c4965AE4613D77a5C2Efe10e5f183/logo.png",
+    "symbol": "SHROOM",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xed04915c23f00a313a544955524eb7dbd823143d": {
+    "assetId": "eip155:1/erc20:0xed04915c23f00a313a544955524eb7dbd823143d",
+    "chainId": "eip155:1",
+    "name": "Alchemy Pay on Ethereum",
+    "precision": 8,
+    "color": "#ECECEF",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xEd04915c23f00A313a544955524EB7DBD823143d/logo.png",
+    "symbol": "ACH",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xed0889f7e1c7c7267407222be277e1f1ef4d4892": {
+    "assetId": "eip155:1/erc20:0xed0889f7e1c7c7267407222be277e1f1ef4d4892",
+    "chainId": "eip155:1",
+    "name": "MELX",
+    "precision": 18,
+    "color": "#080608",
+    "icon": "https://assets.coingecko.com/coins/images/15028/thumb/melx.jpeg?1696514689",
+    "symbol": "MEL",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xed0d5747a9ab03a75fbfec3228cd55848245b75d": {
+    "assetId": "eip155:1/erc20:0xed0d5747a9ab03a75fbfec3228cd55848245b75d",
+    "chainId": "eip155:1",
+    "name": "e Money",
+    "precision": 6,
+    "color": "#1C5C7C",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xed0d5747A9AB03a75fBfEC3228cd55848245B75d/logo.png",
+    "symbol": "NGM",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xed1167b6dc64e8a366db86f2e952a482d0981ebd": {
+    "assetId": "eip155:1/erc20:0xed1167b6dc64e8a366db86f2e952a482d0981ebd",
+    "chainId": "eip155:1",
+    "name": "Lybra on Ethereum",
+    "precision": 18,
+    "color": "#C79DB1",
+    "icon": "https://assets.coingecko.com/coins/images/29958/thumb/New_LBR_V2.png?1696528884",
+    "symbol": "LBR",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xed1273928ba97eed7b49e82c2f39d512d7591112": {
+    "assetId": "eip155:1/erc20:0xed1273928ba97eed7b49e82c2f39d512d7591112",
+    "chainId": "eip155:1",
+    "name": "NerdBot",
+    "precision": 18,
+    "color": "#2E1812",
+    "icon": "https://assets.coingecko.com/coins/images/32386/thumb/nerdbot.png?1698047412",
+    "symbol": "NERD",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xed1ddc491a2c8b1f7d6e8933580a47e124ea38db": {
+    "assetId": "eip155:1/erc20:0xed1ddc491a2c8b1f7d6e8933580a47e124ea38db",
+    "chainId": "eip155:1",
+    "name": "Intelligence On Chain",
+    "precision": 18,
+    "color": "#0E0E0E",
+    "icon": "https://assets.coingecko.com/coins/images/32418/thumb/IMG_20231017_174915_959.jpg?1698116981",
+    "symbol": "IOC",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xed328e9c1179a30ddc1e7595e036aed8760c22af": {
+    "assetId": "eip155:1/erc20:0xed328e9c1179a30ddc1e7595e036aed8760c22af",
+    "chainId": "eip155:1",
+    "name": "Metacade",
+    "precision": 18,
+    "color": "#1F232B",
+    "icon": "https://assets.coingecko.com/coins/images/29764/thumb/Square_Profile_Photo_1080_x_1080px.png?1699396445",
+    "symbol": "MCADE",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xed354cae598148846aa9694254c854fc7051163c": {
+    "assetId": "eip155:1/erc20:0xed354cae598148846aa9694254c854fc7051163c",
+    "chainId": "eip155:1",
+    "name": "Shido  OLD  on Ethereum",
+    "precision": 18,
+    "color": "#131F2C",
+    "icon": "https://assets.coingecko.com/coins/images/26674/thumb/Shido.png?1696525746",
+    "symbol": "SHIDO",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xed35af169af46a02ee13b9d79eb57d6d68c1749e": {
+    "assetId": "eip155:1/erc20:0xed35af169af46a02ee13b9d79eb57d6d68c1749e",
+    "chainId": "eip155:1",
+    "name": "ECOMI",
+    "precision": 18,
+    "color": "#0C1C34",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xeD35af169aF46a02eE13b9d79Eb57d6D68C1749e/logo.png",
+    "symbol": "OMI",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xed3d4e446a96dc3b181b64b75c3c70da41dc3cbe": {
+    "assetId": "eip155:1/erc20:0xed3d4e446a96dc3b181b64b75c3c70da41dc3cbe",
+    "chainId": "eip155:1",
+    "name": "Vodra",
+    "precision": 18,
+    "color": "#890BCE",
+    "icon": "https://assets.coingecko.com/coins/images/19338/thumb/vdr.png?1696518779",
+    "symbol": "VDR",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xed40834a13129509a89be39a9be9c0e96a0ddd71": {
+    "assetId": "eip155:1/erc20:0xed40834a13129509a89be39a9be9c0e96a0ddd71",
+    "chainId": "eip155:1",
+    "name": "Warp Finance",
+    "precision": 18,
+    "color": "#242424",
+    "icon": "https://assets.coingecko.com/coins/images/13910/thumb/601ed0ac35c687c6e07d17c2_warp_token.png?1696513651",
+    "symbol": "WARP",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xed4e879087ebd0e8a77d66870012b5e0dffd0fa4": {
+    "assetId": "eip155:1/erc20:0xed4e879087ebd0e8a77d66870012b5e0dffd0fa4",
+    "chainId": "eip155:1",
+    "name": "AstroPepeX",
+    "precision": 18,
+    "color": "#472C78",
+    "icon": "https://assets.coingecko.com/coins/images/31839/thumb/cglogo.png?1699223398",
+    "symbol": "APX",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xed66954f85cc9e2eaa85f74df39e1aff9b4ceeba": {
+    "assetId": "eip155:1/erc20:0xed66954f85cc9e2eaa85f74df39e1aff9b4ceeba",
+    "chainId": "eip155:1",
+    "name": "MrsPepe",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/30155/thumb/IMG_20230504_192148_558.jpg?1696529075",
+    "symbol": "MRSPEPE",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xeda43fa2f35ea174a7e9b73658b18a7da00adf38": {
+    "assetId": "eip155:1/erc20:0xeda43fa2f35ea174a7e9b73658b18a7da00adf38",
+    "chainId": "eip155:1",
+    "name": "Namx",
+    "precision": 18,
+    "color": "#1D2232",
+    "icon": "https://assets.coingecko.com/coins/images/32437/thumb/Screenshot_2023-10-18_at_13.20.36.png?1698226504",
+    "symbol": "NAMX",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xeda8b016efa8b1161208cf041cd86972eee0f31e": {
+    "assetId": "eip155:1/erc20:0xeda8b016efa8b1161208cf041cd86972eee0f31e",
+    "chainId": "eip155:1",
+    "name": "IHT Real Estate Protocol",
+    "precision": 18,
+    "color": "#6C9D21",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xEda8B016efA8b1161208Cf041cD86972eeE0F31E/logo.png",
+    "symbol": "IHT",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xedadeb5faa413e6c8623461849dfd0b7c3790c32": {
+    "assetId": "eip155:1/erc20:0xedadeb5faa413e6c8623461849dfd0b7c3790c32",
+    "chainId": "eip155:1",
+    "name": "Obortech on Ethereum",
+    "precision": 18,
+    "color": "#EC1A22",
+    "icon": "https://assets.coingecko.com/coins/images/14929/thumb/OBORTECH_200.png?1696514590",
+    "symbol": "OBOT",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xedae06a2dbdd21038608adce58fd173afdba5add": {
+    "assetId": "eip155:1/erc20:0xedae06a2dbdd21038608adce58fd173afdba5add",
+    "chainId": "eip155:1",
+    "name": "Flooring Protocol  LilPudgys",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/32782/thumb/lp_%281%29.png?1699351240",
+    "symbol": "LP",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xedb171c18ce90b633db442f2a6f72874093b49ef": {
+    "assetId": "eip155:1/erc20:0xedb171c18ce90b633db442f2a6f72874093b49ef",
+    "chainId": "eip155:1",
+    "name": "Wrapped Ampleforth",
+    "precision": 18,
+    "color": "#DBDBDB",
+    "icon": "https://assets.coingecko.com/coins/images/20825/thumb/photo_2021-11-25_02-05-11.jpg?1696520218",
+    "symbol": "WAMPL",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xedbf98724a86f92baefac101082c366e96f1e9d9": {
+    "assetId": "eip155:1/erc20:0xedbf98724a86f92baefac101082c366e96f1e9d9",
+    "chainId": "eip155:1",
+    "name": "BiFinance Exchange",
+    "precision": 18,
+    "color": "#24DC94",
+    "icon": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAIAAAACACAMAAAD04JH5AAADAFBMVEUtN0gm2JL///8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACX+rz2AAABAHRSTlP/////AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAf6K/dgAAQItJREFUeNoBgEB/vwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAgICAgICAgICAgICAgICAgICAgICAQEBAQEBAQEBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgEBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgAAAAAAAAAAAAACAgICAgICAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMAAAAAAAAAAAACAgICAgICAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMAAAAAAAAAAAACAgICAgICAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMAAAAAAAAAAAACAgICAgICAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMAAAAAAAAAAAACAgICAgICAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMAAAAAAAAAAAACAgICAgICAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMAAAAAAAAAAAACAgICAgICAwMDAwMDAwMDAwMDAwMDAwMDAwMDAgICAgICAgEBAQEBAQECAgICAgICAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMBAQEBAQEBAwMDAwMDAwMDAwMDAwICAgICAgIDAwMDAwMDAwMDAwMDAwMAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAgICAgICAgICAgICAgICAgICAgICAQMDAwMDAwMBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwMDAwMDAwMDAwMDAwMDAwMDAwMDAgICAgICAgEBAQEBAQECAgICAgICAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAgICAgICAgICAgICAgICAgICAgICAQMDAwMDAwMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwEBAQEBAQEBAQEBAQEBAwMDAwMDAwAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEDAwMDAwMDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAG6KMLaPWYcuAAAAAElFTkSuQmCC",
+    "symbol": "BFT",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xedc1004886d010751f74ec0ad223819f9f3b1910": {
+    "assetId": "eip155:1/erc20:0xedc1004886d010751f74ec0ad223819f9f3b1910",
+    "chainId": "eip155:1",
+    "name": "AgriNode",
+    "precision": 18,
+    "color": "#342C60",
+    "icon": "https://assets.coingecko.com/coins/images/28727/thumb/IMG_20230110_070430_486_%281%29.png?1696527707",
+    "symbol": "AGN",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xedeec5691f23e4914cf0183a4196bbeb30d027a0": {
+    "assetId": "eip155:1/erc20:0xedeec5691f23e4914cf0183a4196bbeb30d027a0",
+    "chainId": "eip155:1",
+    "name": "Wrapped Statera on Ethereum",
+    "precision": 18,
+    "color": "#9CDCFC",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xeDEec5691f23E4914cF0183A4196bBEb30d027a0/logo.png",
+    "symbol": "WSTA",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xedf6568618a00c6f0908bf7758a16f76b6e04af9": {
+    "assetId": "eip155:1/erc20:0xedf6568618a00c6f0908bf7758a16f76b6e04af9",
+    "chainId": "eip155:1",
+    "name": "Arianee on Ethereum",
+    "precision": 18,
+    "color": "#BC944C",
+    "icon": "https://assets.coingecko.com/coins/images/5054/thumb/Aria_Logo_256.png?1696505581",
+    "symbol": "ARIA20",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xedf978ee4beafbeefd7a0f55faa5a7c6c3cd467d": {
+    "assetId": "eip155:1/erc20:0xedf978ee4beafbeefd7a0f55faa5a7c6c3cd467d",
+    "chainId": "eip155:1",
+    "name": "Flooring Protocol  CoolCats",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/32781/thumb/cool_%281%29.png?1699350874",
+    "symbol": "COOL",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xee06a81a695750e71a662b51066f2c74cf4478a0": {
+    "assetId": "eip155:1/erc20:0xee06a81a695750e71a662b51066f2c74cf4478a0",
+    "chainId": "eip155:1",
+    "name": "Decentral Games  Old  on Ethereum",
+    "precision": 18,
+    "color": "#287FE3",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xEE06A81a695750E71a662B51066F2c74CF4478a0/logo.png",
+    "symbol": "DG",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xee1cea7665ba7aa97e982edeaecb26b59a04d035": {
+    "assetId": "eip155:1/erc20:0xee1cea7665ba7aa97e982edeaecb26b59a04d035",
+    "chainId": "eip155:1",
+    "name": "ORAO Network",
+    "precision": 18,
+    "color": "#282430",
+    "icon": "https://assets.coingecko.com/coins/images/15189/thumb/orao.PNG?1696514846",
+    "symbol": "ORAO",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xee3200f94a1a2345e6cc486032a5df1d50cb621c": {
+    "assetId": "eip155:1/erc20:0xee3200f94a1a2345e6cc486032a5df1d50cb621c",
+    "chainId": "eip155:1",
+    "name": "ChartAI",
+    "precision": 18,
+    "color": "#7E3CFC",
+    "icon": "https://assets.coingecko.com/coins/images/31896/thumb/200.png?1696530707",
+    "symbol": "CX",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xee3c722d177559f73288cec91fa3e4bbfd8c27fc": {
+    "assetId": "eip155:1/erc20:0xee3c722d177559f73288cec91fa3e4bbfd8c27fc",
+    "chainId": "eip155:1",
+    "name": "Douglas Adams",
+    "precision": 9,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/32837/thumb/HHT200.jpg?1699587064",
+    "symbol": "HHGTTG",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xee503d43ad447cdfc719f688207bfcb2fbb9471c": {
+    "assetId": "eip155:1/erc20:0xee503d43ad447cdfc719f688207bfcb2fbb9471c",
+    "chainId": "eip155:1",
+    "name": "Daomatian",
+    "precision": 18,
+    "color": "#FBCCC5",
+    "icon": "https://assets.coingecko.com/coins/images/30784/thumb/3Vwa_H8f_400x400.jpg?1696529651",
+    "symbol": "DAO",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xee573a945b01b788b9287ce062a0cfc15be9fd86": {
+    "assetId": "eip155:1/erc20:0xee573a945b01b788b9287ce062a0cfc15be9fd86",
+    "chainId": "eip155:1",
+    "name": "Exeedme on Ethereum",
+    "precision": 18,
+    "color": "#040404",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xee573a945B01B788B9287CE062A0CFC15bE9fd86/logo.png",
+    "symbol": "XED",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xee772cec929d8430b4fa7a01cd7fbd159a68aa83": {
+    "assetId": "eip155:1/erc20:0xee772cec929d8430b4fa7a01cd7fbd159a68aa83",
+    "chainId": "eip155:1",
+    "name": "Shanghai Inu",
+    "precision": 18,
+    "color": "#D4D9DB",
+    "icon": "https://assets.coingecko.com/coins/images/29881/thumb/IMG_20230418_174523_393-removebg-preview.png?1696528806",
+    "symbol": "SHANG",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xee9801669c6138e84bd50deb500827b776777d28": {
+    "assetId": "eip155:1/erc20:0xee9801669c6138e84bd50deb500827b776777d28",
+    "chainId": "eip155:1",
+    "name": "O3 Swap on Ethereum",
+    "precision": 18,
+    "color": "#D7F0E8",
+    "icon": "https://assets.coingecko.com/coins/images/15460/thumb/o3.png?1696515107",
+    "symbol": "O3",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xee9e5eff401ee921b138490d00ca8d1f13f67a72": {
+    "assetId": "eip155:1/erc20:0xee9e5eff401ee921b138490d00ca8d1f13f67a72",
+    "chainId": "eip155:1",
+    "name": "Asian Fintech on Ethereum",
+    "precision": 8,
+    "color": "#3B4756",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xEe9E5eFF401ee921b138490d00CA8D1F13f67A72/logo.png",
+    "symbol": "AFIN",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xee9e7bb7e55bbc86414047b61d65c9c0d91ffbd0": {
+    "assetId": "eip155:1/erc20:0xee9e7bb7e55bbc86414047b61d65c9c0d91ffbd0",
+    "chainId": "eip155:1",
+    "name": "Fracton Protocol",
+    "precision": 18,
+    "color": "#A9A9A9",
+    "icon": "https://assets.coingecko.com/coins/images/26809/thumb/CtH9UlRl_400x400.jpeg?1696525869",
+    "symbol": "FT",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xeeaa40b28a2d1b0b08f6f97bb1dd4b75316c6107": {
+    "assetId": "eip155:1/erc20:0xeeaa40b28a2d1b0b08f6f97bb1dd4b75316c6107",
+    "chainId": "eip155:1",
+    "name": "CVI on Ethereum",
+    "precision": 18,
+    "color": "#2452A5",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xeEAA40B28A2d1b0B08f6f97bB1DD4B75316c6107/logo.png",
+    "symbol": "GOVI",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xeec2be5c91ae7f8a338e1e5f3b5de49d07afdc81": {
+    "assetId": "eip155:1/erc20:0xeec2be5c91ae7f8a338e1e5f3b5de49d07afdc81",
+    "chainId": "eip155:1",
+    "name": "Dopex on Ethereum",
+    "precision": 18,
+    "color": "#11A8F8",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xEec2bE5c91ae7f8a338e1e5f3b5DE49d07AfdC81/logo.png",
+    "symbol": "DPX",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xeed3ae7b0f8b5b9bb8c035a9941382b1822671cd": {
+    "assetId": "eip155:1/erc20:0xeed3ae7b0f8b5b9bb8c035a9941382b1822671cd",
+    "chainId": "eip155:1",
+    "name": "EveryCoin",
+    "precision": 12,
+    "color": "#0483CB",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xEEd3aE7b0F8b5B9BB8C035A9941382B1822671CD/logo.png",
+    "symbol": "EVY",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xeee0fe52299f2de8e2ed5111cd521ab67dcf0faf": {
+    "assetId": "eip155:1/erc20:0xeee0fe52299f2de8e2ed5111cd521ab67dcf0faf",
+    "chainId": "eip155:1",
+    "name": "The QWAN",
+    "precision": 18,
+    "color": "#18B6BE",
+    "icon": "https://assets.coingecko.com/coins/images/30613/thumb/qwan.jpg?1696529482",
+    "symbol": "QWAN",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xeeee2a622330e6d2036691e983dee87330588603": {
+    "assetId": "eip155:1/erc20:0xeeee2a622330e6d2036691e983dee87330588603",
+    "chainId": "eip155:1",
+    "name": "Asko",
+    "precision": 18,
+    "color": "#2BB0E5",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xeEEE2a622330E6d2036691e983DEe87330588603/logo.png",
+    "symbol": "ASKO",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xeeeeeb57642040be42185f49c52f7e9b38f8eeee": {
+    "assetId": "eip155:1/erc20:0xeeeeeb57642040be42185f49c52f7e9b38f8eeee",
+    "chainId": "eip155:1",
+    "name": "Elk Finance on Ethereum",
+    "precision": 18,
+    "color": "#CDCFCD",
+    "icon": "https://assets.coingecko.com/coins/images/17813/thumb/elk.png?1696517333",
+    "symbol": "ELK",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xeef9f339514298c6a857efcfc1a762af84438dee": {
+    "assetId": "eip155:1/erc20:0xeef9f339514298c6a857efcfc1a762af84438dee",
+    "chainId": "eip155:1",
+    "name": "Hermez Network",
+    "precision": 18,
+    "color": "#E45B2B",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xEEF9f339514298C6A857EfCfC1A762aF84438dEE/logo.png",
+    "symbol": "HEZ",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xef19f4e48830093ce5bc8b3ff7f903a0ae3e9fa1": {
+    "assetId": "eip155:1/erc20:0xef19f4e48830093ce5bc8b3ff7f903a0ae3e9fa1",
+    "chainId": "eip155:1",
+    "name": "BOTXCOIN",
+    "precision": 18,
+    "color": "#F9C40E",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xEF19F4E48830093Ce5bC8b3Ff7f903A0AE3E9Fa1/logo.png",
+    "symbol": "BOTX",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xef3a930e1ffffacd2fc13434ac81bd278b0ecc8d": {
+    "assetId": "eip155:1/erc20:0xef3a930e1ffffacd2fc13434ac81bd278b0ecc8d",
+    "chainId": "eip155:1",
+    "name": "Stafi",
+    "precision": 18,
+    "color": "#232C2D",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xef3A930e1FfFFAcd2fc13434aC81bD278B0ecC8d/logo.png",
+    "symbol": "FIS",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xef53462838000184f35f7d991452e5f25110b207": {
+    "assetId": "eip155:1/erc20:0xef53462838000184f35f7d991452e5f25110b207",
+    "chainId": "eip155:1",
+    "name": "Knit Finance on Ethereum",
+    "precision": 18,
+    "color": "#1C1B54",
+    "icon": "https://assets.coingecko.com/coins/images/15632/thumb/knit.jpg?1696515264",
+    "symbol": "KFT",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xef5eff55f665b66385b6692ebd80680e581d81da": {
+    "assetId": "eip155:1/erc20:0xef5eff55f665b66385b6692ebd80680e581d81da",
+    "chainId": "eip155:1",
+    "name": "Greelance",
+    "precision": 9,
+    "color": "#5FE2C0",
+    "icon": "https://assets.coingecko.com/coins/images/31387/thumb/G-logo.jpg?1696530204",
+    "symbol": "GRL",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xef6344de1fcfc5f48c30234c16c1389e8cdc572c": {
+    "assetId": "eip155:1/erc20:0xef6344de1fcfc5f48c30234c16c1389e8cdc572c",
+    "chainId": "eip155:1",
+    "name": "EncrypGen",
+    "precision": 18,
+    "color": "#6CB941",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xef6344de1fcfC5F48c30234C16c1389e8CdC572C/logo.png",
+    "symbol": "DNA",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xef7c2ab5fafea06f8aee63c866d0be1846c35f68": {
+    "assetId": "eip155:1/erc20:0xef7c2ab5fafea06f8aee63c866d0be1846c35f68",
+    "chainId": "eip155:1",
+    "name": "Apiens",
+    "precision": 18,
+    "color": "#ACACAC",
+    "icon": "https://assets.coingecko.com/coins/images/30421/thumb/apienslg.png?1696529309",
+    "symbol": "APN",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xef89c37fe9e5c906b404cd7edae4a2992b5d25fa": {
+    "assetId": "eip155:1/erc20:0xef89c37fe9e5c906b404cd7edae4a2992b5d25fa",
+    "chainId": "eip155:1",
+    "name": "Time Alliance Guild Time",
+    "precision": 18,
+    "color": "#2F3A4A",
+    "icon": "https://assets.coingecko.com/coins/images/32423/thumb/fav.png?1698118383",
+    "symbol": "TIME",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xef8e456967122db4c3c160314bde8d2602ad6199": {
+    "assetId": "eip155:1/erc20:0xef8e456967122db4c3c160314bde8d2602ad6199",
+    "chainId": "eip155:1",
+    "name": "Wagmi Coin",
+    "precision": 9,
+    "color": "#15F115",
+    "icon": "https://assets.coingecko.com/coins/images/30477/thumb/W.png?1696529363",
+    "symbol": "WAGMI",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xef952363c1d990a2fa58f8b379a9fa33bad1dfd1": {
+    "assetId": "eip155:1/erc20:0xef952363c1d990a2fa58f8b379a9fa33bad1dfd1",
+    "chainId": "eip155:1",
+    "name": "LynKey",
+    "precision": 8,
+    "color": "#DBC0F4",
+    "icon": "https://assets.coingecko.com/coins/images/25069/thumb/oOcTsBsg_400x400_%281%29.jpg?1696524217",
+    "symbol": "LYNK",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xefab7248d36585e2340e5d25f8a8d243e6e3193f": {
+    "assetId": "eip155:1/erc20:0xefab7248d36585e2340e5d25f8a8d243e6e3193f",
+    "chainId": "eip155:1",
+    "name": "Dacxi",
+    "precision": 18,
+    "color": "#04A4E3",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xEfaB7248D36585e2340E5d25F8a8D243E6e3193F/logo.png",
+    "symbol": "DACXI",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xefd113cea2f656fe7899a25a06243a6e40406e08": {
+    "assetId": "eip155:1/erc20:0xefd113cea2f656fe7899a25a06243a6e40406e08",
+    "chainId": "eip155:1",
+    "name": "THE9",
+    "precision": 18,
+    "color": "#E2E5E6",
+    "icon": "https://assets.coingecko.com/coins/images/29357/thumb/THE9_logo.png?1696528305",
+    "symbol": "THE9",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xf0068a3657526bc7f824b55575714ebffe9ca67e": {
+    "assetId": "eip155:1/erc20:0xf0068a3657526bc7f824b55575714ebffe9ca67e",
+    "chainId": "eip155:1",
+    "name": "PandaGrown on Ethereum",
+    "precision": 18,
+    "color": "#DAEEE2",
+    "icon": "https://assets.coingecko.com/coins/images/31836/thumb/PGA.png?1696530650",
+    "symbol": "PGA",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xf009f5531de69067435e32c4b9d36077f4c4a673": {
+    "assetId": "eip155:1/erc20:0xf009f5531de69067435e32c4b9d36077f4c4a673",
+    "chainId": "eip155:1",
+    "name": "Unvest on Ethereum",
+    "precision": 18,
+    "color": "#D1D4C5",
+    "icon": "https://assets.coingecko.com/coins/images/18119/thumb/UNV.jpg?1696517622",
+    "symbol": "UNV",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xf017d3690346eb8234b85f74cee5e15821fee1f4": {
+    "assetId": "eip155:1/erc20:0xf017d3690346eb8234b85f74cee5e15821fee1f4",
+    "chainId": "eip155:1",
+    "name": "GEKKO",
+    "precision": 18,
+    "color": "#21252D",
+    "icon": "https://assets.coingecko.com/coins/images/32439/thumb/gekko_%281%29.png?1698228341",
+    "symbol": "GEKKO",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xf028adee51533b1b47beaa890feb54a457f51e89": {
+    "assetId": "eip155:1/erc20:0xf028adee51533b1b47beaa890feb54a457f51e89",
+    "chainId": "eip155:1",
+    "name": "BMCHAIN",
+    "precision": 18,
+    "color": "#B7B7B7",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xf028ADEe51533b1B47BEaa890fEb54a457f51E89/logo.png",
+    "symbol": "BMT",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xf029fd6b5ed35c825dd02b7a02952c30002840e4": {
+    "assetId": "eip155:1/erc20:0xf029fd6b5ed35c825dd02b7a02952c30002840e4",
+    "chainId": "eip155:1",
+    "name": "Sigil Finance",
+    "precision": 18,
+    "color": "#191819",
+    "icon": "https://assets.coingecko.com/coins/images/29266/thumb/sigil.png?1696528219",
+    "symbol": "SIGIL",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xf03a7eb46d01d9ecaa104558c732cf82f6b6b645": {
+    "assetId": "eip155:1/erc20:0xf03a7eb46d01d9ecaa104558c732cf82f6b6b645",
+    "chainId": "eip155:1",
+    "name": "Stader MaticX on Ethereum",
+    "precision": 18,
+    "color": "#7332DF",
+    "icon": "https://assets.coingecko.com/coins/images/25383/thumb/maticx.png?1696524516",
+    "symbol": "MATICX",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xf03d5fc6e08de6ad886fca34abf9a59ef633b78a": {
+    "assetId": "eip155:1/erc20:0xf03d5fc6e08de6ad886fca34abf9a59ef633b78a",
+    "chainId": "eip155:1",
+    "name": "Capybara Token",
+    "precision": 18,
+    "color": "#759CE1",
+    "icon": "https://assets.coingecko.com/coins/images/30223/thumb/capylogo.png?1696529133",
+    "symbol": "CAPY",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xf043809056ac2492c4aae6317705f751082c0db1": {
+    "assetId": "eip155:1/erc20:0xf043809056ac2492c4aae6317705f751082c0db1",
+    "chainId": "eip155:1",
+    "name": "ELONGATE",
+    "precision": 18,
+    "color": "#C9CACD",
+    "icon": "https://assets.coingecko.com/coins/images/32236/thumb/ElonGate.png?1696937153",
+    "symbol": "ELONGATE",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xf04af3f4e4929f7cd25a751e6149a3318373d4fe": {
+    "assetId": "eip155:1/erc20:0xf04af3f4e4929f7cd25a751e6149a3318373d4fe",
+    "chainId": "eip155:1",
+    "name": "Spring Token",
+    "precision": 18,
+    "color": "#ACBC4C",
+    "icon": "https://assets.coingecko.com/coins/images/25364/thumb/spring.png?1696524497",
+    "symbol": "SPRING",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xf058501585023d040ea9493134ed72c083553eed": {
+    "assetId": "eip155:1/erc20:0xf058501585023d040ea9493134ed72c083553eed",
+    "chainId": "eip155:1",
+    "name": "Dymmax",
+    "precision": 18,
+    "color": "#749CF4",
+    "icon": "https://assets.coingecko.com/coins/images/13476/thumb/dmmx.png?1696513237",
+    "symbol": "DMX",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xf05897cfe3ce9bbbfe0751cbe6b1b2c686848dcb": {
+    "assetId": "eip155:1/erc20:0xf05897cfe3ce9bbbfe0751cbe6b1b2c686848dcb",
+    "chainId": "eip155:1",
+    "name": "CateCoin on Ethereum",
+    "precision": 9,
+    "color": "#D7891C",
+    "icon": "https://assets.coingecko.com/coins/images/15364/thumb/logo.png?1696515013",
+    "symbol": "CATE",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xf0610eb7d8ee12d59412da32625d5e273e78ff0b": {
+    "assetId": "eip155:1/erc20:0xf0610eb7d8ee12d59412da32625d5e273e78ff0b",
+    "chainId": "eip155:1",
+    "name": "MasterDEX",
+    "precision": 18,
+    "color": "#040404",
+    "icon": "https://assets.coingecko.com/coins/images/32311/thumb/MASTERDEX_logo-02_%282%29.png?1697188983",
+    "symbol": "MDEX",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xf063fe1ab7a291c5d06a86e14730b00bf24cb589": {
+    "assetId": "eip155:1/erc20:0xf063fe1ab7a291c5d06a86e14730b00bf24cb589",
+    "chainId": "eip155:1",
+    "name": "DxSale Network on Ethereum",
+    "precision": 18,
+    "color": "#E0E0E0",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xF063fE1aB7a291c5d06a86e14730b00BF24cB589/logo.png",
+    "symbol": "SALE",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xf0655dcee37e5c0b70fffd70d85f88f8edf0aff6": {
+    "assetId": "eip155:1/erc20:0xf0655dcee37e5c0b70fffd70d85f88f8edf0aff6",
+    "chainId": "eip155:1",
+    "name": "UniDex on Ethereum",
+    "precision": 18,
+    "color": "#E7EBF7",
+    "icon": "https://assets.coingecko.com/coins/images/13178/thumb/unidx.png?1696512961",
+    "symbol": "UNIDX",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xf07ebf00aa847bbb0057b92cb469747e2c7c8a4f": {
+    "assetId": "eip155:1/erc20:0xf07ebf00aa847bbb0057b92cb469747e2c7c8a4f",
+    "chainId": "eip155:1",
+    "name": "Echoes",
+    "precision": 18,
+    "color": "#787BA1",
+    "icon": "https://assets.coingecko.com/coins/images/30994/thumb/logosmallcircle.png?1696529832",
+    "symbol": "ECHOES",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xf0939011a9bb95c3b791f0cb546377ed2693a574": {
+    "assetId": "eip155:1/erc20:0xf0939011a9bb95c3b791f0cb546377ed2693a574",
+    "chainId": "eip155:1",
+    "name": "0 exchange on Ethereum",
+    "precision": 18,
+    "color": "#181F2D",
+    "icon": "https://assets.coingecko.com/coins/images/13706/thumb/0.exchange_%28logo%29.jpg?1696513452",
+    "symbol": "ZERO",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xf0a163a26601d9dc8aef26b388eadb7b1c620d24": {
+    "assetId": "eip155:1/erc20:0xf0a163a26601d9dc8aef26b388eadb7b1c620d24",
+    "chainId": "eip155:1",
+    "name": "Tickr",
+    "precision": 9,
+    "color": "#18221C",
+    "icon": "https://assets.coingecko.com/coins/images/28835/thumb/logo-t.png?1696527811",
+    "symbol": "TICKR",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xf0acf8949e705e0ebb6cb42c2164b0b986454223": {
+    "assetId": "eip155:1/erc20:0xf0acf8949e705e0ebb6cb42c2164b0b986454223",
+    "chainId": "eip155:1",
+    "name": "Barter on Ethereum",
+    "precision": 8,
+    "color": "#EFCA7F",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xF0ACF8949e705E0ebb6CB42c2164B0B986454223/logo.png",
+    "symbol": "BRTR",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xf0c177229ae1cd41bf48df6241fae3e6a14a6967": {
+    "color": "#FFFFFF",
+    "icon": "https://raw.githubusercontent.com/Idle-Labs/idle-dashboard/master/public/images/tokens/USDT.svg",
+    "name": "MorphoAave USDT Junior Tranche",
+    "precision": 18,
+    "symbol": "BB_maUSDT",
+    "chainId": "eip155:1",
+    "assetId": "eip155:1/erc20:0xf0c177229ae1cd41bf48df6241fae3e6a14a6967",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xf0c5831ec3da15f3696b4dad8b21c7ce2f007f28": {
+    "assetId": "eip155:1/erc20:0xf0c5831ec3da15f3696b4dad8b21c7ce2f007f28",
+    "chainId": "eip155:1",
+    "name": "AXIS",
+    "precision": 8,
+    "color": "#D5DCE6",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xF0c5831EC3Da15f3696B4DAd8B21c7Ce2f007f28/logo.png",
+    "symbol": "AXIS",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xf0d33beda4d734c72684b5f9abbebf715d0a7935": {
+    "assetId": "eip155:1/erc20:0xf0d33beda4d734c72684b5f9abbebf715d0a7935",
+    "chainId": "eip155:1",
+    "name": "NuNet on Ethereum",
+    "precision": 6,
+    "color": "#1E799A",
+    "icon": "https://assets.coingecko.com/coins/images/20950/thumb/8Zb2W2Wi_400x400.png?1696520338",
+    "symbol": "NTX",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xf0dc9fc0669f068e04ad79f7d70618d3f9aad439": {
+    "assetId": "eip155:1/erc20:0xf0dc9fc0669f068e04ad79f7d70618d3f9aad439",
+    "chainId": "eip155:1",
+    "name": "Oasis Metaverse",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/32703/thumb/oasis_200x200_loogo.png?1698985354",
+    "symbol": "OASIS",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xf0edac27aa3e85e2d176f689b0025f90c154393a": {
+    "assetId": "eip155:1/erc20:0xf0edac27aa3e85e2d176f689b0025f90c154393a",
+    "chainId": "eip155:1",
+    "name": "I LOVE SNOOPY",
+    "precision": 18,
+    "color": "#A21A22",
+    "icon": "https://assets.coingecko.com/coins/images/30340/thumb/dAlRqD6r_400x400.jpg?1696529240",
+    "symbol": "LOVESNOOPY",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xf0ee6b27b759c9893ce4f094b49ad28fd15a23e4": {
+    "assetId": "eip155:1/erc20:0xf0ee6b27b759c9893ce4f094b49ad28fd15a23e4",
+    "chainId": "eip155:1",
+    "name": "Enigma",
+    "precision": 8,
+    "color": "#210545",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xf0Ee6b27b759C9893Ce4f094b49ad28fd15A23e4/logo.png",
+    "symbol": "ENG",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xf0f67ddb45c90946d717f2225910cb940c28afae": {
+    "assetId": "eip155:1/erc20:0xf0f67ddb45c90946d717f2225910cb940c28afae",
+    "chainId": "eip155:1",
+    "name": "Memes Casino",
+    "precision": 18,
+    "color": "#080605",
+    "icon": "https://assets.coingecko.com/coins/images/32398/thumb/F80JpRIaoAA0ug6-min.png?1698054612",
+    "symbol": "MEMES",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xf0f9d895aca5c8678f706fb8216fa22957685a13": {
+    "assetId": "eip155:1/erc20:0xf0f9d895aca5c8678f706fb8216fa22957685a13",
+    "chainId": "eip155:1",
+    "name": "Cult DAO",
+    "precision": 18,
+    "color": "#DCDCDC",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xf0f9D895aCa5c8678f706FB8216fa22957685A13/logo.png",
+    "symbol": "CULT",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xf1102d6d2a531124fa043d18a06c394a81aaa866": {
+    "assetId": "eip155:1/erc20:0xf1102d6d2a531124fa043d18a06c394a81aaa866",
+    "chainId": "eip155:1",
+    "name": "Shiba Inu Classic",
+    "precision": 18,
+    "color": "#DCD4C9",
+    "icon": "https://assets.coingecko.com/coins/images/31941/thumb/Shiba_Inu_Classic.png?1696530748",
+    "symbol": "SHIBC",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xf124ed9ec309907808b1fbc6bedb2a76927b3665": {
+    "assetId": "eip155:1/erc20:0xf124ed9ec309907808b1fbc6bedb2a76927b3665",
+    "chainId": "eip155:1",
+    "name": "Empire Network on Ethereum",
+    "precision": 18,
+    "color": "#2F4555",
+    "icon": "https://assets.coingecko.com/coins/images/29240/thumb/empire.jpeg?1696528197",
+    "symbol": "EMPIRE",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xf1264873436a0771e440e2b28072fafcc5eebd01": {
+    "assetId": "eip155:1/erc20:0xf1264873436a0771e440e2b28072fafcc5eebd01",
+    "chainId": "eip155:1",
+    "name": "Kenshi on Ethereum",
+    "precision": 18,
+    "color": "#1562F6",
+    "icon": "https://assets.coingecko.com/coins/images/30759/thumb/kenshi.jpg?1696529628",
+    "symbol": "KNS",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xf1290473e210b2108a85237fbcd7b6eb42cc654f": {
+    "assetId": "eip155:1/erc20:0xf1290473e210b2108a85237fbcd7b6eb42cc654f",
+    "chainId": "eip155:1",
+    "name": "HedgeTrade",
+    "precision": 18,
+    "color": "#3DC795",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xF1290473E210b2108A85237fbCd7b6eb42Cc654F/logo.png",
+    "symbol": "HEDG",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xf134519cbe2042b06ee7ce20df51d09b55559896": {
+    "assetId": "eip155:1/erc20:0xf134519cbe2042b06ee7ce20df51d09b55559896",
+    "chainId": "eip155:1",
+    "name": "Mochi",
+    "precision": 18,
+    "color": "#D8C6E6",
+    "icon": "https://assets.coingecko.com/coins/images/28981/thumb/mochi-logo.png?1696527954",
+    "symbol": "MOCHI",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xf1376bcef0f78459c0ed0ba5ddce976f1ddf51f4": {
+    "assetId": "eip155:1/erc20:0xf1376bcef0f78459c0ed0ba5ddce976f1ddf51f4",
+    "chainId": "eip155:1",
+    "name": "Universal ETH",
+    "precision": 18,
+    "color": "#B5D5FC",
+    "icon": "https://assets.coingecko.com/coins/images/28477/thumb/uniETH_200.png?1696527471",
+    "symbol": "UNIETH",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xf16e81dce15b08f326220742020379b855b87df9": {
+    "assetId": "eip155:1/erc20:0xf16e81dce15b08f326220742020379b855b87df9",
+    "chainId": "eip155:1",
+    "name": "Popsicle Finance on Ethereum",
+    "precision": 18,
+    "color": "#3BDBFB",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xf16e81dce15B08F326220742020379B855B87DF9/logo.png",
+    "symbol": "ICE",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xf17a3fe536f8f7847f1385ec1bc967b2ca9cae8d": {
+    "assetId": "eip155:1/erc20:0xf17a3fe536f8f7847f1385ec1bc967b2ca9cae8d",
+    "chainId": "eip155:1",
+    "name": "Alongside Crypto Market Index on Ethereum",
+    "precision": 18,
+    "color": "#EEEEEE",
+    "icon": "https://assets.coingecko.com/coins/images/28496/thumb/22999.png?1696527488",
+    "symbol": "AMKT",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xf17e65822b568b3903685a7c9f496cf7656cc6c2": {
+    "assetId": "eip155:1/erc20:0xf17e65822b568b3903685a7c9f496cf7656cc6c2",
+    "chainId": "eip155:1",
+    "name": "Biconomy on Ethereum",
+    "precision": 18,
+    "color": "#FADAC8",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xF17e65822b568B3903685a7c9F496CF7656Cc6C2/logo.png",
+    "symbol": "BICO",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xf190dbd849e372ff824e631a1fdf199f38358bcf": {
+    "assetId": "eip155:1/erc20:0xf190dbd849e372ff824e631a1fdf199f38358bcf",
+    "chainId": "eip155:1",
+    "name": "Capybara Memecoin",
+    "precision": 18,
+    "color": "#245D3A",
+    "icon": "https://assets.coingecko.com/coins/images/30399/thumb/Capy_logo.png?1696529289",
+    "symbol": "BARA",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xf19308f923582a6f7c465e5ce7a9dc1bec6665b1": {
+    "assetId": "eip155:1/erc20:0xf19308f923582a6f7c465e5ce7a9dc1bec6665b1",
+    "chainId": "eip155:1",
+    "name": "TitanX",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAIAAAACACAMAAAD04JH5AAADAFBMVEUtN0iaJtj///8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHinPOAAABAHRSTlP/////AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAf6K/dgAAQItJREFUeNoBgEB/vwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgEBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgEBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgAAAAAAAAAAAAACAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMAAAAAAAAAAAACAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMAAAAAAAAAAAACAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMAAAAAAAAAAAACAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMAAAAAAAAAAAACAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMAAAAAAAAAAAACAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMAAAAAAAAAAAAAAwMDAwMDAwMDAwMDAwICAgICAgIDAwMDAwMDAwMDAwMDAwMBAQEBAQEBAwMDAwMDAwMDAwMDAwICAgICAgIDAwMDAwMDAwMDAwMDAwMBAQEBAQEBAwMDAwMDAwMDAwMDAwICAgICAgIDAwMDAwMDAwMDAwMDAwMAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgIDAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAICAgICAgIDAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgIDAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAICAgICAgIDAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgIDAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAICAgICAgIDAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgIDAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAICAgICAgIDAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgIDAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAICAgICAgIDAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgIDAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAICAgICAgIDAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgIDAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAICAgICAgIDAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgIDAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAICAgICAgIDAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgIDAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAICAgICAgIDAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgIDAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAICAgICAgIDAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgIDAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAICAgICAgIDAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgIDAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAICAgICAgIDAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgIDAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAICAgICAgIDAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgIDAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAICAgICAgIDAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgIDAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAICAgICAgIDAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgIDAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAICAgICAgIDAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgIDAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAICAgICAgIDAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgIDAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAICAgICAgIDAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgIDAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAICAgICAgIDAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgIDAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAICAgICAgIDAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgIDAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAICAgICAgIDAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgIDAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAICAgICAgIDAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgIDAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAICAgICAgIDAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgIDAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAICAgICAgIDAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgIDAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAICAgICAgIDAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgIDAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAICAgICAgIDAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgIDAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAICAgICAgIDAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgIDAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAICAgICAgIDAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgIDAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAICAgICAgIDAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgIDAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAICAgICAgIDAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgIDAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAICAgICAgIDAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgIDAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAICAgICAgIDAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgIDAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAICAgICAgIDAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgIDAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAICAgICAgIDAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgIDAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgEBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgIDAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgIDAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgIDAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgIDAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgIDAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgIDAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEDAwMDAwMDAQEBAQEBAQEBAQEBAQEBAQEBAQEBAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMBAQEBAQEBAQEBAQEBAQEBAQEBAQEDAwMDAwMDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMFtLoJeDxv2AAAAAElFTkSuQmCC",
+    "symbol": "TITANX",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xf1b4cb8ab3146edd856ed696c199a9a647178854": {
+    "assetId": "eip155:1/erc20:0xf1b4cb8ab3146edd856ed696c199a9a647178854",
+    "chainId": "eip155:1",
+    "name": "Spider Cat",
+    "precision": 8,
+    "color": "#BE7E75",
+    "icon": "https://assets.coingecko.com/coins/images/31861/thumb/Spider-Cat_%284%29.jpg?1696530674",
+    "symbol": "SPIDERCAT",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xf1b99e3e573a1a9c5e6b2ce818b617f0e664e86b": {
+    "assetId": "eip155:1/erc20:0xf1b99e3e573a1a9c5e6b2ce818b617f0e664e86b",
+    "chainId": "eip155:1",
+    "name": "Opyn Squeeth",
+    "precision": 18,
+    "color": "#649F98",
+    "icon": "https://assets.coingecko.com/coins/images/22806/thumb/DyVT5XPV_400x400.jpg?1696522108",
+    "symbol": "OSQTH",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xf1c9acdc66974dfb6decb12aa385b9cd01190e38": {
+    "assetId": "eip155:1/erc20:0xf1c9acdc66974dfb6decb12aa385b9cd01190e38",
+    "chainId": "eip155:1",
+    "name": "StakeWise v3 osETH",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/33117/thumb/Frame_27513839.png?1700732599",
+    "symbol": "OSETH",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xf1ca9cb74685755965c7458528a36934df52a3ef": {
+    "assetId": "eip155:1/erc20:0xf1ca9cb74685755965c7458528a36934df52a3ef",
+    "chainId": "eip155:1",
+    "name": "AVINOC",
+    "precision": 18,
+    "color": "#1C1C44",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xF1cA9cb74685755965c7458528A36934Df52A3EF/logo.png",
+    "symbol": "AVINOC",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xf1d1a5306daae314af6c5d027a492b313e07e1a0": {
+    "assetId": "eip155:1/erc20:0xf1d1a5306daae314af6c5d027a492b313e07e1a0",
+    "chainId": "eip155:1",
+    "name": "Envoy on Ethereum",
+    "precision": 18,
+    "color": "#E4B8F0",
+    "icon": "https://assets.coingecko.com/coins/images/19631/thumb/env.png?1696519059",
+    "symbol": "ENV",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xf1dc500fde233a4055e25e5bbf516372bc4f6871": {
+    "assetId": "eip155:1/erc20:0xf1dc500fde233a4055e25e5bbf516372bc4f6871",
+    "chainId": "eip155:1",
+    "name": "Saddle Finance on Ethereum",
+    "precision": 18,
+    "color": "#F9F8EC",
+    "icon": "https://assets.coingecko.com/coins/images/20476/thumb/SDL_token.png?1696519884",
+    "symbol": "SDL",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xf1e345ea7c33fd6c05f5512a780eb5839ee31674": {
+    "assetId": "eip155:1/erc20:0xf1e345ea7c33fd6c05f5512a780eb5839ee31674",
+    "chainId": "eip155:1",
+    "name": "Telefy",
+    "precision": 18,
+    "color": "#EACFED",
+    "icon": "https://assets.coingecko.com/coins/images/26485/thumb/WhatsApp_Image_2022-07-20_at_2.51.42_AM.jpeg?1696525558",
+    "symbol": "TELE",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xf1f508c7c9f0d1b15a76fba564eef2d956220cf7": {
+    "assetId": "eip155:1/erc20:0xf1f508c7c9f0d1b15a76fba564eef2d956220cf7",
+    "chainId": "eip155:1",
+    "name": "Pepedex on Ethereum",
+    "precision": 18,
+    "color": "#0C190C",
+    "icon": "https://assets.coingecko.com/coins/images/13022/thumb/output-onlinepngtools-1.png?1696512811",
+    "symbol": "PPDEX",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xf1f955016ecbcd7321c7266bccfb96c68ea5e49b": {
+    "assetId": "eip155:1/erc20:0xf1f955016ecbcd7321c7266bccfb96c68ea5e49b",
+    "chainId": "eip155:1",
+    "name": "Rally",
+    "precision": 18,
+    "color": "#FC9004",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xf1f955016EcbCd7321c7266BccFB96c68ea5E49b/logo.png",
+    "symbol": "RLY",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xf1fb4cf949277adc3f89c0d6091100789033b7b5": {
+    "assetId": "eip155:1/erc20:0xf1fb4cf949277adc3f89c0d6091100789033b7b5",
+    "chainId": "eip155:1",
+    "name": "Aibot",
+    "precision": 18,
+    "color": "#070D22",
+    "icon": "https://assets.coingecko.com/coins/images/31324/thumb/aibot_200.png?1696530143",
+    "symbol": "AIBOT",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xf203ca1769ca8e9e8fe1da9d147db68b6c919817": {
+    "assetId": "eip155:1/erc20:0xf203ca1769ca8e9e8fe1da9d147db68b6c919817",
+    "chainId": "eip155:1",
+    "name": "Wrapped NCG on Ethereum",
+    "precision": 18,
+    "color": "#BCD9DE",
+    "icon": "https://assets.coingecko.com/coins/images/17747/thumb/WNCG_Color.png?1696517274",
+    "symbol": "WNCG",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xf2051511b9b121394fa75b8f7d4e7424337af687": {
+    "assetId": "eip155:1/erc20:0xf2051511b9b121394fa75b8f7d4e7424337af687",
+    "chainId": "eip155:1",
+    "name": "DAOhaus on Ethereum",
+    "precision": 18,
+    "color": "#C27A59",
+    "icon": "https://assets.coingecko.com/coins/images/14551/thumb/jN3kkqke_400x400.png?1696514234",
+    "symbol": "HAUS",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xf21661d0d1d76d3ecb8e1b9f1c923dbfffae4097": {
+    "assetId": "eip155:1/erc20:0xf21661d0d1d76d3ecb8e1b9f1c923dbfffae4097",
+    "chainId": "eip155:1",
+    "name": "Realio",
+    "precision": 18,
+    "color": "#171717",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xf21661D0D1d76d3ECb8e1B9F1c923DBfffAe4097/logo.png",
+    "symbol": "RIO",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xf23a2bf7619ad93300499c3fc7d7145a06cca562": {
+    "assetId": "eip155:1/erc20:0xf23a2bf7619ad93300499c3fc7d7145a06cca562",
+    "chainId": "eip155:1",
+    "name": "noiseGPT on Ethereum",
+    "precision": 18,
+    "color": "#3C407C",
+    "icon": "https://assets.coingecko.com/coins/images/29908/thumb/noisegpt.png?1696528837",
+    "symbol": "NOISEGPT",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xf252b65e702e88a1040be99b2c1bdb645a7e1b0a": {
+    "assetId": "eip155:1/erc20:0xf252b65e702e88a1040be99b2c1bdb645a7e1b0a",
+    "chainId": "eip155:1",
+    "name": "Holy Bread",
+    "precision": 18,
+    "color": "#1B0B0A",
+    "icon": "https://assets.coingecko.com/coins/images/32094/thumb/zlL1kqsS_400x400_%281%29.jpg?1696530892",
+    "symbol": "BREAD",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xf25304e75026e6a35fedca3b0889ae5c4d3c55d8": {
+    "assetId": "eip155:1/erc20:0xf25304e75026e6a35fedca3b0889ae5c4d3c55d8",
+    "chainId": "eip155:1",
+    "name": "Viridis Network",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/32709/thumb/200x200.png?1698986518",
+    "symbol": "VRD",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xf256cc7847e919fac9b808cc216cac87ccf2f47a": {
+    "assetId": "eip155:1/erc20:0xf256cc7847e919fac9b808cc216cac87ccf2f47a",
+    "chainId": "eip155:1",
+    "name": "Aave XSUSHI",
+    "precision": 18,
+    "color": "#1F4F64",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xF256CC7847E919FAc9B808cC216cAc87CCF2f47a/logo.png",
+    "symbol": "AXSUSHI",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xf257a2783f6633a149b5966e32432b5bb3462c96": {
+    "assetId": "eip155:1/erc20:0xf257a2783f6633a149b5966e32432b5bb3462c96",
+    "chainId": "eip155:1",
+    "name": "RagingElonMarsCoin",
+    "precision": 8,
+    "color": "#BF7B3E",
+    "icon": "https://assets.coingecko.com/coins/images/31463/thumb/JgNkdCWn_400x400.jpg?1696530276",
+    "symbol": "DOGECOIN",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xf278c1ca969095ffddded020290cf8b5c424ace2": {
+    "assetId": "eip155:1/erc20:0xf278c1ca969095ffddded020290cf8b5c424ace2",
+    "chainId": "eip155:1",
+    "name": "Ruff",
+    "precision": 18,
+    "color": "#08C6CB",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xf278c1CA969095ffddDED020290cf8B5C424AcE2/logo.png",
+    "symbol": "RUFF",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xf293d23bf2cdc05411ca0eddd588eb1977e8dcd4": {
+    "assetId": "eip155:1/erc20:0xf293d23bf2cdc05411ca0eddd588eb1977e8dcd4",
+    "chainId": "eip155:1",
+    "name": "Sylo",
+    "precision": 18,
+    "color": "#DF6926",
+    "icon": "https://assets.coingecko.com/coins/images/6430/thumb/SYLO.svg?1696506795",
+    "symbol": "SYLO",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xf29ae508698bdef169b89834f76704c3b205aedf": {
+    "assetId": "eip155:1/erc20:0xf29ae508698bdef169b89834f76704c3b205aedf",
+    "chainId": "eip155:1",
+    "name": "SNX yVault",
+    "precision": 18,
+    "color": "#04D0F9",
+    "icon": "https://assets.coingecko.com/coins/images/28797/thumb/yvSNX-128-0xF29AE508698bDeF169B89834F76704C3B205aedf.png?1696527775",
+    "symbol": "YVSNX",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xf2a22b900dde3ba18ec2aef67d4c8c1a0dab6aac": {
+    "assetId": "eip155:1/erc20:0xf2a22b900dde3ba18ec2aef67d4c8c1a0dab6aac",
+    "chainId": "eip155:1",
+    "name": "Monkeys",
+    "precision": 9,
+    "color": "#E4BE7C",
+    "icon": "https://assets.coingecko.com/coins/images/29815/thumb/Monkeys_Elon.png?1696528744",
+    "symbol": "MONKEYS",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xf2b2f7b47715256ce4ea43363a867fdce9353e3a": {
+    "assetId": "eip155:1/erc20:0xf2b2f7b47715256ce4ea43363a867fdce9353e3a",
+    "chainId": "eip155:1",
+    "name": "Bitgert on Ethereum",
+    "precision": 9,
+    "color": "#A6DAE2",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xF2B2f7b47715256Ce4eA43363a867fdce9353e3A/logo.png",
+    "symbol": "BRISE",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xf2cdf38e24738ba379ffa38d47bc88a941df5627": {
+    "assetId": "eip155:1/erc20:0xf2cdf38e24738ba379ffa38d47bc88a941df5627",
+    "chainId": "eip155:1",
+    "name": "Ally",
+    "precision": 2,
+    "color": "#CE5537",
+    "icon": "https://assets.coingecko.com/coins/images/9619/thumb/BTf_sTXi_400x400.jpg?1696509692",
+    "symbol": "ALY",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xf2d754ea7626f35090cddf92893374bd1b2e5a39": {
+    "assetId": "eip155:1/erc20:0xf2d754ea7626f35090cddf92893374bd1b2e5a39",
+    "chainId": "eip155:1",
+    "name": "Bork Coin",
+    "precision": 9,
+    "color": "#C15839",
+    "icon": "https://assets.coingecko.com/coins/images/31647/thumb/output-onlinepngtools_%281%29.png?1696530462",
+    "symbol": "BORK",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xf2ddae89449b7d26309a5d54614b1fc99c608af5": {
+    "assetId": "eip155:1/erc20:0xf2ddae89449b7d26309a5d54614b1fc99c608af5",
+    "chainId": "eip155:1",
+    "name": "ASTA",
+    "precision": 18,
+    "color": "#048C9C",
+    "icon": "https://assets.coingecko.com/coins/images/11123/thumb/asta_logo.png?1696511061",
+    "symbol": "ASTA",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xf2ec4a773ef90c58d98ea734c0ebdb538519b988": {
+    "assetId": "eip155:1/erc20:0xf2ec4a773ef90c58d98ea734c0ebdb538519b988",
+    "chainId": "eip155:1",
+    "name": "Doge 2 0",
+    "precision": 9,
+    "color": "#CAAF6A",
+    "icon": "https://assets.coingecko.com/coins/images/30902/thumb/2DOGE_200.jpg?1696529747",
+    "symbol": "DOGE20",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xf2f9a7e93f845b3ce154efbeb64fb9346fcce509": {
+    "assetId": "eip155:1/erc20:0xf2f9a7e93f845b3ce154efbeb64fb9346fcce509",
+    "chainId": "eip155:1",
+    "name": "UniPower on Ethereum",
+    "precision": 18,
+    "color": "#C79224",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xF2f9A7e93f845b3ce154EfbeB64fB9346FCCE509/logo.png",
+    "symbol": "POWER",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xf32aa187d5bc16a2c02a6afb7df1459d0d107574": {
+    "assetId": "eip155:1/erc20:0xf32aa187d5bc16a2c02a6afb7df1459d0d107574",
+    "chainId": "eip155:1",
+    "name": "HachikoInu",
+    "precision": 18,
+    "color": "#56565B",
+    "icon": "https://assets.coingecko.com/coins/images/16392/thumb/hachikoinu-200px.png?1696515990",
+    "symbol": "INU",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xf32cfbaf4000e6820a95b3a3fcdbf27fb4efc9af": {
+    "assetId": "eip155:1/erc20:0xf32cfbaf4000e6820a95b3a3fcdbf27fb4efc9af",
+    "chainId": "eip155:1",
+    "name": "Cash Token",
+    "precision": 18,
+    "color": "#272728",
+    "icon": "https://assets.coingecko.com/coins/images/30676/thumb/200x.png?1696529545",
+    "symbol": "CASH",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xf33893de6eb6ae9a67442e066ae9abd228f5290c": {
+    "assetId": "eip155:1/erc20:0xf33893de6eb6ae9a67442e066ae9abd228f5290c",
+    "chainId": "eip155:1",
+    "name": "GroveCoin on Ethereum",
+    "precision": 8,
+    "color": "#D9A42D",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xF33893DE6eB6aE9A67442E066aE9aBd228f5290c/logo.png",
+    "symbol": "GRV",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xf34842d05a1c888ca02769a633df37177415c2f8": {
+    "color": "#EAECE6",
+    "icon": "https://raw.githubusercontent.com/Idle-Labs/idle-dashboard/master/public/images/tokens/USDT.svg",
+    "name": "USDT Senior Best Yield",
+    "precision": 18,
+    "symbol": "idleUSDTYield",
+    "chainId": "eip155:1",
+    "assetId": "eip155:1/erc20:0xf34842d05a1c888ca02769a633df37177415c2f8",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xf34b1db61aca1a371fe97bad2606c9f534fb9d7d": {
+    "assetId": "eip155:1/erc20:0xf34b1db61aca1a371fe97bad2606c9f534fb9d7d",
+    "chainId": "eip155:1",
+    "name": "ArbiSmart",
+    "precision": 18,
+    "color": "#FCD5BC",
+    "icon": "https://assets.coingecko.com/coins/images/21906/thumb/imgonline-com-ua-Resize-cMjOYOwg12bLazt.png?1696521257",
+    "symbol": "RBIS",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xf36c5f04127f7470834ed6f98bddc1be62aba48d": {
+    "assetId": "eip155:1/erc20:0xf36c5f04127f7470834ed6f98bddc1be62aba48d",
+    "chainId": "eip155:1",
+    "name": "CryptoAI",
+    "precision": 18,
+    "color": "#04131B",
+    "icon": "https://assets.coingecko.com/coins/images/28899/thumb/200blue.png?1696527875",
+    "symbol": "CAI",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xf3a3023e6dede84ad88a656a3269f2a36e83c9a9": {
+    "assetId": "eip155:1/erc20:0xf3a3023e6dede84ad88a656a3269f2a36e83c9a9",
+    "chainId": "eip155:1",
+    "name": "Sharbi on Ethereum",
+    "precision": 9,
+    "color": "#DED3C3",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xF3A3023e6Dede84AD88a656A3269F2A36e83c9a9/logo.png",
+    "symbol": "SHARBI",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xf3ae5d769e153ef72b4e3591ac004e89f48107a1": {
+    "assetId": "eip155:1/erc20:0xf3ae5d769e153ef72b4e3591ac004e89f48107a1",
+    "chainId": "eip155:1",
+    "name": "Deeper Network on Ethereum",
+    "precision": 18,
+    "color": "#5CBCE4",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xf3AE5d769e153Ef72b4e3591aC004E89F48107a1/logo.png",
+    "symbol": "DPR",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xf3b9569f82b18aef890de263b84189bd33ebe452": {
+    "assetId": "eip155:1/erc20:0xf3b9569f82b18aef890de263b84189bd33ebe452",
+    "chainId": "eip155:1",
+    "name": "A Hunters Dream",
+    "precision": 18,
+    "color": "#C4AA50",
+    "icon": "https://assets.coingecko.com/coins/images/25130/thumb/x-Logo-color-10x.png?1696524280",
+    "symbol": "CAW",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xf3bb9f16677f2b86efd1dfca1c141a99783fde58": {
+    "assetId": "eip155:1/erc20:0xf3bb9f16677f2b86efd1dfca1c141a99783fde58",
+    "chainId": "eip155:1",
+    "name": "Crown Token",
+    "precision": 18,
+    "color": "#545D7E",
+    "icon": "https://assets.coingecko.com/coins/images/30161/thumb/Crown_Token_200_200.png?1696529081",
+    "symbol": "CROWN",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xf3bf9b3ef3867d20a5ee51244f8b374b9d5e019e": {
+    "assetId": "eip155:1/erc20:0xf3bf9b3ef3867d20a5ee51244f8b374b9d5e019e",
+    "chainId": "eip155:1",
+    "name": "Edgefolio",
+    "precision": 18,
+    "color": "#2E2A3C",
+    "icon": "https://assets.coingecko.com/coins/images/31516/thumb/Edgefolio.png?1696530326",
+    "symbol": "EFOLIO",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8": {
+    "assetId": "eip155:1/erc20:0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8",
+    "chainId": "eip155:1",
+    "name": "Everex",
+    "precision": 4,
+    "color": "#084DA5",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xf3Db5Fa2C66B7aF3Eb0C0b782510816cbe4813b8/logo.png",
+    "symbol": "EVX",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xf3dcbc6d72a4e1892f7917b7c43b74131df8480e": {
+    "assetId": "eip155:1/erc20:0xf3dcbc6d72a4e1892f7917b7c43b74131df8480e",
+    "chainId": "eip155:1",
+    "name": "Big Data Protocol",
+    "precision": 18,
+    "color": "#3C4B63",
+    "icon": "https://assets.coingecko.com/coins/images/14222/thumb/logo_BDP_200.png?1696513937",
+    "symbol": "BDP",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xf3e07812ebc8604fddb0aa35ff79a03f48f48948": {
+    "assetId": "eip155:1/erc20:0xf3e07812ebc8604fddb0aa35ff79a03f48f48948",
+    "chainId": "eip155:1",
+    "name": "JournArt on Ethereum",
+    "precision": 18,
+    "color": "#3A333F",
+    "icon": "https://assets.coingecko.com/coins/images/29412/thumb/JournArt%28200%29.png?1696528361",
+    "symbol": "JART",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xf3e66b03d098d0482be9cb3d6999787231a93ed9": {
+    "assetId": "eip155:1/erc20:0xf3e66b03d098d0482be9cb3d6999787231a93ed9",
+    "chainId": "eip155:1",
+    "name": "PromptIDE",
+    "precision": 9,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/32753/thumb/Prompt200.jpg?1699265135",
+    "symbol": "PROMPTIDE",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xf406f7a9046793267bc276908778b29563323996": {
+    "assetId": "eip155:1/erc20:0xf406f7a9046793267bc276908778b29563323996",
+    "chainId": "eip155:1",
+    "name": "APY vision on Ethereum",
+    "precision": 18,
+    "color": "#B413D5",
+    "icon": "https://assets.coingecko.com/coins/images/13288/thumb/apyvisionlogo200circle.png?1696513060",
+    "symbol": "VISION",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xf411903cbc70a74d22900a5de66a2dda66507255": {
+    "assetId": "eip155:1/erc20:0xf411903cbc70a74d22900a5de66a2dda66507255",
+    "chainId": "eip155:1",
+    "name": "Verasity",
+    "precision": 18,
+    "color": "#DD173B",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xF411903cbC70a74d22900a5DE66A2dda66507255/logo.png",
+    "symbol": "VRA",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xf4134146af2d511dd5ea8cdb1c4ac88c57d60404": {
+    "assetId": "eip155:1/erc20:0xf4134146af2d511dd5ea8cdb1c4ac88c57d60404",
+    "chainId": "eip155:1",
+    "name": "SunContract",
+    "precision": 18,
+    "color": "#050505",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xF4134146AF2d511Dd5EA8cDB1C4AC88C57D60404/logo.png",
+    "symbol": "SNC",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xf4172630a656a47ece8616e75791290446fa41a0": {
+    "assetId": "eip155:1/erc20:0xf4172630a656a47ece8616e75791290446fa41a0",
+    "chainId": "eip155:1",
+    "name": "PEPPA",
+    "precision": 2,
+    "color": "#CB8CC1",
+    "icon": "https://assets.coingecko.com/coins/images/30492/thumb/200_x_200_JPG.jpg?1696529379",
+    "symbol": "PEPPA",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xf418588522d5dd018b425e472991e52ebbeeeeee": {
+    "assetId": "eip155:1/erc20:0xf418588522d5dd018b425e472991e52ebbeeeeee",
+    "chainId": "eip155:1",
+    "name": "Push Protocol on Ethereum",
+    "precision": 18,
+    "color": "#41B9EA",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xf418588522d5dd018b425E472991E52EBBeEEEEE/logo.png",
+    "symbol": "PUSH",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xf433089366899d83a9f26a773d59ec7ecf30355e": {
+    "assetId": "eip155:1/erc20:0xf433089366899d83a9f26a773d59ec7ecf30355e",
+    "chainId": "eip155:1",
+    "name": "Metal DAO",
+    "precision": 8,
+    "color": "#F97B49",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xF433089366899D83a9f26A773D59ec7eCF30355e/logo.png",
+    "symbol": "MTL",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xf434908dcf8206691bb99cae9232d4833ec257d4": {
+    "assetId": "eip155:1/erc20:0xf434908dcf8206691bb99cae9232d4833ec257d4",
+    "chainId": "eip155:1",
+    "name": "Blackjack fun",
+    "precision": 18,
+    "color": "#2AB09A",
+    "icon": "https://assets.coingecko.com/coins/images/32499/thumb/logo_J.png?1698309198",
+    "symbol": "JACK",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xf45091f25d374bbe956c0bb64bb85e02d07aa741": {
+    "assetId": "eip155:1/erc20:0xf45091f25d374bbe956c0bb64bb85e02d07aa741",
+    "chainId": "eip155:1",
+    "name": "MNMCoin",
+    "precision": 8,
+    "color": "#E7B42C",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xF45091f25d374BbE956c0bb64bB85e02D07Aa741/logo.png",
+    "symbol": "MNMC",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xf45f6c8bb3d77ea762175b8f7ca4d251941649fa": {
+    "assetId": "eip155:1/erc20:0xf45f6c8bb3d77ea762175b8f7ca4d251941649fa",
+    "chainId": "eip155:1",
+    "name": "Lemond",
+    "precision": 18,
+    "color": "#F1B556",
+    "icon": "https://assets.coingecko.com/coins/images/14964/thumb/D-smP_i-_400x400.png?1696514624",
+    "symbol": "LEMD",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xf47245e9a3ba3dca8b004e34afc1290b1d435a52": {
+    "assetId": "eip155:1/erc20:0xf47245e9a3ba3dca8b004e34afc1290b1d435a52",
+    "chainId": "eip155:1",
+    "name": "Magical Blocks",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/33186/thumb/13441700648242_.pic.jpg?1700953813",
+    "symbol": "MBLK",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xf482d79ae6e8725c199213fc909d6bc30df62815": {
+    "assetId": "eip155:1/erc20:0xf482d79ae6e8725c199213fc909d6bc30df62815",
+    "chainId": "eip155:1",
+    "name": "Recycle Impact World Association",
+    "precision": 9,
+    "color": "#82C164",
+    "icon": "https://assets.coingecko.com/coins/images/32158/thumb/RIWA.jpg?1696601500",
+    "symbol": "RIWA",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xf49311af05a4ffb1dbf33d61e9b2d4f0a7d4a71c": {
+    "assetId": "eip155:1/erc20:0xf49311af05a4ffb1dbf33d61e9b2d4f0a7d4a71c",
+    "chainId": "eip155:1",
+    "name": "CompanionBot",
+    "precision": 9,
+    "color": "#87B9D2",
+    "icon": "https://assets.coingecko.com/coins/images/31302/thumb/IMG_20230812_173007_931.jpg?1696530122",
+    "symbol": "CBOT",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xf4b5470523ccd314c6b9da041076e7d79e0df267": {
+    "assetId": "eip155:1/erc20:0xf4b5470523ccd314c6b9da041076e7d79e0df267",
+    "chainId": "eip155:1",
+    "name": "blockbank on Ethereum",
+    "precision": 18,
+    "color": "#F46424",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xF4b5470523cCD314C6B9dA041076e7D79E0Df267/logo.png",
+    "symbol": "BBANK",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xf4cc8237fc85f54b64975142ec71a9554ecf4c61": {
+    "assetId": "eip155:1/erc20:0xf4cc8237fc85f54b64975142ec71a9554ecf4c61",
+    "chainId": "eip155:1",
+    "name": "Versus",
+    "precision": 18,
+    "color": "#0D1614",
+    "icon": "https://assets.coingecko.com/coins/images/32230/thumb/avi.png?1696933323",
+    "symbol": "VS",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xf4cd3d3fda8d7fd6c5a500203e38640a70bf9577": {
+    "assetId": "eip155:1/erc20:0xf4cd3d3fda8d7fd6c5a500203e38640a70bf9577",
+    "chainId": "eip155:1",
+    "name": "YfDAI finance on Ethereum",
+    "precision": 18,
+    "color": "#FC9C04",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xf4CD3d3Fda8d7Fd6C5a500203e38640A70Bf9577/logo.png",
+    "symbol": "YF-DAI",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xf4d2888d29d722226fafa5d9b24f9164c092421e": {
+    "assetId": "eip155:1/erc20:0xf4d2888d29d722226fafa5d9b24f9164c092421e",
+    "chainId": "eip155:1",
+    "name": "LooksRare",
+    "precision": 18,
+    "color": "#040504",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xf4d2888d29D722226FafA5d9B24F9164c092421E/logo.png",
+    "symbol": "LOOKS",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xf4d861575ecc9493420a3f5a14f85b13f0b50eb3": {
+    "assetId": "eip155:1/erc20:0xf4d861575ecc9493420a3f5a14f85b13f0b50eb3",
+    "chainId": "eip155:1",
+    "name": "Fractal",
+    "precision": 18,
+    "color": "#FC631A",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xF4d861575ecC9493420A3f5a14F85B13f0b50EB3/logo.png",
+    "symbol": "FCL",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xf4f618eff5ef36cde2fca4fbd86554c62fb1382b": {
+    "assetId": "eip155:1/erc20:0xf4f618eff5ef36cde2fca4fbd86554c62fb1382b",
+    "chainId": "eip155:1",
+    "name": "Astra Guild Ventures",
+    "precision": 18,
+    "color": "#DFDCCF",
+    "icon": "https://assets.coingecko.com/coins/images/21603/thumb/astra_guild.PNG?1696520964",
+    "symbol": "AGV",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xf51092fe93b4e9282f42c459f05d93d2d079549e": {
+    "assetId": "eip155:1/erc20:0xf51092fe93b4e9282f42c459f05d93d2d079549e",
+    "chainId": "eip155:1",
+    "name": "RociFi",
+    "precision": 18,
+    "color": "#1E1541",
+    "icon": "https://assets.coingecko.com/coins/images/31960/thumb/Icon-03.png?1696530766",
+    "symbol": "ROCI",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xf519381791c03dd7666c142d4e49fd94d3536011": {
+    "assetId": "eip155:1/erc20:0xf519381791c03dd7666c142d4e49fd94d3536011",
+    "chainId": "eip155:1",
+    "name": "Asia Coin on Ethereum",
+    "precision": 18,
+    "color": "#14249A",
+    "icon": "https://assets.coingecko.com/coins/images/18589/thumb/Ou7mp_R1TQ5B9vsBiZ8oQnSv36M6hiA2hESxV_7YSw0.png?1696518065",
+    "symbol": "ASIA",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xf52cdcd458bf455aed77751743180ec4a595fd3f": {
+    "assetId": "eip155:1/erc20:0xf52cdcd458bf455aed77751743180ec4a595fd3f",
+    "chainId": "eip155:1",
+    "name": "IdleSUSD  Yield ",
+    "precision": 18,
+    "color": "#D0CECC",
+    "icon": "https://assets.coingecko.com/coins/images/11934/thumb/idlesusdv3mmaxyield_32.png?1696511795",
+    "symbol": "IDLESUSDYIELD",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xf538296e7dd856af7044deec949489e2f25705bc": {
+    "assetId": "eip155:1/erc20:0xf538296e7dd856af7044deec949489e2f25705bc",
+    "chainId": "eip155:1",
+    "name": "Illumicati",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/32829/thumb/ILLUMICATI_CG.png?1699585511",
+    "symbol": "MILK",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xf552b656022c218c26dad43ad88881fc04116f76": {
+    "assetId": "eip155:1/erc20:0xf552b656022c218c26dad43ad88881fc04116f76",
+    "chainId": "eip155:1",
+    "name": "MORK",
+    "precision": 4,
+    "color": "#4DA1C0",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xf552b656022c218C26dAd43ad88881Fc04116F76/logo.png",
+    "symbol": "MORK",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xf5581dfefd8fb0e4aec526be659cfab1f8c781da": {
+    "assetId": "eip155:1/erc20:0xf5581dfefd8fb0e4aec526be659cfab1f8c781da",
+    "chainId": "eip155:1",
+    "name": "HOPR",
+    "precision": 18,
+    "color": "#06067A",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xF5581dFeFD8Fb0e4aeC526bE659CFaB1f8c781dA/logo.png",
+    "symbol": "HOPR",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xf55a93b613d172b86c2ba3981a849dae2aecde2f": {
+    "assetId": "eip155:1/erc20:0xf55a93b613d172b86c2ba3981a849dae2aecde2f",
+    "chainId": "eip155:1",
+    "name": "Your Futures Exchange on Ethereum",
+    "precision": 18,
+    "color": "#232020",
+    "icon": "https://assets.coingecko.com/coins/images/15654/thumb/yfx.PNG?1696515285",
+    "symbol": "YFX",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xf55cd1e399e1cc3d95303048897a680be3313308": {
+    "assetId": "eip155:1/erc20:0xf55cd1e399e1cc3d95303048897a680be3313308",
+    "chainId": "eip155:1",
+    "name": "Maximus TRIO",
+    "precision": 8,
+    "color": "#D7D7D7",
+    "icon": "https://assets.coingecko.com/coins/images/27684/thumb/IMG_1127.PNG?1696526712",
+    "symbol": "TRIO",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xf56408077487cb879c992909c5b5c66d68c02eb4": {
+    "assetId": "eip155:1/erc20:0xf56408077487cb879c992909c5b5c66d68c02eb4",
+    "chainId": "eip155:1",
+    "name": "Riot Racers on Ethereum",
+    "precision": 18,
+    "color": "#080604",
+    "icon": "https://assets.coingecko.com/coins/images/19238/thumb/jyxvIbmJ_400x400.png?1696518684",
+    "symbol": "RIOT",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xf56842af3b56fd72d17cb103f92d027bba912e89": {
+    "assetId": "eip155:1/erc20:0xf56842af3b56fd72d17cb103f92d027bba912e89",
+    "chainId": "eip155:1",
+    "name": "Bamboo DeFi on Ethereum",
+    "precision": 18,
+    "color": "#4D4545",
+    "icon": "https://assets.coingecko.com/coins/images/13856/thumb/LOGO_BAMBOO_PNG.png?1696513602",
+    "symbol": "BAMBOO",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xf56b164efd3cfc02ba739b719b6526a6fa1ca32a": {
+    "assetId": "eip155:1/erc20:0xf56b164efd3cfc02ba739b719b6526a6fa1ca32a",
+    "chainId": "eip155:1",
+    "name": "Curio Governance on Ethereum",
+    "precision": 18,
+    "color": "#80DFD7",
+    "icon": "https://assets.coingecko.com/coins/images/13607/thumb/QLwpua7.png?1696513357",
+    "symbol": "CGT",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xf5717f5df41ea67ef67dfd3c1d02f9940bcf5d08": {
+    "assetId": "eip155:1/erc20:0xf5717f5df41ea67ef67dfd3c1d02f9940bcf5d08",
+    "chainId": "eip155:1",
+    "name": "SeChain on Ethereum",
+    "precision": 3,
+    "color": "#FCD307",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xF5717f5DF41eA67Ef67DFD3c1d02F9940bcF5d08/logo.png",
+    "symbol": "SNN",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xf57e7e7c23978c3caec3c3548e3d615c346e79ff": {
+    "assetId": "eip155:1/erc20:0xf57e7e7c23978c3caec3c3548e3d615c346e79ff",
+    "chainId": "eip155:1",
+    "name": "Immutable on Ethereum",
+    "precision": 18,
+    "color": "#D1F0F5",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xF57e7e7C23978C3cAEC3C3548E3D615c346e79fF/logo.png",
+    "symbol": "IMX",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xf59257e961883636290411c11ec5ae622d19455e": {
+    "assetId": "eip155:1/erc20:0xf59257e961883636290411c11ec5ae622d19455e",
+    "chainId": "eip155:1",
+    "name": "FloorDAO",
+    "precision": 9,
+    "color": "#14C8B4",
+    "icon": "https://assets.coingecko.com/coins/images/24026/thumb/icon-floor_2x.png?1696523218",
+    "symbol": "FLOOR",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xf59ae934f6fe444afc309586cc60a84a0f89aaea": {
+    "assetId": "eip155:1/erc20:0xf59ae934f6fe444afc309586cc60a84a0f89aaea",
+    "chainId": "eip155:1",
+    "name": "Polkadex",
+    "precision": 18,
+    "color": "#E4047C",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xF59ae934f6fe444afC309586cC60a84a0F89Aaea/logo.png",
+    "symbol": "PDEX",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xf5aed4f6a1ad00f39dd21febb6f400ea020030c2": {
+    "assetId": "eip155:1/erc20:0xf5aed4f6a1ad00f39dd21febb6f400ea020030c2",
+    "chainId": "eip155:1",
+    "name": "Hodless Bot",
+    "precision": 18,
+    "color": "#2F1B38",
+    "icon": "https://assets.coingecko.com/coins/images/32489/thumb/logo-200-200.png?1698476298",
+    "symbol": "HBOT",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xf5b5efc906513b4344ebabcf47a04901f99f09f3": {
+    "assetId": "eip155:1/erc20:0xf5b5efc906513b4344ebabcf47a04901f99f09f3",
+    "chainId": "eip155:1",
+    "name": "UBIX Network",
+    "precision": 0,
+    "color": "#0A112B",
+    "icon": "https://assets.coingecko.com/coins/images/13000/thumb/1.png?1696512789",
+    "symbol": "UBX",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xf5cfbc74057c610c8ef151a439252680ac68c6dc": {
+    "assetId": "eip155:1/erc20:0xf5cfbc74057c610c8ef151a439252680ac68c6dc",
+    "chainId": "eip155:1",
+    "name": "Octopus Network",
+    "precision": 18,
+    "color": "#B5C7E0",
+    "icon": "https://assets.coingecko.com/coins/images/18025/thumb/octopus_network.png?1696517541",
+    "symbol": "OCT",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xf5d126077096e5b01bc30ffa5d9324d7202d7cb3": {
+    "assetId": "eip155:1/erc20:0xf5d126077096e5b01bc30ffa5d9324d7202d7cb3",
+    "chainId": "eip155:1",
+    "name": "CHEW",
+    "precision": 18,
+    "color": "#E14135",
+    "icon": "https://assets.coingecko.com/coins/images/29377/thumb/IMG_4701.PNG?1696528324",
+    "symbol": "CHEW",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xf5ec1a08902ae0ae5323466c35ea49a37409e4ca": {
+    "assetId": "eip155:1/erc20:0xf5ec1a08902ae0ae5323466c35ea49a37409e4ca",
+    "chainId": "eip155:1",
+    "name": "SAKURA UNITED PLATFORM",
+    "precision": 18,
+    "color": "#B32724",
+    "icon": "https://assets.coingecko.com/coins/images/32213/thumb/apple200%C3%97200.png?1696827569",
+    "symbol": "SUP",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xf5f38b0ad4163a1981c7b960bcd8c242e0038e72": {
+    "assetId": "eip155:1/erc20:0xf5f38b0ad4163a1981c7b960bcd8c242e0038e72",
+    "chainId": "eip155:1",
+    "name": "Burn Kenny",
+    "precision": 18,
+    "color": "#FC7C24",
+    "icon": "https://assets.coingecko.com/coins/images/31077/thumb/IMG_20230721_222812_566.png?1696529911",
+    "symbol": "KENNY",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xf6043bea98b07f0bea7813aeb22d0cb70c91c0c4": {
+    "assetId": "eip155:1/erc20:0xf6043bea98b07f0bea7813aeb22d0cb70c91c0c4",
+    "chainId": "eip155:1",
+    "name": "MemeDao Ai",
+    "precision": 18,
+    "color": "#070605",
+    "icon": "https://assets.coingecko.com/coins/images/29021/thumb/MemedaoLogo.png?1696527991",
+    "symbol": "MDAI",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xf61bf4d1a948487d61b8fa63808aac06bda55f98": {
+    "assetId": "eip155:1/erc20:0xf61bf4d1a948487d61b8fa63808aac06bda55f98",
+    "chainId": "eip155:1",
+    "name": "Tr3zor",
+    "precision": 18,
+    "color": "#CF567D",
+    "icon": "https://assets.coingecko.com/coins/images/21980/thumb/9T9OoYXE_400x400.jpg?1696521328",
+    "symbol": "TR3",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xf62768856a301f2bb82aae9c899aac6c7bfb7916": {
+    "assetId": "eip155:1/erc20:0xf62768856a301f2bb82aae9c899aac6c7bfb7916",
+    "chainId": "eip155:1",
+    "name": "Website AI",
+    "precision": 9,
+    "color": "#C0C4C2",
+    "icon": "https://assets.coingecko.com/coins/images/32463/thumb/200x200.png?1698242478",
+    "symbol": "WEBAI",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xf629cbd94d3791c9250152bd8dfbdf380e2a3b9c": {
+    "assetId": "eip155:1/erc20:0xf629cbd94d3791c9250152bd8dfbdf380e2a3b9c",
+    "chainId": "eip155:1",
+    "name": "Enjin Coin",
+    "precision": 18,
+    "color": "#38EEF8",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xF629cBd94d3791C9250152BD8dfBDF380E2a3B9c/logo.png",
+    "symbol": "ENJ",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xf62ac0fcae17f9195280ced4de978313effe2daa": {
+    "assetId": "eip155:1/erc20:0xf62ac0fcae17f9195280ced4de978313effe2daa",
+    "chainId": "eip155:1",
+    "name": "Nchart Token",
+    "precision": 18,
+    "color": "#F1C41C",
+    "icon": "https://assets.coingecko.com/coins/images/31169/thumb/n_200.png?1696529997",
+    "symbol": "CHART",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xf655c8567e0f213e6c634cd2a68d992152161dc6": {
+    "assetId": "eip155:1/erc20:0xf655c8567e0f213e6c634cd2a68d992152161dc6",
+    "chainId": "eip155:1",
+    "name": "Impermax on Ethereum",
+    "precision": 18,
+    "color": "#29A29A",
+    "icon": "https://assets.coingecko.com/coins/images/27606/thumb/IqwOmX-c_400x400.jpeg?1696526637",
+    "symbol": "IBEX",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xf65b5c5104c4fafd4b709d9d60a185eae063276c": {
+    "assetId": "eip155:1/erc20:0xf65b5c5104c4fafd4b709d9d60a185eae063276c",
+    "chainId": "eip155:1",
+    "name": "Truebit Protocol",
+    "precision": 18,
+    "color": "#63F324",
+    "icon": "https://assets.coingecko.com/coins/images/15053/thumb/Truebit.png?1696514712",
+    "symbol": "TRU",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xf6650117017ffd48b725b4ec5a00b414097108a7": {
+    "assetId": "eip155:1/erc20:0xf6650117017ffd48b725b4ec5a00b414097108a7",
+    "chainId": "eip155:1",
+    "name": "Xido Finance on Ethereum",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/16161/thumb/KJw4clj.png?1696515765",
+    "symbol": "XIDO",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xf66cd2f8755a21d3c8683a10269f795c0532dd58": {
+    "assetId": "eip155:1/erc20:0xf66cd2f8755a21d3c8683a10269f795c0532dd58",
+    "chainId": "eip155:1",
+    "name": "coreDAO",
+    "precision": 18,
+    "color": "#B55568",
+    "icon": "https://assets.coingecko.com/coins/images/23745/thumb/coredao.png?1696522947",
+    "symbol": "COREDAO",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xf6719e1a8fcbb1b9c290019e37e004966a8916c9": {
+    "assetId": "eip155:1/erc20:0xf6719e1a8fcbb1b9c290019e37e004966a8916c9",
+    "chainId": "eip155:1",
+    "name": "Polygen on Ethereum",
+    "precision": 18,
+    "color": "#F5E0EA",
+    "icon": "https://assets.coingecko.com/coins/images/21476/thumb/polygen-logo_1.jpeg?1696520837",
+    "symbol": "PGEN",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xf680429328caaacabee69b7a9fdb21a71419c063": {
+    "assetId": "eip155:1/erc20:0xf680429328caaacabee69b7a9fdb21a71419c063",
+    "chainId": "eip155:1",
+    "name": "Butterfly Protocol",
+    "precision": 18,
+    "color": "#04ACB4",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xf680429328caaaCabee69b7A9FdB21a71419c063/logo.png",
+    "symbol": "BFLY",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xf68415be72377611e95d59bc710ccbbbf94c4fa2": {
+    "assetId": "eip155:1/erc20:0xf68415be72377611e95d59bc710ccbbbf94c4fa2",
+    "chainId": "eip155:1",
+    "name": "alphAI",
+    "precision": 18,
+    "color": "#DDE1E6",
+    "icon": "https://assets.coingecko.com/coins/images/30684/thumb/alphAI.png?1696529553",
+    "symbol": "AI",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xf68d4d917592f3a62417ace42592f15296cc33a0": {
+    "assetId": "eip155:1/erc20:0xf68d4d917592f3a62417ace42592f15296cc33a0",
+    "chainId": "eip155:1",
+    "name": "COINHUB on Ethereum",
+    "precision": 8,
+    "color": "#CA9E7A",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xf68D4d917592f3a62417aCE42592F15296cc33A0/logo.png",
+    "symbol": "CHB",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xf6afc05fccea5a53f22a3e39ffee861e016bd9a0": {
+    "assetId": "eip155:1/erc20:0xf6afc05fccea5a53f22a3e39ffee861e016bd9a0",
+    "chainId": "eip155:1",
+    "name": "LandWolf",
+    "precision": 18,
+    "color": "#8D3B6A",
+    "icon": "https://assets.coingecko.com/coins/images/30982/thumb/landwolf.jpg?1696529821",
+    "symbol": "WOLF",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xf6c0aa7ebfe9992200c67e5388e4f42da49e1783": {
+    "assetId": "eip155:1/erc20:0xf6c0aa7ebfe9992200c67e5388e4f42da49e1783",
+    "chainId": "eip155:1",
+    "name": "Psyche",
+    "precision": 2,
+    "color": "#D1B9D2",
+    "icon": "https://assets.coingecko.com/coins/images/13661/thumb/Psyche-logo-256.png?1696513411",
+    "symbol": "USD1",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xf6d2224916ddfbbab6e6bd0d1b7034f4ae0cab18": {
+    "assetId": "eip155:1/erc20:0xf6d2224916ddfbbab6e6bd0d1b7034f4ae0cab18",
+    "chainId": "eip155:1",
+    "name": "Aave v3 UNI",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/32893/thumb/UNI.png?1699789595",
+    "symbol": "AUNI",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xf6e06b54855eff198a2d9a8686113665499a6134": {
+    "assetId": "eip155:1/erc20:0xf6e06b54855eff198a2d9a8686113665499a6134",
+    "chainId": "eip155:1",
+    "name": "Celestial",
+    "precision": 18,
+    "color": "#102C46",
+    "icon": "https://assets.coingecko.com/coins/images/18683/thumb/celt.png?1696518152",
+    "symbol": "CELT",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xf6ec87dfe1ed3a7256cc0c38e3c8139103e9af3b": {
+    "assetId": "eip155:1/erc20:0xf6ec87dfe1ed3a7256cc0c38e3c8139103e9af3b",
+    "chainId": "eip155:1",
+    "name": "Gene",
+    "precision": 18,
+    "color": "#AC2D84",
+    "icon": "https://assets.coingecko.com/coins/images/14145/thumb/logo.a60a0c80_%281%29.png?1696513865",
+    "symbol": "GENE",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xf6f31b8afbf8e3f7fc8246bef26093f02838da98": {
+    "assetId": "eip155:1/erc20:0xf6f31b8afbf8e3f7fc8246bef26093f02838da98",
+    "chainId": "eip155:1",
+    "name": "Unicorn Metaverse",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/33077/thumb/rar4.JPG?1700549656",
+    "symbol": "UNIVERSE",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xf70ce9ee486106882d3dc43ddbd84e0fa71ac2a5": {
+    "assetId": "eip155:1/erc20:0xf70ce9ee486106882d3dc43ddbd84e0fa71ac2a5",
+    "chainId": "eip155:1",
+    "name": "Ducker",
+    "precision": 18,
+    "color": "#406ACB",
+    "icon": "https://assets.coingecko.com/coins/images/30816/thumb/Ducker_Logo_200x200.png?1696529672",
+    "symbol": "DUCKER",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xf70e5e46a50bba54917d9cb7aeb8b83610bcd969": {
+    "assetId": "eip155:1/erc20:0xf70e5e46a50bba54917d9cb7aeb8b83610bcd969",
+    "chainId": "eip155:1",
+    "name": "Ethereum Gold Mining Comp",
+    "precision": 18,
+    "color": "#C8BEAC",
+    "icon": "https://assets.coingecko.com/coins/images/31956/thumb/download.png?1696530762",
+    "symbol": "EGMC",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xf7168c8abb0ff80116413a8d95396bbdc318a3ff": {
+    "assetId": "eip155:1/erc20:0xf7168c8abb0ff80116413a8d95396bbdc318a3ff",
+    "chainId": "eip155:1",
+    "name": "KEK",
+    "precision": 7,
+    "color": "#273B27",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xf7168c8AbB0ff80116413a8d95396BBdC318A3fF/logo.png",
+    "symbol": "KEKE",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xf71a2079566c87e26bcd9766d140d5bfdeeae731": {
+    "assetId": "eip155:1/erc20:0xf71a2079566c87e26bcd9766d140d5bfdeeae731",
+    "chainId": "eip155:1",
+    "name": "Doge69",
+    "precision": 9,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/33210/thumb/IMG_20231126_121430_856.jpg?1701084935",
+    "symbol": "DOGE69",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xf720e38f678b29b243f7d53b56acbf5de98f2385": {
+    "assetId": "eip155:1/erc20:0xf720e38f678b29b243f7d53b56acbf5de98f2385",
+    "chainId": "eip155:1",
+    "name": "Upfire on Ethereum",
+    "precision": 18,
+    "color": "#06CDEC",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xf720E38F678B29B243F7D53B56Acbf5dE98F2385/logo.png",
+    "symbol": "UPR",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xf725f73caee250ae384ec38bb2c77c38ef2cccea": {
+    "assetId": "eip155:1/erc20:0xf725f73caee250ae384ec38bb2c77c38ef2cccea",
+    "chainId": "eip155:1",
+    "name": "Ape In Records",
+    "precision": 18,
+    "color": "#060606",
+    "icon": "https://assets.coingecko.com/coins/images/24194/thumb/gCZZdeR.jpeg?1696523382",
+    "symbol": "AIR",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xf7413489c474ca4399eee604716c72879eea3615": {
+    "assetId": "eip155:1/erc20:0xf7413489c474ca4399eee604716c72879eea3615",
+    "chainId": "eip155:1",
+    "name": "APYSwap",
+    "precision": 18,
+    "color": "#1FDBB5",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xf7413489c474ca4399eeE604716c72879Eea3615/logo.png",
+    "symbol": "APYS",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xf75c7a59bcd9bd207c4ab1beb0b32eed3b6392f3": {
+    "assetId": "eip155:1/erc20:0xf75c7a59bcd9bd207c4ab1beb0b32eed3b6392f3",
+    "chainId": "eip155:1",
+    "name": "Kei Finance",
+    "precision": 8,
+    "color": "#F449AC",
+    "icon": "https://assets.coingecko.com/coins/images/29840/thumb/200x200.png?1696528767",
+    "symbol": "KEI",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xf7790914dc335b20aa19d7c9c9171e14e278a134": {
+    "assetId": "eip155:1/erc20:0xf7790914dc335b20aa19d7c9c9171e14e278a134",
+    "chainId": "eip155:1",
+    "name": "Euro Coinvertible",
+    "precision": 18,
+    "color": "#0C0C0C",
+    "icon": "https://assets.coingecko.com/coins/images/29903/thumb/Screenshot_2023-04-20_at_5.57.42_PM.png?1696528832",
+    "symbol": "EUR-C",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xf7970499814654cd13cb7b6e7634a12a7a8a9abc": {
+    "assetId": "eip155:1/erc20:0xf7970499814654cd13cb7b6e7634a12a7a8a9abc",
+    "chainId": "eip155:1",
+    "name": "TOM Finance",
+    "precision": 18,
+    "color": "#AA8022",
+    "icon": "https://assets.coingecko.com/coins/images/13173/thumb/TOM_logo.png?1696512956",
+    "symbol": "TOM",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xf79f9020560963422ecc9c0c04d3a21190bbf045": {
+    "assetId": "eip155:1/erc20:0xf79f9020560963422ecc9c0c04d3a21190bbf045",
+    "chainId": "eip155:1",
+    "name": "Baby Saitama",
+    "precision": 9,
+    "color": "#D9DBDC",
+    "icon": "https://assets.coingecko.com/coins/images/17584/thumb/babysaitama.png?1696517118",
+    "symbol": "BABYSAITAMA",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xf7de6def3d319811418d69bf56c532a815fc47e8": {
+    "assetId": "eip155:1/erc20:0xf7de6def3d319811418d69bf56c532a815fc47e8",
+    "chainId": "eip155:1",
+    "name": "Two Paws",
+    "precision": 18,
+    "color": "#CCCCC7",
+    "icon": "https://assets.coingecko.com/coins/images/29064/thumb/twopaws192x192.png?1696528031",
+    "symbol": "TWOPAW",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xf7e945fce8f19302aacc7e1418b0a0bdef89327b": {
+    "assetId": "eip155:1/erc20:0xf7e945fce8f19302aacc7e1418b0a0bdef89327b",
+    "chainId": "eip155:1",
+    "name": "Galvan",
+    "precision": 8,
+    "color": "#BAE0E0",
+    "icon": "https://assets.coingecko.com/coins/images/29442/thumb/Galvan_%28IZE%29.png?1696528389",
+    "symbol": "IZE",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xf80d589b3dbe130c270a69f1a69d050f268786df": {
+    "assetId": "eip155:1/erc20:0xf80d589b3dbe130c270a69f1a69d050f268786df",
+    "chainId": "eip155:1",
+    "name": "Datamine on Ethereum",
+    "precision": 18,
+    "color": "#232434",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xF80D589b3Dbe130c270a69F1a69D050f268786Df/logo.png",
+    "symbol": "DAM",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xf81421fc15300c5a8cca9afe12f5cbad502fa756": {
+    "assetId": "eip155:1/erc20:0xf81421fc15300c5a8cca9afe12f5cbad502fa756",
+    "chainId": "eip155:1",
+    "name": "Cardiocoin",
+    "precision": 18,
+    "color": "#AC94BA",
+    "icon": "https://assets.coingecko.com/coins/images/25135/thumb/gQiyJrGcTRjEN-6bI22FOtHOmYF8-_MMYS_U1gIlUm1wf6QxiGnZ64tIeGNNFk9z5xPPch5FMie2grAN4fXQfcjKI9L0EQDVzDEdYDfqWl8ch4ree_q4pypGPNHeSCxnynfOOLAvd9XbKguJHEJNTLAdSKnWCKu92Kho49SplFvDBplt2ruvOz1v5QB795cnjZg4ZemfgfAB_ipJU1YE4TA3uL.jpg?1696524285",
+    "symbol": "CRDC",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xf819d9cb1c2a819fd991781a822de3ca8607c3c9": {
+    "assetId": "eip155:1/erc20:0xf819d9cb1c2a819fd991781a822de3ca8607c3c9",
+    "chainId": "eip155:1",
+    "name": "Unibot",
+    "precision": 18,
+    "color": "#A140A2",
+    "icon": "https://assets.coingecko.com/coins/images/30462/thumb/logonoline_%281%29.png?1696529349",
+    "symbol": "UNIBOT",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xf823fd9ac0abb8d779076a41daa049844299f6ed": {
+    "assetId": "eip155:1/erc20:0xf823fd9ac0abb8d779076a41daa049844299f6ed",
+    "chainId": "eip155:1",
+    "name": "Squid Game on Ethereum",
+    "precision": 18,
+    "color": "#0D0C14",
+    "icon": "https://assets.coingecko.com/coins/images/20506/thumb/squid.png?1696519912",
+    "symbol": "SQUID",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xf831938caf837cd505de196bbb408d81a06376ab": {
+    "assetId": "eip155:1/erc20:0xf831938caf837cd505de196bbb408d81a06376ab",
+    "chainId": "eip155:1",
+    "name": "Jeff",
+    "precision": 18,
+    "color": "#90D1D3",
+    "icon": "https://assets.coingecko.com/coins/images/30222/thumb/photo_2023-05-06_23.53.02.jpeg?1696529132",
+    "symbol": "JEFF",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xf8483e2d6560585c02d46bf7b3186bf154a96166": {
+    "assetId": "eip155:1/erc20:0xf8483e2d6560585c02d46bf7b3186bf154a96166",
+    "chainId": "eip155:1",
+    "name": "IdeaChain",
+    "precision": 8,
+    "color": "#124870",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xf8483E2d6560585C02D46bF7B3186Bf154a96166/logo.png",
+    "symbol": "ICH",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xf85fd280b301c0a6232d515001da8b6c8503d714": {
+    "color": "#FFFFFF",
+    "icon": "https://raw.githubusercontent.com/Idle-Labs/idle-dashboard/master/public/images/tokens/USDC.svg",
+    "name": "Clearpool USDC Junior Tranche",
+    "precision": 18,
+    "symbol": "BB_idle_cpPOR-USDC",
+    "chainId": "eip155:1",
+    "assetId": "eip155:1/erc20:0xf85fd280b301c0a6232d515001da8b6c8503d714",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xf88baf18fab7e330fa0c4f83949e23f52fececce": {
+    "assetId": "eip155:1/erc20:0xf88baf18fab7e330fa0c4f83949e23f52fececce",
+    "chainId": "eip155:1",
+    "name": "Granary on Ethereum",
+    "precision": 18,
+    "color": "#EDD894",
+    "icon": "https://assets.coingecko.com/coins/images/29740/thumb/Grain.png?1696528670",
+    "symbol": "GRAIN",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xf89674f18309a2e97843c6e9b19c07c22caef6d5": {
+    "assetId": "eip155:1/erc20:0xf89674f18309a2e97843c6e9b19c07c22caef6d5",
+    "chainId": "eip155:1",
+    "name": "cyb3rgam3r420",
+    "precision": 9,
+    "color": "#09F4F2",
+    "icon": "https://assets.coingecko.com/coins/images/32071/thumb/GamerLogo.jpg?1696586649",
+    "symbol": "GAMER",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xf8ad7dfe656188a23e89da09506adf7ad9290d5d": {
+    "assetId": "eip155:1/erc20:0xf8ad7dfe656188a23e89da09506adf7ad9290d5d",
+    "chainId": "eip155:1",
+    "name": "Blocery",
+    "precision": 18,
+    "color": "#04B4AC",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xf8aD7dFe656188A23e89da09506Adf7ad9290D5d/logo.png",
+    "symbol": "BLY",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xf8b358b3397a8ea5464f8cc753645d42e14b79ea": {
+    "assetId": "eip155:1/erc20:0xf8b358b3397a8ea5464f8cc753645d42e14b79ea",
+    "chainId": "eip155:1",
+    "name": "Airbloc",
+    "precision": 18,
+    "color": "#080808",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xf8b358b3397a8ea5464f8cc753645d42e14b79EA/logo.png",
+    "symbol": "ABL",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xf8c3527cc04340b208c854e985240c02f7b7793f": {
+    "assetId": "eip155:1/erc20:0xf8c3527cc04340b208c854e985240c02f7b7793f",
+    "chainId": "eip155:1",
+    "name": "Frontier on Ethereum",
+    "precision": 18,
+    "color": "#3F2A27",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xf8C3527CC04340b208C854E985240c02F7B7793f/logo.png",
+    "symbol": "FRONT",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xf8c76dbea329ec4fa987afc514f805b21b249d79": {
+    "assetId": "eip155:1/erc20:0xf8c76dbea329ec4fa987afc514f805b21b249d79",
+    "chainId": "eip155:1",
+    "name": "L",
+    "precision": 18,
+    "color": "#040404",
+    "icon": "https://assets.coingecko.com/coins/images/30846/thumb/lltokenimagelogo.png?1696529696",
+    "symbol": "L",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xf8e9f10c22840b613cda05a0c5fdb59a4d6cd7ef": {
+    "assetId": "eip155:1/erc20:0xf8e9f10c22840b613cda05a0c5fdb59a4d6cd7ef",
+    "chainId": "eip155:1",
+    "name": "Dogs Of Elon",
+    "precision": 18,
+    "color": "#F5D4AC",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xf8E9F10c22840b613cdA05A0c5Fdb59A4d6cd7eF/logo.png",
+    "symbol": "DOE",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xf8ebf4849f1fa4faf0dff2106a173d3a6cb2eb3a": {
+    "assetId": "eip155:1/erc20:0xf8ebf4849f1fa4faf0dff2106a173d3a6cb2eb3a",
+    "chainId": "eip155:1",
+    "name": "Troll",
+    "precision": 18,
+    "color": "#C1C1C1",
+    "icon": "https://assets.coingecko.com/coins/images/29897/thumb/TROLL.jpeg?1696528821",
+    "symbol": "TROLL",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xf8f1f1d2eb683bfc3971f2901045893065d58af5": {
+    "assetId": "eip155:1/erc20:0xf8f1f1d2eb683bfc3971f2901045893065d58af5",
+    "chainId": "eip155:1",
+    "name": "ShibaWarp",
+    "precision": 18,
+    "color": "#040C0D",
+    "icon": "https://assets.coingecko.com/coins/images/32052/thumb/logo.jpg?1696530849",
+    "symbol": "SBWP",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xf90c7f66eac7e2130bf677d69a250b2136cf6697": {
+    "assetId": "eip155:1/erc20:0xf90c7f66eac7e2130bf677d69a250b2136cf6697",
+    "chainId": "eip155:1",
+    "name": "HAKI Token",
+    "precision": 18,
+    "color": "#2F2B33",
+    "icon": "https://assets.coingecko.com/coins/images/7945/thumb/haki.png?1696508175",
+    "symbol": "HAKI",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xf915110898d9a455ad2da51bf49520b41655ccea": {
+    "assetId": "eip155:1/erc20:0xf915110898d9a455ad2da51bf49520b41655ccea",
+    "chainId": "eip155:1",
+    "name": "TAI",
+    "precision": 18,
+    "color": "#3C9CC4",
+    "icon": "https://assets.coingecko.com/coins/images/30574/thumb/tai.png?1696529439",
+    "symbol": "TAI",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xf920e4f3fbef5b3ad0a25017514b769bdc4ac135": {
+    "assetId": "eip155:1/erc20:0xf920e4f3fbef5b3ad0a25017514b769bdc4ac135",
+    "chainId": "eip155:1",
+    "name": "BABB",
+    "precision": 18,
+    "color": "#4BADDE",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xf920e4F3FBEF5B3aD0A25017514B769bDc4Ac135/logo.png",
+    "symbol": "BAX",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xf921ae2dac5fa128dc0f6168bf153ea0943d2d43": {
+    "assetId": "eip155:1/erc20:0xf921ae2dac5fa128dc0f6168bf153ea0943d2d43",
+    "chainId": "eip155:1",
+    "name": "Fire Protocol",
+    "precision": 8,
+    "color": "#4A4A4D",
+    "icon": "https://assets.coingecko.com/coins/images/13495/thumb/fire.jpg?1696513256",
+    "symbol": "FIRE",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xf939e0a03fb07f59a73314e73794be0e57ac1b4e": {
+    "assetId": "eip155:1/erc20:0xf939e0a03fb07f59a73314e73794be0e57ac1b4e",
+    "chainId": "eip155:1",
+    "name": "crvUSD",
+    "precision": 18,
+    "color": "#C4340A",
+    "icon": "https://assets.coingecko.com/coins/images/30118/thumb/crvusd.jpeg?1696529040",
+    "symbol": "CRVUSD",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xf941d3aabf2ee0f5589e68ba6047b8329592b366": {
+    "assetId": "eip155:1/erc20:0xf941d3aabf2ee0f5589e68ba6047b8329592b366",
+    "chainId": "eip155:1",
+    "name": "Good Dog",
+    "precision": 9,
+    "color": "#301C13",
+    "icon": "https://assets.coingecko.com/coins/images/27138/thumb/HEEL_New_Logo.png?1696526189",
+    "symbol": "HEEL",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xf94b5c5651c888d928439ab6514b93944eee6f48": {
+    "assetId": "eip155:1/erc20:0xf94b5c5651c888d928439ab6514b93944eee6f48",
+    "chainId": "eip155:1",
+    "name": "Yield App on Ethereum",
+    "precision": 18,
+    "color": "#0C347C",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xF94b5C5651c888d928439aB6514B93944eEE6F48/logo.png",
+    "symbol": "YLD",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xf951e335afb289353dc249e82926178eac7ded78": {
+    "assetId": "eip155:1/erc20:0xf951e335afb289353dc249e82926178eac7ded78",
+    "chainId": "eip155:1",
+    "name": "Swell Ethereum on Ethereum",
+    "precision": 18,
+    "color": "#394AAF",
+    "icon": "https://assets.coingecko.com/coins/images/30326/thumb/_lB7zEtS_400x400.jpg?1696529227",
+    "symbol": "SWETH",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6": {
+    "assetId": "eip155:1/erc20:0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6",
+    "chainId": "eip155:1",
+    "name": "Ripio Credit Network",
+    "precision": 18,
+    "color": "#4455F4",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xF970b8E36e23F7fC3FD752EeA86f8Be8D83375A6/logo.png",
+    "symbol": "RCN",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xf974b5f9ac9c6632fee8b76c61b0242ce69c839d": {
+    "assetId": "eip155:1/erc20:0xf974b5f9ac9c6632fee8b76c61b0242ce69c839d",
+    "chainId": "eip155:1",
+    "name": "ZYX on Ethereum",
+    "precision": 18,
+    "color": "#FCCC04",
+    "icon": "https://assets.coingecko.com/coins/images/11964/thumb/zyx.png?1696511823",
+    "symbol": "ZYX",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xf97e2a78f1f3d1fd438ff7cc3bb7de01e5945b83": {
+    "assetId": "eip155:1/erc20:0xf97e2a78f1f3d1fd438ff7cc3bb7de01e5945b83",
+    "chainId": "eip155:1",
+    "name": "holoride",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/21626/thumb/RIDE_Token_Symbol_MASTER.png?1696520986",
+    "symbol": "RIDE",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xf98ab0874b13a7fdc39d7295dedd49850a5d426b": {
+    "assetId": "eip155:1/erc20:0xf98ab0874b13a7fdc39d7295dedd49850a5d426b",
+    "chainId": "eip155:1",
+    "name": "KIRA",
+    "precision": 8,
+    "color": "#6839C9",
+    "icon": "https://assets.coingecko.com/coins/images/28196/thumb/KIRA_CMC.png?1696527199",
+    "symbol": "KIRA",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xf99d58e463a2e07e5692127302c20a191861b4d6": {
+    "assetId": "eip155:1/erc20:0xf99d58e463a2e07e5692127302c20a191861b4d6",
+    "chainId": "eip155:1",
+    "name": "Anyswap on Ethereum",
+    "precision": 18,
+    "color": "#5975E7",
+    "icon": "https://assets.coingecko.com/coins/images/12242/thumb/anyswap.jpg?1696512074",
+    "symbol": "ANY",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xf9c53268e9de692ae1b2ea5216e24e1c3ad7cb1e": {
+    "assetId": "eip155:1/erc20:0xf9c53268e9de692ae1b2ea5216e24e1c3ad7cb1e",
+    "chainId": "eip155:1",
+    "name": "Idexo",
+    "precision": 18,
+    "color": "#5757E2",
+    "icon": "https://assets.coingecko.com/coins/images/18523/thumb/qOiqm7T8_400x400.jpg?1696518004",
+    "symbol": "IDO",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xf9c5ce0c5fa29b487b7329bb92d8e473c386f82b": {
+    "assetId": "eip155:1/erc20:0xf9c5ce0c5fa29b487b7329bb92d8e473c386f82b",
+    "chainId": "eip155:1",
+    "name": "WhaleWatch",
+    "precision": 9,
+    "color": "#97182C",
+    "icon": "https://assets.coingecko.com/coins/images/31398/thumb/whalewatch_logo_200.png?1696530214",
+    "symbol": "WBOT",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xf9ca9523e5b5a42c3018c62b084db8543478c400": {
+    "assetId": "eip155:1/erc20:0xf9ca9523e5b5a42c3018c62b084db8543478c400",
+    "chainId": "eip155:1",
+    "name": "Data Lake",
+    "precision": 18,
+    "color": "#D7D7D7",
+    "icon": "https://assets.coingecko.com/coins/images/29279/thumb/VWlCfLlX_400x400.jpeg?1696528232",
+    "symbol": "LAKE",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xf9d4daae1300cff251979722c4a3c45857973079": {
+    "assetId": "eip155:1/erc20:0xf9d4daae1300cff251979722c4a3c45857973079",
+    "chainId": "eip155:1",
+    "name": "bitcastle",
+    "precision": 18,
+    "color": "#4494F4",
+    "icon": "https://assets.coingecko.com/coins/images/26551/thumb/blue_logo03.png?1696525624",
+    "symbol": "CASTLE",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xf9fb4ad91812b704ba883b11d2b576e890a6730a": {
+    "assetId": "eip155:1/erc20:0xf9fb4ad91812b704ba883b11d2b576e890a6730a",
+    "chainId": "eip155:1",
+    "name": "Aave AMM WETH",
+    "precision": 18,
+    "color": "#8DC2CC",
+    "icon": "https://assets.coingecko.com/coins/images/17259/thumb/aAMMWETH_2x.png?1696516814",
+    "symbol": "AAMMWETH",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xf9fbe825bfb2bf3e387af0dc18cac8d87f29dea8": {
+    "assetId": "eip155:1/erc20:0xf9fbe825bfb2bf3e387af0dc18cac8d87f29dea8",
+    "chainId": "eip155:1",
+    "name": "Radar on Ethereum",
+    "precision": 18,
+    "color": "#13171E",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xf9FBE825BFB2bF3E387af0Dc18caC8d87F29DEa8/logo.png",
+    "symbol": "RADAR",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xfa05a73ffe78ef8f1a739473e462c54bae6567d9": {
+    "assetId": "eip155:1/erc20:0xfa05a73ffe78ef8f1a739473e462c54bae6567d9",
+    "chainId": "eip155:1",
+    "name": "Lunyr",
+    "precision": 18,
+    "color": "#F45C54",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xfa05A73FfE78ef8f1a739473e462c54bae6567D9/logo.png",
+    "symbol": "LUN",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xfa14fa6958401314851a17d6c5360ca29f74b57b": {
+    "assetId": "eip155:1/erc20:0xfa14fa6958401314851a17d6c5360ca29f74b57b",
+    "chainId": "eip155:1",
+    "name": "Saito on Ethereum",
+    "precision": 18,
+    "color": "#F41C3C",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xFa14Fa6958401314851A17d6C5360cA29f74B57B/logo.png",
+    "symbol": "SAITO",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xfa1b65448e7ec5f37e512cdce52ab79e541f4fb2": {
+    "assetId": "eip155:1/erc20:0xfa1b65448e7ec5f37e512cdce52ab79e541f4fb2",
+    "chainId": "eip155:1",
+    "name": "Snail Race",
+    "precision": 9,
+    "color": "#ACA44E",
+    "icon": "https://assets.coingecko.com/coins/images/31062/thumb/200.png?1696529896",
+    "symbol": "SNAILS",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xfa26384ddda8176c74db700bb0cda50c559e9977": {
+    "assetId": "eip155:1/erc20:0xfa26384ddda8176c74db700bb0cda50c559e9977",
+    "chainId": "eip155:1",
+    "name": "X GF",
+    "precision": 18,
+    "color": "#ECCCC4",
+    "icon": "https://assets.coingecko.com/coins/images/31459/thumb/xGF-logo.png?1696530272",
+    "symbol": "XGF",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xfa3118b34522580c35ae27f6cf52da1dbb756288": {
+    "assetId": "eip155:1/erc20:0xfa3118b34522580c35ae27f6cf52da1dbb756288",
+    "chainId": "eip155:1",
+    "name": "Linkeye",
+    "precision": 6,
+    "color": "#1F72D0",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xFA3118B34522580c35Ae27F6cf52da1dBb756288/logo.png",
+    "symbol": "LET",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xfa3afc9a194babd56e743fa3b7aa2ccbed3eaaad": {
+    "color": "#FFFFFF",
+    "icon": "https://raw.githubusercontent.com/Idle-Labs/idle-dashboard/master/public/images/tokens/USDT.svg",
+    "name": "USDT Junior Best Yield",
+    "precision": 18,
+    "symbol": "idleUSDTJunior",
+    "chainId": "eip155:1",
+    "assetId": "eip155:1/erc20:0xfa3afc9a194babd56e743fa3b7aa2ccbed3eaaad",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xfa3e941d1f6b7b10ed84a0c211bfa8aee907965e": {
+    "assetId": "eip155:1/erc20:0xfa3e941d1f6b7b10ed84a0c211bfa8aee907965e",
+    "chainId": "eip155:1",
+    "name": "HayCoin",
+    "precision": 18,
+    "color": "#735B41",
+    "icon": "https://assets.coingecko.com/coins/images/32336/thumb/haycoin.jpeg?1698308493",
+    "symbol": "HAY",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xfa4baa6951b6ee382e9ff9af2d523278b99ca6d0": {
+    "assetId": "eip155:1/erc20:0xfa4baa6951b6ee382e9ff9af2d523278b99ca6d0",
+    "chainId": "eip155:1",
+    "name": "House",
+    "precision": 18,
+    "color": "#370B1D",
+    "icon": "https://assets.coingecko.com/coins/images/31202/thumb/hm_icon_200x200.png?1696530029",
+    "symbol": "HOUSE",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xfa5047c9c78b8877af97bdcb85db743fd7313d4a": {
+    "assetId": "eip155:1/erc20:0xfa5047c9c78b8877af97bdcb85db743fd7313d4a",
+    "chainId": "eip155:1",
+    "name": "Rook",
+    "precision": 18,
+    "color": "#040404",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xfA5047c9c78B8877af97BDcb85Db743fD7313d4a/logo.png",
+    "symbol": "ROOK",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xfa5b75a9e13df9775cf5b996a049d9cc07c15731": {
+    "assetId": "eip155:1/erc20:0xfa5b75a9e13df9775cf5b996a049d9cc07c15731",
+    "chainId": "eip155:1",
+    "name": "28VCK",
+    "precision": 18,
+    "color": "#C43484",
+    "icon": "https://assets.coingecko.com/coins/images/20063/thumb/9435.png?1696519481",
+    "symbol": "VCK",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xfa93660c3f6a848556bb8e265f994160a1f2b289": {
+    "assetId": "eip155:1/erc20:0xfa93660c3f6a848556bb8e265f994160a1f2b289",
+    "chainId": "eip155:1",
+    "name": "Community Business Token",
+    "precision": 18,
+    "color": "#886732",
+    "icon": "https://assets.coingecko.com/coins/images/14701/thumb/CBT-Token-Small.png?1696514372",
+    "symbol": "CBT",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xfa99a87b14b02e2240c79240c5a20f945ca5ef76": {
+    "assetId": "eip155:1/erc20:0xfa99a87b14b02e2240c79240c5a20f945ca5ef76",
+    "chainId": "eip155:1",
+    "name": "GG on Ethereum",
+    "precision": 18,
+    "color": "#F4D273",
+    "icon": "https://assets.coingecko.com/coins/images/13666/thumb/ggtk.png?1696513416",
+    "symbol": "GGTK",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xfaba6f8e4a5e8ab82f62fe7c39859fa577269be3": {
+    "assetId": "eip155:1/erc20:0xfaba6f8e4a5e8ab82f62fe7c39859fa577269be3",
+    "chainId": "eip155:1",
+    "name": "Ondo",
+    "precision": 18,
+    "color": "#D6D8E3",
+    "icon": "https://assets.coingecko.com/coins/images/26580/thumb/ONDO.png?1696525656",
+    "symbol": "ONDO",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xfac0403a24229d7e2edd994d50f5940624cbeac2": {
+    "assetId": "eip155:1/erc20:0xfac0403a24229d7e2edd994d50f5940624cbeac2",
+    "chainId": "eip155:1",
+    "name": "Theopetra",
+    "precision": 9,
+    "color": "#5C6A7E",
+    "icon": "https://assets.coingecko.com/coins/images/29431/thumb/MicrosoftTeams-image_%2826%29.png?1696528379",
+    "symbol": "THEO",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xfac77a24e52b463ba9857d6b758ba41ae20e31ff": {
+    "assetId": "eip155:1/erc20:0xfac77a24e52b463ba9857d6b758ba41ae20e31ff",
+    "chainId": "eip155:1",
+    "name": "LSDx Finance",
+    "precision": 18,
+    "color": "#ECEFF5",
+    "icon": "https://assets.coingecko.com/coins/images/29519/thumb/logo.png?1696528462",
+    "symbol": "LSD",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xface851a4921ce59e912d19329929ce6da6eb0c7": {
+    "assetId": "eip155:1/erc20:0xface851a4921ce59e912d19329929ce6da6eb0c7",
+    "chainId": "eip155:1",
+    "name": "cLINK",
+    "precision": 8,
+    "color": "#DDE4EB",
+    "icon": "https://assets.coingecko.com/coins/images/23943/thumb/iShot2022-02-25_14.35.54.png?1696523139",
+    "symbol": "CLINK",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xfad45e47083e4607302aa43c65fb3106f1cd7607": {
+    "assetId": "eip155:1/erc20:0xfad45e47083e4607302aa43c65fb3106f1cd7607",
+    "chainId": "eip155:1",
+    "name": "Hoge Finance",
+    "precision": 9,
+    "color": "#1E1E1E",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xfAd45E47083e4607302aa43c65fB3106F1cd7607/logo.png",
+    "symbol": "HOGE",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xfae4ee59cdd86e3be9e8b90b53aa866327d7c090": {
+    "assetId": "eip155:1/erc20:0xfae4ee59cdd86e3be9e8b90b53aa866327d7c090",
+    "chainId": "eip155:1",
+    "name": "CPChain",
+    "precision": 18,
+    "color": "#B4B4B4",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xfAE4Ee59CDd86e3Be9e8b90b53AA866327D7c090/logo.png",
+    "symbol": "CPC",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xfb130d93e49dca13264344966a611dc79a456bc5": {
+    "assetId": "eip155:1/erc20:0xfb130d93e49dca13264344966a611dc79a456bc5",
+    "chainId": "eip155:1",
+    "name": "DogeGF on Ethereum",
+    "precision": 18,
+    "color": "#E8D4D0",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xfb130d93E49DcA13264344966A611dc79a456Bc5/logo.png",
+    "symbol": "DOGEGF",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xfb19075d77a0f111796fb259819830f4780f1429": {
+    "assetId": "eip155:1/erc20:0xfb19075d77a0f111796fb259819830f4780f1429",
+    "chainId": "eip155:1",
+    "name": "Fenerbah e",
+    "precision": 6,
+    "color": "#CFCCCB",
+    "icon": "https://assets.coingecko.com/coins/images/17711/thumb/FB_Logo.png?1696517238",
+    "symbol": "FB",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xfb5453340c03db5ade474b27e68b6a9c6b2823eb": {
+    "assetId": "eip155:1/erc20:0xfb5453340c03db5ade474b27e68b6a9c6b2823eb",
+    "chainId": "eip155:1",
+    "name": "Robot",
+    "precision": 18,
+    "color": "#2A2A2A",
+    "icon": "https://assets.coingecko.com/coins/images/13517/thumb/MF_Robot_200px.png?1696513278",
+    "symbol": "ROBOT",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xfb559ce67ff522ec0b9ba7f5dc9dc7ef6c139803": {
+    "assetId": "eip155:1/erc20:0xfb559ce67ff522ec0b9ba7f5dc9dc7ef6c139803",
+    "chainId": "eip155:1",
+    "name": "Probit",
+    "precision": 18,
+    "color": "#7468D7",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xfB559CE67Ff522ec0b9Ba7f5dC9dc7EF6c139803/logo.png",
+    "symbol": "PROB",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xfb5c6815ca3ac72ce9f5006869ae67f18bf77006": {
+    "assetId": "eip155:1/erc20:0xfb5c6815ca3ac72ce9f5006869ae67f18bf77006",
+    "chainId": "eip155:1",
+    "name": "pSTAKE Finance on Ethereum",
+    "precision": 18,
+    "color": "#070707",
+    "icon": "https://assets.coingecko.com/coins/images/23931/thumb/PSTAKE_Dark.png?1696523129",
+    "symbol": "PSTAKE",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xfb62ae373aca027177d1c18ee0862817f9080d08": {
+    "assetId": "eip155:1/erc20:0xfb62ae373aca027177d1c18ee0862817f9080d08",
+    "chainId": "eip155:1",
+    "name": "My DeFi Pet on Ethereum",
+    "precision": 18,
+    "color": "#E8DCD7",
+    "icon": "https://assets.coingecko.com/coins/images/15321/thumb/mydefi.PNG?1696514970",
+    "symbol": "DPET",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xfb66321d7c674995dfcc2cb67a30bc978dc862ad": {
+    "assetId": "eip155:1/erc20:0xfb66321d7c674995dfcc2cb67a30bc978dc862ad",
+    "chainId": "eip155:1",
+    "name": "Pepe 2 0",
+    "precision": 18,
+    "color": "#EC9710",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xfb66321D7C674995dFcC2cb67A30bC978dc862AD/logo.png",
+    "symbol": "PEPE20",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xfb782396c9b20e564a64896181c7ac8d8979d5f4": {
+    "assetId": "eip155:1/erc20:0xfb782396c9b20e564a64896181c7ac8d8979d5f4",
+    "chainId": "eip155:1",
+    "name": "Divergence Protocol",
+    "precision": 18,
+    "color": "#04C4B4",
+    "icon": "https://assets.coingecko.com/coins/images/18666/thumb/DIVER.jpg?1696518136",
+    "symbol": "DIVER",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xfb7b4564402e5500db5bb6d63ae671302777c75a": {
+    "assetId": "eip155:1/erc20:0xfb7b4564402e5500db5bb6d63ae671302777c75a",
+    "chainId": "eip155:1",
+    "name": "DexTools on Ethereum",
+    "precision": 18,
+    "color": "#04A4CC",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xfB7B4564402E5500dB5bB6d63Ae671302777C75a/logo.png",
+    "symbol": "DEXT",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xfba5aa703939238c4d03cacbbd126fd7107b2082": {
+    "assetId": "eip155:1/erc20:0xfba5aa703939238c4d03cacbbd126fd7107b2082",
+    "chainId": "eip155:1",
+    "name": "WhisperBot",
+    "precision": 18,
+    "color": "#ACDCF4",
+    "icon": "https://assets.coingecko.com/coins/images/32365/thumb/WhisperBot_Logo_Transparent_BG_%281%29.png?1698030191",
+    "symbol": "WSP",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xfbbe098ee65238e4d9f771404edddcbf89cd689b": {
+    "assetId": "eip155:1/erc20:0xfbbe098ee65238e4d9f771404edddcbf89cd689b",
+    "chainId": "eip155:1",
+    "name": "Treemeister",
+    "precision": 18,
+    "color": "#897971",
+    "icon": "https://assets.coingecko.com/coins/images/31529/thumb/TREELOGO.png?1696530338",
+    "symbol": "TREE",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xfbbe9b1142c699512545f47937ee6fae0e4b0aa9": {
+    "assetId": "eip155:1/erc20:0xfbbe9b1142c699512545f47937ee6fae0e4b0aa9",
+    "chainId": "eip155:1",
+    "name": "EDDASwap",
+    "precision": 18,
+    "color": "#8A17E4",
+    "icon": "https://assets.coingecko.com/coins/images/14368/thumb/edda.png?1696514061",
+    "symbol": "EDDA",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xfbc4f3f645c4003a2e4f4e9b51077d2daa9a9341": {
+    "assetId": "eip155:1/erc20:0xfbc4f3f645c4003a2e4f4e9b51077d2daa9a9341",
+    "chainId": "eip155:1",
+    "name": "Zedxion on Ethereum",
+    "precision": 18,
+    "color": "#DBDFE0",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xFbC4f3f645C4003a2E4F4e9b51077d2DaA9a9341/logo.png",
+    "symbol": "ZEDXION",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xfbd5fd3f85e9f4c5e8b40eec9f8b8ab1caaa146b": {
+    "assetId": "eip155:1/erc20:0xfbd5fd3f85e9f4c5e8b40eec9f8b8ab1caaa146b",
+    "chainId": "eip155:1",
+    "name": "Treat Token",
+    "precision": 18,
+    "color": "#DC0E10",
+    "icon": "https://assets.coingecko.com/coins/images/31518/thumb/treat.jpg?1696530328",
+    "symbol": "TREAT",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xfbe6f37d3db3fc939f665cfe21238c11a5447831": {
+    "assetId": "eip155:1/erc20:0xfbe6f37d3db3fc939f665cfe21238c11a5447831",
+    "chainId": "eip155:1",
+    "name": "ETH 2 0",
+    "precision": 9,
+    "color": "#647CEB",
+    "icon": "https://assets.coingecko.com/coins/images/32079/thumb/BSk76OA8_400x400.jpg?1696530878",
+    "symbol": "ETH20",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xfbe878ced08132bd8396988671b450793c44bc12": {
+    "assetId": "eip155:1/erc20:0xfbe878ced08132bd8396988671b450793c44bc12",
+    "chainId": "eip155:1",
+    "name": "Fox Trading on Ethereum",
+    "precision": 18,
+    "color": "#FCB043",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xFbe878CED08132bd8396988671b450793C44bC12/logo.png",
+    "symbol": "FOXT",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xfbeb78a723b8087fd2ea7ef1afec93d35e8bed42": {
+    "assetId": "eip155:1/erc20:0xfbeb78a723b8087fd2ea7ef1afec93d35e8bed42",
+    "chainId": "eip155:1",
+    "name": "UNI yVault",
+    "precision": 18,
+    "color": "#FADDEA",
+    "icon": "https://assets.coingecko.com/coins/images/28781/thumb/yvUNI-128-0xFBEB78a723b8087fD2ea7Ef1afEc93d35E8Bed42.png?1696527760",
+    "symbol": "YVUNI",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xfbeea1c75e4c4465cb2fccc9c6d6afe984558e20": {
+    "assetId": "eip155:1/erc20:0xfbeea1c75e4c4465cb2fccc9c6d6afe984558e20",
+    "chainId": "eip155:1",
+    "name": "DuckDaoDime on Ethereum",
+    "precision": 18,
+    "color": "#ECA424",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xFbEEa1C75E4c4465CB2FCCc9c6d6afe984558E20/logo.png",
+    "symbol": "DDIM",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xfc05987bd2be489accf0f509e44b0145d68240f7": {
+    "assetId": "eip155:1/erc20:0xfc05987bd2be489accf0f509e44b0145d68240f7",
+    "chainId": "eip155:1",
+    "name": "Essentia",
+    "precision": 18,
+    "color": "#1AA8C8",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xfc05987bd2be489ACCF0f509E44B0145d68240f7/logo.png",
+    "symbol": "ESS",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xfc09c7cfd9c175dd9423ca02ae1249579ab12f12": {
+    "assetId": "eip155:1/erc20:0xfc09c7cfd9c175dd9423ca02ae1249579ab12f12",
+    "chainId": "eip155:1",
+    "name": "Totoro Inu",
+    "precision": 9,
+    "color": "#D89898",
+    "icon": "https://assets.coingecko.com/coins/images/20277/thumb/cLogo.png?1696519683",
+    "symbol": "TOTORO",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xfc0b60e0df5dc9d4b72d957ca2d251cee308019a": {
+    "assetId": "eip155:1/erc20:0xfc0b60e0df5dc9d4b72d957ca2d251cee308019a",
+    "chainId": "eip155:1",
+    "name": "SLG GAMES",
+    "precision": 18,
+    "color": "#B2D7DE",
+    "icon": "https://assets.coingecko.com/coins/images/26436/thumb/shattered_legion.png?1696525510",
+    "symbol": "SLG",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xfc0d6cf33e38bce7ca7d89c0e292274031b7157a": {
+    "assetId": "eip155:1/erc20:0xfc0d6cf33e38bce7ca7d89c0e292274031b7157a",
+    "chainId": "eip155:1",
+    "name": "Netvrk on Ethereum",
+    "precision": 18,
+    "color": "#B5B0FB",
+    "icon": "https://assets.coingecko.com/coins/images/15721/thumb/netvrk_icon.png?1696515348",
+    "symbol": "NTVRK",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xfc10cd3895f2c66d6639ec33ae6360d6cfca7d6d": {
+    "assetId": "eip155:1/erc20:0xfc10cd3895f2c66d6639ec33ae6360d6cfca7d6d",
+    "chainId": "eip155:1",
+    "name": "YES",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/32939/thumb/logo.png?1700112486",
+    "symbol": "YES",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xfc1c93a2507975e98b9d0e9260ded61a00152bf1": {
+    "assetId": "eip155:1/erc20:0xfc1c93a2507975e98b9d0e9260ded61a00152bf1",
+    "chainId": "eip155:1",
+    "name": "Atlas Navi",
+    "precision": 18,
+    "color": "#7FD7D4",
+    "icon": "https://assets.coingecko.com/coins/images/28389/thumb/token_icon_-_logo_ATLAS_NAVI_200x200_transparent.png?1696527388",
+    "symbol": "NAVI",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xfc1e690f61efd961294b3e1ce3313fbd8aa4f85d": {
+    "assetId": "eip155:1/erc20:0xfc1e690f61efd961294b3e1ce3313fbd8aa4f85d",
+    "chainId": "eip155:1",
+    "name": "Aave DAI v1",
+    "precision": 18,
+    "color": "#6E88B3",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xfC1E690f61EFd961294b3e1Ce3313fBD8aa4f85d/logo.png",
+    "symbol": "ADAI",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xfc4913214444af5c715cc9f7b52655e788a569ed": {
+    "assetId": "eip155:1/erc20:0xfc4913214444af5c715cc9f7b52655e788a569ed",
+    "chainId": "eip155:1",
+    "name": "Icosa",
+    "precision": 9,
+    "color": "#B7C1FC",
+    "icon": "https://assets.coingecko.com/coins/images/27708/thumb/icsa.e2b79cbc.png?1696526734",
+    "symbol": "ICSA",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xfc4b4ec763722b71eb1d729749b447a9645f5f30": {
+    "assetId": "eip155:1/erc20:0xfc4b4ec763722b71eb1d729749b447a9645f5f30",
+    "chainId": "eip155:1",
+    "name": "DumbMoney",
+    "precision": 9,
+    "color": "#130F09",
+    "icon": "https://assets.coingecko.com/coins/images/32058/thumb/DumbMoney_-_GME_-_Official_Logo_200x200px.png?1696530855",
+    "symbol": "GME",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xfc4b8ed459e00e5400be803a9bb3954234fd50e3": {
+    "assetId": "eip155:1/erc20:0xfc4b8ed459e00e5400be803a9bb3954234fd50e3",
+    "chainId": "eip155:1",
+    "name": "Aave WBTC v1",
+    "precision": 8,
+    "color": "#EC9444",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xFC4B8ED459e00e5400be803A9BB3954234FD50e3/logo.png",
+    "symbol": "AWBTC",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xfc82bb4ba86045af6f327323a46e80412b91b27d": {
+    "assetId": "eip155:1/erc20:0xfc82bb4ba86045af6f327323a46e80412b91b27d",
+    "chainId": "eip155:1",
+    "name": "Prom on Ethereum",
+    "precision": 18,
+    "color": "#1E1A27",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xfc82bb4ba86045Af6F327323a46E80412b91b27d/logo.png",
+    "symbol": "PROM",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xfc979087305a826c2b2a0056cfaba50aad3e6439": {
+    "assetId": "eip155:1/erc20:0xfc979087305a826c2b2a0056cfaba50aad3e6439",
+    "chainId": "eip155:1",
+    "name": "Dafi Protocol on Ethereum",
+    "precision": 18,
+    "color": "#32333A",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xFc979087305A826c2B2a0056cFAbA50aad3E6439/logo.png",
+    "symbol": "DAFI",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xfc98e825a2264d890f9a1e68ed50e1526abccacd": {
+    "assetId": "eip155:1/erc20:0xfc98e825a2264d890f9a1e68ed50e1526abccacd",
+    "chainId": "eip155:1",
+    "name": "Moss Carbon Credit",
+    "precision": 18,
+    "color": "#14140C",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xfC98e825A2264D890F9a1e68ed50E1526abCcacD/logo.png",
+    "symbol": "MCO2",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xfca47962d45adfdfd1ab2d972315db4ce7ccf094": {
+    "assetId": "eip155:1/erc20:0xfca47962d45adfdfd1ab2d972315db4ce7ccf094",
+    "chainId": "eip155:1",
+    "name": "iXledger",
+    "precision": 8,
+    "color": "#1FB1D3",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xfcA47962D45ADFdfd1Ab2D972315dB4ce7CCf094/logo.png",
+    "symbol": "IXT",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xfca59cd816ab1ead66534d82bc21e7515ce441cf": {
+    "assetId": "eip155:1/erc20:0xfca59cd816ab1ead66534d82bc21e7515ce441cf",
+    "chainId": "eip155:1",
+    "name": "Rarible",
+    "precision": 18,
+    "color": "#3578FC",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xFca59Cd816aB1eaD66534D82bc21E7515cE441CF/logo.png",
+    "symbol": "RARI",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xfca89d55a768375ab7ca04485a35a964bea828dd": {
+    "assetId": "eip155:1/erc20:0xfca89d55a768375ab7ca04485a35a964bea828dd",
+    "chainId": "eip155:1",
+    "name": "Delrey Inu",
+    "precision": 18,
+    "color": "#E8EBF3",
+    "icon": "https://assets.coingecko.com/coins/images/29661/thumb/Delrey_Inu.png?1696528596",
+    "symbol": "DELREY",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xfcaf0e4498e78d65526a507360f755178b804ba8": {
+    "assetId": "eip155:1/erc20:0xfcaf0e4498e78d65526a507360f755178b804ba8",
+    "chainId": "eip155:1",
+    "name": "NicCageWaluigiElmo42069Inu",
+    "precision": 18,
+    "color": "#C5313F",
+    "icon": "https://assets.coingecko.com/coins/images/31378/thumb/NicCageWaluigiElmo42069Inu.png?1696530195",
+    "symbol": "SHIB",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xfcc5c47be19d06bf83eb04298b026f81069ff65b": {
+    "assetId": "eip155:1/erc20:0xfcc5c47be19d06bf83eb04298b026f81069ff65b",
+    "chainId": "eip155:1",
+    "name": "Yearn CRV",
+    "precision": 18,
+    "color": "#D8E222",
+    "icon": "https://assets.coingecko.com/coins/images/27622/thumb/yearncrvnew_32.png?1696526653",
+    "symbol": "YCRV",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xfcc63e6459936216b7b887f6da5fcd90c0c62b7c": {
+    "assetId": "eip155:1/erc20:0xfcc63e6459936216b7b887f6da5fcd90c0c62b7c",
+    "chainId": "eip155:1",
+    "name": "Korea Entertainment Education   Shoppin",
+    "precision": 18,
+    "color": "#222221",
+    "icon": "https://assets.coingecko.com/coins/images/27513/thumb/lo2XCLcf_400x400.jpeg?1696526552",
+    "symbol": "KEES",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xfcdb9e987f9159dab2f507007d5e3d10c510aa70": {
+    "assetId": "eip155:1/erc20:0xfcdb9e987f9159dab2f507007d5e3d10c510aa70",
+    "chainId": "eip155:1",
+    "name": "0x1 tools  AI Multi tool",
+    "precision": 18,
+    "color": "#DDD8D6",
+    "icon": "https://assets.coingecko.com/coins/images/31026/thumb/a392bc3a-9e36-4e6a-bdfe-254b7bb36918.jpeg?1696529862",
+    "symbol": "0X1",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xfceb206e1a80527908521121358b5e26caabaa75": {
+    "assetId": "eip155:1/erc20:0xfceb206e1a80527908521121358b5e26caabaa75",
+    "chainId": "eip155:1",
+    "name": "Main on Ethereum",
+    "precision": 18,
+    "color": "#1C151E",
+    "icon": "https://assets.coingecko.com/coins/images/25258/thumb/logo_circle.png?1696524398",
+    "symbol": "MAIN",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xfcf8eda095e37a41e002e266daad7efc1579bc0a": {
+    "assetId": "eip155:1/erc20:0xfcf8eda095e37a41e002e266daad7efc1579bc0a",
+    "chainId": "eip155:1",
+    "name": "FLEX Coin",
+    "precision": 18,
+    "color": "#845CF4",
+    "icon": "https://assets.coingecko.com/coins/images/9108/thumb/coinflex_logo.png?1696509233",
+    "symbol": "FLEX",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xfd0205066521550d7d7ab19da8f72bb004b4c341": {
+    "assetId": "eip155:1/erc20:0xfd0205066521550d7d7ab19da8f72bb004b4c341",
+    "chainId": "eip155:1",
+    "name": "Timeless",
+    "precision": 18,
+    "color": "#C86A6D",
+    "icon": "https://assets.coingecko.com/coins/images/28714/thumb/timeless-logo_3x.png?1696527695",
+    "symbol": "LIT",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xfd0877d9095789caf24c98f7cce092fa8e120775": {
+    "assetId": "eip155:1/erc20:0xfd0877d9095789caf24c98f7cce092fa8e120775",
+    "chainId": "eip155:1",
+    "name": "TUSD yVault",
+    "precision": 18,
+    "color": "#042C6C",
+    "icon": "https://assets.coingecko.com/coins/images/28790/thumb/yvTUSD-128-0xFD0877d9095789cAF24c98F7CCe092fa8E120775.png?1696527768",
+    "symbol": "YVTUSD",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xfd09911130e6930bf87f2b0554c44f400bd80d3e": {
+    "assetId": "eip155:1/erc20:0xfd09911130e6930bf87f2b0554c44f400bd80d3e",
+    "chainId": "eip155:1",
+    "name": "Ethix on Ethereum",
+    "precision": 18,
+    "color": "#7EED5F",
+    "icon": "https://assets.coingecko.com/coins/images/3031/thumb/ETHIX_icon_256x256-256.png?1696503766",
+    "symbol": "ETHIX",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xfd1450a131599ff34f3be1775d8c8bf79e353d8c": {
+    "assetId": "eip155:1/erc20:0xfd1450a131599ff34f3be1775d8c8bf79e353d8c",
+    "chainId": "eip155:1",
+    "name": "Shiba",
+    "precision": 18,
+    "color": "#F1DED7",
+    "icon": "https://assets.coingecko.com/coins/images/32299/thumb/IMG_20231011_081456_897.jpg?1697186075",
+    "symbol": "SHIBA",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xfd414e39155f91e94443a9fe97e856569d0f5eec": {
+    "assetId": "eip155:1/erc20:0xfd414e39155f91e94443a9fe97e856569d0f5eec",
+    "chainId": "eip155:1",
+    "name": "Shibarium Perpetuals",
+    "precision": 9,
+    "color": "#DDB752",
+    "icon": "https://assets.coingecko.com/coins/images/29465/thumb/photo_2023-03-15_22.44.48-removebg-preview_%281%29.png?1696528411",
+    "symbol": "SERP",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xfd4168e642ebd04c3684a6cdb3a5e86de85d3908": {
+    "assetId": "eip155:1/erc20:0xfd4168e642ebd04c3684a6cdb3a5e86de85d3908",
+    "chainId": "eip155:1",
+    "name": "The APIS",
+    "precision": 18,
+    "color": "#151515",
+    "icon": "https://assets.coingecko.com/coins/images/14055/thumb/Screenshot_2022-03-10_at_11.09.50_AM.png?1696513780",
+    "symbol": "API",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xfd4ca4a692f14d88af3e7ae13cf00d5095213b25": {
+    "assetId": "eip155:1/erc20:0xfd4ca4a692f14d88af3e7ae13cf00d5095213b25",
+    "chainId": "eip155:1",
+    "name": "Wiskers",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/32124/thumb/1.png?1696587384",
+    "symbol": "WSKR",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xfd6c31bb6f05fc8db64f4b740ab758605c271fd8": {
+    "assetId": "eip155:1/erc20:0xfd6c31bb6f05fc8db64f4b740ab758605c271fd8",
+    "chainId": "eip155:1",
+    "name": "Contracoin",
+    "precision": 18,
+    "color": "#ECB414",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xFD6C31bb6F05Fc8dB64F4b740Ab758605c271FD8/logo.png",
+    "symbol": "CTCN",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xfd8b38d453ff6448e1a348f9b153e6873b6ca1ce": {
+    "assetId": "eip155:1/erc20:0xfd8b38d453ff6448e1a348f9b153e6873b6ca1ce",
+    "chainId": "eip155:1",
+    "name": "XLOTTO",
+    "precision": 18,
+    "color": "#6CAC9C",
+    "icon": "https://assets.coingecko.com/coins/images/32182/thumb/200x200.png?1696743181",
+    "symbol": "XLOTTO",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xfd957f21bd95e723645c07c48a2d8acb8ffb3794": {
+    "assetId": "eip155:1/erc20:0xfd957f21bd95e723645c07c48a2d8acb8ffb3794",
+    "chainId": "eip155:1",
+    "name": "Ethereum Meta on Ethereum",
+    "precision": 18,
+    "color": "#040404",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xFD957F21bd95E723645C07C48a2d8ACB8Ffb3794/logo.png",
+    "symbol": "ETHM",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xfdb15e5e6799be72798b1ccfaecbf186bf73a0c4": {
+    "assetId": "eip155:1/erc20:0xfdb15e5e6799be72798b1ccfaecbf186bf73a0c4",
+    "chainId": "eip155:1",
+    "name": "NitroEX",
+    "precision": 8,
+    "color": "#FCC405",
+    "icon": "https://assets.coingecko.com/coins/images/13976/thumb/ntx-icon.png?1696513709",
+    "symbol": "NTX",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xfde00bd1da57349b0df85f134b18124266f3bc5b": {
+    "assetId": "eip155:1/erc20:0xfde00bd1da57349b0df85f134b18124266f3bc5b",
+    "chainId": "eip155:1",
+    "name": "Decentralized Intelligence Agency  OLD ",
+    "precision": 18,
+    "color": "#848484",
+    "icon": "https://assets.coingecko.com/coins/images/29808/thumb/IMG_20230412_175949_318.jpg?1696528737",
+    "symbol": "DIA",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xfdedd42a446bf6c5a883727cda6ff557511e3e1e": {
+    "assetId": "eip155:1/erc20:0xfdedd42a446bf6c5a883727cda6ff557511e3e1e",
+    "chainId": "eip155:1",
+    "name": "Waygate",
+    "precision": 18,
+    "color": "#BC33F8",
+    "icon": "https://assets.coingecko.com/coins/images/30903/thumb/CMC_tile.png?1696529748",
+    "symbol": "WAY",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xfdf7af616091a05b9cd3b5aedd3e88d4e8cd882e": {
+    "assetId": "eip155:1/erc20:0xfdf7af616091a05b9cd3b5aedd3e88d4e8cd882e",
+    "chainId": "eip155:1",
+    "name": "No ticker",
+    "precision": 8,
+    "color": "#E1E1E1",
+    "icon": "https://assets.coingecko.com/coins/images/31548/thumb/photo_2023-08-30_12.44.30.jpeg?1696530361",
+    "symbol": "NOTICKER",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xfe18be6b3bd88a2d2a7f928d00292e7a9963cfc6": {
+    "assetId": "eip155:1/erc20:0xfe18be6b3bd88a2d2a7f928d00292e7a9963cfc6",
+    "chainId": "eip155:1",
+    "name": "sBTC",
+    "precision": 18,
+    "color": "#F59A24",
+    "icon": "https://assets.coingecko.com/coins/images/8838/thumb/sBTC.png?1696508990",
+    "symbol": "SBTC",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xfe2e637202056d30016725477c5da089ab0a043a": {
+    "assetId": "eip155:1/erc20:0xfe2e637202056d30016725477c5da089ab0a043a",
+    "chainId": "eip155:1",
+    "name": "sETH2",
+    "precision": 18,
+    "color": "#6BAB63",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xFe2e637202056d30016725477c5da089Ab0A043A/logo.png",
+    "symbol": "SETH2",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xfe39c384d702914127a005523f9915addb9bd59b": {
+    "assetId": "eip155:1/erc20:0xfe39c384d702914127a005523f9915addb9bd59b",
+    "chainId": "eip155:1",
+    "name": "Hippocrat",
+    "precision": 18,
+    "color": "#DFE1E1",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xfE39C384D702914127a005523f9915ADDB9bd59b/logo.png",
+    "symbol": "HPO",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xfe3e6a25e6b192a42a44ecddcd13796471735acf": {
+    "assetId": "eip155:1/erc20:0xfe3e6a25e6b192a42a44ecddcd13796471735acf",
+    "chainId": "eip155:1",
+    "name": "Reef on Ethereum",
+    "precision": 18,
+    "color": "#BD28C4",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xFE3E6a25e6b192A42a44ecDDCd13796471735ACf/logo.png",
+    "symbol": "REEF",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xfe459828c90c0ba4bc8b42f5c5d44f316700b430": {
+    "assetId": "eip155:1/erc20:0xfe459828c90c0ba4bc8b42f5c5d44f316700b430",
+    "chainId": "eip155:1",
+    "name": "BBS Network on Ethereum",
+    "precision": 18,
+    "color": "#0E1A28",
+    "icon": "https://assets.coingecko.com/coins/images/23715/thumb/Ni13Pg1K_400x400.jpg?1696522915",
+    "symbol": "BBS",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xfe5f141bf94fe84bc28ded0ab966c16b17490657": {
+    "assetId": "eip155:1/erc20:0xfe5f141bf94fe84bc28ded0ab966c16b17490657",
+    "chainId": "eip155:1",
+    "name": "Libra Credit",
+    "precision": 18,
+    "color": "#064ED4",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xfe5F141Bf94fE84bC28deD0AB966c16B17490657/logo.png",
+    "symbol": "LBA",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xfe60fba03048effb4acf3f0088ec2f53d779d3bb": {
+    "assetId": "eip155:1/erc20:0xfe60fba03048effb4acf3f0088ec2f53d779d3bb",
+    "chainId": "eip155:1",
+    "name": "3d3d",
+    "precision": 18,
+    "color": "#454F12",
+    "icon": "https://assets.coingecko.com/coins/images/30232/thumb/200x200_2.PNG?1696529142",
+    "symbol": "3D3D",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xfe67a4450907459c3e1fff623aa927dd4e28c67a": {
+    "assetId": "eip155:1/erc20:0xfe67a4450907459c3e1fff623aa927dd4e28c67a",
+    "chainId": "eip155:1",
+    "name": "Connext on Ethereum",
+    "precision": 18,
+    "color": "#09070B",
+    "icon": "https://assets.coingecko.com/coins/images/31293/thumb/connext.png?1696530113",
+    "symbol": "NEXT",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xfe6f2e70f30a0894d0aee79e11653275e89c7bd6": {
+    "assetId": "eip155:1/erc20:0xfe6f2e70f30a0894d0aee79e11653275e89c7bd6",
+    "chainId": "eip155:1",
+    "name": "Karen Pepe",
+    "precision": 18,
+    "color": "#24ACDC",
+    "icon": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAIAAAACACAMAAAD04JH5AAADAFBMVEUtN0gmr9j///8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACDMAavAAABAHRSTlP/////AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAf6K/dgAAQItJREFUeNoBgEB/vwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAQEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgEBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgEBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAwAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAwAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAwAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAwAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAwAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAwAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAQMDAwMDAwMBAQEBAQECAgICAgICAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMBAQEBAQECAgICAgICAwMDAwMDAwMDAwMDAwMDAwMDAwMDAgICAgICAgAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAwEBAQEBAQICAgICAgIBAwMDAwMDAwEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAwEBAQEBAQICAgICAgIDAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAwEBAQEBAQICAgICAgIDAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAwEBAQEBAQICAgICAgIDAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAwEBAQEBAQICAgICAgIDAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAwEBAQEBAQICAgICAgIDAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAwEBAQEBAQICAgICAgIDAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAgICAgICAgEDAwMDAwMDAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAQEBAQEBAQEBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAAMDAwMDAwMAAAAAAAAAAAACAgICAgICAgICAgICAgMBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAwAAAAAAAAAAAAAAAAAAAAACAgICAgICAgICAgICAgMBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAwAAAAAAAAAAAAAAAAAAAAACAgICAgICAgICAgICAgMBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAwAAAAAAAAAAAAAAAAAAAAACAgICAgICAgICAgICAgMBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAwAAAAAAAAAAAAAAAAAAAAACAgICAgICAgICAgICAgMBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAwAAAAAAAAAAAAAAAAAAAAACAgICAgICAgICAgICAgMBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAwAAAAAAAAAAAAAAAAAAAAACAgICAgICAwMDAwMDAwICAgICAgIBAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwEBAQEBAQEBAQEBAQECAgICAgICAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQICAgICAgIDAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQICAgICAgIDAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQICAgICAgIDAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQICAgICAgIDAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQICAgICAgIDAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQICAgICAgIDAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEDAwMDAwMCAgICAgICAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAwMDAwMDAgICAgICAgEBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgEBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAwMDAwMDAwEBAQEBAQEBAQEBAQEBAQEBAQEBAQMDAwMDAwMBAQEBAQEBAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMBAQEBAQEBAwMDAwMDAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOxLMlC9GRSXAAAAAElFTkSuQmCC",
+    "symbol": "KEPE",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xfe9a29ab92522d14fc65880d817214261d8479ae": {
+    "assetId": "eip155:1/erc20:0xfe9a29ab92522d14fc65880d817214261d8479ae",
+    "chainId": "eip155:1",
+    "name": "Snowswap",
+    "precision": 18,
+    "color": "#E8FAFA",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xfe9A29aB92522D14Fc65880d817214261D8479AE/logo.png",
+    "symbol": "SNOW",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xfeb6d5238ed8f1d59dcab2db381aa948e625966d": {
+    "assetId": "eip155:1/erc20:0xfeb6d5238ed8f1d59dcab2db381aa948e625966d",
+    "chainId": "eip155:1",
+    "name": "Doge TV",
+    "precision": 18,
+    "color": "#DEC478",
+    "icon": "https://assets.coingecko.com/coins/images/28050/thumb/532a5b9e-8294-4be1-be18-f04a2cf5f0a9.png?1696527063",
+    "symbol": "DGTV",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xfed656555a88c86675d2bf01a3b7861c3f89d478": {
+    "assetId": "eip155:1/erc20:0xfed656555a88c86675d2bf01a3b7861c3f89d478",
+    "chainId": "eip155:1",
+    "name": "Alcatraz",
+    "precision": 18,
+    "color": "#040404",
+    "icon": "https://assets.coingecko.com/coins/images/31684/thumb/alcatrazlogo200_200.png?1696530503",
+    "symbol": "ALCZ",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xfeeb4d0f5463b1b04351823c246bdb84c4320cc2": {
+    "assetId": "eip155:1/erc20:0xfeeb4d0f5463b1b04351823c246bdb84c4320cc2",
+    "chainId": "eip155:1",
+    "name": "Gold Retriever",
+    "precision": 18,
+    "color": "#181212",
+    "icon": "https://assets.coingecko.com/coins/images/27529/thumb/33406C30-2F50-45D8-9F75-5B7EAEB23038.jpeg?1696526567",
+    "symbol": "GLDN",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xfeeeef4d7b4bf3cc8bd012d02d32ba5fd3d51e31": {
+    "assetId": "eip155:1/erc20:0xfeeeef4d7b4bf3cc8bd012d02d32ba5fd3d51e31",
+    "chainId": "eip155:1",
+    "name": "Tail",
+    "precision": 18,
+    "color": "#724C18",
+    "icon": "https://assets.coingecko.com/coins/images/28260/thumb/IMG_20221210_122215_723.jpg?1696527262",
+    "symbol": "TAIL",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xfeef77d3f69374f66429c91d732a244f074bdf74": {
+    "assetId": "eip155:1/erc20:0xfeef77d3f69374f66429c91d732a244f074bdf74",
+    "chainId": "eip155:1",
+    "name": "Convex FXS",
+    "precision": 18,
+    "color": "#2C2D2A",
+    "icon": "https://assets.coingecko.com/coins/images/29001/thumb/cvxfxs.png?1696527973",
+    "symbol": "CVXFXS",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xff00644ca76def7a3f7501a281ffe45934aefbfe": {
+    "assetId": "eip155:1/erc20:0xff00644ca76def7a3f7501a281ffe45934aefbfe",
+    "chainId": "eip155:1",
+    "name": "Shadow Wizard Money Gang",
+    "precision": 9,
+    "color": "#1C1513",
+    "icon": "https://assets.coingecko.com/coins/images/32452/thumb/logo.png?1698240659",
+    "symbol": "GANG",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xff030228a046f640143dab19be00009606c89b1d": {
+    "assetId": "eip155:1/erc20:0xff030228a046f640143dab19be00009606c89b1d",
+    "chainId": "eip155:1",
+    "name": "Auxo",
+    "precision": 18,
+    "color": "#281266",
+    "icon": "https://assets.coingecko.com/coins/images/30675/thumb/AUXO_Logo.png?1696529544",
+    "symbol": "AUXO",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xff19138b039d938db46bdda0067dc4ba132ec71c": {
+    "assetId": "eip155:1/erc20:0xff19138b039d938db46bdda0067dc4ba132ec71c",
+    "chainId": "eip155:1",
+    "name": "Snetwork",
+    "precision": 8,
+    "color": "#363942",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xFf19138b039D938db46bDDA0067DC4BA132ec71C/logo.png",
+    "symbol": "SNET",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xff20817765cb7f73d4bde2e66e067e58d11095c2": {
+    "assetId": "eip155:1/erc20:0xff20817765cb7f73d4bde2e66e067e58d11095c2",
+    "chainId": "eip155:1",
+    "name": "Amp",
+    "precision": 18,
+    "color": "#D42C7C",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xfF20817765cB7f73d4bde2e66e067E58D11095C2/logo.png",
+    "symbol": "AMP",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xff44b5719f0b77a9951636fc5e69d3a1fc9e7d73": {
+    "assetId": "eip155:1/erc20:0xff44b5719f0b77a9951636fc5e69d3a1fc9e7d73",
+    "chainId": "eip155:1",
+    "name": "4ART Coin",
+    "precision": 18,
+    "color": "#171717",
+    "icon": "https://assets.coingecko.com/coins/images/4690/thumb/0_%284%29.png?1696505257",
+    "symbol": "4ART",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xff44b937788215eca197baaf9af69dbdc214aa04": {
+    "assetId": "eip155:1/erc20:0xff44b937788215eca197baaf9af69dbdc214aa04",
+    "chainId": "eip155:1",
+    "name": "Rocki on Ethereum",
+    "precision": 18,
+    "color": "#FBDFE4",
+    "icon": "https://assets.coingecko.com/coins/images/13465/thumb/rocki_logo.png?1696513227",
+    "symbol": "ROCKI",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xff56cc6b1e6ded347aa0b7676c85ab0b3d08b0fa": {
+    "assetId": "eip155:1/erc20:0xff56cc6b1e6ded347aa0b7676c85ab0b3d08b0fa",
+    "chainId": "eip155:1",
+    "name": "Orbs on Ethereum",
+    "precision": 18,
+    "color": "#576496",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xff56Cc6b1E6dEd347aA0B7676C85AB0B3D08B0FA/logo.png",
+    "symbol": "ORBS",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xff742d05420b6aca4481f635ad8341f81a6300c2": {
+    "assetId": "eip155:1/erc20:0xff742d05420b6aca4481f635ad8341f81a6300c2",
+    "chainId": "eip155:1",
+    "name": "AscendEx",
+    "precision": 18,
+    "color": "#1CD4EC",
+    "icon": "https://assets.coingecko.com/coins/images/5003/thumb/bitmax.png?1696505535",
+    "symbol": "ASD",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xff75ced57419bcaebe5f05254983b013b0646ef5": {
+    "assetId": "eip155:1/erc20:0xff75ced57419bcaebe5f05254983b013b0646ef5",
+    "chainId": "eip155:1",
+    "name": "Cook on Ethereum",
+    "precision": 18,
+    "color": "#2C3464",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xFF75CEd57419bcaEBe5F05254983b013B0646eF5/logo.png",
+    "symbol": "COOK",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xff770e4c68e35db85c6e0e89a43750ec02bdb2ac": {
+    "assetId": "eip155:1/erc20:0xff770e4c68e35db85c6e0e89a43750ec02bdb2ac",
+    "chainId": "eip155:1",
+    "name": "Ordinal BTC",
+    "precision": 18,
+    "color": "#DDDDDD",
+    "icon": "https://assets.coingecko.com/coins/images/29244/thumb/Ordinal_BTC.png?1696528200",
+    "symbol": "OBTC",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xff836a5821e69066c87e268bc51b849fab94240c": {
+    "assetId": "eip155:1/erc20:0xff836a5821e69066c87e268bc51b849fab94240c",
+    "chainId": "eip155:1",
+    "name": "Real Smurf Cat",
+    "precision": 18,
+    "color": "#37392F",
+    "icon": "https://assets.coingecko.com/coins/images/31751/thumb/pfp2.png?1696530570",
+    "symbol": "",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xff8c479134a18918059493243943150776cf8cf2": {
+    "assetId": "eip155:1/erc20:0xff8c479134a18918059493243943150776cf8cf2",
+    "chainId": "eip155:1",
+    "name": "Renq Finance",
+    "precision": 18,
+    "color": "#3C27E3",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xff8C479134A18918059493243943150776cF8CF2/logo.png",
+    "symbol": "RENQ",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xff931a7946d2fa11cf9123ef0dc6f6c7c6cb60c4": {
+    "assetId": "eip155:1/erc20:0xff931a7946d2fa11cf9123ef0dc6f6c7c6cb60c4",
+    "chainId": "eip155:1",
+    "name": "Dancing Baby",
+    "precision": 9,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/32641/thumb/IMG_20231101_135519_737.jpg?1698889030",
+    "symbol": "BABY",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xffa188493c15dfaf2c206c97d8633377847b6a52": {
+    "assetId": "eip155:1/erc20:0xffa188493c15dfaf2c206c97d8633377847b6a52",
+    "chainId": "eip155:1",
+    "name": "Wefi Finance on Ethereum",
+    "precision": 18,
+    "color": "#1C3CF4",
+    "icon": "https://assets.coingecko.com/coins/images/30540/thumb/wefi.png?1696529412",
+    "symbol": "WEFI",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xffbf315f70e458e49229654dea4ce192d26f9b25": {
+    "assetId": "eip155:1/erc20:0xffbf315f70e458e49229654dea4ce192d26f9b25",
+    "chainId": "eip155:1",
+    "name": "Voltage",
+    "precision": 18,
+    "color": "#7C72F6",
+    "icon": "https://assets.coingecko.com/coins/images/18515/thumb/volt.png?1696517996",
+    "symbol": "VOLT",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xffc97d72e13e01096502cb8eb52dee56f74dad7b": {
+    "assetId": "eip155:1/erc20:0xffc97d72e13e01096502cb8eb52dee56f74dad7b",
+    "chainId": "eip155:1",
+    "name": "Aave AAVE",
+    "precision": 18,
+    "color": "#7088B3",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xFFC97d72E13E01096502Cb8Eb52dEe56f74DAD7B/logo.png",
+    "symbol": "AAAVE",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xffd822149fa6749176c7a1424e71a417f26189c8": {
+    "assetId": "eip155:1/erc20:0xffd822149fa6749176c7a1424e71a417f26189c8",
+    "chainId": "eip155:1",
+    "name": "Nothing Token",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/30327/thumb/fulltrans_%281%29.png?1696529228",
+    "symbol": "THING",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xffe510a92434a0df346c5e72a3494b043cf249eb": {
+    "assetId": "eip155:1/erc20:0xffe510a92434a0df346c5e72a3494b043cf249eb",
+    "chainId": "eip155:1",
+    "name": "LUX BIO EXCHANGE COIN",
+    "precision": 18,
+    "color": "#1A727A",
+    "icon": "https://assets.coingecko.com/coins/images/9482/thumb/sam7Fy3A_400x400.jpg?1696509569",
+    "symbol": "LBXC",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xffffffff2ba8f66d4e51811c5190992176930278": {
+    "assetId": "eip155:1/erc20:0xffffffff2ba8f66d4e51811c5190992176930278",
+    "chainId": "eip155:1",
+    "name": "Furucombo on Ethereum",
+    "precision": 18,
+    "color": "#20242F",
+    "icon": "https://assets.coingecko.com/coins/images/13629/thumb/COMBO_token_ol.png?1696513377",
+    "symbol": "COMBO",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/erc20:0xfffffffff15abf397da76f1dcc1a1604f45126db": {
+    "assetId": "eip155:1/erc20:0xfffffffff15abf397da76f1dcc1a1604f45126db",
+    "chainId": "eip155:1",
+    "name": "Falconswap on Ethereum",
+    "precision": 18,
+    "color": "#2B6CEC",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/master/blockchains/ethereum/assets/0xfffffffFf15AbF397dA76f1dcc1A1604F45126DB/logo.png",
+    "symbol": "FSW",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:1/slip44:60": {
+    "assetId": "eip155:1/slip44:60",
+    "chainId": "eip155:1",
+    "symbol": "ETH",
+    "name": "Ethereum",
+    "networkName": "Ethereum",
+    "precision": 18,
+    "color": "#5C6BC0",
+    "icon": "https://assets.coincap.io/assets/icons/256/eth.png",
+    "explorer": "https://etherscan.io",
+    "explorerAddressLink": "https://etherscan.io/address/",
+    "explorerTxLink": "https://etherscan.io/tx/"
+  },
+  "eip155:10/erc20:0x00a35fd824c717879bf370e70ac6868b95870dfb": {
+    "assetId": "eip155:10/erc20:0x00a35fd824c717879bf370e70ac6868b95870dfb",
+    "chainId": "eip155:10",
+    "name": "Iron Bank",
+    "precision": 18,
+    "color": "#9A9C9A",
+    "icon": "https://assets.coingecko.com/coins/images/22902/thumb/ironbank.png?1696522198",
+    "symbol": "IB",
+    "explorer": "https://optimistic.etherscan.io",
+    "explorerAddressLink": "https://optimistic.etherscan.io/address/",
+    "explorerTxLink": "https://optimistic.etherscan.io/tx/"
+  },
+  "eip155:10/erc20:0x00e1724885473b63bce08a9f0a52f35b0979e35a": {
+    "assetId": "eip155:10/erc20:0x00e1724885473b63bce08a9f0a52f35b0979e35a",
+    "chainId": "eip155:10",
+    "name": "OATH on Optimism",
+    "precision": 18,
+    "color": "#0E0E0E",
+    "icon": "https://assets.coingecko.com/coins/images/24075/thumb/OATH.png?1698051304",
+    "symbol": "OATH",
+    "explorer": "https://optimistic.etherscan.io",
+    "explorerAddressLink": "https://optimistic.etherscan.io/address/",
+    "explorerTxLink": "https://optimistic.etherscan.io/tx/"
+  },
+  "eip155:10/erc20:0x00f932f0fe257456b32deda4758922e56a4f4b42": {
+    "assetId": "eip155:10/erc20:0x00f932f0fe257456b32deda4758922e56a4f4b42",
+    "chainId": "eip155:10",
+    "name": "Dope Wars Paper on Optimism",
+    "precision": 18,
+    "color": "#0B0B0B",
+    "icon": "https://assets.coingecko.com/coins/images/18166/thumb/EQHGcBO__400x400.jpeg?1696517667",
+    "symbol": "PAPER",
+    "explorer": "https://optimistic.etherscan.io",
+    "explorerAddressLink": "https://optimistic.etherscan.io/address/",
+    "explorerTxLink": "https://optimistic.etherscan.io/tx/"
+  },
+  "eip155:10/erc20:0x078f358208685046a11c85e8ad32895ded33a249": {
+    "assetId": "eip155:10/erc20:0x078f358208685046a11c85e8ad32895ded33a249",
+    "chainId": "eip155:10",
+    "name": "Aave v3 WBTC on Optimism",
+    "precision": 8,
+    "color": "#E48A51",
+    "icon": "https://assets.coingecko.com/coins/images/32883/thumb/wbtc.png?1699719908",
+    "symbol": "AWBTC",
+    "explorer": "https://optimistic.etherscan.io",
+    "explorerAddressLink": "https://optimistic.etherscan.io/address/",
+    "explorerTxLink": "https://optimistic.etherscan.io/tx/"
+  },
+  "eip155:10/erc20:0x0994206dfe8de6ec6920ff4d779b0d950605fb53": {
+    "assetId": "eip155:10/erc20:0x0994206dfe8de6ec6920ff4d779b0d950605fb53",
+    "chainId": "eip155:10",
+    "name": "Curve DAO on Optimism",
+    "precision": 18,
+    "color": "#26CFD5",
+    "icon": "https://assets.coingecko.com/coins/images/12124/thumb/Curve.png?1696511967",
+    "symbol": "CRV",
+    "explorer": "https://optimistic.etherscan.io",
+    "explorerAddressLink": "https://optimistic.etherscan.io/address/",
+    "explorerTxLink": "https://optimistic.etherscan.io/tx/"
+  },
+  "eip155:10/erc20:0x0b2c639c533813f4aa9d7837caf62653d097ff85": {
+    "assetId": "eip155:10/erc20:0x0b2c639c533813f4aa9d7837caf62653d097ff85",
+    "chainId": "eip155:10",
+    "name": "USDC on Optimism",
+    "precision": 6,
+    "color": "#2E7ACD",
+    "icon": "https://assets.coingecko.com/coins/images/6319/thumb/usdc.png?1696506694",
+    "symbol": "USDC",
+    "explorer": "https://optimistic.etherscan.io",
+    "explorerAddressLink": "https://optimistic.etherscan.io/address/",
+    "explorerTxLink": "https://optimistic.etherscan.io/tx/"
+  },
+  "eip155:10/erc20:0x10010078a54396f62c96df8532dc2b4847d47ed3": {
+    "assetId": "eip155:10/erc20:0x10010078a54396f62c96df8532dc2b4847d47ed3",
+    "chainId": "eip155:10",
+    "name": "Hundred Finance on Optimism",
+    "precision": 18,
+    "color": "#8A8E90",
+    "icon": "https://assets.coingecko.com/coins/images/18445/thumb/hnd.PNG?1696517933",
+    "symbol": "HND",
+    "explorer": "https://optimistic.etherscan.io",
+    "explorerAddressLink": "https://optimistic.etherscan.io/address/",
+    "explorerTxLink": "https://optimistic.etherscan.io/tx/"
+  },
+  "eip155:10/erc20:0x14778860e937f509e651192a90589de711fb88a9": {
+    "assetId": "eip155:10/erc20:0x14778860e937f509e651192a90589de711fb88a9",
+    "chainId": "eip155:10",
+    "name": "CyberConnect on Optimism",
+    "precision": 18,
+    "color": "#A5A5A5",
+    "icon": "https://assets.coingecko.com/coins/images/31274/thumb/cyberconnect.png?1696530098",
+    "symbol": "CYBER",
+    "explorer": "https://optimistic.etherscan.io",
+    "explorerAddressLink": "https://optimistic.etherscan.io/address/",
+    "explorerTxLink": "https://optimistic.etherscan.io/tx/"
+  },
+  "eip155:10/erc20:0x15e770b95edd73fd96b02ece0266247d50895e76": {
+    "assetId": "eip155:10/erc20:0x15e770b95edd73fd96b02ece0266247d50895e76",
+    "chainId": "eip155:10",
+    "name": "Jarvis Reward on Optimism",
+    "precision": 18,
+    "color": "#54FC74",
+    "icon": "https://assets.coingecko.com/coins/images/10390/thumb/cfeii0y.png?1696510389",
+    "symbol": "JRT",
+    "explorer": "https://optimistic.etherscan.io",
+    "explorerAddressLink": "https://optimistic.etherscan.io/address/",
+    "explorerTxLink": "https://optimistic.etherscan.io/tx/"
+  },
+  "eip155:10/erc20:0x191c10aa4af7c30e871e70c95db0e4eb77237530": {
+    "assetId": "eip155:10/erc20:0x191c10aa4af7c30e871e70c95db0e4eb77237530",
+    "chainId": "eip155:10",
+    "name": "Aave v3 LINK on Optimism",
+    "precision": 18,
+    "color": "#9E64A6",
+    "icon": "https://assets.coingecko.com/coins/images/32888/thumb/link.png?1699773900",
+    "symbol": "ALINK",
+    "explorer": "https://optimistic.etherscan.io",
+    "explorerAddressLink": "https://optimistic.etherscan.io/address/",
+    "explorerTxLink": "https://optimistic.etherscan.io/tx/"
+  },
+  "eip155:10/erc20:0x1da650c3b2daa8aa9ff6f661d4156ce24d08a062": {
+    "assetId": "eip155:10/erc20:0x1da650c3b2daa8aa9ff6f661d4156ce24d08a062",
+    "chainId": "eip155:10",
+    "name": "Dentacoin on Optimism",
+    "precision": 0,
+    "color": "#040404",
+    "icon": "https://assets.coingecko.com/coins/images/850/thumb/dentacoin.png?1696501986",
+    "symbol": "DCN",
+    "explorer": "https://optimistic.etherscan.io",
+    "explorerAddressLink": "https://optimistic.etherscan.io/address/",
+    "explorerTxLink": "https://optimistic.etherscan.io/tx/"
+  },
+  "eip155:10/erc20:0x1db2466d9f5e10d7090e7152b68d62703a2245f0": {
+    "assetId": "eip155:10/erc20:0x1db2466d9f5e10d7090e7152b68d62703a2245f0",
+    "chainId": "eip155:10",
+    "name": "Sonne Finance",
+    "precision": 18,
+    "color": "#FC6B4E",
+    "icon": "https://assets.coingecko.com/coins/images/27540/thumb/Token1.png?1696526577",
+    "symbol": "SONNE",
+    "explorer": "https://optimistic.etherscan.io",
+    "explorerAddressLink": "https://optimistic.etherscan.io/address/",
+    "explorerTxLink": "https://optimistic.etherscan.io/tx/"
+  },
+  "eip155:10/erc20:0x1e3c6c53f9f60bf8aae0d7774c21fa6b1afddc57": {
+    "assetId": "eip155:10/erc20:0x1e3c6c53f9f60bf8aae0d7774c21fa6b1afddc57",
+    "chainId": "eip155:10",
+    "name": "xShrap on Optimism",
+    "precision": 18,
+    "color": "#0474E2",
+    "icon": "https://assets.coingecko.com/coins/images/29346/thumb/xshrapnel.png?1696528295",
+    "symbol": "XSHRAP",
+    "explorer": "https://optimistic.etherscan.io",
+    "explorerAddressLink": "https://optimistic.etherscan.io/address/",
+    "explorerTxLink": "https://optimistic.etherscan.io/tx/"
+  },
+  "eip155:10/erc20:0x1e925de1c68ef83bd98ee3e130ef14a50309c01b": {
+    "assetId": "eip155:10/erc20:0x1e925de1c68ef83bd98ee3e130ef14a50309c01b",
+    "chainId": "eip155:10",
+    "name": "Exactly Token",
+    "precision": 18,
+    "color": "#09100D",
+    "icon": "https://assets.coingecko.com/coins/images/31089/thumb/EXA.png?1696529921",
+    "symbol": "EXA",
+    "explorer": "https://optimistic.etherscan.io",
+    "explorerAddressLink": "https://optimistic.etherscan.io/address/",
+    "explorerTxLink": "https://optimistic.etherscan.io/tx/"
+  },
+  "eip155:10/erc20:0x1f32b1c2345538c0c6f582fcb022739c4a194ebb": {
+    "assetId": "eip155:10/erc20:0x1f32b1c2345538c0c6f582fcb022739c4a194ebb",
+    "chainId": "eip155:10",
+    "name": "Wrapped stETH on Optimism",
+    "precision": 18,
+    "color": "#04A4FC",
+    "icon": "https://assets.coingecko.com/coins/images/18834/thumb/wstETH.png?1696518295",
+    "symbol": "WSTETH",
+    "explorer": "https://optimistic.etherscan.io",
+    "explorerAddressLink": "https://optimistic.etherscan.io/address/",
+    "explorerTxLink": "https://optimistic.etherscan.io/tx/"
+  },
+  "eip155:10/erc20:0x1f514a61bcde34f94bc39731235690ab9da737f7": {
+    "assetId": "eip155:10/erc20:0x1f514a61bcde34f94bc39731235690ab9da737f7",
+    "chainId": "eip155:10",
+    "name": "Tarot on Optimism",
+    "precision": 18,
+    "color": "#E5E5E5",
+    "icon": "https://assets.coingecko.com/coins/images/31800/thumb/TAROT.jpg?1696530615",
+    "symbol": "TAROT",
+    "explorer": "https://optimistic.etherscan.io",
+    "explorerAddressLink": "https://optimistic.etherscan.io/address/",
+    "explorerTxLink": "https://optimistic.etherscan.io/tx/"
+  },
+  "eip155:10/erc20:0x217d47011b23bb961eb6d93ca9945b7501a5bb11": {
+    "assetId": "eip155:10/erc20:0x217d47011b23bb961eb6d93ca9945b7501a5bb11",
+    "chainId": "eip155:10",
+    "name": "Thales on Optimism",
+    "precision": 18,
+    "color": "#11136F",
+    "icon": "https://assets.coingecko.com/coins/images/18388/thumb/CLVZJN_C_400x400.png?1696517879",
+    "symbol": "THALES",
+    "explorer": "https://optimistic.etherscan.io",
+    "explorerAddressLink": "https://optimistic.etherscan.io/address/",
+    "explorerTxLink": "https://optimistic.etherscan.io/tx/"
+  },
+  "eip155:10/erc20:0x22ab31cd55130435b5efbf9224b6a9d5ec36533f": {
+    "assetId": "eip155:10/erc20:0x22ab31cd55130435b5efbf9224b6a9d5ec36533f",
+    "chainId": "eip155:10",
+    "name": "Exactly Wrapped stETH",
+    "precision": 18,
+    "color": "#1AA0AC",
+    "icon": "https://assets.coingecko.com/coins/images/31172/thumb/ExawstETH_1.png?1696530000",
+    "symbol": "EXAWSTETH",
+    "explorer": "https://optimistic.etherscan.io",
+    "explorerAddressLink": "https://optimistic.etherscan.io/address/",
+    "explorerTxLink": "https://optimistic.etherscan.io/tx/"
+  },
+  "eip155:10/erc20:0x23ee2343b892b1bb63503a4fabc840e0e2c6810f": {
+    "assetId": "eip155:10/erc20:0x23ee2343b892b1bb63503a4fabc840e0e2c6810f",
+    "chainId": "eip155:10",
+    "name": "Axelar on Optimism",
+    "precision": 6,
+    "color": "#141414",
+    "icon": "https://assets.coingecko.com/coins/images/27277/thumb/V-65_xQ1_400x400.jpeg?1696526329",
+    "symbol": "AXL",
+    "explorer": "https://optimistic.etherscan.io",
+    "explorerAddressLink": "https://optimistic.etherscan.io/address/",
+    "explorerTxLink": "https://optimistic.etherscan.io/tx/"
+  },
+  "eip155:10/erc20:0x2513486f18eee1498d7b6281f668b955181dd0d9": {
+    "assetId": "eip155:10/erc20:0x2513486f18eee1498d7b6281f668b955181dd0d9",
+    "chainId": "eip155:10",
+    "name": "OpenXSwap Gov  Token",
+    "precision": 18,
+    "color": "#C40404",
+    "icon": "https://assets.coingecko.com/coins/images/28325/thumb/X_op_red_sm.png?1696527332",
+    "symbol": "XOPENX",
+    "explorer": "https://optimistic.etherscan.io",
+    "explorerAddressLink": "https://optimistic.etherscan.io/address/",
+    "explorerTxLink": "https://optimistic.etherscan.io/tx/"
+  },
+  "eip155:10/erc20:0x28b42698caf46b4b012cf38b6c75867e0762186d": {
+    "assetId": "eip155:10/erc20:0x28b42698caf46b4b012cf38b6c75867e0762186d",
+    "chainId": "eip155:10",
+    "name": "UniDex on Optimism",
+    "precision": 18,
+    "color": "#E7EBF7",
+    "icon": "https://assets.coingecko.com/coins/images/13178/thumb/unidx.png?1696512961",
+    "symbol": "UNIDX",
+    "explorer": "https://optimistic.etherscan.io",
+    "explorerAddressLink": "https://optimistic.etherscan.io/address/",
+    "explorerTxLink": "https://optimistic.etherscan.io/tx/"
+  },
+  "eip155:10/erc20:0x296f55f8fb28e498b858d0bcda06d955b2cb3f97": {
+    "assetId": "eip155:10/erc20:0x296f55f8fb28e498b858d0bcda06d955b2cb3f97",
+    "chainId": "eip155:10",
+    "name": "Stargate Finance on Optimism",
+    "precision": 18,
+    "color": "#8C8C8C",
+    "icon": "https://assets.coingecko.com/coins/images/24413/thumb/STG_LOGO.png?1696523595",
+    "symbol": "STG",
+    "explorer": "https://optimistic.etherscan.io",
+    "explorerAddressLink": "https://optimistic.etherscan.io/address/",
+    "explorerTxLink": "https://optimistic.etherscan.io/tx/"
+  },
+  "eip155:10/erc20:0x29cb69d4780b53c1e5cd4d2b817142d2e9890715": {
+    "assetId": "eip155:10/erc20:0x29cb69d4780b53c1e5cd4d2b817142d2e9890715",
+    "chainId": "eip155:10",
+    "name": "PoolTogether Prize WETH   Aave",
+    "precision": 18,
+    "color": "#CCC4D4",
+    "icon": "https://assets.coingecko.com/coins/images/32454/thumb/PrizeWETHIcon_200.png?1698241047",
+    "symbol": "PWETH",
+    "explorer": "https://optimistic.etherscan.io",
+    "explorerAddressLink": "https://optimistic.etherscan.io/address/",
+    "explorerTxLink": "https://optimistic.etherscan.io/tx/"
+  },
+  "eip155:10/erc20:0x29faf5905bff9cfcc7cf56a5ed91e0f091f8664b": {
+    "assetId": "eip155:10/erc20:0x29faf5905bff9cfcc7cf56a5ed91e0f091f8664b",
+    "chainId": "eip155:10",
+    "name": "Bankless DAO on Optimism",
+    "precision": 18,
+    "color": "#BABABA",
+    "icon": "https://assets.coingecko.com/coins/images/15227/thumb/j4WEJrwU.png?1696514882",
+    "symbol": "BANK",
+    "explorer": "https://optimistic.etherscan.io",
+    "explorerAddressLink": "https://optimistic.etherscan.io/address/",
+    "explorerTxLink": "https://optimistic.etherscan.io/tx/"
+  },
+  "eip155:10/erc20:0x2dad3a13ef0c6366220f989157009e501e7938f8": {
+    "assetId": "eip155:10/erc20:0x2dad3a13ef0c6366220f989157009e501e7938f8",
+    "chainId": "eip155:10",
+    "name": "Extra Finance",
+    "precision": 18,
+    "color": "#D4E4FC",
+    "icon": "https://assets.coingecko.com/coins/images/30973/thumb/Ex_logo-white-blue_ring_288x.png?1696529812",
+    "symbol": "EXTRA",
+    "explorer": "https://optimistic.etherscan.io",
+    "explorerAddressLink": "https://optimistic.etherscan.io/address/",
+    "explorerTxLink": "https://optimistic.etherscan.io/tx/"
+  },
+  "eip155:10/erc20:0x2e3d870790dc77a83dd1d18184acc7439a53f475": {
+    "assetId": "eip155:10/erc20:0x2e3d870790dc77a83dd1d18184acc7439a53f475",
+    "chainId": "eip155:10",
+    "name": "Frax on Optimism",
+    "precision": 18,
+    "color": "#0C0C0E",
+    "icon": "https://assets.coingecko.com/coins/images/13422/thumb/FRAX_icon.png?1696513182",
+    "symbol": "FRAX",
+    "explorer": "https://optimistic.etherscan.io",
+    "explorerAddressLink": "https://optimistic.etherscan.io/address/",
+    "explorerTxLink": "https://optimistic.etherscan.io/tx/"
+  },
+  "eip155:10/erc20:0x323665443cef804a3b5206103304bd4872ea4253": {
+    "assetId": "eip155:10/erc20:0x323665443cef804a3b5206103304bd4872ea4253",
+    "chainId": "eip155:10",
+    "name": "Verified USD on Optimism",
+    "precision": 6,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/32948/thumb/usdv_%281%29.png?1699933314",
+    "symbol": "USDV",
+    "explorer": "https://optimistic.etherscan.io",
+    "explorerAddressLink": "https://optimistic.etherscan.io/address/",
+    "explorerTxLink": "https://optimistic.etherscan.io/tx/"
+  },
+  "eip155:10/erc20:0x350a791bfc2c21f9ed5d10980dad2e2638ffa7f6": {
+    "assetId": "eip155:10/erc20:0x350a791bfc2c21f9ed5d10980dad2e2638ffa7f6",
+    "chainId": "eip155:10",
+    "name": "Chainlink on Optimism",
+    "precision": 18,
+    "color": "#2C5CDC",
+    "icon": "https://assets.coingecko.com/coins/images/877/thumb/chainlink-new-logo.png?1696502009",
+    "symbol": "LINK",
+    "explorer": "https://optimistic.etherscan.io",
+    "explorerAddressLink": "https://optimistic.etherscan.io/address/",
+    "explorerTxLink": "https://optimistic.etherscan.io/tx/"
+  },
+  "eip155:10/erc20:0x374ad0f47f4ca39c78e5cc54f1c9e426ff8f231a": {
+    "assetId": "eip155:10/erc20:0x374ad0f47f4ca39c78e5cc54f1c9e426ff8f231a",
+    "chainId": "eip155:10",
+    "name": "Premia on Optimism",
+    "precision": 18,
+    "color": "#5494FC",
+    "icon": "https://assets.coingecko.com/coins/images/13962/thumb/apple-touch-icon.png?1696513698",
+    "symbol": "PREMIA",
+    "explorer": "https://optimistic.etherscan.io",
+    "explorerAddressLink": "https://optimistic.etherscan.io/address/",
+    "explorerTxLink": "https://optimistic.etherscan.io/tx/"
+  },
+  "eip155:10/erc20:0x375488f097176507e39b9653b88fdc52cde736bf": {
+    "assetId": "eip155:10/erc20:0x375488f097176507e39b9653b88fdc52cde736bf",
+    "chainId": "eip155:10",
+    "name": "Tarot V1 on Optimism",
+    "precision": 18,
+    "color": "#1C1C1C",
+    "icon": "https://assets.coingecko.com/coins/images/17881/thumb/tarot-200px.png?1696517403",
+    "symbol": "TAROT",
+    "explorer": "https://optimistic.etherscan.io",
+    "explorerAddressLink": "https://optimistic.etherscan.io/address/",
+    "explorerTxLink": "https://optimistic.etherscan.io/tx/"
+  },
+  "eip155:10/erc20:0x395ae52bb17aef68c2888d941736a71dc6d4e125": {
+    "assetId": "eip155:10/erc20:0x395ae52bb17aef68c2888d941736a71dc6d4e125",
+    "chainId": "eip155:10",
+    "name": "PoolTogether on Optimism",
+    "precision": 18,
+    "color": "#5B32BD",
+    "icon": "https://assets.coingecko.com/coins/images/14003/thumb/PoolTogether.png?1696513732",
+    "symbol": "POOL",
+    "explorer": "https://optimistic.etherscan.io",
+    "explorerAddressLink": "https://optimistic.etherscan.io/address/",
+    "explorerTxLink": "https://optimistic.etherscan.io/tx/"
+  },
+  "eip155:10/erc20:0x3a18dcc9745edcd1ef33ecb93b0b6eba5671e7ca": {
+    "assetId": "eip155:10/erc20:0x3a18dcc9745edcd1ef33ecb93b0b6eba5671e7ca",
+    "chainId": "eip155:10",
+    "name": "Kujira on Optimism",
+    "precision": 6,
+    "color": "#A13334",
+    "icon": "https://assets.coingecko.com/coins/images/20685/thumb/kuji-200x200.png?1696520085",
+    "symbol": "KUJI",
+    "explorer": "https://optimistic.etherscan.io",
+    "explorerAddressLink": "https://optimistic.etherscan.io/address/",
+    "explorerTxLink": "https://optimistic.etherscan.io/tx/"
+  },
+  "eip155:10/erc20:0x3b08fcd15280e7b5a6e404c4abb87f7c774d1b2e": {
+    "assetId": "eip155:10/erc20:0x3b08fcd15280e7b5a6e404c4abb87f7c774d1b2e",
+    "chainId": "eip155:10",
+    "name": "Overnight Finance on Optimism",
+    "precision": 18,
+    "color": "#2C95E1",
+    "icon": "https://assets.coingecko.com/coins/images/31970/thumb/OVN.png?1696959174",
+    "symbol": "OVN",
+    "explorer": "https://optimistic.etherscan.io",
+    "explorerAddressLink": "https://optimistic.etherscan.io/address/",
+    "explorerTxLink": "https://optimistic.etherscan.io/tx/"
+  },
+  "eip155:10/erc20:0x3b6564b5da73a41d3a66e6558a98fd0e9e1e77ad": {
+    "assetId": "eip155:10/erc20:0x3b6564b5da73a41d3a66e6558a98fd0e9e1e77ad",
+    "chainId": "eip155:10",
+    "name": "Unitus on Optimism",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/33178/thumb/IMG_0051.jpeg?1700924333",
+    "symbol": "UTS",
+    "explorer": "https://optimistic.etherscan.io",
+    "explorerAddressLink": "https://optimistic.etherscan.io/address/",
+    "explorerTxLink": "https://optimistic.etherscan.io/tx/"
+  },
+  "eip155:10/erc20:0x3e29d3a9316dab217754d13b28646b76607c5f04": {
+    "assetId": "eip155:10/erc20:0x3e29d3a9316dab217754d13b28646b76607c5f04",
+    "chainId": "eip155:10",
+    "name": "Alchemix ETH on Optimism",
+    "precision": 18,
+    "color": "#2A1E1B",
+    "icon": "https://assets.coingecko.com/coins/images/16271/thumb/aleth.png?1696515869",
+    "symbol": "ALETH",
+    "explorer": "https://optimistic.etherscan.io",
+    "explorerAddressLink": "https://optimistic.etherscan.io/address/",
+    "explorerTxLink": "https://optimistic.etherscan.io/tx/"
+  },
+  "eip155:10/erc20:0x3e5d9d8a63cc8a88748f229999cf59487e90721e": {
+    "assetId": "eip155:10/erc20:0x3e5d9d8a63cc8a88748f229999cf59487e90721e",
+    "chainId": "eip155:10",
+    "name": "MetalSwap on Optimism",
+    "precision": 18,
+    "color": "#1B5C74",
+    "icon": "https://assets.coingecko.com/coins/images/22075/thumb/Logo_COIN_-_Gradiente.png?1696521419",
+    "symbol": "XMT",
+    "explorer": "https://optimistic.etherscan.io",
+    "explorerAddressLink": "https://optimistic.etherscan.io/address/",
+    "explorerTxLink": "https://optimistic.etherscan.io/tx/"
+  },
+  "eip155:10/erc20:0x3e7ef8f50246f725885102e8238cbba33f276747": {
+    "assetId": "eip155:10/erc20:0x3e7ef8f50246f725885102e8238cbba33f276747",
+    "chainId": "eip155:10",
+    "name": "BarnBridge on Optimism",
+    "precision": 17,
+    "color": "#F4F2EE",
+    "icon": "https://assets.coingecko.com/coins/images/12811/thumb/barnbridge.jpg?1696512604",
+    "symbol": "BOND",
+    "explorer": "https://optimistic.etherscan.io",
+    "explorerAddressLink": "https://optimistic.etherscan.io/address/",
+    "explorerTxLink": "https://optimistic.etherscan.io/tx/"
+  },
+  "eip155:10/erc20:0x3ee6107d9c93955acbb3f39871d32b02f82b78ab": {
+    "assetId": "eip155:10/erc20:0x3ee6107d9c93955acbb3f39871d32b02f82b78ab",
+    "chainId": "eip155:10",
+    "name": "Staked Ethos Reserve Note on Optimism",
+    "precision": 18,
+    "color": "#F1E5F8",
+    "icon": "https://assets.coingecko.com/coins/images/31522/thumb/stERN.png?1696530332",
+    "symbol": "STERN",
+    "explorer": "https://optimistic.etherscan.io",
+    "explorerAddressLink": "https://optimistic.etherscan.io/address/",
+    "explorerTxLink": "https://optimistic.etherscan.io/tx/"
+  },
+  "eip155:10/erc20:0x4200000000000000000000000000000000000006": {
+    "assetId": "eip155:10/erc20:0x4200000000000000000000000000000000000006",
+    "chainId": "eip155:10",
+    "name": "WETH on Optimism",
+    "precision": 18,
+    "color": "#393838",
+    "icon": "https://assets.coingecko.com/coins/images/2518/thumb/weth.png?1696503332",
+    "symbol": "WETH",
+    "explorer": "https://optimistic.etherscan.io",
+    "explorerAddressLink": "https://optimistic.etherscan.io/address/",
+    "explorerTxLink": "https://optimistic.etherscan.io/tx/"
+  },
+  "eip155:10/erc20:0x4200000000000000000000000000000000000042": {
+    "assetId": "eip155:10/erc20:0x4200000000000000000000000000000000000042",
+    "chainId": "eip155:10",
+    "name": "Optimism",
+    "precision": 18,
+    "color": "#FC0424",
+    "icon": "https://assets.coingecko.com/coins/images/25244/thumb/Optimism.png?1696524385",
+    "symbol": "OP",
+    "explorer": "https://optimistic.etherscan.io",
+    "explorerAddressLink": "https://optimistic.etherscan.io/address/",
+    "explorerTxLink": "https://optimistic.etherscan.io/tx/"
+  },
+  "eip155:10/erc20:0x47536f17f4ff30e64a96a7555826b8f9e66ec468": {
+    "assetId": "eip155:10/erc20:0x47536f17f4ff30e64a96a7555826b8f9e66ec468",
+    "chainId": "eip155:10",
+    "name": "Mummy Finance",
+    "precision": 18,
+    "color": "#121B38",
+    "icon": "https://assets.coingecko.com/coins/images/28547/thumb/Logo_MMY.png?1696527538",
+    "symbol": "MMY",
+    "explorer": "https://optimistic.etherscan.io",
+    "explorerAddressLink": "https://optimistic.etherscan.io/address/",
+    "explorerTxLink": "https://optimistic.etherscan.io/tx/"
+  },
+  "eip155:10/erc20:0x484c2d6e3cdd945a8b2df735e079178c1036578c": {
+    "assetId": "eip155:10/erc20:0x484c2d6e3cdd945a8b2df735e079178c1036578c",
+    "chainId": "eip155:10",
+    "name": "Staked Frax Ether on Optimism",
+    "precision": 18,
+    "color": "#B4B4B4",
+    "icon": "https://assets.coingecko.com/coins/images/28285/thumb/sfrxETH_icon.png?1696527285",
+    "symbol": "SFRXETH",
+    "explorer": "https://optimistic.etherscan.io",
+    "explorerAddressLink": "https://optimistic.etherscan.io/address/",
+    "explorerTxLink": "https://optimistic.etherscan.io/tx/"
+  },
+  "eip155:10/erc20:0x50bce64397c75488465253c0a034b8097fea6578": {
+    "assetId": "eip155:10/erc20:0x50bce64397c75488465253c0a034b8097fea6578",
+    "chainId": "eip155:10",
+    "name": "HanChain on Optimism",
+    "precision": 18,
+    "color": "#0C1534",
+    "icon": "https://assets.coingecko.com/coins/images/27374/thumb/logo_200.png?1696526418",
+    "symbol": "HAN",
+    "explorer": "https://optimistic.etherscan.io",
+    "explorerAddressLink": "https://optimistic.etherscan.io/address/",
+    "explorerTxLink": "https://optimistic.etherscan.io/tx/"
+  },
+  "eip155:10/erc20:0x50c5725949a6f0c72e6c4a641f24049a917db0cb": {
+    "assetId": "eip155:10/erc20:0x50c5725949a6f0c72e6c4a641f24049a917db0cb",
+    "chainId": "eip155:10",
+    "name": "Lyra Finance on Optimism",
+    "precision": 18,
+    "color": "#3BD299",
+    "icon": "https://assets.coingecko.com/coins/images/21490/thumb/Add-a-heading-26.png?1696520850",
+    "symbol": "LYRA",
+    "explorer": "https://optimistic.etherscan.io",
+    "explorerAddressLink": "https://optimistic.etherscan.io/address/",
+    "explorerTxLink": "https://optimistic.etherscan.io/tx/"
+  },
+  "eip155:10/erc20:0x513c7e3a9c69ca3e22550ef58ac1c0088e918fff": {
+    "assetId": "eip155:10/erc20:0x513c7e3a9c69ca3e22550ef58ac1c0088e918fff",
+    "chainId": "eip155:10",
+    "name": "Aave v3 OP",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/32919/thumb/op.png?1699825542",
+    "symbol": "AOP",
+    "explorer": "https://optimistic.etherscan.io",
+    "explorerAddressLink": "https://optimistic.etherscan.io/address/",
+    "explorerTxLink": "https://optimistic.etherscan.io/tx/"
+  },
+  "eip155:10/erc20:0x58b9cb810a68a7f3e1e4f8cb45d1b9b3c79705e8": {
+    "assetId": "eip155:10/erc20:0x58b9cb810a68a7f3e1e4f8cb45d1b9b3c79705e8",
+    "chainId": "eip155:10",
+    "name": "Connext on Optimism",
+    "precision": 18,
+    "color": "#09070B",
+    "icon": "https://assets.coingecko.com/coins/images/31293/thumb/connext.png?1696530113",
+    "symbol": "NEXT",
+    "explorer": "https://optimistic.etherscan.io",
+    "explorerAddressLink": "https://optimistic.etherscan.io/address/",
+    "explorerTxLink": "https://optimistic.etherscan.io/tx/"
+  },
+  "eip155:10/erc20:0x59d9356e565ab3a36dd77763fc0d87feaf85508c": {
+    "assetId": "eip155:10/erc20:0x59d9356e565ab3a36dd77763fc0d87feaf85508c",
+    "chainId": "eip155:10",
+    "name": "Mountain Protocol USD on Optimism",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/31719/thumb/usdm.png?1696530540",
+    "symbol": "USDM",
+    "explorer": "https://optimistic.etherscan.io",
+    "explorerAddressLink": "https://optimistic.etherscan.io/address/",
+    "explorerTxLink": "https://optimistic.etherscan.io/tx/"
+  },
+  "eip155:10/erc20:0x5a5fff6f753d7c11a56a52fe47a177a87e431655": {
+    "assetId": "eip155:10/erc20:0x5a5fff6f753d7c11a56a52fe47a177a87e431655",
+    "chainId": "eip155:10",
+    "name": "Synapse on Optimism",
+    "precision": 18,
+    "color": "#7A389C",
+    "icon": "https://assets.coingecko.com/coins/images/18024/thumb/synapse_social_icon.png?1696517540",
+    "symbol": "SYN",
+    "explorer": "https://optimistic.etherscan.io",
+    "explorerAddressLink": "https://optimistic.etherscan.io/address/",
+    "explorerTxLink": "https://optimistic.etherscan.io/tx/"
+  },
+  "eip155:10/erc20:0x61baadcf22d2565b0f471b291c475db5555e0b76": {
+    "assetId": "eip155:10/erc20:0x61baadcf22d2565b0f471b291c475db5555e0b76",
+    "chainId": "eip155:10",
+    "name": "Aelin",
+    "precision": 18,
+    "color": "#DFDDEC",
+    "icon": "https://assets.coingecko.com/coins/images/22303/thumb/aelien.jpg?1696521649",
+    "symbol": "AELIN",
+    "explorer": "https://optimistic.etherscan.io",
+    "explorerAddressLink": "https://optimistic.etherscan.io/address/",
+    "explorerTxLink": "https://optimistic.etherscan.io/tx/"
+  },
+  "eip155:10/erc20:0x625e7708f30ca75bfd92586e17077590c60eb4cd": {
+    "assetId": "eip155:10/erc20:0x625e7708f30ca75bfd92586e17077590c60eb4cd",
+    "chainId": "eip155:10",
+    "name": "Aave v3 USDC on Optimism",
+    "precision": 6,
+    "color": "#AFACD6",
+    "icon": "https://assets.coingecko.com/coins/images/32847/thumb/usdc_%281%29.png?1699619355",
+    "symbol": "AUSDC",
+    "explorer": "https://optimistic.etherscan.io",
+    "explorerAddressLink": "https://optimistic.etherscan.io/address/",
+    "explorerTxLink": "https://optimistic.etherscan.io/tx/"
+  },
+  "eip155:10/erc20:0x66e8617d1df7ab523a316a6c01d16aa5bed93681": {
+    "assetId": "eip155:10/erc20:0x66e8617d1df7ab523a316a6c01d16aa5bed93681",
+    "chainId": "eip155:10",
+    "name": "Shack on Optimism",
+    "precision": 18,
+    "color": "#EC1C24",
+    "icon": "https://assets.coingecko.com/coins/images/25699/thumb/shack_no_bg_no_pad3.png?1696524826",
+    "symbol": "SHACK",
+    "explorer": "https://optimistic.etherscan.io",
+    "explorerAddressLink": "https://optimistic.etherscan.io/address/",
+    "explorerTxLink": "https://optimistic.etherscan.io/tx/"
+  },
+  "eip155:10/erc20:0x6806411765af15bddd26f8f544a34cc40cb9838b": {
+    "assetId": "eip155:10/erc20:0x6806411765af15bddd26f8f544a34cc40cb9838b",
+    "chainId": "eip155:10",
+    "name": "Frax Ether on Optimism",
+    "precision": 18,
+    "color": "#B3B3B3",
+    "icon": "https://assets.coingecko.com/coins/images/28284/thumb/frxETH_icon.png?1696527284",
+    "symbol": "FRXETH",
+    "explorer": "https://optimistic.etherscan.io",
+    "explorerAddressLink": "https://optimistic.etherscan.io/address/",
+    "explorerTxLink": "https://optimistic.etherscan.io/tx/"
+  },
+  "eip155:10/erc20:0x68f180fcce6836688e9084f035309e29bf0a2095": {
+    "assetId": "eip155:10/erc20:0x68f180fcce6836688e9084f035309e29bf0a2095",
+    "chainId": "eip155:10",
+    "name": "Wrapped Bitcoin on Optimism",
+    "precision": 8,
+    "color": "#ECE8E6",
+    "icon": "https://assets.coingecko.com/coins/images/7598/thumb/wrapped_bitcoin_wbtc.png?1696507857",
+    "symbol": "WBTC",
+    "explorer": "https://optimistic.etherscan.io",
+    "explorerAddressLink": "https://optimistic.etherscan.io/address/",
+    "explorerTxLink": "https://optimistic.etherscan.io/tx/"
+  },
+  "eip155:10/erc20:0x6ab707aca953edaefbc4fd23ba73294241490620": {
+    "assetId": "eip155:10/erc20:0x6ab707aca953edaefbc4fd23ba73294241490620",
+    "chainId": "eip155:10",
+    "name": "Aave v3 USDT on Optimism",
+    "precision": 6,
+    "color": "#51AC9D",
+    "icon": "https://assets.coingecko.com/coins/images/32884/thumb/USDT.PNG?1699768611",
+    "symbol": "AUSDT",
+    "explorer": "https://optimistic.etherscan.io",
+    "explorerAddressLink": "https://optimistic.etherscan.io/address/",
+    "explorerTxLink": "https://optimistic.etherscan.io/tx/"
+  },
+  "eip155:10/erc20:0x6c84a8f1c29108f47a79964b5fe888d4f4d0de40": {
+    "assetId": "eip155:10/erc20:0x6c84a8f1c29108f47a79964b5fe888d4f4d0de40",
+    "chainId": "eip155:10",
+    "name": "tBTC on Optimism",
+    "precision": 18,
+    "color": "#A9A9AA",
+    "icon": "https://assets.coingecko.com/coins/images/11224/thumb/0x18084fba666a33d37592fa2633fd49a74dd93a88.png?1696511155",
+    "symbol": "TBTC",
+    "explorer": "https://optimistic.etherscan.io",
+    "explorerAddressLink": "https://optimistic.etherscan.io/address/",
+    "explorerTxLink": "https://optimistic.etherscan.io/tx/"
+  },
+  "eip155:10/erc20:0x6d80113e533a2c0fe82eabd35f1875dcea89ea97": {
+    "assetId": "eip155:10/erc20:0x6d80113e533a2c0fe82eabd35f1875dcea89ea97",
+    "chainId": "eip155:10",
+    "name": "Aave SUSD on Optimism",
+    "precision": 18,
+    "color": "#AFB9C5",
+    "icon": "https://assets.coingecko.com/coins/images/14266/thumb/aSUSD.9b00ffc6.png?1696513967",
+    "symbol": "ASUSD",
+    "explorer": "https://optimistic.etherscan.io",
+    "explorerAddressLink": "https://optimistic.etherscan.io/address/",
+    "explorerTxLink": "https://optimistic.etherscan.io/tx/"
+  },
+  "eip155:10/erc20:0x6f0fecbc276de8fc69257065fe47c5a03d986394": {
+    "assetId": "eip155:10/erc20:0x6f0fecbc276de8fc69257065fe47c5a03d986394",
+    "chainId": "eip155:10",
+    "name": "Popcorn on Optimism",
+    "precision": 18,
+    "color": "#FCE45C",
+    "icon": "https://assets.coingecko.com/coins/images/21438/thumb/pop-1_200_x_200.png?1696520801",
+    "symbol": "POP",
+    "explorer": "https://optimistic.etherscan.io",
+    "explorerAddressLink": "https://optimistic.etherscan.io/address/",
+    "explorerTxLink": "https://optimistic.etherscan.io/tx/"
+  },
+  "eip155:10/erc20:0x6f620ec89b8479e97a6985792d0c64f237566746": {
+    "assetId": "eip155:10/erc20:0x6f620ec89b8479e97a6985792d0c64f237566746",
+    "chainId": "eip155:10",
+    "name": "WePiggy Coin on Optimism",
+    "precision": 18,
+    "color": "#FC589E",
+    "icon": "https://assets.coingecko.com/coins/images/21914/thumb/WPC200.png?1696521265",
+    "symbol": "WPC",
+    "explorer": "https://optimistic.etherscan.io",
+    "explorerAddressLink": "https://optimistic.etherscan.io/address/",
+    "explorerTxLink": "https://optimistic.etherscan.io/tx/"
+  },
+  "eip155:10/erc20:0x6fd9d7ad17242c41f7131d257212c54a0e816691": {
+    "assetId": "eip155:10/erc20:0x6fd9d7ad17242c41f7131d257212c54a0e816691",
+    "chainId": "eip155:10",
+    "name": "Uniswap on Optimism",
+    "precision": 18,
+    "color": "#FCECF5",
+    "icon": "https://assets.coingecko.com/coins/images/12504/thumb/uni.jpg?1696512319",
+    "symbol": "UNI",
+    "explorer": "https://optimistic.etherscan.io",
+    "explorerAddressLink": "https://optimistic.etherscan.io/address/",
+    "explorerTxLink": "https://optimistic.etherscan.io/tx/"
+  },
+  "eip155:10/erc20:0x724dc807b04555b71ed48a6896b6f41593b8c637": {
+    "assetId": "eip155:10/erc20:0x724dc807b04555b71ed48a6896b6f41593b8c637",
+    "chainId": "eip155:10",
+    "name": "Aave v3 rETH on Optimism",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/32885/thumb/reth.png?1699768947",
+    "symbol": "ARETH",
+    "explorer": "https://optimistic.etherscan.io",
+    "explorerAddressLink": "https://optimistic.etherscan.io/address/",
+    "explorerTxLink": "https://optimistic.etherscan.io/tx/"
+  },
+  "eip155:10/erc20:0x73cb180bf0521828d8849bc8cf2b920918e23032": {
+    "assetId": "eip155:10/erc20:0x73cb180bf0521828d8849bc8cf2b920918e23032",
+    "chainId": "eip155:10",
+    "name": "Overnight fi USD  on Optimism",
+    "precision": 6,
+    "color": "#BFC5D3",
+    "icon": "https://assets.coingecko.com/coins/images/25757/thumb/USD__logo.png?1696524843",
+    "symbol": "USD+",
+    "explorer": "https://optimistic.etherscan.io",
+    "explorerAddressLink": "https://optimistic.etherscan.io/address/",
+    "explorerTxLink": "https://optimistic.etherscan.io/tx/"
+  },
+  "eip155:10/erc20:0x74ccbe53f77b08632ce0cb91d3a545bf6b8e0979": {
+    "assetId": "eip155:10/erc20:0x74ccbe53f77b08632ce0cb91d3a545bf6b8e0979",
+    "chainId": "eip155:10",
+    "name": "Fantom Bomb on Optimism",
+    "precision": 18,
+    "color": "#303E4C",
+    "icon": "https://assets.coingecko.com/coins/images/24109/thumb/logo-blue.png?1696523301",
+    "symbol": "BOMB",
+    "explorer": "https://optimistic.etherscan.io",
+    "explorerAddressLink": "https://optimistic.etherscan.io/address/",
+    "explorerTxLink": "https://optimistic.etherscan.io/tx/"
+  },
+  "eip155:10/erc20:0x76fb31fb4af56892a25e32cfc43de717950c9278": {
+    "assetId": "eip155:10/erc20:0x76fb31fb4af56892a25e32cfc43de717950c9278",
+    "chainId": "eip155:10",
+    "name": "Aave on Optimism",
+    "precision": 18,
+    "color": "#7188B4",
+    "icon": "https://assets.coingecko.com/coins/images/12645/thumb/AAVE.png?1696512452",
+    "symbol": "AAVE",
+    "explorer": "https://optimistic.etherscan.io",
+    "explorerAddressLink": "https://optimistic.etherscan.io/address/",
+    "explorerTxLink": "https://optimistic.etherscan.io/tx/"
+  },
+  "eip155:10/erc20:0x7da25bc4cfaed3f29414c6779676e53b19a356f5": {
+    "assetId": "eip155:10/erc20:0x7da25bc4cfaed3f29414c6779676e53b19a356f5",
+    "chainId": "eip155:10",
+    "name": "Kokomo Finance on Optimism",
+    "precision": 18,
+    "color": "#2E2E3E",
+    "icon": "https://assets.coingecko.com/coins/images/29572/thumb/Logo_%282%29.png?1696528512",
+    "symbol": "KOKO",
+    "explorer": "https://optimistic.etherscan.io",
+    "explorerAddressLink": "https://optimistic.etherscan.io/address/",
+    "explorerTxLink": "https://optimistic.etherscan.io/tx/"
+  },
+  "eip155:10/erc20:0x7f5373ae26c3e8ffc4c77b7255df7ec1a9af52a6": {
+    "assetId": "eip155:10/erc20:0x7f5373ae26c3e8ffc4c77b7255df7ec1a9af52a6",
+    "chainId": "eip155:10",
+    "name": "Bridged Tether  Axelar  on Optimism",
+    "precision": 6,
+    "color": "#54AC94",
+    "icon": "https://assets.coingecko.com/coins/images/31002/thumb/uusdt_D_3x.png?1696529840",
+    "symbol": "AXLUSDT",
+    "explorer": "https://optimistic.etherscan.io",
+    "explorerAddressLink": "https://optimistic.etherscan.io/address/",
+    "explorerTxLink": "https://optimistic.etherscan.io/tx/"
+  },
+  "eip155:10/erc20:0x7f5c764cbc14f9669b88837ca1490cca17c31607": {
+    "assetId": "eip155:10/erc20:0x7f5c764cbc14f9669b88837ca1490cca17c31607",
+    "chainId": "eip155:10",
+    "name": "Bridged USDC  Optimism ",
+    "precision": 6,
+    "color": "#2E7ACD",
+    "icon": "https://assets.coingecko.com/coins/images/31580/thumb/USDC-icon.png?1696530397",
+    "symbol": "USDCE",
+    "explorer": "https://optimistic.etherscan.io",
+    "explorerAddressLink": "https://optimistic.etherscan.io/address/",
+    "explorerTxLink": "https://optimistic.etherscan.io/tx/"
+  },
+  "eip155:10/erc20:0x7fb688ccf682d58f86d7e38e03f9d22e7705448b": {
+    "assetId": "eip155:10/erc20:0x7fb688ccf682d58f86d7e38e03f9d22e7705448b",
+    "chainId": "eip155:10",
+    "name": "Rai Reflex Index on Optimism",
+    "precision": 18,
+    "color": "#1D2A2A",
+    "icon": "https://assets.coingecko.com/coins/images/14004/thumb/RAI-logo-coin.png?1696513733",
+    "symbol": "RAI",
+    "explorer": "https://optimistic.etherscan.io",
+    "explorerAddressLink": "https://optimistic.etherscan.io/address/",
+    "explorerTxLink": "https://optimistic.etherscan.io/tx/"
+  },
+  "eip155:10/erc20:0x81ab7e0d570b01411fcc4afd3d50ec8c241cb74b": {
+    "assetId": "eip155:10/erc20:0x81ab7e0d570b01411fcc4afd3d50ec8c241cb74b",
+    "chainId": "eip155:10",
+    "name": "Equalizer on Optimism",
+    "precision": 18,
+    "color": "#121654",
+    "icon": "https://assets.coingecko.com/coins/images/14741/thumb/X2p5mb2f_400x400.png?1696514410",
+    "symbol": "EQZ",
+    "explorer": "https://optimistic.etherscan.io",
+    "explorerAddressLink": "https://optimistic.etherscan.io/address/",
+    "explorerTxLink": "https://optimistic.etherscan.io/tx/"
+  },
+  "eip155:10/erc20:0x81c9a7b55a4df39a9b7b5f781ec0e53539694873": {
+    "assetId": "eip155:10/erc20:0x81c9a7b55a4df39a9b7b5f781ec0e53539694873",
+    "chainId": "eip155:10",
+    "name": "Exactly USD Coin",
+    "precision": 6,
+    "color": "#060E0A",
+    "icon": "https://assets.coingecko.com/coins/images/31175/thumb/ExaUSDC_1.png?1696530003",
+    "symbol": "EXAUSDC",
+    "explorer": "https://optimistic.etherscan.io",
+    "explorerAddressLink": "https://optimistic.etherscan.io/address/",
+    "explorerTxLink": "https://optimistic.etherscan.io/tx/"
+  },
+  "eip155:10/erc20:0x820802fa8a99901f52e39acd21177b0be6ee2974": {
+    "assetId": "eip155:10/erc20:0x820802fa8a99901f52e39acd21177b0be6ee2974",
+    "chainId": "eip155:10",
+    "name": "EUROe Stablecoin on Optimism",
+    "precision": 6,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/28913/thumb/euroe-200x200-round.png?1696527889",
+    "symbol": "EUROE",
+    "explorer": "https://optimistic.etherscan.io",
+    "explorerAddressLink": "https://optimistic.etherscan.io/address/",
+    "explorerTxLink": "https://optimistic.etherscan.io/tx/"
+  },
+  "eip155:10/erc20:0x82e64f49ed5ec1bc6e43dad4fc8af9bb3a2312ee": {
+    "assetId": "eip155:10/erc20:0x82e64f49ed5ec1bc6e43dad4fc8af9bb3a2312ee",
+    "chainId": "eip155:10",
+    "name": "Aave v3 DAI on Optimism",
+    "precision": 18,
+    "color": "#FCBF41",
+    "icon": "https://assets.coingecko.com/coins/images/32886/thumb/dai.png?1699769446",
+    "symbol": "ADAI",
+    "explorer": "https://optimistic.etherscan.io",
+    "explorerAddressLink": "https://optimistic.etherscan.io/address/",
+    "explorerTxLink": "https://optimistic.etherscan.io/tx/"
+  },
+  "eip155:10/erc20:0x8413041a7702603d9d991f2c4add29e4e8a241f8": {
+    "assetId": "eip155:10/erc20:0x8413041a7702603d9d991f2c4add29e4e8a241f8",
+    "chainId": "eip155:10",
+    "name": "Router Protocol on Optimism",
+    "precision": 18,
+    "color": "#363555",
+    "icon": "https://assets.coingecko.com/coins/images/13709/thumb/route_token_200x200-19.png?1696513454",
+    "symbol": "ROUTE",
+    "explorer": "https://optimistic.etherscan.io",
+    "explorerAddressLink": "https://optimistic.etherscan.io/address/",
+    "explorerTxLink": "https://optimistic.etherscan.io/tx/"
+  },
+  "eip155:10/erc20:0x8637725ada78db0674a679cea2a5e0a0869ef4a1": {
+    "assetId": "eip155:10/erc20:0x8637725ada78db0674a679cea2a5e0a0869ef4a1",
+    "chainId": "eip155:10",
+    "name": "NFTEarth on Optimism",
+    "precision": 18,
+    "color": "#E1FBED",
+    "icon": "https://assets.coingecko.com/coins/images/29116/thumb/20230223_224134.jpg?1696528078",
+    "symbol": "NFTE",
+    "explorer": "https://optimistic.etherscan.io",
+    "explorerAddressLink": "https://optimistic.etherscan.io/address/",
+    "explorerTxLink": "https://optimistic.etherscan.io/tx/"
+  },
+  "eip155:10/erc20:0x8700daec35af8ff88c16bdf0418774cb3d7599b4": {
+    "assetId": "eip155:10/erc20:0x8700daec35af8ff88c16bdf0418774cb3d7599b4",
+    "chainId": "eip155:10",
+    "name": "Synthetix Network on Optimism",
+    "precision": 18,
+    "color": "#04B5E5",
+    "icon": "https://assets.coingecko.com/coins/images/3406/thumb/SNX.png?1696504103",
+    "symbol": "SNX",
+    "explorer": "https://optimistic.etherscan.io",
+    "explorerAddressLink": "https://optimistic.etherscan.io/address/",
+    "explorerTxLink": "https://optimistic.etherscan.io/tx/"
+  },
+  "eip155:10/erc20:0x8ae125e8653821e851f12a49f7765db9a9ce7384": {
+    "assetId": "eip155:10/erc20:0x8ae125e8653821e851f12a49f7765db9a9ce7384",
+    "chainId": "eip155:10",
+    "name": "DOLA on Optimism",
+    "precision": 18,
+    "color": "#151D54",
+    "icon": "https://assets.coingecko.com/coins/images/14287/thumb/dola.png?1696513984",
+    "symbol": "DOLA",
+    "explorer": "https://optimistic.etherscan.io",
+    "explorerAddressLink": "https://optimistic.etherscan.io/address/",
+    "explorerTxLink": "https://optimistic.etherscan.io/tx/"
+  },
+  "eip155:10/erc20:0x8b21e9b7daf2c4325bf3d18c1beb79a347fe902a": {
+    "assetId": "eip155:10/erc20:0x8b21e9b7daf2c4325bf3d18c1beb79a347fe902a",
+    "chainId": "eip155:10",
+    "name": "Collab Land",
+    "precision": 18,
+    "color": "#372F6C",
+    "icon": "https://assets.coingecko.com/coins/images/29098/thumb/collab.png?1696528061",
+    "symbol": "COLLAB",
+    "explorer": "https://optimistic.etherscan.io",
+    "explorerAddressLink": "https://optimistic.etherscan.io/address/",
+    "explorerTxLink": "https://optimistic.etherscan.io/tx/"
+  },
+  "eip155:10/erc20:0x8c6f28f2f1a3c87f0f938b96d27520d9751ec8d9": {
+    "assetId": "eip155:10/erc20:0x8c6f28f2f1a3c87f0f938b96d27520d9751ec8d9",
+    "chainId": "eip155:10",
+    "name": "sUSD on Optimism",
+    "precision": 18,
+    "color": "#D3D2D8",
+    "icon": "https://assets.coingecko.com/coins/images/5013/thumb/sUSD.png?1696505546",
+    "symbol": "SUSD",
+    "explorer": "https://optimistic.etherscan.io",
+    "explorerAddressLink": "https://optimistic.etherscan.io/address/",
+    "explorerTxLink": "https://optimistic.etherscan.io/tx/"
+  },
+  "eip155:10/erc20:0x8eb270e296023e9d92081fdf967ddd7878724424": {
+    "assetId": "eip155:10/erc20:0x8eb270e296023e9d92081fdf967ddd7878724424",
+    "chainId": "eip155:10",
+    "name": "Aave v3 LUSD on Optimism",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/32894/thumb/LUSD.png?1699789893",
+    "symbol": "ALUSD",
+    "explorer": "https://optimistic.etherscan.io",
+    "explorerAddressLink": "https://optimistic.etherscan.io/address/",
+    "explorerTxLink": "https://optimistic.etherscan.io/tx/"
+  },
+  "eip155:10/erc20:0x8f69ee043d52161fd29137aedf63f5e70cd504d5": {
+    "assetId": "eip155:10/erc20:0x8f69ee043d52161fd29137aedf63f5e70cd504d5",
+    "chainId": "eip155:10",
+    "name": "The Doge NFT on Optimism",
+    "precision": 18,
+    "color": "#D0B882",
+    "icon": "https://assets.coingecko.com/coins/images/18111/thumb/Doge.png?1696517615",
+    "symbol": "DOG",
+    "explorer": "https://optimistic.etherscan.io",
+    "explorerAddressLink": "https://optimistic.etherscan.io/address/",
+    "explorerTxLink": "https://optimistic.etherscan.io/tx/"
+  },
+  "eip155:10/erc20:0x9046d36440290ffde54fe0dd84db8b1cfee9107b": {
+    "assetId": "eip155:10/erc20:0x9046d36440290ffde54fe0dd84db8b1cfee9107b",
+    "chainId": "eip155:10",
+    "name": "yearn finance on Optimism",
+    "precision": 18,
+    "color": "#0C54EC",
+    "icon": "https://assets.coingecko.com/coins/images/11849/thumb/yearn.jpg?1696511720",
+    "symbol": "YFI",
+    "explorer": "https://optimistic.etherscan.io",
+    "explorerAddressLink": "https://optimistic.etherscan.io/address/",
+    "explorerTxLink": "https://optimistic.etherscan.io/tx/"
+  },
+  "eip155:10/erc20:0x920cf626a271321c151d027030d5d08af699456b": {
+    "assetId": "eip155:10/erc20:0x920cf626a271321c151d027030d5d08af699456b",
+    "chainId": "eip155:10",
+    "name": "Kwenta",
+    "precision": 18,
+    "color": "#B58A58",
+    "icon": "https://assets.coingecko.com/coins/images/27409/thumb/kwenta.png?1696526450",
+    "symbol": "KWENTA",
+    "explorer": "https://optimistic.etherscan.io",
+    "explorerAddressLink": "https://optimistic.etherscan.io/address/",
+    "explorerTxLink": "https://optimistic.etherscan.io/tx/"
+  },
+  "eip155:10/erc20:0x929b939f8524c3be977af57a4a0ad3fb1e374b50": {
+    "assetId": "eip155:10/erc20:0x929b939f8524c3be977af57a4a0ad3fb1e374b50",
+    "chainId": "eip155:10",
+    "name": "mStable Governance  Meta on Optimism",
+    "precision": 18,
+    "color": "#040404",
+    "icon": "https://assets.coingecko.com/coins/images/11846/thumb/mStable.png?1696511717",
+    "symbol": "MTA",
+    "explorer": "https://optimistic.etherscan.io",
+    "explorerAddressLink": "https://optimistic.etherscan.io/address/",
+    "explorerTxLink": "https://optimistic.etherscan.io/tx/"
+  },
+  "eip155:10/erc20:0x94025780a1ab58868d9b2dbbb775f44b32e8e6e5": {
+    "assetId": "eip155:10/erc20:0x94025780a1ab58868d9b2dbbb775f44b32e8e6e5",
+    "chainId": "eip155:10",
+    "name": "BetSwirl on Optimism",
+    "precision": 18,
+    "color": "#476DEF",
+    "icon": "https://assets.coingecko.com/coins/images/26618/thumb/icon_200.png?1696525691",
+    "symbol": "BETS",
+    "explorer": "https://optimistic.etherscan.io",
+    "explorerAddressLink": "https://optimistic.etherscan.io/address/",
+    "explorerTxLink": "https://optimistic.etherscan.io/tx/"
+  },
+  "eip155:10/erc20:0x94b008aa00579c1307b0ef2c499ad98a8ce58e58": {
+    "assetId": "eip155:10/erc20:0x94b008aa00579c1307b0ef2c499ad98a8ce58e58",
+    "chainId": "eip155:10",
+    "name": "Tether on Optimism",
+    "precision": 6,
+    "color": "#049494",
+    "icon": "https://assets.coingecko.com/coins/images/325/thumb/Tether.png?1696501661",
+    "symbol": "USDT",
+    "explorer": "https://optimistic.etherscan.io",
+    "explorerAddressLink": "https://optimistic.etherscan.io/address/",
+    "explorerTxLink": "https://optimistic.etherscan.io/tx/"
+  },
+  "eip155:10/erc20:0x9560e827af36c94d2ac33a39bce1fe78631088db": {
+    "assetId": "eip155:10/erc20:0x9560e827af36c94d2ac33a39bce1fe78631088db",
+    "chainId": "eip155:10",
+    "name": "Velodrome Finance",
+    "precision": 18,
+    "color": "#201C1E",
+    "icon": "https://assets.coingecko.com/coins/images/25783/thumb/velo.png?1696524870",
+    "symbol": "VELO",
+    "explorer": "https://optimistic.etherscan.io",
+    "explorerAddressLink": "https://optimistic.etherscan.io/address/",
+    "explorerTxLink": "https://optimistic.etherscan.io/tx/"
+  },
+  "eip155:10/erc20:0x96d17e1301b31556e5e263389583a9331e6749e9": {
+    "assetId": "eip155:10/erc20:0x96d17e1301b31556e5e263389583a9331e6749e9",
+    "chainId": "eip155:10",
+    "name": "RillaFi",
+    "precision": 18,
+    "color": "#B5B6C0",
+    "icon": "https://assets.coingecko.com/coins/images/29193/thumb/output-onlinepngtools.png?1696528152",
+    "symbol": "RILLA",
+    "explorer": "https://optimistic.etherscan.io",
+    "explorerAddressLink": "https://optimistic.etherscan.io/address/",
+    "explorerTxLink": "https://optimistic.etherscan.io/tx/"
+  },
+  "eip155:10/erc20:0x970d50d09f3a656b43e11b0d45241a84e3a6e011": {
+    "assetId": "eip155:10/erc20:0x970d50d09f3a656b43e11b0d45241a84e3a6e011",
+    "chainId": "eip155:10",
+    "name": "Overnight fi DAI  on Optimism",
+    "precision": 18,
+    "color": "#FCB72F",
+    "icon": "https://assets.coingecko.com/coins/images/29634/thumb/DAI_.png?1696528571",
+    "symbol": "DAI+",
+    "explorer": "https://optimistic.etherscan.io",
+    "explorerAddressLink": "https://optimistic.etherscan.io/address/",
+    "explorerTxLink": "https://optimistic.etherscan.io/tx/"
+  },
+  "eip155:10/erc20:0x9a601c5bb360811d96a23689066af316a30c3027": {
+    "assetId": "eip155:10/erc20:0x9a601c5bb360811d96a23689066af316a30c3027",
+    "chainId": "eip155:10",
+    "name": "Pika Protocol",
+    "precision": 18,
+    "color": "#F8E24B",
+    "icon": "https://assets.coingecko.com/coins/images/30279/thumb/Pika_protocol.png?1696529185",
+    "symbol": "PIKA",
+    "explorer": "https://optimistic.etherscan.io",
+    "explorerAddressLink": "https://optimistic.etherscan.io/address/",
+    "explorerTxLink": "https://optimistic.etherscan.io/tx/"
+  },
+  "eip155:10/erc20:0x9bcef72be871e61ed4fbbc7630889bee758eb81d": {
+    "assetId": "eip155:10/erc20:0x9bcef72be871e61ed4fbbc7630889bee758eb81d",
+    "chainId": "eip155:10",
+    "name": "Rocket Pool ETH on Optimism",
+    "precision": 18,
+    "color": "#FCA584",
+    "icon": "https://assets.coingecko.com/coins/images/20764/thumb/reth.png?1696520159",
+    "symbol": "RETH",
+    "explorer": "https://optimistic.etherscan.io",
+    "explorerAddressLink": "https://optimistic.etherscan.io/address/",
+    "explorerTxLink": "https://optimistic.etherscan.io/tx/"
+  },
+  "eip155:10/erc20:0x9c9e5fd8bbc25984b178fdce6117defa39d2db39": {
+    "assetId": "eip155:10/erc20:0x9c9e5fd8bbc25984b178fdce6117defa39d2db39",
+    "chainId": "eip155:10",
+    "name": "Binance Peg BUSD on Optimism",
+    "precision": 18,
+    "color": "#F4BC0C",
+    "icon": "https://assets.coingecko.com/coins/images/31273/thumb/new_binance-peg-busd.png?1696530096",
+    "symbol": "BUSD",
+    "explorer": "https://optimistic.etherscan.io",
+    "explorerAddressLink": "https://optimistic.etherscan.io/address/",
+    "explorerTxLink": "https://optimistic.etherscan.io/tx/"
+  },
+  "eip155:10/erc20:0x9cfb13e6c11054ac9fcb92ba89644f30775436e4": {
+    "assetId": "eip155:10/erc20:0x9cfb13e6c11054ac9fcb92ba89644f30775436e4",
+    "chainId": "eip155:10",
+    "name": "Bridged Wrapped stETH  Axelar  on Optimism",
+    "precision": 18,
+    "color": "#EAEEF9",
+    "icon": "https://assets.coingecko.com/coins/images/32223/thumb/steth-wei_D_3x.png?1696926841",
+    "symbol": "AXL-WSTETH",
+    "explorer": "https://optimistic.etherscan.io",
+    "explorerAddressLink": "https://optimistic.etherscan.io/address/",
+    "explorerTxLink": "https://optimistic.etherscan.io/tx/"
+  },
+  "eip155:10/erc20:0x9e1028f5f1d5ede59748ffcee5532509976840e0": {
+    "assetId": "eip155:10/erc20:0x9e1028f5f1d5ede59748ffcee5532509976840e0",
+    "chainId": "eip155:10",
+    "name": "Perpetual Protocol on Optimism",
+    "precision": 18,
+    "color": "#3BEAAA",
+    "icon": "https://assets.coingecko.com/coins/images/12381/thumb/60d18e06844a844ad75901a9_mark_only_03.png?1696512205",
+    "symbol": "PERP",
+    "explorer": "https://optimistic.etherscan.io",
+    "explorerAddressLink": "https://optimistic.etherscan.io/address/",
+    "explorerTxLink": "https://optimistic.etherscan.io/tx/"
+  },
+  "eip155:10/erc20:0x9ed7e4b1bff939ad473da5e7a218c771d1569456": {
+    "assetId": "eip155:10/erc20:0x9ed7e4b1bff939ad473da5e7a218c771d1569456",
+    "chainId": "eip155:10",
+    "name": "Reunit Wallet on Optimism",
+    "precision": 6,
+    "color": "#0E0A0E",
+    "icon": "https://assets.coingecko.com/coins/images/29492/thumb/reunit_200.png?1696528436",
+    "symbol": "REUNI",
+    "explorer": "https://optimistic.etherscan.io",
+    "explorerAddressLink": "https://optimistic.etherscan.io/address/",
+    "explorerTxLink": "https://optimistic.etherscan.io/tx/"
+  },
+  "eip155:10/erc20:0x9fd22a17b4a96da3f83797d122172c450381fb88": {
+    "assetId": "eip155:10/erc20:0x9fd22a17b4a96da3f83797d122172c450381fb88",
+    "chainId": "eip155:10",
+    "name": "Jefe on Optimism",
+    "precision": 9,
+    "color": "#BEBEBE",
+    "icon": "https://assets.coingecko.com/coins/images/25336/thumb/JEFE_200.png?1696524470",
+    "symbol": "JEFE",
+    "explorer": "https://optimistic.etherscan.io",
+    "explorerAddressLink": "https://optimistic.etherscan.io/address/",
+    "explorerTxLink": "https://optimistic.etherscan.io/tx/"
+  },
+  "eip155:10/erc20:0xa00e3a3511aac35ca78530c85007afcd31753819": {
+    "assetId": "eip155:10/erc20:0xa00e3a3511aac35ca78530c85007afcd31753819",
+    "chainId": "eip155:10",
+    "name": "Kyber Network Crystal on Optimism",
+    "precision": 18,
+    "color": "#CFF1EF",
+    "icon": "https://assets.coingecko.com/coins/images/14899/thumb/RwdVsGcw_400x400.jpg?1696514562",
+    "symbol": "KNC",
+    "explorer": "https://optimistic.etherscan.io",
+    "explorerAddressLink": "https://optimistic.etherscan.io/address/",
+    "explorerTxLink": "https://optimistic.etherscan.io/tx/"
+  },
+  "eip155:10/erc20:0xa3b615667cbd33cfc69843bf11fbb2a1d926bd46": {
+    "assetId": "eip155:10/erc20:0xa3b615667cbd33cfc69843bf11fbb2a1d926bd46",
+    "chainId": "eip155:10",
+    "name": "mPendle on Optimism",
+    "precision": 18,
+    "color": "#456895",
+    "icon": "https://assets.coingecko.com/coins/images/31918/thumb/mPendle.png?1696530726",
+    "symbol": "MPENDLE",
+    "explorer": "https://optimistic.etherscan.io",
+    "explorerAddressLink": "https://optimistic.etherscan.io/address/",
+    "explorerTxLink": "https://optimistic.etherscan.io/tx/"
+  },
+  "eip155:10/erc20:0xa430a427bd00210506589906a71b54d6c256cedb": {
+    "assetId": "eip155:10/erc20:0xa430a427bd00210506589906a71b54d6c256cedb",
+    "chainId": "eip155:10",
+    "name": "Exactly Optimism",
+    "precision": 18,
+    "color": "#C3D9CF",
+    "icon": "https://assets.coingecko.com/coins/images/31173/thumb/ExaOP_1.png?1696530001",
+    "symbol": "EXAOP",
+    "explorer": "https://optimistic.etherscan.io",
+    "explorerAddressLink": "https://optimistic.etherscan.io/address/",
+    "explorerTxLink": "https://optimistic.etherscan.io/tx/"
+  },
+  "eip155:10/erc20:0xaddb6a0412de1ba0f936dcaeb8aaa24578dcf3b2": {
+    "assetId": "eip155:10/erc20:0xaddb6a0412de1ba0f936dcaeb8aaa24578dcf3b2",
+    "chainId": "eip155:10",
+    "name": "Coinbase Wrapped Staked ETH on Optimism",
+    "precision": 18,
+    "color": "#0957FC",
+    "icon": "https://assets.coingecko.com/coins/images/27008/thumb/cbeth.png?1696526061",
+    "symbol": "CBETH",
+    "explorer": "https://optimistic.etherscan.io",
+    "explorerAddressLink": "https://optimistic.etherscan.io/address/",
+    "explorerTxLink": "https://optimistic.etherscan.io/tx/"
+  },
+  "eip155:10/erc20:0xaeaeed23478c3a4b798e4ed40d8b7f41366ae861": {
+    "assetId": "eip155:10/erc20:0xaeaeed23478c3a4b798e4ed40d8b7f41366ae861",
+    "chainId": "eip155:10",
+    "name": "Ankr Network on Optimism",
+    "precision": 18,
+    "color": "#245CE4",
+    "icon": "https://assets.coingecko.com/coins/images/4324/thumb/U85xTl2.png?1696504928",
+    "symbol": "ANKR",
+    "explorer": "https://optimistic.etherscan.io",
+    "explorerAddressLink": "https://optimistic.etherscan.io/address/",
+    "explorerTxLink": "https://optimistic.etherscan.io/tx/"
+  },
+  "eip155:10/erc20:0xaf20f5f19698f1d19351028cd7103b63d30de7d7": {
+    "assetId": "eip155:10/erc20:0xaf20f5f19698f1d19351028cd7103b63d30de7d7",
+    "chainId": "eip155:10",
+    "name": "Wagmi on Optimism",
+    "precision": 18,
+    "color": "#CEB484",
+    "icon": "https://assets.coingecko.com/coins/images/31887/thumb/wagmi_token_logo.png?1696530698",
+    "symbol": "WAGMI",
+    "explorer": "https://optimistic.etherscan.io",
+    "explorerAddressLink": "https://optimistic.etherscan.io/address/",
+    "explorerTxLink": "https://optimistic.etherscan.io/tx/"
+  },
+  "eip155:10/erc20:0xaf8ca653fa2772d58f4368b0a71980e9e3ceb888": {
+    "assetId": "eip155:10/erc20:0xaf8ca653fa2772d58f4368b0a71980e9e3ceb888",
+    "chainId": "eip155:10",
+    "name": "Tellor Tributes on Optimism",
+    "precision": 18,
+    "color": "#44DA9C",
+    "icon": "https://assets.coingecko.com/coins/images/9644/thumb/Blk_icon_current.png?1696509713",
+    "symbol": "TRB",
+    "explorer": "https://optimistic.etherscan.io",
+    "explorerAddressLink": "https://optimistic.etherscan.io/address/",
+    "explorerTxLink": "https://optimistic.etherscan.io/tx/"
+  },
+  "eip155:10/erc20:0xaf9fe3b5ccdae78188b1f8b9a49da7ae9510f151": {
+    "assetId": "eip155:10/erc20:0xaf9fe3b5ccdae78188b1f8b9a49da7ae9510f151",
+    "chainId": "eip155:10",
+    "name": "dHEDGE DAO on Optimism",
+    "precision": 18,
+    "color": "#0C0C0C",
+    "icon": "https://assets.coingecko.com/coins/images/12508/thumb/dht.png?1696512323",
+    "symbol": "DHT",
+    "explorer": "https://optimistic.etherscan.io",
+    "explorerAddressLink": "https://optimistic.etherscan.io/address/",
+    "explorerTxLink": "https://optimistic.etherscan.io/tx/"
+  },
+  "eip155:10/erc20:0xb0ae108669ceb86e9e98e8fe9e40d98b867855fd": {
+    "assetId": "eip155:10/erc20:0xb0ae108669ceb86e9e98e8fe9e40d98b867855fd",
+    "chainId": "eip155:10",
+    "name": "OneRing",
+    "precision": 18,
+    "color": "#0D0C0C",
+    "icon": "https://assets.coingecko.com/coins/images/23273/thumb/ring.png?1696522493",
+    "symbol": "RING",
+    "explorer": "https://optimistic.etherscan.io",
+    "explorerAddressLink": "https://optimistic.etherscan.io/address/",
+    "explorerTxLink": "https://optimistic.etherscan.io/tx/"
+  },
+  "eip155:10/erc20:0xb0b195aefa3650a6908f15cdac7d92f8a5791b0b": {
+    "assetId": "eip155:10/erc20:0xb0b195aefa3650a6908f15cdac7d92f8a5791b0b",
+    "chainId": "eip155:10",
+    "name": "BOB on Optimism",
+    "precision": 18,
+    "color": "#A265FC",
+    "icon": "https://assets.coingecko.com/coins/images/27266/thumb/Bob-logo.png?1696526318",
+    "symbol": "BOB",
+    "explorer": "https://optimistic.etherscan.io",
+    "explorerAddressLink": "https://optimistic.etherscan.io/address/",
+    "explorerTxLink": "https://optimistic.etherscan.io/tx/"
+  },
+  "eip155:10/erc20:0xb12c13e66ade1f72f71834f2fc5082db8c091358": {
+    "assetId": "eip155:10/erc20:0xb12c13e66ade1f72f71834f2fc5082db8c091358",
+    "chainId": "eip155:10",
+    "name": "Roobee on Optimism",
+    "precision": 18,
+    "color": "#94D424",
+    "icon": "https://assets.coingecko.com/coins/images/8791/thumb/Group_11.png?1696508946",
+    "symbol": "ROOBEE",
+    "explorer": "https://optimistic.etherscan.io",
+    "explorerAddressLink": "https://optimistic.etherscan.io/address/",
+    "explorerTxLink": "https://optimistic.etherscan.io/tx/"
+  },
+  "eip155:10/erc20:0xb153fb3d196a8eb25522705560ac152eeec57901": {
+    "assetId": "eip155:10/erc20:0xb153fb3d196a8eb25522705560ac152eeec57901",
+    "chainId": "eip155:10",
+    "name": "Magic Internet Money on Optimism",
+    "precision": 18,
+    "color": "#5958FC",
+    "icon": "https://assets.coingecko.com/coins/images/16786/thumb/mimlogopng.png?1696516358",
+    "symbol": "MIM",
+    "explorer": "https://optimistic.etherscan.io",
+    "explorerAddressLink": "https://optimistic.etherscan.io/address/",
+    "explorerTxLink": "https://optimistic.etherscan.io/tx/"
+  },
+  "eip155:10/erc20:0xb25ea095997f5bbaa6cea962c4fbf3bfc3c09776": {
+    "assetId": "eip155:10/erc20:0xb25ea095997f5bbaa6cea962c4fbf3bfc3c09776",
+    "chainId": "eip155:10",
+    "name": "Promethios on Optimism",
+    "precision": 9,
+    "color": "#BC6220",
+    "icon": "https://assets.coingecko.com/coins/images/30750/thumb/Fire_Logo.png?1696529619",
+    "symbol": "FIRE",
+    "explorer": "https://optimistic.etherscan.io",
+    "explorerAddressLink": "https://optimistic.etherscan.io/address/",
+    "explorerTxLink": "https://optimistic.etherscan.io/tx/"
+  },
+  "eip155:10/erc20:0xb396b31599333739a97951b74652c117be86ee1d": {
+    "assetId": "eip155:10/erc20:0xb396b31599333739a97951b74652c117be86ee1d",
+    "chainId": "eip155:10",
+    "name": "Davos Protocol on Optimism",
+    "precision": 18,
+    "color": "#FAD8E0",
+    "icon": "https://assets.coingecko.com/coins/images/28775/thumb/dusd_logo_200x200.png?1696527754",
+    "symbol": "DUSD",
+    "explorer": "https://optimistic.etherscan.io",
+    "explorerAddressLink": "https://optimistic.etherscan.io/address/",
+    "explorerTxLink": "https://optimistic.etherscan.io/tx/"
+  },
+  "eip155:10/erc20:0xb4bc46bc6cb217b59ea8f4530bae26bf69f677f0": {
+    "assetId": "eip155:10/erc20:0xb4bc46bc6cb217b59ea8f4530bae26bf69f677f0",
+    "chainId": "eip155:10",
+    "name": "Beethoven X",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/19158/thumb/beets-icon-large.png?1696518608",
+    "symbol": "BEETS",
+    "explorer": "https://optimistic.etherscan.io",
+    "explorerAddressLink": "https://optimistic.etherscan.io/address/",
+    "explorerTxLink": "https://optimistic.etherscan.io/tx/"
+  },
+  "eip155:10/erc20:0xb532178708814f0c174b29b991d2b355106afbc3": {
+    "assetId": "eip155:10/erc20:0xb532178708814f0c174b29b991d2b355106afbc3",
+    "chainId": "eip155:10",
+    "name": "Astrava on Optimism",
+    "precision": 18,
+    "color": "#F0E0F1",
+    "icon": "https://assets.coingecko.com/coins/images/31122/thumb/Astrava2.jpeg?1696529952",
+    "symbol": "AST",
+    "explorer": "https://optimistic.etherscan.io",
+    "explorerAddressLink": "https://optimistic.etherscan.io/address/",
+    "explorerTxLink": "https://optimistic.etherscan.io/tx/"
+  },
+  "eip155:10/erc20:0xb829b68f57cc546da7e5806a929e53be32a4625d": {
+    "assetId": "eip155:10/erc20:0xb829b68f57cc546da7e5806a929e53be32a4625d",
+    "chainId": "eip155:10",
+    "name": "Axelar Wrapped Ether on Optimism",
+    "precision": 18,
+    "color": "#37353D",
+    "icon": "https://assets.coingecko.com/coins/images/28171/thumb/weth-wei_D_3x.png?1696527174",
+    "symbol": "AXLETH",
+    "explorer": "https://optimistic.etherscan.io",
+    "explorerAddressLink": "https://optimistic.etherscan.io/address/",
+    "explorerTxLink": "https://optimistic.etherscan.io/tx/"
+  },
+  "eip155:10/erc20:0xbc7b1ff1c6989f006a1185318ed4e7b5796e66e1": {
+    "assetId": "eip155:10/erc20:0xbc7b1ff1c6989f006a1185318ed4e7b5796e66e1",
+    "chainId": "eip155:10",
+    "name": "Pendle on Optimism",
+    "precision": 18,
+    "color": "#D4D4DC",
+    "icon": "https://assets.coingecko.com/coins/images/15069/thumb/Pendle_Logo_Normal-03.png?1696514728",
+    "symbol": "PENDLE",
+    "explorer": "https://optimistic.etherscan.io",
+    "explorerAddressLink": "https://optimistic.etherscan.io/address/",
+    "explorerTxLink": "https://optimistic.etherscan.io/tx/"
+  },
+  "eip155:10/erc20:0xbf0c7ccb143126c1be90a426f676f5cb313956d9": {
+    "assetId": "eip155:10/erc20:0xbf0c7ccb143126c1be90a426f676f5cb313956d9",
+    "chainId": "eip155:10",
+    "name": "Tempest",
+    "precision": 18,
+    "color": "#171A24",
+    "icon": "https://assets.coingecko.com/coins/images/31395/thumb/logo200.png?1696530211",
+    "symbol": "TEM",
+    "explorer": "https://optimistic.etherscan.io",
+    "explorerAddressLink": "https://optimistic.etherscan.io/address/",
+    "explorerTxLink": "https://optimistic.etherscan.io/tx/"
+  },
+  "eip155:10/erc20:0xbfd291da8a403daaf7e5e9dc1ec0aceacd4848b9": {
+    "assetId": "eip155:10/erc20:0xbfd291da8a403daaf7e5e9dc1ec0aceacd4848b9",
+    "chainId": "eip155:10",
+    "name": "dForce USD on Optimism",
+    "precision": 18,
+    "color": "#FC9C04",
+    "icon": "https://assets.coingecko.com/coins/images/17422/thumb/usx_32.png?1696516969",
+    "symbol": "USX",
+    "explorer": "https://optimistic.etherscan.io",
+    "explorerAddressLink": "https://optimistic.etherscan.io/address/",
+    "explorerTxLink": "https://optimistic.etherscan.io/tx/"
+  },
+  "eip155:10/erc20:0xc03b43d492d904406db2d7d57e67c7e8234ba752": {
+    "assetId": "eip155:10/erc20:0xc03b43d492d904406db2d7d57e67c7e8234ba752",
+    "chainId": "eip155:10",
+    "name": "Wrapped USDR on Optimism",
+    "precision": 9,
+    "color": "#F29499",
+    "icon": "https://assets.coingecko.com/coins/images/28800/thumb/wUSDRlogo.png?1696527777",
+    "symbol": "WUSDR",
+    "explorer": "https://optimistic.etherscan.io",
+    "explorerAddressLink": "https://optimistic.etherscan.io/address/",
+    "explorerTxLink": "https://optimistic.etherscan.io/tx/"
+  },
+  "eip155:10/erc20:0xc04fb38f10ad352c5f16bd4546f7456e7f1a2d9e": {
+    "assetId": "eip155:10/erc20:0xc04fb38f10ad352c5f16bd4546f7456e7f1a2d9e",
+    "chainId": "eip155:10",
+    "name": "Minato on Optimism",
+    "precision": 18,
+    "color": "#C42434",
+    "icon": "https://assets.coingecko.com/coins/images/24622/thumb/MNTO_200x200.png?1696523794",
+    "symbol": "MNTO",
+    "explorer": "https://optimistic.etherscan.io",
+    "explorerAddressLink": "https://optimistic.etherscan.io/address/",
+    "explorerTxLink": "https://optimistic.etherscan.io/tx/"
+  },
+  "eip155:10/erc20:0xc26921b5b9ee80773774d36c84328ccb22c3a819": {
+    "assetId": "eip155:10/erc20:0xc26921b5b9ee80773774d36c84328ccb22c3a819",
+    "chainId": "eip155:10",
+    "name": "Wrapped OptiDoge",
+    "precision": 18,
+    "color": "#E1C795",
+    "icon": "https://assets.coingecko.com/coins/images/31066/thumb/Wrapped_OptiDoge_logo_200x200px_.png?1696529900",
+    "symbol": "WOPTIDOGE",
+    "explorer": "https://optimistic.etherscan.io",
+    "explorerAddressLink": "https://optimistic.etherscan.io/address/",
+    "explorerTxLink": "https://optimistic.etherscan.io/tx/"
+  },
+  "eip155:10/erc20:0xc27d9bc194a648fe3069955a5126699c4e49351c": {
+    "assetId": "eip155:10/erc20:0xc27d9bc194a648fe3069955a5126699c4e49351c",
+    "chainId": "eip155:10",
+    "name": "Alongside Crypto Market Index on Optimism",
+    "precision": 18,
+    "color": "#EEEEEE",
+    "icon": "https://assets.coingecko.com/coins/images/28496/thumb/22999.png?1696527488",
+    "symbol": "AMKT",
+    "explorer": "https://optimistic.etherscan.io",
+    "explorerAddressLink": "https://optimistic.etherscan.io/address/",
+    "explorerTxLink": "https://optimistic.etherscan.io/tx/"
+  },
+  "eip155:10/erc20:0xc3864f98f2a61a7caeb95b039d031b4e2f55e0e9": {
+    "assetId": "eip155:10/erc20:0xc3864f98f2a61a7caeb95b039d031b4e2f55e0e9",
+    "chainId": "eip155:10",
+    "name": "OpenXSwap",
+    "precision": 18,
+    "color": "#F1F9FA",
+    "icon": "https://assets.coingecko.com/coins/images/27663/thumb/sx7muGTv_400x400.jpeg?1696526692",
+    "symbol": "OPENX",
+    "explorer": "https://optimistic.etherscan.io",
+    "explorerAddressLink": "https://optimistic.etherscan.io/address/",
+    "explorerTxLink": "https://optimistic.etherscan.io/tx/"
+  },
+  "eip155:10/erc20:0xc40f949f8a4e094d1b49a23ea9241d289b7b2819": {
+    "assetId": "eip155:10/erc20:0xc40f949f8a4e094d1b49a23ea9241d289b7b2819",
+    "chainId": "eip155:10",
+    "name": "Liquity USD on Optimism",
+    "precision": 18,
+    "color": "#30B5EC",
+    "icon": "https://assets.coingecko.com/coins/images/14666/thumb/Group_3.png?1696514341",
+    "symbol": "LUSD",
+    "explorer": "https://optimistic.etherscan.io",
+    "explorerAddressLink": "https://optimistic.etherscan.io/address/",
+    "explorerTxLink": "https://optimistic.etherscan.io/tx/"
+  },
+  "eip155:10/erc20:0xc45a479877e1e9dfe9fcd4056c699575a1045daa": {
+    "assetId": "eip155:10/erc20:0xc45a479877e1e9dfe9fcd4056c699575a1045daa",
+    "chainId": "eip155:10",
+    "name": "Aave v3 wstETH on Optimism",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/32890/thumb/WSTETH.png?1699776336",
+    "symbol": "AWSTETH",
+    "explorer": "https://optimistic.etherscan.io",
+    "explorerAddressLink": "https://optimistic.etherscan.io/address/",
+    "explorerTxLink": "https://optimistic.etherscan.io/tx/"
+  },
+  "eip155:10/erc20:0xc4d4500326981eacd020e20a81b1c479c161c7ef": {
+    "assetId": "eip155:10/erc20:0xc4d4500326981eacd020e20a81b1c479c161c7ef",
+    "chainId": "eip155:10",
+    "name": "Exactly Wrapped Ether",
+    "precision": 18,
+    "color": "#070D0B",
+    "icon": "https://assets.coingecko.com/coins/images/31174/thumb/ExaETH_1.png?1696530002",
+    "symbol": "EXAWETH",
+    "explorer": "https://optimistic.etherscan.io",
+    "explorerAddressLink": "https://optimistic.etherscan.io/address/",
+    "explorerTxLink": "https://optimistic.etherscan.io/tx/"
+  },
+  "eip155:10/erc20:0xc5102fe9359fd9a28f877a67e36b0f050d81a3cc": {
+    "assetId": "eip155:10/erc20:0xc5102fe9359fd9a28f877a67e36b0f050d81a3cc",
+    "chainId": "eip155:10",
+    "name": "Hop Protocol on Optimism",
+    "precision": 18,
+    "color": "#D267CC",
+    "icon": "https://assets.coingecko.com/coins/images/25445/thumb/hop.png?1696524577",
+    "symbol": "HOP",
+    "explorer": "https://optimistic.etherscan.io",
+    "explorerAddressLink": "https://optimistic.etherscan.io/address/",
+    "explorerTxLink": "https://optimistic.etherscan.io/tx/"
+  },
+  "eip155:10/erc20:0xc55e93c62874d8100dbd2dfe307edc1036ad5434": {
+    "assetId": "eip155:10/erc20:0xc55e93c62874d8100dbd2dfe307edc1036ad5434",
+    "chainId": "eip155:10",
+    "name": "Staked BIFI on Optimism",
+    "precision": 18,
+    "color": "#E4E6E6",
+    "icon": "https://assets.coingecko.com/coins/images/32597/thumb/319381e63428d3c2ab6e035d5f3abd76.png?1698682355",
+    "symbol": "MOOBIFI",
+    "explorer": "https://optimistic.etherscan.io",
+    "explorerAddressLink": "https://optimistic.etherscan.io/address/",
+    "explorerTxLink": "https://optimistic.etherscan.io/tx/"
+  },
+  "eip155:10/erc20:0xc5b001dc33727f8f26880b184090d3e252470d45": {
+    "assetId": "eip155:10/erc20:0xc5b001dc33727f8f26880b184090d3e252470d45",
+    "chainId": "eip155:10",
+    "name": "Ethos Reserve Note on Optimism",
+    "precision": 18,
+    "color": "#0C0C0C",
+    "icon": "https://assets.coingecko.com/coins/images/29744/thumb/ERN200x200.png?1696528676",
+    "symbol": "ERN",
+    "explorer": "https://optimistic.etherscan.io",
+    "explorerAddressLink": "https://optimistic.etherscan.io/address/",
+    "explorerTxLink": "https://optimistic.etherscan.io/tx/"
+  },
+  "eip155:10/erc20:0xcb59a0a753fdb7491d5f3d794316f1ade197b21e": {
+    "assetId": "eip155:10/erc20:0xcb59a0a753fdb7491d5f3d794316f1ade197b21e",
+    "chainId": "eip155:10",
+    "name": "Bridged TrueUSD on Optimism",
+    "precision": 18,
+    "color": "#1F5AE7",
+    "icon": "https://assets.coingecko.com/coins/images/30837/thumb/tusd.jpeg?1696529695",
+    "symbol": "TUSD",
+    "explorer": "https://optimistic.etherscan.io",
+    "explorerAddressLink": "https://optimistic.etherscan.io/address/",
+    "explorerTxLink": "https://optimistic.etherscan.io/tx/"
+  },
+  "eip155:10/erc20:0xcb8fa9a76b8e203d8c3797bf438d8fb81ea3326a": {
+    "assetId": "eip155:10/erc20:0xcb8fa9a76b8e203d8c3797bf438d8fb81ea3326a",
+    "chainId": "eip155:10",
+    "name": "Alchemix USD on Optimism",
+    "precision": 18,
+    "color": "#E4B392",
+    "icon": "https://assets.coingecko.com/coins/images/14114/thumb/Alchemix_USD.png?1696513835",
+    "symbol": "ALUSD",
+    "explorer": "https://optimistic.etherscan.io",
+    "explorerAddressLink": "https://optimistic.etherscan.io/address/",
+    "explorerTxLink": "https://optimistic.etherscan.io/tx/"
+  },
+  "eip155:10/erc20:0xcdb4bb51801a1f399d4402c61bc098a72c382e65": {
+    "assetId": "eip155:10/erc20:0xcdb4bb51801a1f399d4402c61bc098a72c382e65",
+    "chainId": "eip155:10",
+    "name": "OPX Finance",
+    "precision": 18,
+    "color": "#FAE4E2",
+    "icon": "https://assets.coingecko.com/coins/images/28225/thumb/logo_OPX.png?1696527227",
+    "symbol": "OPX",
+    "explorer": "https://optimistic.etherscan.io",
+    "explorerAddressLink": "https://optimistic.etherscan.io/address/",
+    "explorerTxLink": "https://optimistic.etherscan.io/tx/"
+  },
+  "eip155:10/erc20:0xd3594e879b358f430e20f82bea61e83562d49d48": {
+    "assetId": "eip155:10/erc20:0xd3594e879b358f430e20f82bea61e83562d49d48",
+    "chainId": "eip155:10",
+    "name": "ParaSwap on Optimism",
+    "precision": 18,
+    "color": "#F6FAF5",
+    "icon": "https://assets.coingecko.com/coins/images/20403/thumb/ep7GqM19_400x400.jpg?1696519812",
+    "symbol": "PSP",
+    "explorer": "https://optimistic.etherscan.io",
+    "explorerAddressLink": "https://optimistic.etherscan.io/address/",
+    "explorerTxLink": "https://optimistic.etherscan.io/tx/"
+  },
+  "eip155:10/erc20:0xd3ac016b1b8c80eeadde4d186a9138c9324e4189": {
+    "assetId": "eip155:10/erc20:0xd3ac016b1b8c80eeadde4d186a9138c9324e4189",
+    "chainId": "eip155:10",
+    "name": "Okcash on Optimism",
+    "precision": 18,
+    "color": "#0C1C34",
+    "icon": "https://assets.coingecko.com/coins/images/274/thumb/ok-logo-200px.png?1696501624",
+    "symbol": "OK",
+    "explorer": "https://optimistic.etherscan.io",
+    "explorerAddressLink": "https://optimistic.etherscan.io/address/",
+    "explorerTxLink": "https://optimistic.etherscan.io/tx/"
+  },
+  "eip155:10/erc20:0xd52f94df742a6f4b4c8b033369fe13a41782bf44": {
+    "assetId": "eip155:10/erc20:0xd52f94df742a6f4b4c8b033369fe13a41782bf44",
+    "chainId": "eip155:10",
+    "name": "Layer2DAO on Optimism",
+    "precision": 18,
+    "color": "#39E0F5",
+    "icon": "https://assets.coingecko.com/coins/images/23699/thumb/Khp7Y4Sn.png?1696522900",
+    "symbol": "L2DAO",
+    "explorer": "https://optimistic.etherscan.io",
+    "explorerAddressLink": "https://optimistic.etherscan.io/address/",
+    "explorerTxLink": "https://optimistic.etherscan.io/tx/"
+  },
+  "eip155:10/erc20:0xd652776de7ad802be5ec7bebfafda37600222b48": {
+    "assetId": "eip155:10/erc20:0xd652776de7ad802be5ec7bebfafda37600222b48",
+    "chainId": "eip155:10",
+    "name": "SoliMax on Optimism",
+    "precision": 18,
+    "color": "#DBA6E6",
+    "icon": "https://assets.coingecko.com/coins/images/29440/thumb/slmlogo.png?1696528388",
+    "symbol": "SLM",
+    "explorer": "https://optimistic.etherscan.io",
+    "explorerAddressLink": "https://optimistic.etherscan.io/address/",
+    "explorerTxLink": "https://optimistic.etherscan.io/tx/"
+  },
+  "eip155:10/erc20:0xda10009cbd5d07dd0cecc66161fc93d7c9000da1": {
+    "assetId": "eip155:10/erc20:0xda10009cbd5d07dd0cecc66161fc93d7c9000da1",
+    "chainId": "eip155:10",
+    "name": "Dai on Optimism",
+    "precision": 18,
+    "color": "#FCBD3C",
+    "icon": "https://assets.coingecko.com/coins/images/9956/thumb/Badge_Dai.png?1696509996",
+    "symbol": "DAI",
+    "explorer": "https://optimistic.etherscan.io",
+    "explorerAddressLink": "https://optimistic.etherscan.io/address/",
+    "explorerTxLink": "https://optimistic.etherscan.io/tx/"
+  },
+  "eip155:10/erc20:0xdb4ea87ff83eb1c80b8976fc47731da6a31d35e5": {
+    "assetId": "eip155:10/erc20:0xdb4ea87ff83eb1c80b8976fc47731da6a31d35e5",
+    "chainId": "eip155:10",
+    "name": "wTBT on Optimism",
+    "precision": 18,
+    "color": "#DEDEDE",
+    "icon": "https://assets.coingecko.com/coins/images/29772/thumb/WTBT.png?1696528703",
+    "symbol": "WTBT",
+    "explorer": "https://optimistic.etherscan.io",
+    "explorerAddressLink": "https://optimistic.etherscan.io/address/",
+    "explorerTxLink": "https://optimistic.etherscan.io/tx/"
+  },
+  "eip155:10/erc20:0xdc6ff44d5d932cbd77b52e5612ba0529dc6226f1": {
+    "assetId": "eip155:10/erc20:0xdc6ff44d5d932cbd77b52e5612ba0529dc6226f1",
+    "chainId": "eip155:10",
+    "name": "Worldcoin on Optimism",
+    "precision": 18,
+    "color": "#D0D0D0",
+    "icon": "https://assets.coingecko.com/coins/images/31069/thumb/worldcoin.jpeg?1696529903",
+    "symbol": "WLD",
+    "explorer": "https://optimistic.etherscan.io",
+    "explorerAddressLink": "https://optimistic.etherscan.io/address/",
+    "explorerTxLink": "https://optimistic.etherscan.io/tx/"
+  },
+  "eip155:10/erc20:0xdfa46478f9e5ea86d57387849598dbfb2e964b02": {
+    "assetId": "eip155:10/erc20:0xdfa46478f9e5ea86d57387849598dbfb2e964b02",
+    "chainId": "eip155:10",
+    "name": "MAI on Optimism",
+    "precision": 18,
+    "color": "#F1C5C5",
+    "icon": "https://assets.coingecko.com/coins/images/15264/thumb/mimatic-red.png?1696514916",
+    "symbol": "MIMATIC",
+    "explorer": "https://optimistic.etherscan.io",
+    "explorerAddressLink": "https://optimistic.etherscan.io/address/",
+    "explorerTxLink": "https://optimistic.etherscan.io/tx/"
+  },
+  "eip155:10/erc20:0xe05a08226c49b636acf99c40da8dc6af83ce5bb3": {
+    "assetId": "eip155:10/erc20:0xe05a08226c49b636acf99c40da8dc6af83ce5bb3",
+    "chainId": "eip155:10",
+    "name": "Ankr Staked ETH on Optimism",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/13403/thumb/aETHc.png?1696513165",
+    "symbol": "ANKRETH",
+    "explorer": "https://optimistic.etherscan.io",
+    "explorerAddressLink": "https://optimistic.etherscan.io/address/",
+    "explorerTxLink": "https://optimistic.etherscan.io/tx/"
+  },
+  "eip155:10/erc20:0xe0bb0d3de8c10976511e5030ca403dbf4c25165b": {
+    "assetId": "eip155:10/erc20:0xe0bb0d3de8c10976511e5030ca403dbf4c25165b",
+    "chainId": "eip155:10",
+    "name": "0xBitcoin on Optimism",
+    "precision": 8,
+    "color": "#FC7D05",
+    "icon": "https://assets.coingecko.com/coins/images/4454/thumb/0xbtc.png?1696505045",
+    "symbol": "0XBTC",
+    "explorer": "https://optimistic.etherscan.io",
+    "explorerAddressLink": "https://optimistic.etherscan.io/address/",
+    "explorerTxLink": "https://optimistic.etherscan.io/tx/"
+  },
+  "eip155:10/erc20:0xe3b3a464ee575e8e25d2508918383b89c832f275": {
+    "assetId": "eip155:10/erc20:0xe3b3a464ee575e8e25d2508918383b89c832f275",
+    "chainId": "eip155:10",
+    "name": "PoolTogether Prize USD Coin",
+    "precision": 6,
+    "color": "#9785F3",
+    "icon": "https://assets.coingecko.com/coins/images/32455/thumb/prizeUSDCIcon_200.png?1698241065",
+    "symbol": "PUSDCE",
+    "explorer": "https://optimistic.etherscan.io",
+    "explorerAddressLink": "https://optimistic.etherscan.io/address/",
+    "explorerTxLink": "https://optimistic.etherscan.io/tx/"
+  },
+  "eip155:10/erc20:0xe3c332a5dce0e1d9bc2cc72a68437790570c28a4": {
+    "assetId": "eip155:10/erc20:0xe3c332a5dce0e1d9bc2cc72a68437790570c28a4",
+    "chainId": "eip155:10",
+    "name": "BLOCKv on Optimism",
+    "precision": 18,
+    "color": "#E8EAEE",
+    "icon": "https://assets.coingecko.com/coins/images/1266/thumb/blockv.png?1696502339",
+    "symbol": "VEE",
+    "explorer": "https://optimistic.etherscan.io",
+    "explorerAddressLink": "https://optimistic.etherscan.io/address/",
+    "explorerTxLink": "https://optimistic.etherscan.io/tx/"
+  },
+  "eip155:10/erc20:0xe405de8f52ba7559f9df3c368500b6e6ae6cee49": {
+    "assetId": "eip155:10/erc20:0xe405de8f52ba7559f9df3c368500b6e6ae6cee49",
+    "chainId": "eip155:10",
+    "name": "sETH on Optimism",
+    "precision": 18,
+    "color": "#D7DCF7",
+    "icon": "https://assets.coingecko.com/coins/images/8843/thumb/sETH.png?1696508995",
+    "symbol": "SETH",
+    "explorer": "https://optimistic.etherscan.io",
+    "explorerAddressLink": "https://optimistic.etherscan.io/address/",
+    "explorerTxLink": "https://optimistic.etherscan.io/tx/"
+  },
+  "eip155:10/erc20:0xe453d6649643f1f460c371dc3d1da98f7922fe51": {
+    "assetId": "eip155:10/erc20:0xe453d6649643f1f460c371dc3d1da98f7922fe51",
+    "chainId": "eip155:10",
+    "name": "Fuse on Optimism",
+    "precision": 18,
+    "color": "#141B14",
+    "icon": "https://assets.coingecko.com/coins/images/10347/thumb/fuse.png?1696510348",
+    "symbol": "FUSE",
+    "explorer": "https://optimistic.etherscan.io",
+    "explorerAddressLink": "https://optimistic.etherscan.io/address/",
+    "explorerTxLink": "https://optimistic.etherscan.io/tx/"
+  },
+  "eip155:10/erc20:0xe4d8701c69b3b94a620ff048e4226c895b67b2c0": {
+    "assetId": "eip155:10/erc20:0xe4d8701c69b3b94a620ff048e4226c895b67b2c0",
+    "chainId": "eip155:10",
+    "name": "Minerva Money",
+    "precision": 18,
+    "color": "#BD8A94",
+    "icon": "https://assets.coingecko.com/coins/images/30701/thumb/016-D86-A7-E242-4-DC5-860-A-E09-C92-F79-DD2.png?1696529571",
+    "symbol": "MINE",
+    "explorer": "https://optimistic.etherscan.io",
+    "explorerAddressLink": "https://optimistic.etherscan.io/address/",
+    "explorerTxLink": "https://optimistic.etherscan.io/tx/"
+  },
+  "eip155:10/erc20:0xe4de4b87345815c71aa843ea4841bcdc682637bb": {
+    "assetId": "eip155:10/erc20:0xe4de4b87345815c71aa843ea4841bcdc682637bb",
+    "chainId": "eip155:10",
+    "name": "BUILD on Optimism",
+    "precision": 4,
+    "color": "#EC1C24",
+    "icon": "https://assets.coingecko.com/coins/images/26533/thumb/BUILD.png?1696525607",
+    "symbol": "BUILD",
+    "explorer": "https://optimistic.etherscan.io",
+    "explorerAddressLink": "https://optimistic.etherscan.io/address/",
+    "explorerTxLink": "https://optimistic.etherscan.io/tx/"
+  },
+  "eip155:10/erc20:0xe50fa9b3c56ffb159cb0fca61f5c9d750e8128c8": {
+    "assetId": "eip155:10/erc20:0xe50fa9b3c56ffb159cb0fca61f5c9d750e8128c8",
+    "chainId": "eip155:10",
+    "name": "Aave v3 WETH on Optimism",
+    "precision": 18,
+    "color": "#C5B9CB",
+    "icon": "https://assets.coingecko.com/coins/images/32882/thumb/WETH_%281%29.png?1699716492",
+    "symbol": "AWETH",
+    "explorer": "https://optimistic.etherscan.io",
+    "explorerAddressLink": "https://optimistic.etherscan.io/address/",
+    "explorerTxLink": "https://optimistic.etherscan.io/tx/"
+  },
+  "eip155:10/erc20:0xeb466342c4d449bc9f53a865d5cb90586f405215": {
+    "assetId": "eip155:10/erc20:0xeb466342c4d449bc9f53a865d5cb90586f405215",
+    "chainId": "eip155:10",
+    "name": "Bridged USD Coin  Axelar  on Optimism",
+    "precision": 6,
+    "color": "#D4E0F0",
+    "icon": "https://assets.coingecko.com/coins/images/26476/thumb/uausdc_D_3x.png?1696525548",
+    "symbol": "AXLUSDC",
+    "explorer": "https://optimistic.etherscan.io",
+    "explorerAddressLink": "https://optimistic.etherscan.io/address/",
+    "explorerTxLink": "https://optimistic.etherscan.io/tx/"
+  },
+  "eip155:10/erc20:0xec6adef5e1006bb305bb1975333e8fc4071295bf": {
+    "assetId": "eip155:10/erc20:0xec6adef5e1006bb305bb1975333e8fc4071295bf",
+    "chainId": "eip155:10",
+    "name": "Cartesi on Optimism",
+    "precision": 18,
+    "color": "#AEAEAE",
+    "icon": "https://assets.coingecko.com/coins/images/11038/thumb/Cartesi_Logo.png?1696510982",
+    "symbol": "CTSI",
+    "explorer": "https://optimistic.etherscan.io",
+    "explorerAddressLink": "https://optimistic.etherscan.io/address/",
+    "explorerTxLink": "https://optimistic.etherscan.io/tx/"
+  },
+  "eip155:10/erc20:0xecf46257ed31c329f204eb43e254c609dee143b3": {
+    "assetId": "eip155:10/erc20:0xecf46257ed31c329f204eb43e254c609dee143b3",
+    "chainId": "eip155:10",
+    "name": "RigoBlock on Optimism",
+    "precision": 18,
+    "color": "#F1BC40",
+    "icon": "https://assets.coingecko.com/coins/images/1532/thumb/Symbol-RigoblockRGB.png?1696502572",
+    "symbol": "GRG",
+    "explorer": "https://optimistic.etherscan.io",
+    "explorerAddressLink": "https://optimistic.etherscan.io/address/",
+    "explorerTxLink": "https://optimistic.etherscan.io/tx/"
+  },
+  "eip155:10/erc20:0xee9801669c6138e84bd50deb500827b776777d28": {
+    "assetId": "eip155:10/erc20:0xee9801669c6138e84bd50deb500827b776777d28",
+    "chainId": "eip155:10",
+    "name": "O3 Swap on Optimism",
+    "precision": 18,
+    "color": "#D7F0E8",
+    "icon": "https://assets.coingecko.com/coins/images/15460/thumb/o3.png?1696515107",
+    "symbol": "O3",
+    "explorer": "https://optimistic.etherscan.io",
+    "explorerAddressLink": "https://optimistic.etherscan.io/address/",
+    "explorerTxLink": "https://optimistic.etherscan.io/tx/"
+  },
+  "eip155:10/erc20:0xf1a0da3367bc7aa04f8d94ba57b862ff37ced174": {
+    "assetId": "eip155:10/erc20:0xf1a0da3367bc7aa04f8d94ba57b862ff37ced174",
+    "chainId": "eip155:10",
+    "name": "FOX on Optimism",
+    "precision": 18,
+    "color": "#3761F9",
+    "icon": "https://assets.coincap.io/assets/icons/256/fox.png",
+    "symbol": "FOX",
+    "explorer": "https://optimistic.etherscan.io",
+    "explorerAddressLink": "https://optimistic.etherscan.io/address/",
+    "explorerTxLink": "https://optimistic.etherscan.io/tx/"
+  },
+  "eip155:10/erc20:0xf329e36c7bf6e5e86ce2150875a84ce77f477375": {
+    "assetId": "eip155:10/erc20:0xf329e36c7bf6e5e86ce2150875a84ce77f477375",
+    "chainId": "eip155:10",
+    "name": "Aave v3 AAVE on Optimism",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/32887/thumb/aave.png?1699773604",
+    "symbol": "AAAVE",
+    "explorer": "https://optimistic.etherscan.io",
+    "explorerAddressLink": "https://optimistic.etherscan.io/address/",
+    "explorerTxLink": "https://optimistic.etherscan.io/tx/"
+  },
+  "eip155:10/erc20:0xf899e3909b4492859d44260e1de41a9e663e70f5": {
+    "assetId": "eip155:10/erc20:0xf899e3909b4492859d44260e1de41a9e663e70f5",
+    "chainId": "eip155:10",
+    "name": "RadioShack on Optimism",
+    "precision": 18,
+    "color": "#F5E7E0",
+    "icon": "https://assets.coingecko.com/coins/images/25307/thumb/ZVoPiysPJq6dPIZm_Se-6vjmsBepwhHlTQfdYZRILbHyVVTRUYCO-wmJJ4zT10HXCGv1j-ZyWr2u2sBaVlap5Y-ILqeXZuIquWdBDxxG0E0qDpgH7omLqYdgWWLSM_TUK9d1PiiYdu6bERdCDaucgFjlqwmhVQK4uV4jyUiXzchVUnu8Qt6SnxlNxz88G0mQ_tfiwkFv_vKqtgb1CcPycVZVz9.jpg?1696524444",
+    "symbol": "RADIO",
+    "explorer": "https://optimistic.etherscan.io",
+    "explorerAddressLink": "https://optimistic.etherscan.io/address/",
+    "explorerTxLink": "https://optimistic.etherscan.io/tx/"
+  },
+  "eip155:10/erc20:0xf8e943f646816e4b51279b8934753821ed832dca": {
+    "assetId": "eip155:10/erc20:0xf8e943f646816e4b51279b8934753821ed832dca",
+    "chainId": "eip155:10",
+    "name": "Cthulhu Finance",
+    "precision": 18,
+    "color": "#FC0523",
+    "icon": "https://assets.coingecko.com/coins/images/29487/thumb/logo200.png?1696528431",
+    "symbol": "CTH",
+    "explorer": "https://optimistic.etherscan.io",
+    "explorerAddressLink": "https://optimistic.etherscan.io/address/",
+    "explorerTxLink": "https://optimistic.etherscan.io/tx/"
+  },
+  "eip155:10/erc20:0xf98dcd95217e15e05d8638da4c91125e59590b07": {
+    "assetId": "eip155:10/erc20:0xf98dcd95217e15e05d8638da4c91125e59590b07",
+    "chainId": "eip155:10",
+    "name": "Kromatika on Optimism",
+    "precision": 18,
+    "color": "#B0C9F9",
+    "icon": "https://assets.coingecko.com/coins/images/20541/thumb/KROM_Transparent.png?1696519948",
+    "symbol": "KROM",
+    "explorer": "https://optimistic.etherscan.io",
+    "explorerAddressLink": "https://optimistic.etherscan.io/address/",
+    "explorerTxLink": "https://optimistic.etherscan.io/tx/"
+  },
+  "eip155:10/erc20:0xfa436399d0458dbe8ab890c3441256e3e09022a8": {
+    "assetId": "eip155:10/erc20:0xfa436399d0458dbe8ab890c3441256e3e09022a8",
+    "chainId": "eip155:10",
+    "name": "ZipSwap",
+    "precision": 18,
+    "color": "#3BA7F4",
+    "icon": "https://assets.coingecko.com/coins/images/22910/thumb/zip.png?1696522207",
+    "symbol": "ZIP",
+    "explorer": "https://optimistic.etherscan.io",
+    "explorerAddressLink": "https://optimistic.etherscan.io/address/",
+    "explorerTxLink": "https://optimistic.etherscan.io/tx/"
+  },
+  "eip155:10/erc20:0xfd389dc9533717239856190f42475d3f263a270d": {
+    "assetId": "eip155:10/erc20:0xfd389dc9533717239856190f42475d3f263a270d",
+    "chainId": "eip155:10",
+    "name": "Granary on Optimism",
+    "precision": 18,
+    "color": "#EDD894",
+    "icon": "https://assets.coingecko.com/coins/images/29740/thumb/Grain.png?1696528670",
+    "symbol": "GRAIN",
+    "explorer": "https://optimistic.etherscan.io",
+    "explorerAddressLink": "https://optimistic.etherscan.io/address/",
+    "explorerTxLink": "https://optimistic.etherscan.io/tx/"
+  },
+  "eip155:10/erc20:0xfdb794692724153d1488ccdbe0c56c252596735f": {
+    "assetId": "eip155:10/erc20:0xfdb794692724153d1488ccdbe0c56c252596735f",
+    "chainId": "eip155:10",
+    "name": "Lido DAO on Optimism",
+    "precision": 18,
+    "color": "#EBB29E",
+    "icon": "https://assets.coingecko.com/coins/images/13573/thumb/Lido_DAO.png?1696513326",
+    "symbol": "LDO",
+    "explorer": "https://optimistic.etherscan.io",
+    "explorerAddressLink": "https://optimistic.etherscan.io/address/",
+    "explorerTxLink": "https://optimistic.etherscan.io/tx/"
+  },
+  "eip155:10/erc20:0xfe8b128ba8c78aabc59d4c64cee7ff28e9379921": {
+    "assetId": "eip155:10/erc20:0xfe8b128ba8c78aabc59d4c64cee7ff28e9379921",
+    "chainId": "eip155:10",
+    "name": "Balancer on Optimism",
+    "precision": 18,
+    "color": "#040404",
+    "icon": "https://assets.coingecko.com/coins/images/11683/thumb/Balancer.png?1696511572",
+    "symbol": "BAL",
+    "explorer": "https://optimistic.etherscan.io",
+    "explorerAddressLink": "https://optimistic.etherscan.io/address/",
+    "explorerTxLink": "https://optimistic.etherscan.io/tx/"
+  },
+  "eip155:10/erc20:0xff733b2a3557a7ed6697007ab5d11b79fdd1b76b": {
+    "assetId": "eip155:10/erc20:0xff733b2a3557a7ed6697007ab5d11b79fdd1b76b",
+    "chainId": "eip155:10",
+    "name": "Across Protocol on Optimism",
+    "precision": 18,
+    "color": "#6BF9D9",
+    "icon": "https://assets.coingecko.com/coins/images/28161/thumb/across-200x200.png?1696527165",
+    "symbol": "ACX",
+    "explorer": "https://optimistic.etherscan.io",
+    "explorerAddressLink": "https://optimistic.etherscan.io/address/",
+    "explorerTxLink": "https://optimistic.etherscan.io/tx/"
+  },
+  "eip155:10/slip44:60": {
+    "assetId": "eip155:10/slip44:60",
+    "chainId": "eip155:10",
+    "name": "Ethereum on Optimism",
+    "networkName": "Optimism",
+    "symbol": "ETH",
+    "precision": 18,
+    "color": "#5C6BC0",
+    "networkColor": "#FC0424",
+    "icon": "https://assets.coincap.io/assets/icons/256/eth.png",
+    "networkIcon": "https://assets.coingecko.com/coins/images/25244/large/Optimism.png?1660904599",
+    "explorer": "https://optimistic.etherscan.io",
+    "explorerAddressLink": "https://optimistic.etherscan.io/address/",
+    "explorerTxLink": "https://optimistic.etherscan.io/tx/"
+  },
+  "eip155:100/erc20:0x0116e28b43a358162b96f70b4de14c98a4465f25": {
+    "assetId": "eip155:100/erc20:0x0116e28b43a358162b96f70b4de14c98a4465f25",
+    "chainId": "eip155:100",
+    "name": "UNCX Network on Gnosis",
+    "precision": 18,
+    "color": "#08DA75",
+    "icon": "https://assets.coingecko.com/coins/images/12871/thumb/uncx.png?1696512659",
+    "symbol": "UNCX",
+    "explorer": "https://gnosis.blockscout.com/",
+    "explorerAddressLink": "https://gnosis.blockscout.com/address/",
+    "explorerTxLink": "https://gnosis.blockscout.com/tx/"
+  },
+  "eip155:100/erc20:0x07279343ce61c11cb091142c8a20a1f8194d0ca8": {
+    "assetId": "eip155:100/erc20:0x07279343ce61c11cb091142c8a20a1f8194d0ca8",
+    "chainId": "eip155:100",
+    "name": "Zenland on Gnosis",
+    "precision": 18,
+    "color": "#5FA7FC",
+    "icon": "https://assets.coingecko.com/coins/images/29477/thumb/tokenicon200px.png?1696528421",
+    "symbol": "ZENF",
+    "explorer": "https://gnosis.blockscout.com/",
+    "explorerAddressLink": "https://gnosis.blockscout.com/address/",
+    "explorerTxLink": "https://gnosis.blockscout.com/tx/"
+  },
+  "eip155:100/erc20:0x177127622c4a00f3d409b75571e12cb3c8973d3c": {
+    "assetId": "eip155:100/erc20:0x177127622c4a00f3d409b75571e12cb3c8973d3c",
+    "chainId": "eip155:100",
+    "name": "CoW Protocol on Gnosis",
+    "precision": 18,
+    "color": "#CACAE7",
+    "icon": "https://assets.coingecko.com/coins/images/24384/thumb/cow.png?1696523567",
+    "symbol": "COW",
+    "explorer": "https://gnosis.blockscout.com/",
+    "explorerAddressLink": "https://gnosis.blockscout.com/address/",
+    "explorerTxLink": "https://gnosis.blockscout.com/tx/"
+  },
+  "eip155:100/erc20:0x18e9262e68cc6c6004db93105cc7c001bb103e49": {
+    "assetId": "eip155:100/erc20:0x18e9262e68cc6c6004db93105cc7c001bb103e49",
+    "chainId": "eip155:100",
+    "name": "Raid on Gnosis",
+    "precision": 18,
+    "color": "#2A0C11",
+    "icon": "https://assets.coingecko.com/coins/images/18133/thumb/raid_200_oswlvz.png?1696517636",
+    "symbol": "RAID",
+    "explorer": "https://gnosis.blockscout.com/",
+    "explorerAddressLink": "https://gnosis.blockscout.com/address/",
+    "explorerTxLink": "https://gnosis.blockscout.com/tx/"
+  },
+  "eip155:100/erc20:0x1e2c4fb7ede391d116e6b41cd0608260e8801d59": {
+    "assetId": "eip155:100/erc20:0x1e2c4fb7ede391d116e6b41cd0608260e8801d59",
+    "chainId": "eip155:100",
+    "name": "Backed CSPX Core S P 500 on Gnosis",
+    "precision": 18,
+    "color": "#CCCCD2",
+    "icon": "https://assets.coingecko.com/coins/images/31891/thumb/b-CSPX-200x200.png?1696530702",
+    "symbol": "BCSPX",
+    "explorer": "https://gnosis.blockscout.com/",
+    "explorerAddressLink": "https://gnosis.blockscout.com/address/",
+    "explorerTxLink": "https://gnosis.blockscout.com/tx/"
+  },
+  "eip155:100/erc20:0x2086f52651837600180de173b09470f54ef74910": {
+    "assetId": "eip155:100/erc20:0x2086f52651837600180de173b09470f54ef74910",
+    "chainId": "eip155:100",
+    "name": "Balancer Stable USD",
+    "precision": 18,
+    "color": "#060606",
+    "icon": "https://assets.coingecko.com/coins/images/32112/thumb/bal3.png?1696561317",
+    "symbol": "STABAL3",
+    "explorer": "https://gnosis.blockscout.com/",
+    "explorerAddressLink": "https://gnosis.blockscout.com/address/",
+    "explorerTxLink": "https://gnosis.blockscout.com/tx/"
+  },
+  "eip155:100/erc20:0x20c64dee8fda5269a78f2d5bdba861ca1d83df7a": {
+    "assetId": "eip155:100/erc20:0x20c64dee8fda5269a78f2d5bdba861ca1d83df7a",
+    "chainId": "eip155:100",
+    "name": "Backed HIGH   High Yield Corp Bond on Gnosis",
+    "precision": 18,
+    "color": "#474C57",
+    "icon": "https://assets.coingecko.com/coins/images/31868/thumb/b-HIGH-200x200.png?1696530680",
+    "symbol": "BHIGH",
+    "explorer": "https://gnosis.blockscout.com/",
+    "explorerAddressLink": "https://gnosis.blockscout.com/address/",
+    "explorerTxLink": "https://gnosis.blockscout.com/tx/"
+  },
+  "eip155:100/erc20:0x21a42669643f45bc0e086b8fc2ed70c23d67509d": {
+    "assetId": "eip155:100/erc20:0x21a42669643f45bc0e086b8fc2ed70c23d67509d",
+    "chainId": "eip155:100",
+    "name": "FOX on Gnosis",
+    "precision": 18,
+    "color": "#3761F9",
+    "icon": "https://assets.coincap.io/assets/icons/256/fox.png",
+    "symbol": "FOX",
+    "explorer": "https://gnosis.blockscout.com/",
+    "explorerAddressLink": "https://gnosis.blockscout.com/address/",
+    "explorerTxLink": "https://gnosis.blockscout.com/tx/"
+  },
+  "eip155:100/erc20:0x256eb8a51f382650b2a1e946b8811953640ee47d": {
+    "assetId": "eip155:100/erc20:0x256eb8a51f382650b2a1e946b8811953640ee47d",
+    "chainId": "eip155:100",
+    "name": "Streamr on Gnosis",
+    "precision": 18,
+    "color": "#F56510",
+    "icon": "https://assets.coingecko.com/coins/images/17869/thumb/DATA_new_symbol_3x.png?1696517392",
+    "symbol": "DATA",
+    "explorer": "https://gnosis.blockscout.com/",
+    "explorerAddressLink": "https://gnosis.blockscout.com/address/",
+    "explorerTxLink": "https://gnosis.blockscout.com/tx/"
+  },
+  "eip155:100/erc20:0x270de58f54649608d316faa795a9941b355a2bd0": {
+    "assetId": "eip155:100/erc20:0x270de58f54649608d316faa795a9941b355a2bd0",
+    "chainId": "eip155:100",
+    "name": "Freedom Reserve on Gnosis",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/13342/thumb/J6uNL2FS_400x400.jpg?1696513109",
+    "symbol": "FR",
+    "explorer": "https://gnosis.blockscout.com/",
+    "explorerAddressLink": "https://gnosis.blockscout.com/address/",
+    "explorerTxLink": "https://gnosis.blockscout.com/tx/"
+  },
+  "eip155:100/erc20:0x2d5563da42b06fbbf9c67b7dc073cf6a7842239e": {
+    "assetId": "eip155:100/erc20:0x2d5563da42b06fbbf9c67b7dc073cf6a7842239e",
+    "chainId": "eip155:100",
+    "name": "Jarvis Synthetic Swiss Franc on Gnosis",
+    "precision": 18,
+    "color": "#DC1235",
+    "icon": "https://assets.coingecko.com/coins/images/15727/thumb/jCHF.png?1696515353",
+    "symbol": "JCHF",
+    "explorer": "https://gnosis.blockscout.com/",
+    "explorerAddressLink": "https://gnosis.blockscout.com/address/",
+    "explorerTxLink": "https://gnosis.blockscout.com/tx/"
+  },
+  "eip155:100/erc20:0x2f11eeee0bf21e7661a22dbbbb9068f4ad191b86": {
+    "assetId": "eip155:100/erc20:0x2f11eeee0bf21e7661a22dbbbb9068f4ad191b86",
+    "chainId": "eip155:100",
+    "name": "Backed NIU Technologies on Gnosis",
+    "precision": 18,
+    "color": "#EC8898",
+    "icon": "https://assets.coingecko.com/coins/images/31869/thumb/b-NIU-200x200.png?1696530681",
+    "symbol": "BNIU",
+    "explorer": "https://gnosis.blockscout.com/",
+    "explorerAddressLink": "https://gnosis.blockscout.com/address/",
+    "explorerTxLink": "https://gnosis.blockscout.com/tx/"
+  },
+  "eip155:100/erc20:0x2f123cf3f37ce3328cc9b5b8415f9ec5109b45e7": {
+    "assetId": "eip155:100/erc20:0x2f123cf3f37ce3328cc9b5b8415f9ec5109b45e7",
+    "chainId": "eip155:100",
+    "name": "Backed GOVIES 0 6 months EURO on Gnosis",
+    "precision": 18,
+    "color": "#ADB4B6",
+    "icon": "https://assets.coingecko.com/coins/images/31870/thumb/b-C3-M-200x200.png?1696530682",
+    "symbol": "BC3M",
+    "explorer": "https://gnosis.blockscout.com/",
+    "explorerAddressLink": "https://gnosis.blockscout.com/address/",
+    "explorerTxLink": "https://gnosis.blockscout.com/tx/"
+  },
+  "eip155:100/erc20:0x364b5975385b4de226cf450df82d7ed69902ac5a": {
+    "assetId": "eip155:100/erc20:0x364b5975385b4de226cf450df82d7ed69902ac5a",
+    "chainId": "eip155:100",
+    "name": "TORG on Gnosis",
+    "precision": 18,
+    "color": "#0C5CFC",
+    "icon": "https://assets.coingecko.com/coins/images/17596/thumb/TORG_Logo_200x200.png?1696517129",
+    "symbol": "TORG",
+    "explorer": "https://gnosis.blockscout.com/",
+    "explorerAddressLink": "https://gnosis.blockscout.com/address/",
+    "explorerTxLink": "https://gnosis.blockscout.com/tx/"
+  },
+  "eip155:100/erc20:0x37b60f4e9a31a64ccc0024dce7d0fd07eaa0f7b3": {
+    "assetId": "eip155:100/erc20:0x37b60f4e9a31a64ccc0024dce7d0fd07eaa0f7b3",
+    "chainId": "eip155:100",
+    "name": "Kleros on Gnosis",
+    "precision": 18,
+    "color": "#626065",
+    "icon": "https://assets.coingecko.com/coins/images/3833/thumb/kleros.png?1696504500",
+    "symbol": "PNK",
+    "explorer": "https://gnosis.blockscout.com/",
+    "explorerAddressLink": "https://gnosis.blockscout.com/address/",
+    "explorerTxLink": "https://gnosis.blockscout.com/tx/"
+  },
+  "eip155:100/erc20:0x38fb649ad3d6ba1113be5f57b927053e97fc5bf7": {
+    "assetId": "eip155:100/erc20:0x38fb649ad3d6ba1113be5f57b927053e97fc5bf7",
+    "chainId": "eip155:100",
+    "name": "xDai Native Comb",
+    "precision": 18,
+    "color": "#FCF1E8",
+    "icon": "https://assets.coingecko.com/coins/images/16012/thumb/logo.png?1696515623",
+    "symbol": "XCOMB",
+    "explorer": "https://gnosis.blockscout.com/",
+    "explorerAddressLink": "https://gnosis.blockscout.com/address/",
+    "explorerTxLink": "https://gnosis.blockscout.com/tx/"
+  },
+  "eip155:100/erc20:0x3a3e9715018d80916740e8ac300713fdf6614d19": {
+    "assetId": "eip155:100/erc20:0x3a3e9715018d80916740e8ac300713fdf6614d19",
+    "chainId": "eip155:100",
+    "name": "hiveWater",
+    "precision": 18,
+    "color": "#D5EAF2",
+    "icon": "https://assets.coingecko.com/coins/images/30424/thumb/hivewater_transparent.png?1696529312",
+    "symbol": "HIVEWATER",
+    "explorer": "https://gnosis.blockscout.com/",
+    "explorerAddressLink": "https://gnosis.blockscout.com/address/",
+    "explorerTxLink": "https://gnosis.blockscout.com/tx/"
+  },
+  "eip155:100/erc20:0x3a97704a1b25f08aa230ae53b352e2e72ef52843": {
+    "assetId": "eip155:100/erc20:0x3a97704a1b25f08aa230ae53b352e2e72ef52843",
+    "chainId": "eip155:100",
+    "name": "Agave on Gnosis",
+    "precision": 18,
+    "color": "#36CAA0",
+    "icon": "https://assets.coingecko.com/coins/images/14146/thumb/agve.png?1696513865",
+    "symbol": "AGVE",
+    "explorer": "https://gnosis.blockscout.com/",
+    "explorerAddressLink": "https://gnosis.blockscout.com/address/",
+    "explorerTxLink": "https://gnosis.blockscout.com/tx/"
+  },
+  "eip155:100/erc20:0x3f56e0c36d275367b8c502090edf38289b3dea0d": {
+    "assetId": "eip155:100/erc20:0x3f56e0c36d275367b8c502090edf38289b3dea0d",
+    "chainId": "eip155:100",
+    "name": "MAI on Gnosis",
+    "precision": 18,
+    "color": "#F1C5C5",
+    "icon": "https://assets.coingecko.com/coins/images/15264/thumb/mimatic-red.png?1696514916",
+    "symbol": "MIMATIC",
+    "explorer": "https://gnosis.blockscout.com/",
+    "explorerAddressLink": "https://gnosis.blockscout.com/address/",
+    "explorerTxLink": "https://gnosis.blockscout.com/tx/"
+  },
+  "eip155:100/erc20:0x417602f4fbdd471a431ae29fb5fe0a681964c11b": {
+    "assetId": "eip155:100/erc20:0x417602f4fbdd471a431ae29fb5fe0a681964c11b",
+    "chainId": "eip155:100",
+    "name": "JPY Coin v1 on Gnosis",
+    "precision": 18,
+    "color": "#C9D2E8",
+    "icon": "https://assets.coingecko.com/coins/images/17277/thumb/WoZ8rruL_400x400.png?1696516831",
+    "symbol": "JPYC",
+    "explorer": "https://gnosis.blockscout.com/",
+    "explorerAddressLink": "https://gnosis.blockscout.com/address/",
+    "explorerTxLink": "https://gnosis.blockscout.com/tx/"
+  },
+  "eip155:100/erc20:0x4291f029b9e7acb02d49428458cf6fceac545f81": {
+    "assetId": "eip155:100/erc20:0x4291f029b9e7acb02d49428458cf6fceac545f81",
+    "chainId": "eip155:100",
+    "name": "1Hive Water",
+    "precision": 18,
+    "color": "#D3E7F6",
+    "icon": "https://assets.coingecko.com/coins/images/26089/thumb/water_logo.png?1696525180",
+    "symbol": "WATER",
+    "explorer": "https://gnosis.blockscout.com/",
+    "explorerAddressLink": "https://gnosis.blockscout.com/address/",
+    "explorerTxLink": "https://gnosis.blockscout.com/tx/"
+  },
+  "eip155:100/erc20:0x431d5dff03120afa4bdf332c61a6e1766ef37bdb": {
+    "assetId": "eip155:100/erc20:0x431d5dff03120afa4bdf332c61a6e1766ef37bdb",
+    "chainId": "eip155:100",
+    "name": "JPY Coin on Gnosis",
+    "precision": 18,
+    "color": "#1C499E",
+    "icon": "https://assets.coingecko.com/coins/images/25971/thumb/2023jpyc.png?1696525049",
+    "symbol": "JPYC",
+    "explorer": "https://gnosis.blockscout.com/",
+    "explorerAddressLink": "https://gnosis.blockscout.com/address/",
+    "explorerTxLink": "https://gnosis.blockscout.com/tx/"
+  },
+  "eip155:100/erc20:0x44fa8e6f47987339850636f88629646662444217": {
+    "assetId": "eip155:100/erc20:0x44fa8e6f47987339850636f88629646662444217",
+    "chainId": "eip155:100",
+    "name": "Dai on Gnosis",
+    "precision": 18,
+    "color": "#FCBD3C",
+    "icon": "https://assets.coingecko.com/coins/images/9956/thumb/Badge_Dai.png?1696509996",
+    "symbol": "DAI",
+    "explorer": "https://gnosis.blockscout.com/",
+    "explorerAddressLink": "https://gnosis.blockscout.com/address/",
+    "explorerTxLink": "https://gnosis.blockscout.com/tx/"
+  },
+  "eip155:100/erc20:0x4537e328bf7e4efa29d05caea260d7fe26af9d74": {
+    "assetId": "eip155:100/erc20:0x4537e328bf7e4efa29d05caea260d7fe26af9d74",
+    "chainId": "eip155:100",
+    "name": "Uniswap on Gnosis",
+    "precision": 18,
+    "color": "#FCECF5",
+    "icon": "https://assets.coingecko.com/coins/images/12504/thumb/uni.jpg?1696512319",
+    "symbol": "UNI",
+    "explorer": "https://gnosis.blockscout.com/",
+    "explorerAddressLink": "https://gnosis.blockscout.com/address/",
+    "explorerTxLink": "https://gnosis.blockscout.com/tx/"
+  },
+  "eip155:100/erc20:0x48b1b0d077b4919b65b4e4114806dd803901e1d9": {
+    "assetId": "eip155:100/erc20:0x48b1b0d077b4919b65b4e4114806dd803901e1d9",
+    "chainId": "eip155:100",
+    "name": "Etherisc DIP on Gnosis",
+    "precision": 18,
+    "color": "#C8E6F4",
+    "icon": "https://assets.coingecko.com/coins/images/4586/thumb/dip.png?1696505164",
+    "symbol": "DIP",
+    "explorer": "https://gnosis.blockscout.com/",
+    "explorerAddressLink": "https://gnosis.blockscout.com/address/",
+    "explorerTxLink": "https://gnosis.blockscout.com/tx/"
+  },
+  "eip155:100/erc20:0x4b1e2c2762667331bc91648052f646d1b0d35984": {
+    "assetId": "eip155:100/erc20:0x4b1e2c2762667331bc91648052f646d1b0d35984",
+    "chainId": "eip155:100",
+    "name": "agEUR on Gnosis",
+    "precision": 18,
+    "color": "#C0B99D",
+    "icon": "https://assets.coingecko.com/coins/images/19479/thumb/agEUR.png?1696518915",
+    "symbol": "AGEUR",
+    "explorer": "https://gnosis.blockscout.com/",
+    "explorerAddressLink": "https://gnosis.blockscout.com/address/",
+    "explorerTxLink": "https://gnosis.blockscout.com/tx/"
+  },
+  "eip155:100/erc20:0x4ecaba5870353805a9f068101a40e0f32ed605c6": {
+    "assetId": "eip155:100/erc20:0x4ecaba5870353805a9f068101a40e0f32ed605c6",
+    "chainId": "eip155:100",
+    "name": "Tether on Gnosis",
+    "precision": 6,
+    "color": "#049494",
+    "icon": "https://assets.coingecko.com/coins/images/325/thumb/Tether.png?1696501661",
+    "symbol": "USDT",
+    "explorer": "https://gnosis.blockscout.com/",
+    "explorerAddressLink": "https://gnosis.blockscout.com/address/",
+    "explorerTxLink": "https://gnosis.blockscout.com/tx/"
+  },
+  "eip155:100/erc20:0x4f4f9b8d5b4d0dc10506e5551b0513b61fd59e75": {
+    "assetId": "eip155:100/erc20:0x4f4f9b8d5b4d0dc10506e5551b0513b61fd59e75",
+    "chainId": "eip155:100",
+    "name": "Giveth on Gnosis",
+    "precision": 18,
+    "color": "#582AEC",
+    "icon": "https://assets.coingecko.com/coins/images/21792/thumb/GIVToken_200x200.png?1696521145",
+    "symbol": "GIV",
+    "explorer": "https://gnosis.blockscout.com/",
+    "explorerAddressLink": "https://gnosis.blockscout.com/address/",
+    "explorerTxLink": "https://gnosis.blockscout.com/tx/"
+  },
+  "eip155:100/erc20:0x524b969793a64a602342d89bc2789d43a016b13a": {
+    "assetId": "eip155:100/erc20:0x524b969793a64a602342d89bc2789d43a016b13a",
+    "chainId": "eip155:100",
+    "name": "Donut on Gnosis",
+    "precision": 18,
+    "color": "#C36290",
+    "icon": "https://assets.coingecko.com/coins/images/7538/thumb/Donut.png?1696507804",
+    "symbol": "DONUT",
+    "explorer": "https://gnosis.blockscout.com/",
+    "explorerAddressLink": "https://gnosis.blockscout.com/address/",
+    "explorerTxLink": "https://gnosis.blockscout.com/tx/"
+  },
+  "eip155:100/erc20:0x52d134c6db5889fad3542a09eaf7aa90c0fdf9e4": {
+    "assetId": "eip155:100/erc20:0x52d134c6db5889fad3542a09eaf7aa90c0fdf9e4",
+    "chainId": "eip155:100",
+    "name": "Backed IBTA   Treasury Bond 1 3yr on Gnosis",
+    "precision": 15,
+    "color": "#464C57",
+    "icon": "https://assets.coingecko.com/coins/images/31880/thumb/b-IBTA-200x200.png?1696530692",
+    "symbol": "BIBTA",
+    "explorer": "https://gnosis.blockscout.com/",
+    "explorerAddressLink": "https://gnosis.blockscout.com/address/",
+    "explorerTxLink": "https://gnosis.blockscout.com/tx/"
+  },
+  "eip155:100/erc20:0x532801ed6f82fffd2dab70a19fc2d7b2772c4f4b": {
+    "assetId": "eip155:100/erc20:0x532801ed6f82fffd2dab70a19fc2d7b2772c4f4b",
+    "chainId": "eip155:100",
+    "name": "Swapr on Gnosis",
+    "precision": 18,
+    "color": "#D1D0D6",
+    "icon": "https://assets.coingecko.com/coins/images/18740/thumb/swapr.jpg?1696518206",
+    "symbol": "SWPR",
+    "explorer": "https://gnosis.blockscout.com/",
+    "explorerAddressLink": "https://gnosis.blockscout.com/address/",
+    "explorerTxLink": "https://gnosis.blockscout.com/tx/"
+  },
+  "eip155:100/erc20:0x58b9cb810a68a7f3e1e4f8cb45d1b9b3c79705e8": {
+    "assetId": "eip155:100/erc20:0x58b9cb810a68a7f3e1e4f8cb45d1b9b3c79705e8",
+    "chainId": "eip155:100",
+    "name": "Connext on Gnosis",
+    "precision": 18,
+    "color": "#09070B",
+    "icon": "https://assets.coingecko.com/coins/images/31293/thumb/connext.png?1696530113",
+    "symbol": "NEXT",
+    "explorer": "https://gnosis.blockscout.com/",
+    "explorerAddressLink": "https://gnosis.blockscout.com/address/",
+    "explorerTxLink": "https://gnosis.blockscout.com/tx/"
+  },
+  "eip155:100/erc20:0x5df8339c5e282ee48c0c7ce8a7d01a73d38b3b27": {
+    "assetId": "eip155:100/erc20:0x5df8339c5e282ee48c0c7ce8a7d01a73d38b3b27",
+    "chainId": "eip155:100",
+    "name": "Token Engineering Commons",
+    "precision": 18,
+    "color": "#0E0C14",
+    "icon": "https://assets.coingecko.com/coins/images/18233/thumb/72481541.png?1696517730",
+    "symbol": "TEC",
+    "explorer": "https://gnosis.blockscout.com/",
+    "explorerAddressLink": "https://gnosis.blockscout.com/address/",
+    "explorerTxLink": "https://gnosis.blockscout.com/tx/"
+  },
+  "eip155:100/erc20:0x63e62989d9eb2d37dfdb1f93a22f063635b07d51": {
+    "assetId": "eip155:100/erc20:0x63e62989d9eb2d37dfdb1f93a22f063635b07d51",
+    "chainId": "eip155:100",
+    "name": "Minerva Wallet",
+    "precision": 18,
+    "color": "#6747D5",
+    "icon": "https://assets.coingecko.com/coins/images/14732/thumb/MIVA-Token_200x200.png?1696514401",
+    "symbol": "MIVA",
+    "explorer": "https://gnosis.blockscout.com/",
+    "explorerAddressLink": "https://gnosis.blockscout.com/address/",
+    "explorerTxLink": "https://gnosis.blockscout.com/tx/"
+  },
+  "eip155:100/erc20:0x6a023ccd1ff6f2045c3309768ead9e68f978f6e1": {
+    "assetId": "eip155:100/erc20:0x6a023ccd1ff6f2045c3309768ead9e68f978f6e1",
+    "chainId": "eip155:100",
+    "name": "WETH on Gnosis",
+    "precision": 18,
+    "color": "#393838",
+    "icon": "https://assets.coingecko.com/coins/images/2518/thumb/weth.png?1696503332",
+    "symbol": "WETH",
+    "explorer": "https://gnosis.blockscout.com/",
+    "explorerAddressLink": "https://gnosis.blockscout.com/address/",
+    "explorerTxLink": "https://gnosis.blockscout.com/tx/"
+  },
+  "eip155:100/erc20:0x6a8cb6714b1ee5b471a7d2ec4302cb4f5ff25ec2": {
+    "assetId": "eip155:100/erc20:0x6a8cb6714b1ee5b471a7d2ec4302cb4f5ff25ec2",
+    "chainId": "eip155:100",
+    "name": "Energy Web",
+    "precision": 18,
+    "color": "#E3D0FC",
+    "icon": "https://assets.coingecko.com/coins/images/10886/thumb/R9gQTJV__400x400.png?1696510839",
+    "symbol": "EWT",
+    "explorer": "https://gnosis.blockscout.com/",
+    "explorerAddressLink": "https://gnosis.blockscout.com/address/",
+    "explorerTxLink": "https://gnosis.blockscout.com/tx/"
+  },
+  "eip155:100/erc20:0x6c76971f98945ae98dd7d4dfca8711ebea946ea6": {
+    "assetId": "eip155:100/erc20:0x6c76971f98945ae98dd7d4dfca8711ebea946ea6",
+    "chainId": "eip155:100",
+    "name": "Bridged Wrapped stETH  Gnosis ",
+    "precision": 18,
+    "color": "#04A4FC",
+    "icon": "https://assets.coingecko.com/coins/images/33017/thumb/wStETH.png?1700190250",
+    "symbol": "WSTETH",
+    "explorer": "https://gnosis.blockscout.com/",
+    "explorerAddressLink": "https://gnosis.blockscout.com/address/",
+    "explorerTxLink": "https://gnosis.blockscout.com/tx/"
+  },
+  "eip155:100/erc20:0x703120f2f2011a0d03a03a531ac0e84e81f15989": {
+    "assetId": "eip155:100/erc20:0x703120f2f2011a0d03a03a531ac0e84e81f15989",
+    "chainId": "eip155:100",
+    "name": "UNCL on Gnosis",
+    "precision": 18,
+    "color": "#27A7FC",
+    "icon": "https://assets.coingecko.com/coins/images/13102/thumb/uncl_logo.png?1696512888",
+    "symbol": "UNCL",
+    "explorer": "https://gnosis.blockscout.com/",
+    "explorerAddressLink": "https://gnosis.blockscout.com/address/",
+    "explorerTxLink": "https://gnosis.blockscout.com/tx/"
+  },
+  "eip155:100/erc20:0x71850b7e9ee3f13ab46d67167341e4bdc905eef9": {
+    "assetId": "eip155:100/erc20:0x71850b7e9ee3f13ab46d67167341e4bdc905eef9",
+    "chainId": "eip155:100",
+    "name": "Honey on Gnosis",
+    "precision": 18,
+    "color": "#FCF49C",
+    "icon": "https://assets.coingecko.com/coins/images/12895/thumb/hnys.png?1696512683",
+    "symbol": "HNY",
+    "explorer": "https://gnosis.blockscout.com/",
+    "explorerAddressLink": "https://gnosis.blockscout.com/address/",
+    "explorerTxLink": "https://gnosis.blockscout.com/tx/"
+  },
+  "eip155:100/erc20:0x7a5c3860a77a8dc1b225bd46d0fb2ac1c6d191bc": {
+    "assetId": "eip155:100/erc20:0x7a5c3860a77a8dc1b225bd46d0fb2ac1c6d191bc",
+    "chainId": "eip155:100",
+    "name": "Aave v3 sDAI on Gnosis",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/32891/thumb/sdai.png?1699785595",
+    "symbol": "ASDAI",
+    "explorer": "https://gnosis.blockscout.com/",
+    "explorerAddressLink": "https://gnosis.blockscout.com/address/",
+    "explorerTxLink": "https://gnosis.blockscout.com/tx/"
+  },
+  "eip155:100/erc20:0x7ecf26cd9a36990b8ea477853663092333f59979": {
+    "assetId": "eip155:100/erc20:0x7ecf26cd9a36990b8ea477853663092333f59979",
+    "chainId": "eip155:100",
+    "name": "Perpetual Protocol on Gnosis",
+    "precision": 18,
+    "color": "#3BEAAA",
+    "icon": "https://assets.coingecko.com/coins/images/12381/thumb/60d18e06844a844ad75901a9_mark_only_03.png?1696512205",
+    "symbol": "PERP",
+    "explorer": "https://gnosis.blockscout.com/",
+    "explorerAddressLink": "https://gnosis.blockscout.com/address/",
+    "explorerTxLink": "https://gnosis.blockscout.com/tx/"
+  },
+  "eip155:100/erc20:0x7ef541e2a22058048904fe5744f9c7e4c57af717": {
+    "assetId": "eip155:100/erc20:0x7ef541e2a22058048904fe5744f9c7e4c57af717",
+    "chainId": "eip155:100",
+    "name": "Balancer on Gnosis",
+    "precision": 18,
+    "color": "#040404",
+    "icon": "https://assets.coingecko.com/coins/images/11683/thumb/Balancer.png?1696511572",
+    "symbol": "BAL",
+    "explorer": "https://gnosis.blockscout.com/",
+    "explorerAddressLink": "https://gnosis.blockscout.com/address/",
+    "explorerTxLink": "https://gnosis.blockscout.com/tx/"
+  },
+  "eip155:100/erc20:0x83ff60e2f93f8edd0637ef669c69d5fb4f64ca8e": {
+    "assetId": "eip155:100/erc20:0x83ff60e2f93f8edd0637ef669c69d5fb4f64ca8e",
+    "chainId": "eip155:100",
+    "name": "BrightID on Gnosis",
+    "precision": 18,
+    "color": "#FC8F66",
+    "icon": "https://assets.coingecko.com/coins/images/18415/thumb/bright.PNG?1696517905",
+    "symbol": "BRIGHT",
+    "explorer": "https://gnosis.blockscout.com/",
+    "explorerAddressLink": "https://gnosis.blockscout.com/address/",
+    "explorerTxLink": "https://gnosis.blockscout.com/tx/"
+  },
+  "eip155:100/erc20:0x84e2c67cbefae6b5148fca7d02b341b12ff4b5bb": {
+    "assetId": "eip155:100/erc20:0x84e2c67cbefae6b5148fca7d02b341b12ff4b5bb",
+    "chainId": "eip155:100",
+    "name": "Swash on Gnosis",
+    "precision": 18,
+    "color": "#D2F9D9",
+    "icon": "https://assets.coingecko.com/coins/images/18774/thumb/Swash_CMC_light.png?1696878896",
+    "symbol": "SWASH",
+    "explorer": "https://gnosis.blockscout.com/",
+    "explorerAddressLink": "https://gnosis.blockscout.com/address/",
+    "explorerTxLink": "https://gnosis.blockscout.com/tx/"
+  },
+  "eip155:100/erc20:0x8b8407c6184f1f0fd1082e83d6a3b8349caced12": {
+    "assetId": "eip155:100/erc20:0x8b8407c6184f1f0fd1082e83d6a3b8349caced12",
+    "chainId": "eip155:100",
+    "name": "Circuits of Value on Gnosis",
+    "precision": 8,
+    "color": "#625F59",
+    "icon": "https://assets.coingecko.com/coins/images/588/thumb/coval-logo.png?1696501792",
+    "symbol": "COVAL",
+    "explorer": "https://gnosis.blockscout.com/",
+    "explorerAddressLink": "https://gnosis.blockscout.com/address/",
+    "explorerTxLink": "https://gnosis.blockscout.com/tx/"
+  },
+  "eip155:100/erc20:0x8c88ea1fd60462ef7004b9e288afcb4680a3c50c": {
+    "assetId": "eip155:100/erc20:0x8c88ea1fd60462ef7004b9e288afcb4680a3c50c",
+    "chainId": "eip155:100",
+    "name": "0xMonero on Gnosis",
+    "precision": 18,
+    "color": "#54FCDC",
+    "icon": "https://assets.coingecko.com/coins/images/11035/thumb/0xmnr.PNG?1696510979",
+    "symbol": "0XMR",
+    "explorer": "https://gnosis.blockscout.com/",
+    "explorerAddressLink": "https://gnosis.blockscout.com/address/",
+    "explorerTxLink": "https://gnosis.blockscout.com/tx/"
+  },
+  "eip155:100/erc20:0x8e5bbbb09ed1ebde8674cda39a0c169401db4252": {
+    "assetId": "eip155:100/erc20:0x8e5bbbb09ed1ebde8674cda39a0c169401db4252",
+    "chainId": "eip155:100",
+    "name": "Wrapped Bitcoin on Gnosis",
+    "precision": 8,
+    "color": "#ECE8E6",
+    "icon": "https://assets.coingecko.com/coins/images/7598/thumb/wrapped_bitcoin_wbtc.png?1696507857",
+    "symbol": "WBTC",
+    "explorer": "https://gnosis.blockscout.com/",
+    "explorerAddressLink": "https://gnosis.blockscout.com/address/",
+    "explorerTxLink": "https://gnosis.blockscout.com/tx/"
+  },
+  "eip155:100/erc20:0x97edc0e345fbbbd8460847fcfa3bc2a13bf8641f": {
+    "assetId": "eip155:100/erc20:0x97edc0e345fbbbd8460847fcfa3bc2a13bf8641f",
+    "chainId": "eip155:100",
+    "name": "DAOSquare on Gnosis",
+    "precision": 18,
+    "color": "#F9B7B7",
+    "icon": "https://assets.coingecko.com/coins/images/19084/thumb/tw5gu1dW_400x400.jpeg?1696518537",
+    "symbol": "RICE",
+    "explorer": "https://gnosis.blockscout.com/",
+    "explorerAddressLink": "https://gnosis.blockscout.com/address/",
+    "explorerTxLink": "https://gnosis.blockscout.com/tx/"
+  },
+  "eip155:100/erc20:0x9c58bacc331c9aa871afd802db6379a98e80cedb": {
+    "assetId": "eip155:100/erc20:0x9c58bacc331c9aa871afd802db6379a98e80cedb",
+    "chainId": "eip155:100",
+    "name": "Gnosis on Gnosis",
+    "precision": 18,
+    "color": "#BCBFC5",
+    "icon": "https://assets.coingecko.com/coins/images/662/thumb/logo_square_simple_300px.png?1696501854",
+    "symbol": "GNO",
+    "explorer": "https://gnosis.blockscout.com/",
+    "explorerAddressLink": "https://gnosis.blockscout.com/address/",
+    "explorerTxLink": "https://gnosis.blockscout.com/tx/"
+  },
+  "eip155:100/erc20:0x9fb1d52596c44603198fb0aee434fac3a679f702": {
+    "assetId": "eip155:100/erc20:0x9fb1d52596c44603198fb0aee434fac3a679f702",
+    "chainId": "eip155:100",
+    "name": "Jarvis Synthetic Euro on Gnosis",
+    "precision": 18,
+    "color": "#093796",
+    "icon": "https://assets.coingecko.com/coins/images/15725/thumb/jEUR.png?1696515352",
+    "symbol": "JEUR",
+    "explorer": "https://gnosis.blockscout.com/",
+    "explorerAddressLink": "https://gnosis.blockscout.com/address/",
+    "explorerTxLink": "https://gnosis.blockscout.com/tx/"
+  },
+  "eip155:100/erc20:0xa1fa064a85266e2ca82dee5c5ccec84df445760e": {
+    "assetId": "eip155:100/erc20:0xa1fa064a85266e2ca82dee5c5ccec84df445760e",
+    "chainId": "eip155:100",
+    "name": "Aave v3 GNO",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/32928/thumb/gno.png?1699826574",
+    "symbol": "AGNO",
+    "explorer": "https://gnosis.blockscout.com/",
+    "explorerAddressLink": "https://gnosis.blockscout.com/address/",
+    "explorerTxLink": "https://gnosis.blockscout.com/tx/"
+  },
+  "eip155:100/erc20:0xa818f1b57c201e092c4a2017a91815034326efd1": {
+    "assetId": "eip155:100/erc20:0xa818f1b57c201e092c4a2017a91815034326efd1",
+    "chainId": "eip155:100",
+    "name": "Aave v3 WETH on Gnosis",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/32882/thumb/WETH_%281%29.png?1699716492",
+    "symbol": "AWETH",
+    "explorer": "https://gnosis.blockscout.com/",
+    "explorerAddressLink": "https://gnosis.blockscout.com/address/",
+    "explorerTxLink": "https://gnosis.blockscout.com/tx/"
+  },
+  "eip155:100/erc20:0xa899e4476ff5da39dcd9ddec7a6e2c651d8614bf": {
+    "assetId": "eip155:100/erc20:0xa899e4476ff5da39dcd9ddec7a6e2c651d8614bf",
+    "chainId": "eip155:100",
+    "name": "Bitcoin BR on Gnosis",
+    "precision": 18,
+    "color": "#F29F15",
+    "icon": "https://assets.coingecko.com/coins/images/21205/thumb/btcbr.png?1696520580",
+    "symbol": "BTCBR",
+    "explorer": "https://gnosis.blockscout.com/",
+    "explorerAddressLink": "https://gnosis.blockscout.com/address/",
+    "explorerTxLink": "https://gnosis.blockscout.com/tx/"
+  },
+  "eip155:100/erc20:0xaad66432d27737ecf6ed183160adc5ef36ab99f2": {
+    "assetId": "eip155:100/erc20:0xaad66432d27737ecf6ed183160adc5ef36ab99f2",
+    "chainId": "eip155:100",
+    "name": "Tellor Tributes on Gnosis",
+    "precision": 18,
+    "color": "#44DA9C",
+    "icon": "https://assets.coingecko.com/coins/images/9644/thumb/Blk_icon_current.png?1696509713",
+    "symbol": "TRB",
+    "explorer": "https://gnosis.blockscout.com/",
+    "explorerAddressLink": "https://gnosis.blockscout.com/address/",
+    "explorerTxLink": "https://gnosis.blockscout.com/tx/"
+  },
+  "eip155:100/erc20:0xade6057fcafa57d6d51ffa341c64ce4814995995": {
+    "assetId": "eip155:100/erc20:0xade6057fcafa57d6d51ffa341c64ce4814995995",
+    "chainId": "eip155:100",
+    "name": "Backed ZPR1   1 3 Month T Bill on Gnosis",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/32867/thumb/b-ZPR1-200x200.png?1699671603",
+    "symbol": "BZPR1",
+    "explorer": "https://gnosis.blockscout.com/",
+    "explorerAddressLink": "https://gnosis.blockscout.com/address/",
+    "explorerTxLink": "https://gnosis.blockscout.com/tx/"
+  },
+  "eip155:100/erc20:0xaf204776c7245bf4147c2612bf6e5972ee483701": {
+    "assetId": "eip155:100/erc20:0xaf204776c7245bf4147c2612bf6e5972ee483701",
+    "chainId": "eip155:100",
+    "name": "Savings xDAI",
+    "precision": 18,
+    "color": "#152C24",
+    "icon": "https://assets.coingecko.com/coins/images/32066/thumb/sDAI_Logo_%281%29.png?1696530863",
+    "symbol": "SDAI",
+    "explorer": "https://gnosis.blockscout.com/",
+    "explorerAddressLink": "https://gnosis.blockscout.com/address/",
+    "explorerTxLink": "https://gnosis.blockscout.com/tx/"
+  },
+  "eip155:100/erc20:0xb0c5f3100a4d9d9532a4cfd68c55f1ae8da987eb": {
+    "assetId": "eip155:100/erc20:0xb0c5f3100a4d9d9532a4cfd68c55f1ae8da987eb",
+    "chainId": "eip155:100",
+    "name": "DAOhaus on Gnosis",
+    "precision": 35,
+    "color": "#C27A59",
+    "icon": "https://assets.coingecko.com/coins/images/14551/thumb/jN3kkqke_400x400.png?1696514234",
+    "symbol": "HAUS",
+    "explorer": "https://gnosis.blockscout.com/",
+    "explorerAddressLink": "https://gnosis.blockscout.com/address/",
+    "explorerTxLink": "https://gnosis.blockscout.com/tx/"
+  },
+  "eip155:100/erc20:0xb17d999e840e0c1b157ca5ab8039bd958b5fa317": {
+    "assetId": "eip155:100/erc20:0xb17d999e840e0c1b157ca5ab8039bd958b5fa317",
+    "chainId": "eip155:100",
+    "name": "Etho Protocol on Gnosis",
+    "precision": 18,
+    "color": "#941C44",
+    "icon": "https://assets.coingecko.com/coins/images/5194/thumb/ether1new-transparent.png?1696505708",
+    "symbol": "ETHO",
+    "explorer": "https://gnosis.blockscout.com/",
+    "explorerAddressLink": "https://gnosis.blockscout.com/address/",
+    "explorerTxLink": "https://gnosis.blockscout.com/tx/"
+  },
+  "eip155:100/erc20:0xb5d592f85ab2d955c25720ebe6ff8d4d1e1be300": {
+    "assetId": "eip155:100/erc20:0xb5d592f85ab2d955c25720ebe6ff8d4d1e1be300",
+    "chainId": "eip155:100",
+    "name": "Particle",
+    "precision": 18,
+    "color": "#040404",
+    "icon": "https://assets.coingecko.com/coins/images/14395/thumb/unknown.png?1696514085",
+    "symbol": "PRTCLE",
+    "explorer": "https://gnosis.blockscout.com/",
+    "explorerAddressLink": "https://gnosis.blockscout.com/address/",
+    "explorerTxLink": "https://gnosis.blockscout.com/tx/"
+  },
+  "eip155:100/erc20:0xb7d311e2eb55f2f68a9440da38e7989210b9a05e": {
+    "assetId": "eip155:100/erc20:0xb7d311e2eb55f2f68a9440da38e7989210b9a05e",
+    "chainId": "eip155:100",
+    "name": "STAKE on Gnosis",
+    "precision": 18,
+    "color": "#E0F0F0",
+    "icon": "https://assets.coingecko.com/coins/images/11061/thumb/xdai.png?1696511003",
+    "symbol": "STAKE",
+    "explorer": "https://gnosis.blockscout.com/",
+    "explorerAddressLink": "https://gnosis.blockscout.com/address/",
+    "explorerTxLink": "https://gnosis.blockscout.com/tx/"
+  },
+  "eip155:100/erc20:0xb90d6bec20993be5d72a5ab353343f7a0281f158": {
+    "assetId": "eip155:100/erc20:0xb90d6bec20993be5d72a5ab353343f7a0281f158",
+    "chainId": "eip155:100",
+    "name": "DXdao on Gnosis",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/11148/thumb/dxdao.png?1696511083",
+    "symbol": "DXD",
+    "explorer": "https://gnosis.blockscout.com/",
+    "explorerAddressLink": "https://gnosis.blockscout.com/address/",
+    "explorerTxLink": "https://gnosis.blockscout.com/tx/"
+  },
+  "eip155:100/erc20:0xbbcb0356bb9e6b3faa5cbf9e5f36185d53403ac9": {
+    "assetId": "eip155:100/erc20:0xbbcb0356bb9e6b3faa5cbf9e5f36185d53403ac9",
+    "chainId": "eip155:100",
+    "name": "Backed Coinbase Global on Gnosis",
+    "precision": 18,
+    "color": "#0548DB",
+    "icon": "https://assets.coingecko.com/coins/images/31872/thumb/b-COIN-200x200.png?1696530684",
+    "symbol": "BCOIN",
+    "explorer": "https://gnosis.blockscout.com/",
+    "explorerAddressLink": "https://gnosis.blockscout.com/address/",
+    "explorerTxLink": "https://gnosis.blockscout.com/tx/"
+  },
+  "eip155:100/erc20:0xbf65bfcb5da067446cee6a706ba3fe2fb1a9fdfd": {
+    "assetId": "eip155:100/erc20:0xbf65bfcb5da067446cee6a706ba3fe2fb1a9fdfd",
+    "chainId": "eip155:100",
+    "name": "yearn finance on Gnosis",
+    "precision": 18,
+    "color": "#C1D5FC",
+    "icon": "https://assets.coingecko.com/coins/images/11849/thumb/yearn.jpg?1696511720",
+    "symbol": "YFI",
+    "explorer": "https://gnosis.blockscout.com/",
+    "explorerAddressLink": "https://gnosis.blockscout.com/address/",
+    "explorerTxLink": "https://gnosis.blockscout.com/tx/"
+  },
+  "eip155:100/erc20:0xc5102fe9359fd9a28f877a67e36b0f050d81a3cc": {
+    "assetId": "eip155:100/erc20:0xc5102fe9359fd9a28f877a67e36b0f050d81a3cc",
+    "chainId": "eip155:100",
+    "name": "Hop Protocol on Gnosis",
+    "precision": 18,
+    "color": "#D267CC",
+    "icon": "https://assets.coingecko.com/coins/images/25445/thumb/hop.png?1696524577",
+    "symbol": "HOP",
+    "explorer": "https://gnosis.blockscout.com/",
+    "explorerAddressLink": "https://gnosis.blockscout.com/address/",
+    "explorerTxLink": "https://gnosis.blockscout.com/tx/"
+  },
+  "eip155:100/erc20:0xc6b7aca6de8a6044e0e32d0c841a89244a10d284": {
+    "assetId": "eip155:100/erc20:0xc6b7aca6de8a6044e0e32d0c841a89244a10d284",
+    "chainId": "eip155:100",
+    "name": "Aave v3 USDC on Gnosis",
+    "precision": 6,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/32847/thumb/usdc_%281%29.png?1699619355",
+    "symbol": "AUSDC",
+    "explorer": "https://gnosis.blockscout.com/",
+    "explorerAddressLink": "https://gnosis.blockscout.com/address/",
+    "explorerTxLink": "https://gnosis.blockscout.com/tx/"
+  },
+  "eip155:100/erc20:0xcb444e90d8198415266c6a2724b7900fb12fc56e": {
+    "assetId": "eip155:100/erc20:0xcb444e90d8198415266c6a2724b7900fb12fc56e",
+    "chainId": "eip155:100",
+    "name": "Monerium EUR emoney on Gnosis",
+    "precision": 18,
+    "color": "#0783C0",
+    "icon": "https://assets.coingecko.com/coins/images/23354/thumb/eur.png?1696522569",
+    "symbol": "EURE",
+    "explorer": "https://gnosis.blockscout.com/",
+    "explorerAddressLink": "https://gnosis.blockscout.com/address/",
+    "explorerTxLink": "https://gnosis.blockscout.com/tx/"
+  },
+  "eip155:100/erc20:0xce11e14225575945b8e6dc0d4f2dd4c570f79d9f": {
+    "assetId": "eip155:100/erc20:0xce11e14225575945b8e6dc0d4f2dd4c570f79d9f",
+    "chainId": "eip155:100",
+    "name": "Autonolas on Gnosis",
+    "precision": 18,
+    "color": "#AEAEAE",
+    "icon": "https://assets.coingecko.com/coins/images/31099/thumb/OLAS-token.png?1696529930",
+    "symbol": "OLAS",
+    "explorer": "https://gnosis.blockscout.com/",
+    "explorerAddressLink": "https://gnosis.blockscout.com/address/",
+    "explorerTxLink": "https://gnosis.blockscout.com/tx/"
+  },
+  "eip155:100/erc20:0xd0dd6cef72143e22cced4867eb0d5f2328715533": {
+    "assetId": "eip155:100/erc20:0xd0dd6cef72143e22cced4867eb0d5f2328715533",
+    "chainId": "eip155:100",
+    "name": "Aave v3 DAI on Gnosis",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/32886/thumb/dai.png?1699769446",
+    "symbol": "ADAI",
+    "explorer": "https://gnosis.blockscout.com/",
+    "explorerAddressLink": "https://gnosis.blockscout.com/address/",
+    "explorerTxLink": "https://gnosis.blockscout.com/tx/"
+  },
+  "eip155:100/erc20:0xd3d47d5578e55c880505dc40648f7f9307c3e7a8": {
+    "assetId": "eip155:100/erc20:0xd3d47d5578e55c880505dc40648f7f9307c3e7a8",
+    "chainId": "eip155:100",
+    "name": "DeFi Pulse Index on Gnosis",
+    "precision": 18,
+    "color": "#8050DD",
+    "icon": "https://assets.coingecko.com/coins/images/12465/thumb/defi_pulse_index_set.png?1696512284",
+    "symbol": "DPI",
+    "explorer": "https://gnosis.blockscout.com/",
+    "explorerAddressLink": "https://gnosis.blockscout.com/address/",
+    "explorerTxLink": "https://gnosis.blockscout.com/tx/"
+  },
+  "eip155:100/erc20:0xd589f00fa2eb83367f732ab3cda92ee0940389cf": {
+    "assetId": "eip155:100/erc20:0xd589f00fa2eb83367f732ab3cda92ee0940389cf",
+    "chainId": "eip155:100",
+    "name": "Fuse on Gnosis",
+    "precision": 18,
+    "color": "#141B14",
+    "icon": "https://assets.coingecko.com/coins/images/10347/thumb/fuse.png?1696510348",
+    "symbol": "FUSE",
+    "explorer": "https://gnosis.blockscout.com/",
+    "explorerAddressLink": "https://gnosis.blockscout.com/address/",
+    "explorerTxLink": "https://gnosis.blockscout.com/tx/"
+  },
+  "eip155:100/erc20:0xdbf3ea6f5bee45c02255b2c26a16f300502f68da": {
+    "assetId": "eip155:100/erc20:0xdbf3ea6f5bee45c02255b2c26a16f300502f68da",
+    "chainId": "eip155:100",
+    "name": "Swarm on Gnosis",
+    "precision": 16,
+    "color": "#F47404",
+    "icon": "https://assets.coingecko.com/coins/images/16509/thumb/Circle_Orange_onWhite.png?1696516071",
+    "symbol": "BZZ",
+    "explorer": "https://gnosis.blockscout.com/",
+    "explorerAddressLink": "https://gnosis.blockscout.com/address/",
+    "explorerTxLink": "https://gnosis.blockscout.com/tx/"
+  },
+  "eip155:100/erc20:0xdd96b45877d0e8361a4ddb732da741e97f3191ff": {
+    "assetId": "eip155:100/erc20:0xdd96b45877d0e8361a4ddb732da741e97f3191ff",
+    "chainId": "eip155:100",
+    "name": "BUSD on Gnosis",
+    "precision": 18,
+    "color": "#F4BC0C",
+    "icon": "https://assets.coingecko.com/coins/images/9576/thumb/BUSDLOGO.jpg?1696509654",
+    "symbol": "BUSD",
+    "explorer": "https://gnosis.blockscout.com/",
+    "explorerAddressLink": "https://gnosis.blockscout.com/address/",
+    "explorerTxLink": "https://gnosis.blockscout.com/tx/"
+  },
+  "eip155:100/erc20:0xddafbb505ad214d7b80b1f830fccc89b60fb7a83": {
+    "assetId": "eip155:100/erc20:0xddafbb505ad214d7b80b1f830fccc89b60fb7a83",
+    "chainId": "eip155:100",
+    "name": "USD Coin on Gnosis",
+    "precision": 6,
+    "color": "#2E7ACD",
+    "icon": "https://assets.coingecko.com/coins/images/6319/thumb/usdc.png?1696506694",
+    "symbol": "USDC",
+    "explorer": "https://gnosis.blockscout.com/",
+    "explorerAddressLink": "https://gnosis.blockscout.com/address/",
+    "explorerTxLink": "https://gnosis.blockscout.com/tx/"
+  },
+  "eip155:100/erc20:0xdfc20ae04ed70bd9c7d720f449eedae19f659d65": {
+    "assetId": "eip155:100/erc20:0xdfc20ae04ed70bd9c7d720f449eedae19f659d65",
+    "chainId": "eip155:100",
+    "name": "Badger on Gnosis",
+    "precision": 18,
+    "color": "#E8A434",
+    "icon": "https://assets.coingecko.com/coins/images/13287/thumb/badger_dao_logo.jpg?1696513059",
+    "symbol": "BADGER",
+    "explorer": "https://gnosis.blockscout.com/",
+    "explorerAddressLink": "https://gnosis.blockscout.com/address/",
+    "explorerTxLink": "https://gnosis.blockscout.com/tx/"
+  },
+  "eip155:100/erc20:0xe2e73a1c69ecf83f464efce6a5be353a37ca09b2": {
+    "assetId": "eip155:100/erc20:0xe2e73a1c69ecf83f464efce6a5be353a37ca09b2",
+    "chainId": "eip155:100",
+    "name": "Chainlink on Gnosis",
+    "precision": 18,
+    "color": "#2C5CDC",
+    "icon": "https://assets.coingecko.com/coins/images/877/thumb/chainlink-new-logo.png?1696502009",
+    "symbol": "LINK",
+    "explorer": "https://gnosis.blockscout.com/",
+    "explorerAddressLink": "https://gnosis.blockscout.com/address/",
+    "explorerTxLink": "https://gnosis.blockscout.com/tx/"
+  },
+  "eip155:100/erc20:0xe91d153e0b41518a2ce8dd3d7944fa863463a97d": {
+    "assetId": "eip155:100/erc20:0xe91d153e0b41518a2ce8dd3d7944fa863463a97d",
+    "chainId": "eip155:100",
+    "name": "Wrapped XDAI",
+    "precision": 18,
+    "color": "#0BCA2E",
+    "icon": "https://assets.coingecko.com/coins/images/14584/thumb/wrapped-xdai-logo.png?1696514264",
+    "symbol": "WXDAI",
+    "explorer": "https://gnosis.blockscout.com/",
+    "explorerAddressLink": "https://gnosis.blockscout.com/address/",
+    "explorerTxLink": "https://gnosis.blockscout.com/tx/"
+  },
+  "eip155:100/erc20:0xec3f3e6d7907acda3a7431abd230196cda3fbb19": {
+    "assetId": "eip155:100/erc20:0xec3f3e6d7907acda3a7431abd230196cda3fbb19",
+    "chainId": "eip155:100",
+    "name": "Ethix on Gnosis",
+    "precision": 18,
+    "color": "#7EED5F",
+    "icon": "https://assets.coingecko.com/coins/images/3031/thumb/ETHIX_icon_256x256-256.png?1696503766",
+    "symbol": "ETHIX",
+    "explorer": "https://gnosis.blockscout.com/",
+    "explorerAddressLink": "https://gnosis.blockscout.com/address/",
+    "explorerTxLink": "https://gnosis.blockscout.com/tx/"
+  },
+  "eip155:100/erc20:0xedbc7449a9b594ca4e053d9737ec5dc4cbccbfb2": {
+    "assetId": "eip155:100/erc20:0xedbc7449a9b594ca4e053d9737ec5dc4cbccbfb2",
+    "chainId": "eip155:100",
+    "name": "Aave v3 EURe",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/32929/thumb/monerium.png?1699826642",
+    "symbol": "AEURE",
+    "explorer": "https://gnosis.blockscout.com/",
+    "explorerAddressLink": "https://gnosis.blockscout.com/address/",
+    "explorerTxLink": "https://gnosis.blockscout.com/tx/"
+  },
+  "eip155:100/erc20:0xeeeeeb57642040be42185f49c52f7e9b38f8eeee": {
+    "assetId": "eip155:100/erc20:0xeeeeeb57642040be42185f49c52f7e9b38f8eeee",
+    "chainId": "eip155:100",
+    "name": "Elk Finance on Gnosis",
+    "precision": 18,
+    "color": "#CDCFCD",
+    "icon": "https://assets.coingecko.com/coins/images/17813/thumb/elk.png?1696517333",
+    "symbol": "ELK",
+    "explorer": "https://gnosis.blockscout.com/",
+    "explorerAddressLink": "https://gnosis.blockscout.com/address/",
+    "explorerTxLink": "https://gnosis.blockscout.com/tx/"
+  },
+  "eip155:100/erc20:0xfa57aa7beed63d03aaf85ffd1753f5f6242588fb": {
+    "assetId": "eip155:100/erc20:0xfa57aa7beed63d03aaf85ffd1753f5f6242588fb",
+    "chainId": "eip155:100",
+    "name": "Mt Pelerin Shares on Gnosis",
+    "precision": 0,
+    "color": "#5CC4F4",
+    "icon": "https://assets.coingecko.com/coins/images/11471/thumb/MPS.png?1696511378",
+    "symbol": "MPS",
+    "explorer": "https://gnosis.blockscout.com/",
+    "explorerAddressLink": "https://gnosis.blockscout.com/address/",
+    "explorerTxLink": "https://gnosis.blockscout.com/tx/"
+  },
+  "eip155:100/erc20:0xfbdd194376de19a88118e84e279b977f165d01b8": {
+    "assetId": "eip155:100/erc20:0xfbdd194376de19a88118e84e279b977f165d01b8",
+    "chainId": "eip155:100",
+    "name": "DeHive on Gnosis",
+    "precision": 18,
+    "color": "#14141C",
+    "icon": "https://assets.coingecko.com/coins/images/14926/thumb/logo_200x200.png?1696514587",
+    "symbol": "DHV",
+    "explorer": "https://gnosis.blockscout.com/",
+    "explorerAddressLink": "https://gnosis.blockscout.com/address/",
+    "explorerTxLink": "https://gnosis.blockscout.com/tx/"
+  },
+  "eip155:100/slip44:60": {
+    "assetId": "eip155:100/slip44:60",
+    "chainId": "eip155:100",
+    "name": "xDAI",
+    "networkName": "Gnosis",
+    "symbol": "xDAI",
+    "precision": 18,
+    "color": "#33765c",
+    "icon": "https://assets.coingecko.com/coins/images/11062/large/Identity-Primary-DarkBG.png?1638372986",
+    "networkIcon": "https://assets.coingecko.com/asset_platforms/images/11062/large/Aatar_green_white.png?1643204471",
+    "explorer": "https://gnosis.blockscout.com/",
+    "explorerAddressLink": "https://gnosis.blockscout.com/address/",
+    "explorerTxLink": "https://gnosis.blockscout.com/tx/"
+  },
+  "eip155:137/erc20:0x00a0d4f2fe50e023aec0648271ce1a6616c702e2": {
+    "assetId": "eip155:137/erc20:0x00a0d4f2fe50e023aec0648271ce1a6616c702e2",
+    "chainId": "eip155:137",
+    "name": "TOKHIT",
+    "precision": 18,
+    "color": "#E42C7B",
+    "icon": "https://assets.coingecko.com/coins/images/29356/thumb/IMG_0634.jpg?1696528304",
+    "symbol": "HITT",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x00d5149cdf7cec8725bf50073c51c4fa58ecca12": {
+    "assetId": "eip155:137/erc20:0x00d5149cdf7cec8725bf50073c51c4fa58ecca12",
+    "chainId": "eip155:137",
+    "name": "UniPower on Polygon",
+    "precision": 18,
+    "color": "#F0B424",
+    "icon": "https://assets.coingecko.com/coins/images/11618/thumb/unipower.png?1696511512",
+    "symbol": "POWER",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x00e5646f60ac6fb446f621d146b6e1886f002905": {
+    "assetId": "eip155:137/erc20:0x00e5646f60ac6fb446f621d146b6e1886f002905",
+    "chainId": "eip155:137",
+    "name": "Rai Reflex Index on Polygon",
+    "precision": 18,
+    "color": "#1D2A2A",
+    "icon": "https://assets.coingecko.com/coins/images/14004/thumb/RAI-logo-coin.png?1696513733",
+    "symbol": "RAI",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x00e8c0e92eb3ad88189e7125ec8825edc03ab265": {
+    "assetId": "eip155:137/erc20:0x00e8c0e92eb3ad88189e7125ec8825edc03ab265",
+    "chainId": "eip155:137",
+    "name": "Wrapped USDR on Polygon",
+    "precision": 9,
+    "color": "#F29499",
+    "icon": "https://assets.coingecko.com/coins/images/28800/thumb/wUSDRlogo.png?1696527777",
+    "symbol": "WUSDR",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x0102bbfddffbd8d28d3a1b9c47017f62f42768f2": {
+    "assetId": "eip155:137/erc20:0x0102bbfddffbd8d28d3a1b9c47017f62f42768f2",
+    "chainId": "eip155:137",
+    "name": "50Cent",
+    "precision": 18,
+    "color": "#16CC94",
+    "icon": "https://assets.coingecko.com/coins/images/16431/thumb/50cents.png?1696516026",
+    "symbol": "50C",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x011734f6ed20e8d011d85cf7894814b897420acf": {
+    "assetId": "eip155:137/erc20:0x011734f6ed20e8d011d85cf7894814b897420acf",
+    "chainId": "eip155:137",
+    "name": "Arable Protocol on Polygon",
+    "precision": 18,
+    "color": "#BFC8C0",
+    "icon": "https://assets.coingecko.com/coins/images/23659/thumb/acre_token-02.png?1696522862",
+    "symbol": "ACRE",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x013f9c3fac3e2759d7e90aca4f9540f75194a0d7": {
+    "assetId": "eip155:137/erc20:0x013f9c3fac3e2759d7e90aca4f9540f75194a0d7",
+    "chainId": "eip155:137",
+    "name": "Neutrino Index Token on Polygon",
+    "precision": 18,
+    "color": "#DCF0F5",
+    "icon": "https://assets.coingecko.com/coins/images/10117/thumb/USDN_Logo.jpg?1696510143",
+    "symbol": "XTN",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x0169ec1f8f639b32eec6d923e24c2a2ff45b9dd6": {
+    "assetId": "eip155:137/erc20:0x0169ec1f8f639b32eec6d923e24c2a2ff45b9dd6",
+    "chainId": "eip155:137",
+    "name": "Algebra",
+    "precision": 18,
+    "color": "#5C34EC",
+    "icon": "https://assets.coingecko.com/coins/images/19580/thumb/13211.png?1696519011",
+    "symbol": "ALGB",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x0184316f58b9a44acdd3e683257259dc0cf2202a": {
+    "assetId": "eip155:137/erc20:0x0184316f58b9a44acdd3e683257259dc0cf2202a",
+    "chainId": "eip155:137",
+    "name": "PolyGold",
+    "precision": 18,
+    "color": "#FCF0AF",
+    "icon": "https://assets.coingecko.com/coins/images/16055/thumb/wYRJKCT.png?1696515664",
+    "symbol": "POLYGOLD",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x01d35cbc2070a3b76693ce2b6364eae24eb88591": {
+    "assetId": "eip155:137/erc20:0x01d35cbc2070a3b76693ce2b6364eae24eb88591",
+    "chainId": "eip155:137",
+    "name": "Polygen on Polygon",
+    "precision": 18,
+    "color": "#F5E0EA",
+    "icon": "https://assets.coingecko.com/coins/images/21476/thumb/polygen-logo_1.jpeg?1696520837",
+    "symbol": "PGEN",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x02649c1ff4296038de4b9ba8f491b42b940a8252": {
+    "assetId": "eip155:137/erc20:0x02649c1ff4296038de4b9ba8f491b42b940a8252",
+    "chainId": "eip155:137",
+    "name": "Exchange Genesis Ethlas Medium",
+    "precision": 18,
+    "color": "#FCF6C4",
+    "icon": "https://assets.coingecko.com/coins/images/22535/thumb/17200.png?1696521856",
+    "symbol": "XGEM",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x0266f4f08d82372cf0fcbccc0ff74309089c74d1": {
+    "assetId": "eip155:137/erc20:0x0266f4f08d82372cf0fcbccc0ff74309089c74d1",
+    "chainId": "eip155:137",
+    "name": "Rocket Pool ETH on Polygon",
+    "precision": 18,
+    "color": "#FCA584",
+    "icon": "https://assets.coingecko.com/coins/images/20764/thumb/reth.png?1696520159",
+    "symbol": "RETH",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x027af1e12a5869ed329be4c05617ad528e997d5a": {
+    "assetId": "eip155:137/erc20:0x027af1e12a5869ed329be4c05617ad528e997d5a",
+    "chainId": "eip155:137",
+    "name": "Arch Ethereum Div  Yield on Polygon",
+    "precision": 18,
+    "color": "#1D4694",
+    "icon": "https://assets.coingecko.com/coins/images/30483/thumb/AEDY-512x512.png?1696529369",
+    "symbol": "AEDY",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x027d14b07299ee2e74a3b7aba561e5b4adf29966": {
+    "assetId": "eip155:137/erc20:0x027d14b07299ee2e74a3b7aba561e5b4adf29966",
+    "chainId": "eip155:137",
+    "name": "SpaceShipX SSX",
+    "precision": 18,
+    "color": "#6143B6",
+    "icon": "https://assets.coingecko.com/coins/images/28704/thumb/CRYTOLOGO.png?1696527686",
+    "symbol": "SSX",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x0294d8eb7857d43feb1210db72456d41481f9ede": {
+    "assetId": "eip155:137/erc20:0x0294d8eb7857d43feb1210db72456d41481f9ede",
+    "chainId": "eip155:137",
+    "name": "LiquidDriver on Polygon",
+    "precision": 18,
+    "color": "#0C103F",
+    "icon": "https://assets.coingecko.com/coins/images/15782/thumb/LQDR_Glowing_Icon.png?1696515405",
+    "symbol": "LQDR",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x0308a3a9c433256ad7ef24dbef9c49c8cb01300a": {
+    "assetId": "eip155:137/erc20:0x0308a3a9c433256ad7ef24dbef9c49c8cb01300a",
+    "chainId": "eip155:137",
+    "name": "GoldPesa Option",
+    "precision": 18,
+    "color": "#BCA317",
+    "icon": "https://assets.coingecko.com/coins/images/23813/thumb/15462.png?1696523016",
+    "symbol": "GPO",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x033d942a6b495c4071083f4cde1f17e986fe856c": {
+    "assetId": "eip155:137/erc20:0x033d942a6b495c4071083f4cde1f17e986fe856c",
+    "chainId": "eip155:137",
+    "name": "AGA on Polygon",
+    "precision": 4,
+    "color": "#FB3939",
+    "icon": "https://assets.coingecko.com/coins/images/12180/thumb/aga-logo.png?1696512017",
+    "symbol": "AGA",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x034b2090b579228482520c589dbd397c53fc51cc": {
+    "assetId": "eip155:137/erc20:0x034b2090b579228482520c589dbd397c53fc51cc",
+    "chainId": "eip155:137",
+    "name": "APY vision on Polygon",
+    "precision": 18,
+    "color": "#B413D5",
+    "icon": "https://assets.coingecko.com/coins/images/13288/thumb/apyvisionlogo200circle.png?1696513060",
+    "symbol": "VISION",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x0395e3178305e64ff9e8d942eb3a470b5d88fae8": {
+    "assetId": "eip155:137/erc20:0x0395e3178305e64ff9e8d942eb3a470b5d88fae8",
+    "chainId": "eip155:137",
+    "name": "Beebox",
+    "precision": 18,
+    "color": "#7F7233",
+    "icon": "https://assets.coingecko.com/coins/images/31811/thumb/XBBC_logo.png?1696530626",
+    "symbol": "XBBC",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x03b54a6e9a984069379fae1a4fc4dbae93b3bccd": {
+    "assetId": "eip155:137/erc20:0x03b54a6e9a984069379fae1a4fc4dbae93b3bccd",
+    "chainId": "eip155:137",
+    "name": "Wrapped stETH on Polygon",
+    "precision": 18,
+    "color": "#04A4FC",
+    "icon": "https://assets.coingecko.com/coins/images/18834/thumb/wstETH.png?1696518295",
+    "symbol": "WSTETH",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x03c2f6808502ffd4ab2787ad1a98ec13dbd5718b": {
+    "assetId": "eip155:137/erc20:0x03c2f6808502ffd4ab2787ad1a98ec13dbd5718b",
+    "chainId": "eip155:137",
+    "name": "ClinTex CTi on Polygon",
+    "precision": 18,
+    "color": "#04D4AC",
+    "icon": "https://assets.coingecko.com/coins/images/13266/thumb/CTI.png?1696513039",
+    "symbol": "CTI",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x03cf5d93ca7c70ce0a21a09f4d70779d2c66b25a": {
+    "assetId": "eip155:137/erc20:0x03cf5d93ca7c70ce0a21a09f4d70779d2c66b25a",
+    "chainId": "eip155:137",
+    "name": "JumpToken on Polygon",
+    "precision": 18,
+    "color": "#5494FC",
+    "icon": "https://assets.coingecko.com/coins/images/22603/thumb/200x200.png?1696521919",
+    "symbol": "JMPT",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x03f61137bfb86be07394f0fd07a33984020f96d8": {
+    "assetId": "eip155:137/erc20:0x03f61137bfb86be07394f0fd07a33984020f96d8",
+    "chainId": "eip155:137",
+    "name": "Xpendium",
+    "precision": 18,
+    "color": "#2C3A3F",
+    "icon": "https://assets.coingecko.com/coins/images/24520/thumb/2XyH_HyB_400x400.jpg?1696523699",
+    "symbol": "XPND",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x04429fbb948bbd09327763214b45e505a5293346": {
+    "assetId": "eip155:137/erc20:0x04429fbb948bbd09327763214b45e505a5293346",
+    "chainId": "eip155:137",
+    "name": "Allbridge on Polygon",
+    "precision": 18,
+    "color": "#E4E4E4",
+    "icon": "https://assets.coingecko.com/coins/images/18690/thumb/abr.png?1696518157",
+    "symbol": "ABR",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x04b33078ea1aef29bf3fb29c6ab7b200c58ea126": {
+    "assetId": "eip155:137/erc20:0x04b33078ea1aef29bf3fb29c6ab7b200c58ea126",
+    "chainId": "eip155:137",
+    "name": "Safle",
+    "precision": 18,
+    "color": "#0C82EC",
+    "icon": "https://assets.coingecko.com/coins/images/21674/thumb/56835021.png?1696521030",
+    "symbol": "SAFLE",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x04cc80c7665e4d57f57e16a1212a57c0c11927ce": {
+    "assetId": "eip155:137/erc20:0x04cc80c7665e4d57f57e16a1212a57c0c11927ce",
+    "chainId": "eip155:137",
+    "name": "Aniverse Metaverse",
+    "precision": 18,
+    "color": "#6485D4",
+    "icon": "https://assets.coingecko.com/coins/images/29090/thumb/aniv.png?1696528054",
+    "symbol": "ANIV",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x04f177fcacf6fb4d2f95d41d7d3fee8e565ca1d0": {
+    "assetId": "eip155:137/erc20:0x04f177fcacf6fb4d2f95d41d7d3fee8e565ca1d0",
+    "chainId": "eip155:137",
+    "name": "DragonMaster",
+    "precision": 18,
+    "color": "#FBCB16",
+    "icon": "https://assets.coingecko.com/coins/images/25171/thumb/JNBofoc.png?1696524316",
+    "symbol": "DMT",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x05089c9ebffa4f0aca269e32056b1b36b37ed71b": {
+    "assetId": "eip155:137/erc20:0x05089c9ebffa4f0aca269e32056b1b36b37ed71b",
+    "chainId": "eip155:137",
+    "name": "Polywhale",
+    "precision": 18,
+    "color": "#DA72D2",
+    "icon": "https://assets.coingecko.com/coins/images/15016/thumb/2.png?1696514678",
+    "symbol": "KRILL",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x05f52cc483c50c2a7e25a13dac17d736fa50f259": {
+    "assetId": "eip155:137/erc20:0x05f52cc483c50c2a7e25a13dac17d736fa50f259",
+    "chainId": "eip155:137",
+    "name": "BitcoinX",
+    "precision": 18,
+    "color": "#FCF5D6",
+    "icon": "https://assets.coingecko.com/coins/images/31400/thumb/BXC.jpg?1700565614",
+    "symbol": "BXC",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x06ddb3a8bc0abc14f85e974cf1a93a6f8d4909d9": {
+    "assetId": "eip155:137/erc20:0x06ddb3a8bc0abc14f85e974cf1a93a6f8d4909d9",
+    "chainId": "eip155:137",
+    "name": "8Pay on Polygon",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/14667/thumb/8pay.jpeg?1696514342",
+    "symbol": "8PAY",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x071ac29d569a47ebffb9e57517f855cb577dcc4c": {
+    "assetId": "eip155:137/erc20:0x071ac29d569a47ebffb9e57517f855cb577dcc4c",
+    "chainId": "eip155:137",
+    "name": "Galaxy Fight Club",
+    "precision": 18,
+    "color": "#282834",
+    "icon": "https://assets.coingecko.com/coins/images/22364/thumb/M1oqSwPA_400x400.jpg?1696521707",
+    "symbol": "GCOIN",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x0731d0c0d123382c163aae78a09390cad2ffc941": {
+    "assetId": "eip155:137/erc20:0x0731d0c0d123382c163aae78a09390cad2ffc941",
+    "chainId": "eip155:137",
+    "name": "Ink Fantom on Polygon",
+    "precision": 18,
+    "color": "#3A3B41",
+    "icon": "https://assets.coingecko.com/coins/images/23511/thumb/v3INKLogo-03.png?1696522720",
+    "symbol": "INK",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x078f358208685046a11c85e8ad32895ded33a249": {
+    "assetId": "eip155:137/erc20:0x078f358208685046a11c85e8ad32895ded33a249",
+    "chainId": "eip155:137",
+    "name": "Aave v3 WBTC on Polygon",
+    "precision": 8,
+    "color": "#E48A51",
+    "icon": "https://assets.coingecko.com/coins/images/32883/thumb/wbtc.png?1699719908",
+    "symbol": "AWBTC",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x07ed33a242bd9c08ca3c198e01189e35265024da": {
+    "assetId": "eip155:137/erc20:0x07ed33a242bd9c08ca3c198e01189e35265024da",
+    "chainId": "eip155:137",
+    "name": "Wagmi on Polygon",
+    "precision": 18,
+    "color": "#CEB484",
+    "icon": "https://assets.coingecko.com/coins/images/31887/thumb/wagmi_token_logo.png?1696530698",
+    "symbol": "WAGMI",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x08158a6b5d4018340387d1a302f882e98a8bc5b4": {
+    "assetId": "eip155:137/erc20:0x08158a6b5d4018340387d1a302f882e98a8bc5b4",
+    "chainId": "eip155:137",
+    "name": "Plasma Finance on Polygon",
+    "precision": 18,
+    "color": "#C73A9A",
+    "icon": "https://assets.coingecko.com/coins/images/13340/thumb/Hi9sEGAD.png?1696513107",
+    "symbol": "PPAY",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x081ec4c0e30159c8259bad8f4887f83010a681dc": {
+    "assetId": "eip155:137/erc20:0x081ec4c0e30159c8259bad8f4887f83010a681dc",
+    "chainId": "eip155:137",
+    "name": "Denet File Token",
+    "precision": 18,
+    "color": "#6A6018",
+    "icon": "https://assets.coingecko.com/coins/images/31086/thumb/0x081ec4c0e30159c8259bad8f4887f83010a681dc_%281%29.png?1696529919",
+    "symbol": "DE",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x086373fad3447f7f86252fb59d56107e9e0faafa": {
+    "assetId": "eip155:137/erc20:0x086373fad3447f7f86252fb59d56107e9e0faafa",
+    "chainId": "eip155:137",
+    "name": "Yup on Polygon",
+    "precision": 18,
+    "color": "#F2F7F2",
+    "icon": "https://assets.coingecko.com/coins/images/12322/thumb/photo_2021-10-26_00-47-35.jpg?1696512151",
+    "symbol": "YUP",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x08715f5c743f747de0005ad6c45336c163711137": {
+    "assetId": "eip155:137/erc20:0x08715f5c743f747de0005ad6c45336c163711137",
+    "chainId": "eip155:137",
+    "name": "cLFi",
+    "precision": 8,
+    "color": "#1D4637",
+    "icon": "https://assets.coingecko.com/coins/images/31454/thumb/CLFI.png?1696530268",
+    "symbol": "CLFI",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x08e175a1eac9744a0f1ccaeb8f669af6a2bda3ce": {
+    "assetId": "eip155:137/erc20:0x08e175a1eac9744a0f1ccaeb8f669af6a2bda3ce",
+    "chainId": "eip155:137",
+    "name": "Energy8",
+    "precision": 9,
+    "color": "#BC6EC0",
+    "icon": "https://assets.coingecko.com/coins/images/19707/thumb/OZ52Oms.png?1696519133",
+    "symbol": "E8",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x09211dc67f9fe98fb7bbb91be0ef05f4a12fa2b2": {
+    "assetId": "eip155:137/erc20:0x09211dc67f9fe98fb7bbb91be0ef05f4a12fa2b2",
+    "chainId": "eip155:137",
+    "name": "Yieldwatch on Polygon",
+    "precision": 18,
+    "color": "#E6D494",
+    "icon": "https://assets.coingecko.com/coins/images/14186/thumb/WATCH1.png?1696513904",
+    "symbol": "WATCH",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x09c5a4bca808bd1ba2b8e6b3aaf7442046b4ca5b": {
+    "assetId": "eip155:137/erc20:0x09c5a4bca808bd1ba2b8e6b3aaf7442046b4ca5b",
+    "chainId": "eip155:137",
+    "name": "Vesper Finance on Polygon",
+    "precision": 18,
+    "color": "#453E9D",
+    "icon": "https://assets.coingecko.com/coins/images/13527/thumb/vesper_logo.jpg?1696513288",
+    "symbol": "VSP",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x09cad96bc28f55e9253cfb9a84a3a1ab79061e54": {
+    "assetId": "eip155:137/erc20:0x09cad96bc28f55e9253cfb9a84a3a1ab79061e54",
+    "chainId": "eip155:137",
+    "name": "Phantom of the Kill  Alternative Imitat",
+    "precision": 18,
+    "color": "#DD8692",
+    "icon": "https://assets.coingecko.com/coins/images/32481/thumb/LOGO_Oshi_Token_200-200.png?1698287950",
+    "symbol": "OSHI",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x0a307bd521701f9d70fb29bfa9e2e36dc998dadb": {
+    "assetId": "eip155:137/erc20:0x0a307bd521701f9d70fb29bfa9e2e36dc998dadb",
+    "chainId": "eip155:137",
+    "name": "CoinWealth on Polygon",
+    "precision": 6,
+    "color": "#143C5C",
+    "icon": "https://assets.coingecko.com/coins/images/23769/thumb/cw_logo-4955f59a5c8079f246fa07ac71b2541870ca7d906ca1d9c26d74a3870fafef2f_%281%29.png?1696522970",
+    "symbol": "CNW",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x0a3bb08b3a15a19b4de82f8acfc862606fb69a2d": {
+    "assetId": "eip155:137/erc20:0x0a3bb08b3a15a19b4de82f8acfc862606fb69a2d",
+    "chainId": "eip155:137",
+    "name": "iZUMi Bond USD on Polygon",
+    "precision": 18,
+    "color": "#844CFC",
+    "icon": "https://assets.coingecko.com/coins/images/25388/thumb/iusd-logo-symbol-10k%E5%A4%A7%E5%B0%8F.png?1696524521",
+    "symbol": "IUSD",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x0b3f868e0be5597d5db7feb59e1cadbb0fdda50a": {
+    "assetId": "eip155:137/erc20:0x0b3f868e0be5597d5db7feb59e1cadbb0fdda50a",
+    "chainId": "eip155:137",
+    "name": "Sushi on Polygon",
+    "precision": 18,
+    "color": "#161129",
+    "icon": "https://assets.coingecko.com/coins/images/12271/thumb/512x512_Logo_no_chop.png?1696512101",
+    "symbol": "SUSHI",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x0b6afe834dab840335f87d99b45c2a4bd81a93c7": {
+    "assetId": "eip155:137/erc20:0x0b6afe834dab840335f87d99b45c2a4bd81a93c7",
+    "chainId": "eip155:137",
+    "name": "Polylauncher on Polygon",
+    "precision": 18,
+    "color": "#040534",
+    "icon": "https://assets.coingecko.com/coins/images/17739/thumb/Polylauncher_-_200_x_200.png?1696517266",
+    "symbol": "ANGEL",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x0ba8a6ce46d369d779299dedade864318097b703": {
+    "assetId": "eip155:137/erc20:0x0ba8a6ce46d369d779299dedade864318097b703",
+    "chainId": "eip155:137",
+    "name": "JUSD on Polygon",
+    "precision": 18,
+    "color": "#1844C8",
+    "icon": "https://assets.coingecko.com/coins/images/32302/thumb/200x200.png?1697186770",
+    "symbol": "JUSD",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x0bd49815ea8e2682220bcb41524c0dd10ba71d41": {
+    "assetId": "eip155:137/erc20:0x0bd49815ea8e2682220bcb41524c0dd10ba71d41",
+    "chainId": "eip155:137",
+    "name": "Playermon",
+    "precision": 18,
+    "color": "#1F308C",
+    "icon": "https://assets.coingecko.com/coins/images/20682/thumb/eALRa3rZ_400x400.png?1696520082",
+    "symbol": "PYM",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x0bd820ad2d7ab7305b5c9538ba824c9b9beb0561": {
+    "assetId": "eip155:137/erc20:0x0bd820ad2d7ab7305b5c9538ba824c9b9beb0561",
+    "chainId": "eip155:137",
+    "name": "Royale on Polygon",
+    "precision": 18,
+    "color": "#8684B1",
+    "icon": "https://assets.coingecko.com/coins/images/13602/thumb/roya.png?1696513353",
+    "symbol": "ROYA",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x0c087f8d6a1f14f71bb7cc7e1b061ca297af7555": {
+    "assetId": "eip155:137/erc20:0x0c087f8d6a1f14f71bb7cc7e1b061ca297af7555",
+    "chainId": "eip155:137",
+    "name": "Endblock",
+    "precision": 18,
+    "color": "#6CBC3C",
+    "icon": "https://assets.coingecko.com/coins/images/32057/thumb/logo-endblock-200x200.png?1696530854",
+    "symbol": "END",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x0c1eb50007974c4e017a6eccf751110bac287ebb": {
+    "assetId": "eip155:137/erc20:0x0c1eb50007974c4e017a6eccf751110bac287ebb",
+    "chainId": "eip155:137",
+    "name": "Metable",
+    "precision": 18,
+    "color": "#1D0445",
+    "icon": "https://assets.coingecko.com/coins/images/31594/thumb/MEtable.jpg?1696530411",
+    "symbol": "MTBL",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x0c47298beee5203358e7bc30b9954b584361eab5": {
+    "assetId": "eip155:137/erc20:0x0c47298beee5203358e7bc30b9954b584361eab5",
+    "chainId": "eip155:137",
+    "name": "Black Stallion",
+    "precision": 18,
+    "color": "#C5C6C6",
+    "icon": "https://assets.coingecko.com/coins/images/29207/thumb/bs.png?1696528166",
+    "symbol": "BS",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x0c705862f56cd8ec70337f5f5184fea4158a3c00": {
+    "assetId": "eip155:137/erc20:0x0c705862f56cd8ec70337f5f5184fea4158a3c00",
+    "chainId": "eip155:137",
+    "name": "Abyss World",
+    "precision": 18,
+    "color": "#070808",
+    "icon": "https://assets.coingecko.com/coins/images/30679/thumb/black.png?1696529548",
+    "symbol": "AWT",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x0c8c8ae8bc3a69dc8482c01ceacfb588bb516b01": {
+    "assetId": "eip155:137/erc20:0x0c8c8ae8bc3a69dc8482c01ceacfb588bb516b01",
+    "chainId": "eip155:137",
+    "name": "AuroraToken",
+    "precision": 18,
+    "color": "#724CA5",
+    "icon": "https://assets.coingecko.com/coins/images/15345/thumb/aurora_tokenlogo.png?1696514994",
+    "symbol": "AURORA",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x0c93709c4389b6eebdb0a4d3d60092bb61446382": {
+    "assetId": "eip155:137/erc20:0x0c93709c4389b6eebdb0a4d3d60092bb61446382",
+    "chainId": "eip155:137",
+    "name": "Zexicon",
+    "precision": 18,
+    "color": "#0454AC",
+    "icon": "https://assets.coingecko.com/coins/images/30217/thumb/ZEXI_Logo%28200x200%29.png?1696529128",
+    "symbol": "ZEXI",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x0c9c7712c83b3c70e7c5e11100d33d9401bdf9dd": {
+    "assetId": "eip155:137/erc20:0x0c9c7712c83b3c70e7c5e11100d33d9401bdf9dd",
+    "chainId": "eip155:137",
+    "name": "Wombat on Polygon",
+    "precision": 18,
+    "color": "#F84C24",
+    "icon": "https://assets.coingecko.com/coins/images/26430/thumb/Project_Page_Icon.png?1696525504",
+    "symbol": "WOMBAT",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x0d0b8488222f7f83b23e365320a4021b12ead608": {
+    "assetId": "eip155:137/erc20:0x0d0b8488222f7f83b23e365320a4021b12ead608",
+    "chainId": "eip155:137",
+    "name": "Next Earth",
+    "precision": 18,
+    "color": "#260C44",
+    "icon": "https://assets.coingecko.com/coins/images/23264/thumb/kG1zm83.png?1696522484",
+    "symbol": "NXTT",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x0d500b1d8e8ef31e21c99d1db9a6444d3adf1270": {
+    "assetId": "eip155:137/erc20:0x0d500b1d8e8ef31e21c99d1db9a6444d3adf1270",
+    "chainId": "eip155:137",
+    "name": "Wrapped Matic",
+    "precision": 18,
+    "color": "#3194FC",
+    "icon": "https://assets.coingecko.com/coins/images/14073/thumb/matic.png?1696513797",
+    "symbol": "WMATIC",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x0d6ae2a429df13e44a07cd2969e085e4833f64a0": {
+    "assetId": "eip155:137/erc20:0x0d6ae2a429df13e44a07cd2969e085e4833f64a0",
+    "chainId": "eip155:137",
+    "name": "PolkaBridge on Polygon",
+    "precision": 18,
+    "color": "#F48EC4",
+    "icon": "https://assets.coingecko.com/coins/images/13744/thumb/symbol-whitebg200x200.png?1696513488",
+    "symbol": "PBR",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x0da6a7a0a2e7525950204bb2c511e47a52235b17": {
+    "assetId": "eip155:137/erc20:0x0da6a7a0a2e7525950204bb2c511e47a52235b17",
+    "chainId": "eip155:137",
+    "name": "MT Tower",
+    "precision": 18,
+    "color": "#CDD6E3",
+    "icon": "https://assets.coingecko.com/coins/images/27457/thumb/mt_logo_200x200.png?1696526497",
+    "symbol": "MT",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x0df0f72ee0e5c9b7ca761ecec42754992b2da5bf": {
+    "assetId": "eip155:137/erc20:0x0df0f72ee0e5c9b7ca761ecec42754992b2da5bf",
+    "chainId": "eip155:137",
+    "name": "Automata on Polygon",
+    "precision": 18,
+    "color": "#BF662D",
+    "icon": "https://assets.coingecko.com/coins/images/15985/thumb/ATA.jpg?1696515598",
+    "symbol": "ATA",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x0e2c818fea38e7df50410f772b7d59af20589a62": {
+    "assetId": "eip155:137/erc20:0x0e2c818fea38e7df50410f772b7d59af20589a62",
+    "chainId": "eip155:137",
+    "name": "Dominium",
+    "precision": 9,
+    "color": "#94A1C7",
+    "icon": "https://assets.coingecko.com/coins/images/24506/thumb/DOM-Token-Icon-200-200-px.png?1696523685",
+    "symbol": "DOM",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x0e62cadbaeec69b8b0f2e9d56510f925512837d2": {
+    "assetId": "eip155:137/erc20:0x0e62cadbaeec69b8b0f2e9d56510f925512837d2",
+    "chainId": "eip155:137",
+    "name": "ZooCoin on Polygon",
+    "precision": 18,
+    "color": "#70C5AE",
+    "icon": "https://assets.coingecko.com/coins/images/31230/thumb/ZOO.png?1696530056",
+    "symbol": "ZOO",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x0e7252706393470ffb0629da2caa39fc9340f2d4": {
+    "assetId": "eip155:137/erc20:0x0e7252706393470ffb0629da2caa39fc9340f2d4",
+    "chainId": "eip155:137",
+    "name": "DogeGF on Polygon",
+    "precision": 18,
+    "color": "#E8D2D2",
+    "icon": "https://assets.coingecko.com/coins/images/18651/thumb/dogf.png?1696518122",
+    "symbol": "DOGEGF",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x0e98c977b943f06075b2d795794238fbfb9b9a34": {
+    "assetId": "eip155:137/erc20:0x0e98c977b943f06075b2d795794238fbfb9b9a34",
+    "chainId": "eip155:137",
+    "name": "Tomb on Polygon",
+    "precision": 18,
+    "color": "#B0B098",
+    "icon": "https://assets.coingecko.com/coins/images/16133/thumb/tomb_icon_noBG.png?1696515739",
+    "symbol": "TOMB",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x0e9b89007eee9c958c0eda24ef70723c2c93dd58": {
+    "assetId": "eip155:137/erc20:0x0e9b89007eee9c958c0eda24ef70723c2c93dd58",
+    "chainId": "eip155:137",
+    "name": "Ankr Staked MATIC on Polygon",
+    "precision": 18,
+    "color": "#544C0A",
+    "icon": "https://assets.coingecko.com/coins/images/25742/thumb/a-matic-c-da4ec10dc9723e695700e25dbf8c8edf.png?1696524833",
+    "symbol": "ANKRMATIC",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x0f8db146ec1288fc35c05e3b78c2f27d3fa7c4a5": {
+    "assetId": "eip155:137/erc20:0x0f8db146ec1288fc35c05e3b78c2f27d3fa7c4a5",
+    "chainId": "eip155:137",
+    "name": "Tradeleaf",
+    "precision": 6,
+    "color": "#183A94",
+    "icon": "https://assets.coingecko.com/coins/images/29718/thumb/TLF_200x200.png?1696528649",
+    "symbol": "TLF",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x0fced30234c3ea94a7b47cc88006ecb7a39dc30e": {
+    "assetId": "eip155:137/erc20:0x0fced30234c3ea94a7b47cc88006ecb7a39dc30e",
+    "chainId": "eip155:137",
+    "name": "BITmarkets Token",
+    "precision": 18,
+    "color": "#F8AF17",
+    "icon": "https://assets.coingecko.com/coins/images/31547/thumb/btmt-token_%282%29.png?1696530360",
+    "symbol": "BTMT",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x101a023270368c0d50bffb62780f4afd4ea79c35": {
+    "assetId": "eip155:137/erc20:0x101a023270368c0d50bffb62780f4afd4ea79c35",
+    "chainId": "eip155:137",
+    "name": "Ankr Network on Polygon",
+    "precision": 18,
+    "color": "#245CE4",
+    "icon": "https://assets.coingecko.com/coins/images/4324/thumb/U85xTl2.png?1696504928",
+    "symbol": "ANKR",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x103965213122805c9aa63d8036ed0ef692c19650": {
+    "assetId": "eip155:137/erc20:0x103965213122805c9aa63d8036ed0ef692c19650",
+    "chainId": "eip155:137",
+    "name": "D Drops",
+    "precision": 18,
+    "color": "#1B1C24",
+    "icon": "https://assets.coingecko.com/coins/images/26611/thumb/ddrops_%281%29.png?1696525685",
+    "symbol": "DOP",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x110b25d2b21ee73eb401f3ae7833f7072912a0bf": {
+    "assetId": "eip155:137/erc20:0x110b25d2b21ee73eb401f3ae7833f7072912a0bf",
+    "chainId": "eip155:137",
+    "name": "Lif3 on Polygon",
+    "precision": 18,
+    "color": "#E8EAF0",
+    "icon": "https://assets.coingecko.com/coins/images/31291/thumb/Tokens.png?1696530112",
+    "symbol": "LIF3",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x111111517e4929d3dcbdfa7cce55d30d4b6bc4d6": {
+    "assetId": "eip155:137/erc20:0x111111517e4929d3dcbdfa7cce55d30d4b6bc4d6",
+    "chainId": "eip155:137",
+    "name": "ICHI on Polygon",
+    "precision": 18,
+    "color": "#0D68E2",
+    "icon": "https://assets.coingecko.com/coins/images/13119/thumb/ICHI_%28Round%29.jpg?1696512907",
+    "symbol": "ICHI",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x11602a402281974a70c2b4824d58ebede967e2be": {
+    "assetId": "eip155:137/erc20:0x11602a402281974a70c2b4824d58ebede967e2be",
+    "chainId": "eip155:137",
+    "name": "NBX on Polygon",
+    "precision": 18,
+    "color": "#FCEAE1",
+    "icon": "https://assets.coingecko.com/coins/images/14746/thumb/NBX.png?1696514416",
+    "symbol": "BYN",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x11a1779ae6b02bb8e7ff847919bca3e55bcbb3d5": {
+    "assetId": "eip155:137/erc20:0x11a1779ae6b02bb8e7ff847919bca3e55bcbb3d5",
+    "chainId": "eip155:137",
+    "name": "Paper on Polygon",
+    "precision": 18,
+    "color": "#34A4C4",
+    "icon": "https://assets.coingecko.com/coins/images/23510/thumb/v3PAPERLogo-01.png?1696522719",
+    "symbol": "PAPER",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x11a819beb0aa3327e39f52f90d65cc9bca499f33": {
+    "assetId": "eip155:137/erc20:0x11a819beb0aa3327e39f52f90d65cc9bca499f33",
+    "chainId": "eip155:137",
+    "name": "Scaleswap on Polygon",
+    "precision": 18,
+    "color": "#E28E3F",
+    "icon": "https://assets.coingecko.com/coins/images/16360/thumb/thumbnail_1170823958_vertical_logo_lateral_radiance.png?1696515959",
+    "symbol": "SCA",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x11a88f949c0592238959142653bb6847c6523d81": {
+    "assetId": "eip155:137/erc20:0x11a88f949c0592238959142653bb6847c6523d81",
+    "chainId": "eip155:137",
+    "name": "WEN Token on Polygon",
+    "precision": 18,
+    "color": "#0A0B10",
+    "icon": "https://assets.coingecko.com/coins/images/30400/thumb/kxtrOzUd_400x400.jpg?1696529290",
+    "symbol": "WEN",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x1236ea13c7339287cd00ab196aaa8217006b04dc": {
+    "assetId": "eip155:137/erc20:0x1236ea13c7339287cd00ab196aaa8217006b04dc",
+    "chainId": "eip155:137",
+    "name": "Epic League on Polygon",
+    "precision": 18,
+    "color": "#C8518C",
+    "icon": "https://assets.coingecko.com/coins/images/32139/thumb/epl_symbol_200.png?1696591947",
+    "symbol": "EPL",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x123706cdd8e60324e610e9a2cc7012d0f45a5b8e": {
+    "assetId": "eip155:137/erc20:0x123706cdd8e60324e610e9a2cc7012d0f45a5b8e",
+    "chainId": "eip155:137",
+    "name": "Quidd on Polygon",
+    "precision": 18,
+    "color": "#641CCC",
+    "icon": "https://assets.coingecko.com/coins/images/19725/thumb/quidd.png?1696519150",
+    "symbol": "QUIDD",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x127984b5e6d5c59f81dacc9f1c8b3bdc8494572e": {
+    "assetId": "eip155:137/erc20:0x127984b5e6d5c59f81dacc9f1c8b3bdc8494572e",
+    "chainId": "eip155:137",
+    "name": "Pepedex on Polygon",
+    "precision": 18,
+    "color": "#0C190C",
+    "icon": "https://assets.coingecko.com/coins/images/13022/thumb/output-onlinepngtools-1.png?1696512811",
+    "symbol": "PPDEX",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x1280830f690d0e65195b3c61b028244c3a49f26d": {
+    "assetId": "eip155:137/erc20:0x1280830f690d0e65195b3c61b028244c3a49f26d",
+    "chainId": "eip155:137",
+    "name": "Axelar Wrapped Ether on Polygon",
+    "precision": 18,
+    "color": "#37353D",
+    "icon": "https://assets.coingecko.com/coins/images/28171/thumb/weth-wei_D_3x.png?1696527174",
+    "symbol": "AXLETH",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x12a34a6759c871c4c1e8a0a42cfc97e4d7aaf68d": {
+    "assetId": "eip155:137/erc20:0x12a34a6759c871c4c1e8a0a42cfc97e4d7aaf68d",
+    "chainId": "eip155:137",
+    "name": "Tutellus",
+    "precision": 18,
+    "color": "#3240F0",
+    "icon": "https://assets.coingecko.com/coins/images/2327/thumb/tutellus-logo.png?1696503215",
+    "symbol": "TUT",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x13748d548d95d78a3c83fe3f32604b4796cffa23": {
+    "assetId": "eip155:137/erc20:0x13748d548d95d78a3c83fe3f32604b4796cffa23",
+    "chainId": "eip155:137",
+    "name": "KogeCoin",
+    "precision": 9,
+    "color": "#25A752",
+    "icon": "https://assets.coingecko.com/coins/images/17546/thumb/koge.PNG?1696517082",
+    "symbol": "KOGECOIN",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x1379e8886a944d2d9d440b3d88df536aea08d9f3": {
+    "assetId": "eip155:137/erc20:0x1379e8886a944d2d9d440b3d88df536aea08d9f3",
+    "chainId": "eip155:137",
+    "name": "Mysterium on Polygon",
+    "precision": 18,
+    "color": "#46245C",
+    "icon": "https://assets.coingecko.com/coins/images/757/thumb/mysterium.png?1696501911",
+    "symbol": "MYST",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x13efaa3d5e2c86e7aba168f925fef9827648cff4": {
+    "assetId": "eip155:137/erc20:0x13efaa3d5e2c86e7aba168f925fef9827648cff4",
+    "chainId": "eip155:137",
+    "name": "MAGIC SHOES",
+    "precision": 18,
+    "color": "#ECDC91",
+    "icon": "https://assets.coingecko.com/coins/images/31088/thumb/MAGIC_SHOES.png?1696529921",
+    "symbol": "MCT",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x140a4e80dd8184536acc45f1c452d7540472e6e1": {
+    "assetId": "eip155:137/erc20:0x140a4e80dd8184536acc45f1c452d7540472e6e1",
+    "chainId": "eip155:137",
+    "name": "Polker",
+    "precision": 18,
+    "color": "#A2748C",
+    "icon": "https://assets.coingecko.com/coins/images/16803/thumb/200x200-PKR_Chip.png?1696516373",
+    "symbol": "PKR",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x14af1f2f02dccb1e43402339099a05a5e363b83c": {
+    "assetId": "eip155:137/erc20:0x14af1f2f02dccb1e43402339099a05a5e363b83c",
+    "chainId": "eip155:137",
+    "name": "Kromatika on Polygon",
+    "precision": 18,
+    "color": "#B0C9F9",
+    "icon": "https://assets.coingecko.com/coins/images/20541/thumb/KROM_Transparent.png?1696519948",
+    "symbol": "KROM",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x14eb40fb7900185c01adc6a5b8ac506d8a600e3c": {
+    "assetId": "eip155:137/erc20:0x14eb40fb7900185c01adc6a5b8ac506d8a600e3c",
+    "chainId": "eip155:137",
+    "name": "Token Teknoloji A    EURO on Polygon",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/32816/thumb/eurot.png?1699579428",
+    "symbol": "EUROT",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x14ee88cd0e3c1534bff13d6d716b8575532c7138": {
+    "assetId": "eip155:137/erc20:0x14ee88cd0e3c1534bff13d6d716b8575532c7138",
+    "chainId": "eip155:137",
+    "name": "EDNS Domains",
+    "precision": 18,
+    "color": "#676267",
+    "icon": "https://assets.coingecko.com/coins/images/30880/thumb/ednslogo.jpg?1696529727",
+    "symbol": "EDNS",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x1581929770be3275a82068c1135b6dd59c5334ed": {
+    "assetId": "eip155:137/erc20:0x1581929770be3275a82068c1135b6dd59c5334ed",
+    "chainId": "eip155:137",
+    "name": "Alium Finance on Polygon",
+    "precision": 18,
+    "color": "#23B878",
+    "icon": "https://assets.coingecko.com/coins/images/15621/thumb/alium.png?1696515255",
+    "symbol": "ALM",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x1599fe55cda767b1f631ee7d414b41f5d6de393d": {
+    "assetId": "eip155:137/erc20:0x1599fe55cda767b1f631ee7d414b41f5d6de393d",
+    "chainId": "eip155:137",
+    "name": "Cool Cats Milk",
+    "precision": 18,
+    "color": "#FAF4EC",
+    "icon": "https://assets.coingecko.com/coins/images/23340/thumb/milk_logo.jpg?1696522556",
+    "symbol": "MILK",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x15b7c0c907e4c6b9adaaaabc300c08991d6cea05": {
+    "assetId": "eip155:137/erc20:0x15b7c0c907e4c6b9adaaaabc300c08991d6cea05",
+    "chainId": "eip155:137",
+    "name": "Gelato on Polygon",
+    "precision": 18,
+    "color": "#301618",
+    "icon": "https://assets.coingecko.com/coins/images/15026/thumb/Gelato_Icon_Logo_1024x1024.png?1696514687",
+    "symbol": "GEL",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x1631244689ec1fecbdd22fb5916e920dfc9b8d30": {
+    "assetId": "eip155:137/erc20:0x1631244689ec1fecbdd22fb5916e920dfc9b8d30",
+    "chainId": "eip155:137",
+    "name": "Ovr on Polygon",
+    "precision": 18,
+    "color": "#1B91E1",
+    "icon": "https://assets.coingecko.com/coins/images/13429/thumb/LOGO-OVER-ICON-200X200PX.png?1699396496",
+    "symbol": "OVR",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x16dfb898cf7029303c2376031392cb9bac450f94": {
+    "assetId": "eip155:137/erc20:0x16dfb898cf7029303c2376031392cb9bac450f94",
+    "chainId": "eip155:137",
+    "name": "Dragoma",
+    "precision": 18,
+    "color": "#2C91EE",
+    "icon": "https://assets.coingecko.com/coins/images/26244/thumb/DMA.png?1696525329",
+    "symbol": "DMA",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x16eccfdbb4ee1a85a33f3a9b21175cd7ae753db4": {
+    "assetId": "eip155:137/erc20:0x16eccfdbb4ee1a85a33f3a9b21175cd7ae753db4",
+    "chainId": "eip155:137",
+    "name": "Router Protocol on Polygon",
+    "precision": 18,
+    "color": "#363555",
+    "icon": "https://assets.coingecko.com/coins/images/13709/thumb/route_token_200x200-19.png?1696513454",
+    "symbol": "ROUTE",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x172370d5cd63279efa6d502dab29171933a610af": {
+    "assetId": "eip155:137/erc20:0x172370d5cd63279efa6d502dab29171933a610af",
+    "chainId": "eip155:137",
+    "name": "Curve DAO on Polygon",
+    "precision": 18,
+    "color": "#26CFD5",
+    "icon": "https://assets.coingecko.com/coins/images/12124/thumb/Curve.png?1696511967",
+    "symbol": "CRV",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x1796ae0b0fa4862485106a0de9b654efe301d0b2": {
+    "assetId": "eip155:137/erc20:0x1796ae0b0fa4862485106a0de9b654efe301d0b2",
+    "chainId": "eip155:137",
+    "name": "Polychain Monsters on Polygon",
+    "precision": 18,
+    "color": "#F04B7D",
+    "icon": "https://assets.coingecko.com/coins/images/14604/thumb/polkamon.png?1696514282",
+    "symbol": "PMON",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x17a011150e9feb7bec4cfada055c8df436eb730b": {
+    "assetId": "eip155:137/erc20:0x17a011150e9feb7bec4cfada055c8df436eb730b",
+    "chainId": "eip155:137",
+    "name": "TDEX Token on Polygon",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/32725/thumb/20220929-180435.png?1699018453",
+    "symbol": "TT",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x17d342b29f054030a455b4191f977c3b0aa62fd9": {
+    "assetId": "eip155:137/erc20:0x17d342b29f054030a455b4191f977c3b0aa62fd9",
+    "chainId": "eip155:137",
+    "name": "Kanga Exchange on Polygon",
+    "precision": 18,
+    "color": "#120805",
+    "icon": "https://assets.coingecko.com/coins/images/21188/thumb/KNG_logo-200.png?1696520564",
+    "symbol": "KNG",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x180cfbe9843d79bcafcbcdf23590247793dfc95b": {
+    "assetId": "eip155:137/erc20:0x180cfbe9843d79bcafcbcdf23590247793dfc95b",
+    "chainId": "eip155:137",
+    "name": "PolkaFantasy on Polygon",
+    "precision": 18,
+    "color": "#FC6CB4",
+    "icon": "https://assets.coingecko.com/coins/images/18299/thumb/XP_Token_Icon.png?1696517791",
+    "symbol": "XP",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x181feaecca4a69a793272ea06df40edf2dd0804c": {
+    "assetId": "eip155:137/erc20:0x181feaecca4a69a793272ea06df40edf2dd0804c",
+    "chainId": "eip155:137",
+    "name": "Ares3 Network",
+    "precision": 18,
+    "color": "#D4D4D3",
+    "icon": "https://assets.coingecko.com/coins/images/29713/thumb/logo_200.png?1696528645",
+    "symbol": "ARES",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x182f1d39df9460d7aef29afbc80bbd68ed0a41d5": {
+    "assetId": "eip155:137/erc20:0x182f1d39df9460d7aef29afbc80bbd68ed0a41d5",
+    "chainId": "eip155:137",
+    "name": "RuufCoin",
+    "precision": 18,
+    "color": "#3221BA",
+    "icon": "https://assets.coingecko.com/coins/images/17968/thumb/44d23204-3919-4ba6-adaf-69a51b9621d8.png?1696517487",
+    "symbol": "RUUF",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x187ae45f2d361cbce37c6a8622119c91148f261b": {
+    "assetId": "eip155:137/erc20:0x187ae45f2d361cbce37c6a8622119c91148f261b",
+    "chainId": "eip155:137",
+    "name": "Polylastic",
+    "precision": 18,
+    "color": "#88C9DD",
+    "icon": "https://assets.coingecko.com/coins/images/15331/thumb/POLX_Logo200200.png?1696514979",
+    "symbol": "POLX",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x189586b5f6317538ae50c20a976597da38984a24": {
+    "assetId": "eip155:137/erc20:0x189586b5f6317538ae50c20a976597da38984a24",
+    "chainId": "eip155:137",
+    "name": "ChainPort on Polygon",
+    "precision": 18,
+    "color": "#041A43",
+    "icon": "https://assets.coingecko.com/coins/images/24490/thumb/VE-tUL-q_400x400.png?1696523670",
+    "symbol": "PORTX",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x18e73a5333984549484348a94f4d219f4fab7b81": {
+    "assetId": "eip155:137/erc20:0x18e73a5333984549484348a94f4d219f4fab7b81",
+    "chainId": "eip155:137",
+    "name": "Yellow Duckies",
+    "precision": 8,
+    "color": "#EAC50D",
+    "icon": "https://assets.coingecko.com/coins/images/27630/thumb/Icon_coin_200px.png?1696526660",
+    "symbol": "DUCKIES",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x18ec0a6e18e5bc3784fdd3a3634b31245ab704f6": {
+    "assetId": "eip155:137/erc20:0x18ec0a6e18e5bc3784fdd3a3634b31245ab704f6",
+    "chainId": "eip155:137",
+    "name": "Monerium EUR emoney on Polygon",
+    "precision": 18,
+    "color": "#0783C0",
+    "icon": "https://assets.coingecko.com/coins/images/23354/thumb/eur.png?1696522569",
+    "symbol": "EURE",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x191c10aa4af7c30e871e70c95db0e4eb77237530": {
+    "assetId": "eip155:137/erc20:0x191c10aa4af7c30e871e70c95db0e4eb77237530",
+    "chainId": "eip155:137",
+    "name": "Aave v3 LINK on Polygon",
+    "precision": 18,
+    "color": "#9E64A6",
+    "icon": "https://assets.coingecko.com/coins/images/32888/thumb/link.png?1699773900",
+    "symbol": "ALINK",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x198f1d316aad1c0bfd36a79bd1a8e9dba92daa18": {
+    "assetId": "eip155:137/erc20:0x198f1d316aad1c0bfd36a79bd1a8e9dba92daa18",
+    "chainId": "eip155:137",
+    "name": "DeCats",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/33203/thumb/Decats_Logo_200_.png?1701076803",
+    "symbol": "DECATS",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x19ccfe396006ffe7a92ab667b0ef90ce61b66f9f": {
+    "assetId": "eip155:137/erc20:0x19ccfe396006ffe7a92ab667b0ef90ce61b66f9f",
+    "chainId": "eip155:137",
+    "name": "Reel Token",
+    "precision": 18,
+    "color": "#640CE4",
+    "icon": "https://assets.coingecko.com/coins/images/29559/thumb/reelt-logo.png?1696528499",
+    "symbol": "REELT",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x1a13f4ca1d028320a707d99520abfefca3998b7f": {
+    "assetId": "eip155:137/erc20:0x1a13f4ca1d028320a707d99520abfefca3998b7f",
+    "chainId": "eip155:137",
+    "name": "Aave v2 USDC on Polygon",
+    "precision": 6,
+    "color": "#9783DA",
+    "icon": "https://assets.coingecko.com/coins/images/14318/thumb/aUSDC.e260d492.png?1696514006",
+    "symbol": "AUSDC",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x1a3acf6d19267e2d3e7f898f42803e90c9219062": {
+    "assetId": "eip155:137/erc20:0x1a3acf6d19267e2d3e7f898f42803e90c9219062",
+    "chainId": "eip155:137",
+    "name": "Frax Share on Polygon",
+    "precision": 18,
+    "color": "#CACACA",
+    "icon": "https://assets.coingecko.com/coins/images/13423/thumb/Frax_Shares_icon.png?1696513183",
+    "symbol": "FXS",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x1a49e59ab7101d6a66d6b2fa6d09932079cc80ec": {
+    "assetId": "eip155:137/erc20:0x1a49e59ab7101d6a66d6b2fa6d09932079cc80ec",
+    "chainId": "eip155:137",
+    "name": "Wins on Polygon",
+    "precision": 18,
+    "color": "#180E07",
+    "icon": "https://assets.coingecko.com/coins/images/31007/thumb/icon_wins.png?1696529844",
+    "symbol": "WINS",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x1a70807f022cbd3ac5380a6a2af3524e56a6184d": {
+    "assetId": "eip155:137/erc20:0x1a70807f022cbd3ac5380a6a2af3524e56a6184d",
+    "chainId": "eip155:137",
+    "name": "Strix",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAIAAAACACAMAAAD04JH5AAADAFBMVEUtN0gm2H7///8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMMiXfAAABAHRSTlP/////AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAf6K/dgAAQItJREFUeNoBgEB/vwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgAAAAAAAAACAgICAgICAgICAgICAgICAgICAgICAgICAgICAAAAAAAAAAAAAAAAAAACAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgAAAAAAAAAAAAACAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMAAAAAAAACAgICAgICAgICAgICAgICAgICAgICAgICAgICAwAAAAAAAAAAAAAAAAACAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMAAAAAAAAAAAACAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMAAAAAAAACAgICAgICAgICAgICAgICAgICAgICAgICAgICAwAAAAAAAAAAAAAAAAACAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMAAAAAAAAAAAACAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMAAAAAAAACAgICAgICAgICAgICAgICAgICAgICAgICAgICAwAAAAAAAAAAAAAAAAACAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMAAAAAAAAAAAACAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMAAAAAAAACAgICAgICAgICAgICAgICAgICAgICAgICAgICAwAAAAAAAAAAAAAAAAACAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMAAAAAAAAAAAACAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMAAAAAAAACAgICAgICAgICAgICAgICAgICAgICAgICAgICAwAAAAAAAAAAAAAAAAACAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMAAAAAAAAAAAACAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMAAAAAAAACAgICAgICAgICAgICAgICAgICAgICAgICAgICAwAAAAAAAAAAAAAAAAACAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMAAAAAAAAAAAAAAwMDAwMDAwMDAwMDAwICAgICAgIDAwMDAwMDAwMDAwMDAwMAAAAAAAACAgICAgICAwMDAwMDAwMDAwMDAwMDAwMDAwMDAgICAgICAgAAAAAAAAAAAwMDAwMDAwMDAwMDAwICAgICAgIDAwMDAwMDAwMDAwMDAwMAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAACAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAgICAgICAgMAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAACAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAgICAgICAgMAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAACAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAgICAgICAgMAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAACAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAgICAgICAgMAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAACAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAgICAgICAgMAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAACAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAgICAgICAgMAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAACAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAgICAgICAgMAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAACAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAgICAgICAgMAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAACAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAgICAgICAgMAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAACAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAgICAgICAgMAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAACAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAgICAgICAgMAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAACAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAgICAgICAgMAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAACAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAgICAgICAgMAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAACAgICAgICAgICAgICAgICAgICAgICAgICAgICAAMDAwMDAwMAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAACAgICAgICAgICAgICAgICAgICAgICAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAACAgICAgICAgICAgICAgICAgICAgICAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAACAgICAgICAgICAgICAgICAgICAgICAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAACAgICAgICAgICAgICAgICAgICAgICAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAACAgICAgICAgICAgICAgICAgICAgICAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAACAgICAgICAgICAgICAgICAgICAgICAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAACAgICAgICAwMDAwMDAwICAgICAgIDAwMDAwMDAwAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAACAgICAgICAwAAAAAAAAICAgICAgIDAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAACAgICAgICAwAAAAAAAAICAgICAgIDAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAACAgICAgICAwAAAAAAAAICAgICAgIDAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAACAgICAgICAwAAAAAAAAICAgICAgIDAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAACAgICAgICAwAAAAAAAAICAgICAgIDAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgIDAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAICAgICAgIDAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgIDAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAADAwMDAwMCAgICAgICAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgIDAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgIDAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgIDAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgIDAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgIDAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgIDAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgIDAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAwMDAwMDAgICAgICAgEBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgIDAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgIDAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgIDAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgIDAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgIDAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgIDAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEDAwMDAwMDAQEBAQEBAQEBAQEBAQEBAQEBAQEBAwMDAwMDAwAAAAAAAAAAAAAAAAAAAAAAAAEBAQMDAwMDAwMBAQEBAQEBAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQ9KzhE2GdhAAAAAElFTkSuQmCC",
+    "symbol": "STRIX",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x1a763170b96f23f15576d0fa0b2619d1254c437d": {
+    "assetId": "eip155:137/erc20:0x1a763170b96f23f15576d0fa0b2619d1254c437d",
+    "chainId": "eip155:137",
+    "name": "AurusX on Polygon",
+    "precision": 18,
+    "color": "#E4F8F8",
+    "icon": "https://assets.coingecko.com/coins/images/27871/thumb/AurusX_token_2D.jpg?1696526889",
+    "symbol": "AX",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x1adcef5c780d8895ac77e6ee9239b4b3ecb76da2": {
+    "assetId": "eip155:137/erc20:0x1adcef5c780d8895ac77e6ee9239b4b3ecb76da2",
+    "chainId": "eip155:137",
+    "name": "DragonMaster Totem",
+    "precision": 6,
+    "color": "#D5694A",
+    "icon": "https://assets.coingecko.com/coins/images/25056/thumb/C6_miUEU_400x400.jpg?1696524207",
+    "symbol": "TOTEM",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x1b599beb7b1f50807dd58fd7e8ffcf073b435e71": {
+    "assetId": "eip155:137/erc20:0x1b599beb7b1f50807dd58fd7e8ffcf073b435e71",
+    "chainId": "eip155:137",
+    "name": "Blind Boxes on Polygon",
+    "precision": 18,
+    "color": "#090909",
+    "icon": "https://assets.coingecko.com/coins/images/14537/thumb/BLES-Logo-BW.png?1696514221",
+    "symbol": "BLES",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x1b815d120b3ef02039ee11dc2d33de7aa4a8c603": {
+    "assetId": "eip155:137/erc20:0x1b815d120b3ef02039ee11dc2d33de7aa4a8c603",
+    "chainId": "eip155:137",
+    "name": "WOO Network on Polygon",
+    "precision": 18,
+    "color": "#E1E4E6",
+    "icon": "https://assets.coingecko.com/coins/images/12921/thumb/WOO_Logos_2023_Profile_Pic_WOO.png?1696512709",
+    "symbol": "WOO",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x1ba17c639bdaecd8dc4aac37df062d17ee43a1b8": {
+    "assetId": "eip155:137/erc20:0x1ba17c639bdaecd8dc4aac37df062d17ee43a1b8",
+    "chainId": "eip155:137",
+    "name": "IX Swap on Polygon",
+    "precision": 18,
+    "color": "#313131",
+    "icon": "https://assets.coingecko.com/coins/images/18069/thumb/ixswap.PNG?1696517577",
+    "symbol": "IXS",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x1bfd67037b42cf73acf2047067bd4f2c47d9bfd6": {
+    "assetId": "eip155:137/erc20:0x1bfd67037b42cf73acf2047067bd4f2c47d9bfd6",
+    "chainId": "eip155:137",
+    "name": "Wrapped Bitcoin on Polygon",
+    "precision": 8,
+    "color": "#ECE8E6",
+    "icon": "https://assets.coingecko.com/coins/images/7598/thumb/wrapped_bitcoin_wbtc.png?1696507857",
+    "symbol": "WBTC",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x1c0a798b5a5273a9e54028eb1524fd337b24145f": {
+    "assetId": "eip155:137/erc20:0x1c0a798b5a5273a9e54028eb1524fd337b24145f",
+    "chainId": "eip155:137",
+    "name": "Loser Coin on Polygon",
+    "precision": 18,
+    "color": "#EFEED9",
+    "icon": "https://assets.coingecko.com/coins/images/15378/thumb/loser.PNG?1696515025",
+    "symbol": "LOWB",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x1c2e7118591ec1b6122e4fe3d645706a9747b10e": {
+    "assetId": "eip155:137/erc20:0x1c2e7118591ec1b6122e4fe3d645706a9747b10e",
+    "chainId": "eip155:137",
+    "name": "EsportsPro on Polygon",
+    "precision": 18,
+    "color": "#B1B2B3",
+    "icon": "https://assets.coingecko.com/coins/images/14187/thumb/logo.jpg?1696513905",
+    "symbol": "ESPRO",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x1c5ea1a050633dd9136e42ce675211116f465692": {
+    "assetId": "eip155:137/erc20:0x1c5ea1a050633dd9136e42ce675211116f465692",
+    "chainId": "eip155:137",
+    "name": "MnICorp",
+    "precision": 18,
+    "color": "#EC2324",
+    "icon": "https://assets.coingecko.com/coins/images/30411/thumb/logo-mni-2022-white-text_%281%29.png?1696529300",
+    "symbol": "MNI",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x1c954e8fe737f99f68fa1ccda3e51ebdb291948c": {
+    "assetId": "eip155:137/erc20:0x1c954e8fe737f99f68fa1ccda3e51ebdb291948c",
+    "chainId": "eip155:137",
+    "name": "Kyber Network Crystal on Polygon",
+    "precision": 18,
+    "color": "#CFF1EF",
+    "icon": "https://assets.coingecko.com/coins/images/14899/thumb/RwdVsGcw_400x400.jpg?1696514562",
+    "symbol": "KNC",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x1ce4a2c355f0dcc24e32a9af19f1836d6f4f98ae": {
+    "assetId": "eip155:137/erc20:0x1ce4a2c355f0dcc24e32a9af19f1836d6f4f98ae",
+    "chainId": "eip155:137",
+    "name": "CoinsPaid on Polygon",
+    "precision": 18,
+    "color": "#CFCEDD",
+    "icon": "https://assets.coingecko.com/coins/images/18092/thumb/coinspaid.PNG?1696517597",
+    "symbol": "CPD",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x1d2a0e5ec8e5bbdca5cb219e649b565d8e5c3360": {
+    "assetId": "eip155:137/erc20:0x1d2a0e5ec8e5bbdca5cb219e649b565d8e5c3360",
+    "chainId": "eip155:137",
+    "name": "Aave Polygon AAVE",
+    "precision": 18,
+    "color": "#907CC2",
+    "icon": "https://assets.coingecko.com/coins/images/17239/thumb/amAAVE_2x.png?1696516796",
+    "symbol": "AMAAVE",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x1d734a02ef1e1f5886e66b0673b71af5b53ffa94": {
+    "assetId": "eip155:137/erc20:0x1d734a02ef1e1f5886e66b0673b71af5b53ffa94",
+    "chainId": "eip155:137",
+    "name": "Stader on Polygon",
+    "precision": 18,
+    "color": "#080808",
+    "icon": "https://assets.coingecko.com/coins/images/20658/thumb/SD_Token_Logo.png?1696520060",
+    "symbol": "SD",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x1e2c4fb7ede391d116e6b41cd0608260e8801d59": {
+    "assetId": "eip155:137/erc20:0x1e2c4fb7ede391d116e6b41cd0608260e8801d59",
+    "chainId": "eip155:137",
+    "name": "Backed CSPX Core S P 500 on Polygon",
+    "precision": 18,
+    "color": "#CCCCD2",
+    "icon": "https://assets.coingecko.com/coins/images/31891/thumb/b-CSPX-200x200.png?1696530702",
+    "symbol": "BCSPX",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x1e3c6c53f9f60bf8aae0d7774c21fa6b1afddc57": {
+    "assetId": "eip155:137/erc20:0x1e3c6c53f9f60bf8aae0d7774c21fa6b1afddc57",
+    "chainId": "eip155:137",
+    "name": "xShrap on Polygon",
+    "precision": 18,
+    "color": "#0474E2",
+    "icon": "https://assets.coingecko.com/coins/images/29346/thumb/xshrapnel.png?1696528295",
+    "symbol": "XSHRAP",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x1e553688199d99d063c0300a12395f7cfedb03e1": {
+    "assetId": "eip155:137/erc20:0x1e553688199d99d063c0300a12395f7cfedb03e1",
+    "chainId": "eip155:137",
+    "name": "REDANCOIN on Polygon",
+    "precision": 8,
+    "color": "#245C94",
+    "icon": "https://assets.coingecko.com/coins/images/8292/thumb/REDAN.png?1696508493",
+    "symbol": "REDAN",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x1ed02954d60ba14e26c230eec40cbac55fa3aeea": {
+    "assetId": "eip155:137/erc20:0x1ed02954d60ba14e26c230eec40cbac55fa3aeea",
+    "chainId": "eip155:137",
+    "name": "MakerX",
+    "precision": 18,
+    "color": "#07FA65",
+    "icon": "https://assets.coingecko.com/coins/images/32152/thumb/TokenMakerX.png?1696598199",
+    "symbol": "MKX",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x1fa2f83ba2df61c3d370071d61b17be01e224f3a": {
+    "assetId": "eip155:137/erc20:0x1fa2f83ba2df61c3d370071d61b17be01e224f3a",
+    "chainId": "eip155:137",
+    "name": "Hive Investments HONEY",
+    "precision": 18,
+    "color": "#DABA47",
+    "icon": "https://assets.coingecko.com/coins/images/24797/thumb/hny.png?1696523956",
+    "symbol": "HNY",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x1fd6cf265fd3428f655378a803658942095b4c4e": {
+    "assetId": "eip155:137/erc20:0x1fd6cf265fd3428f655378a803658942095b4c4e",
+    "chainId": "eip155:137",
+    "name": "PolyYeld",
+    "precision": 18,
+    "color": "#F8EEF8",
+    "icon": "https://assets.coingecko.com/coins/images/16401/thumb/pxSN2UtB_400x400.jpg?1696515998",
+    "symbol": "YELD",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x200c234721b5e549c3693ccc93cf191f90dc2af9": {
+    "assetId": "eip155:137/erc20:0x200c234721b5e549c3693ccc93cf191f90dc2af9",
+    "chainId": "eip155:137",
+    "name": "Drunk Robots on Polygon",
+    "precision": 18,
+    "color": "#B6B6B6",
+    "icon": "https://assets.coingecko.com/coins/images/24376/thumb/metal.png?1696523559",
+    "symbol": "METAL",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x202655af326de310491cb54f120e02ee0da92b55": {
+    "assetId": "eip155:137/erc20:0x202655af326de310491cb54f120e02ee0da92b55",
+    "chainId": "eip155:137",
+    "name": "Creta World",
+    "precision": 18,
+    "color": "#2A68AC",
+    "icon": "https://assets.coingecko.com/coins/images/29129/thumb/colour_icon.png?1696528090",
+    "symbol": "CRETA",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x204820b6e6feae805e376d2c6837446186e57981": {
+    "assetId": "eip155:137/erc20:0x204820b6e6feae805e376d2c6837446186e57981",
+    "chainId": "eip155:137",
+    "name": "ROND",
+    "precision": 18,
+    "color": "#A5A4A4",
+    "icon": "https://assets.coingecko.com/coins/images/27601/thumb/rond.png?1696526632",
+    "symbol": "ROND",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x2075828cdedc356b5358d79cfd314548842e4a2e": {
+    "assetId": "eip155:137/erc20:0x2075828cdedc356b5358d79cfd314548842e4a2e",
+    "chainId": "eip155:137",
+    "name": "BlockChainCoinX on Polygon",
+    "precision": 6,
+    "color": "#D6D6D6",
+    "icon": "https://assets.coingecko.com/coins/images/32276/thumb/xccxx.png?1697180263",
+    "symbol": "XCCX",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x20c64dee8fda5269a78f2d5bdba861ca1d83df7a": {
+    "assetId": "eip155:137/erc20:0x20c64dee8fda5269a78f2d5bdba861ca1d83df7a",
+    "chainId": "eip155:137",
+    "name": "Backed HIGH   High Yield Corp Bond on Polygon",
+    "precision": 18,
+    "color": "#474C57",
+    "icon": "https://assets.coingecko.com/coins/images/31868/thumb/b-HIGH-200x200.png?1696530680",
+    "symbol": "BHIGH",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x20c750c57c3bc5145af4b7a33d4fb66a8e79fe05": {
+    "assetId": "eip155:137/erc20:0x20c750c57c3bc5145af4b7a33d4fb66a8e79fe05",
+    "chainId": "eip155:137",
+    "name": "Orbcity on Polygon",
+    "precision": 18,
+    "color": "#9DC4DA",
+    "icon": "https://assets.coingecko.com/coins/images/24332/thumb/OrbCity_enlarged.jpg?1696523517",
+    "symbol": "ORB",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x211f4e76fcb811ed2b310a232a24b3445d95e3bc": {
+    "assetId": "eip155:137/erc20:0x211f4e76fcb811ed2b310a232a24b3445d95e3bc",
+    "chainId": "eip155:137",
+    "name": "Matrix Labs on Polygon",
+    "precision": 18,
+    "color": "#047459",
+    "icon": "https://assets.coingecko.com/coins/images/18297/thumb/matrixlabs.png?1696517789",
+    "symbol": "MATRIX",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x218645f85ff27fc456ef46c3cdacbf5c40b2f9e8": {
+    "assetId": "eip155:137/erc20:0x218645f85ff27fc456ef46c3cdacbf5c40b2f9e8",
+    "chainId": "eip155:137",
+    "name": "Joystick club",
+    "precision": 18,
+    "color": "#8344FB",
+    "icon": "https://assets.coingecko.com/coins/images/21473/thumb/android-chrome-192x192.png?1696520834",
+    "symbol": "JOY",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x21a77520d0a25eede18a34ad4bc7a769d785c6ff": {
+    "assetId": "eip155:137/erc20:0x21a77520d0a25eede18a34ad4bc7a769d785c6ff",
+    "chainId": "eip155:137",
+    "name": "Stars",
+    "precision": 18,
+    "color": "#64B0BB",
+    "icon": "https://assets.coingecko.com/coins/images/31157/thumb/Stars.jpg?1696529985",
+    "symbol": "SRX",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x21ce5251d47aa72d2d1dc849b1bcce14d2467d1b": {
+    "assetId": "eip155:137/erc20:0x21ce5251d47aa72d2d1dc849b1bcce14d2467d1b",
+    "chainId": "eip155:137",
+    "name": "Unicly on Polygon",
+    "precision": 18,
+    "color": "#14323B",
+    "icon": "https://assets.coingecko.com/coins/images/14720/thumb/Unicly.png?1696514390",
+    "symbol": "UNIC",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x21fdb8e43d84420afbd6351d645f50c9138daae0": {
+    "assetId": "eip155:137/erc20:0x21fdb8e43d84420afbd6351d645f50c9138daae0",
+    "chainId": "eip155:137",
+    "name": "EcoCREDIT",
+    "precision": 18,
+    "color": "#DBF6EC",
+    "icon": "https://assets.coingecko.com/coins/images/23363/thumb/Eco-CREDIT-Logo.png?1696522578",
+    "symbol": "ECO",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x221743dc9e954be4f86844649bf19b43d6f8366d": {
+    "assetId": "eip155:137/erc20:0x221743dc9e954be4f86844649bf19b43d6f8366d",
+    "chainId": "eip155:137",
+    "name": "Obortech on Polygon",
+    "precision": 18,
+    "color": "#EC1A22",
+    "icon": "https://assets.coingecko.com/coins/images/14929/thumb/OBORTECH_200.png?1696514590",
+    "symbol": "OBOT",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x2237c1299473b80c5f482e4974d8a0ecc318f775": {
+    "assetId": "eip155:137/erc20:0x2237c1299473b80c5f482e4974d8a0ecc318f775",
+    "chainId": "eip155:137",
+    "name": "Miracle Play",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/32653/thumb/MPT.png?1698895300",
+    "symbol": "MPT",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x228b5c21ac00155cf62c57bcc704c0da8187950b": {
+    "assetId": "eip155:137/erc20:0x228b5c21ac00155cf62c57bcc704c0da8187950b",
+    "chainId": "eip155:137",
+    "name": "Nexus Dubai",
+    "precision": 18,
+    "color": "#C8C595",
+    "icon": "https://assets.coingecko.com/coins/images/23414/thumb/nexus.PNG?1696522627",
+    "symbol": "NXD",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x229b1b6c23ff8953d663c4cbb519717e323a0a84": {
+    "assetId": "eip155:137/erc20:0x229b1b6c23ff8953d663c4cbb519717e323a0a84",
+    "chainId": "eip155:137",
+    "name": "Bloktopia",
+    "precision": 18,
+    "color": "#242B47",
+    "icon": "https://assets.coingecko.com/coins/images/18819/thumb/logo-bholdus-6.png?1696518281",
+    "symbol": "BLOK",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x22e3f02f86bc8ea0d73718a2ae8851854e62adc5": {
+    "assetId": "eip155:137/erc20:0x22e3f02f86bc8ea0d73718a2ae8851854e62adc5",
+    "chainId": "eip155:137",
+    "name": "FireStarter",
+    "precision": 18,
+    "color": "#2C2C2C",
+    "icon": "https://assets.coingecko.com/coins/images/17359/thumb/WhiteOnBlack_Primary_Logo.png?1696516910",
+    "symbol": "FLAME",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x22f991e509102ed4c2babd82424c46bd3d203bd3": {
+    "assetId": "eip155:137/erc20:0x22f991e509102ed4c2babd82424c46bd3d203bd3",
+    "chainId": "eip155:137",
+    "name": "Map Node",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/33013/thumb/logo_mapnode.png?1700124539",
+    "symbol": "MNI",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x23001f892c0c82b79303edc9b9033cd190bb21c7": {
+    "assetId": "eip155:137/erc20:0x23001f892c0c82b79303edc9b9033cd190bb21c7",
+    "chainId": "eip155:137",
+    "name": "Liquity USD on Polygon",
+    "precision": 18,
+    "color": "#30B5EC",
+    "icon": "https://assets.coingecko.com/coins/images/14666/thumb/Group_3.png?1696514341",
+    "symbol": "LUSD",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x232804231de32551f13a57aa3984900428adf990": {
+    "assetId": "eip155:137/erc20:0x232804231de32551f13a57aa3984900428adf990",
+    "chainId": "eip155:137",
+    "name": "ZURF",
+    "precision": 18,
+    "color": "#292C2C",
+    "icon": "https://assets.coingecko.com/coins/images/32443/thumb/Zurf_logo.png?1698238062",
+    "symbol": "ZRF",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x235737dbb56e8517391473f7c964db31fa6ef280": {
+    "assetId": "eip155:137/erc20:0x235737dbb56e8517391473f7c964db31fa6ef280",
+    "chainId": "eip155:137",
+    "name": "Kasta",
+    "precision": 18,
+    "color": "#C4A9FA",
+    "icon": "https://assets.coingecko.com/coins/images/22293/thumb/Kasta.png?1696521639",
+    "symbol": "KASTA",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x236aa50979d5f3de3bd1eeb40e81137f22ab794b": {
+    "assetId": "eip155:137/erc20:0x236aa50979d5f3de3bd1eeb40e81137f22ab794b",
+    "chainId": "eip155:137",
+    "name": "tBTC on Polygon",
+    "precision": 18,
+    "color": "#A9A9AA",
+    "icon": "https://assets.coingecko.com/coins/images/11224/thumb/0x18084fba666a33d37592fa2633fd49a74dd93a88.png?1696511155",
+    "symbol": "TBTC",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x23d29d30e35c5e8d321e1dc9a8a61bfd846d4c5c": {
+    "assetId": "eip155:137/erc20:0x23d29d30e35c5e8d321e1dc9a8a61bfd846d4c5c",
+    "chainId": "eip155:137",
+    "name": "HEX on Polygon",
+    "precision": 8,
+    "color": "#FC5951",
+    "icon": "https://assets.coingecko.com/coins/images/10103/thumb/HEX-logo.png?1696510130",
+    "symbol": "HEX",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x23e8b6a3f6891254988b84da3738d2bfe5e703b9": {
+    "assetId": "eip155:137/erc20:0x23e8b6a3f6891254988b84da3738d2bfe5e703b9",
+    "chainId": "eip155:137",
+    "name": "Fabwelt on Polygon",
+    "precision": 18,
+    "color": "#BD53A9",
+    "icon": "https://assets.coingecko.com/coins/images/20505/thumb/welt.PNG?1696519911",
+    "symbol": "WELT",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x23f07a1c03e7c6d0c88e0e05e79b6e3511073fd5": {
+    "assetId": "eip155:137/erc20:0x23f07a1c03e7c6d0c88e0e05e79b6e3511073fd5",
+    "chainId": "eip155:137",
+    "name": "Crypto Development Services on Polygon",
+    "precision": 8,
+    "color": "#996818",
+    "icon": "https://assets.coingecko.com/coins/images/21304/thumb/JhUZ3Rk.png?1696520673",
+    "symbol": "CDS",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x245e5ddb65efea6522fa913229df1f4957fb2e21": {
+    "assetId": "eip155:137/erc20:0x245e5ddb65efea6522fa913229df1f4957fb2e21",
+    "chainId": "eip155:137",
+    "name": "LoserChick EGG",
+    "precision": 18,
+    "color": "#BC7C38",
+    "icon": "https://assets.coingecko.com/coins/images/17574/thumb/lRAQ2MOTpWqrHhI.png?1696517109",
+    "symbol": "EGG",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x24834bbec7e39ef42f4a75eaf8e5b6486d3f0e57": {
+    "assetId": "eip155:137/erc20:0x24834bbec7e39ef42f4a75eaf8e5b6486d3f0e57",
+    "chainId": "eip155:137",
+    "name": "Wrapped Terra Classic on Polygon",
+    "precision": 18,
+    "color": "#FCDC5C",
+    "icon": "https://assets.coingecko.com/coins/images/13628/thumb/wluna.png?1696513376",
+    "symbol": "LUNC",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x24878dfb65693f975d825e157a0685aec2300ad8": {
+    "assetId": "eip155:137/erc20:0x24878dfb65693f975d825e157a0685aec2300ad8",
+    "chainId": "eip155:137",
+    "name": "Chainers",
+    "precision": 18,
+    "color": "#EBBB3C",
+    "icon": "https://assets.coingecko.com/coins/images/32480/thumb/opt_3.png?1698287115",
+    "symbol": "CHU",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x255707b70bf90aa112006e1b07b9aea6de021424": {
+    "assetId": "eip155:137/erc20:0x255707b70bf90aa112006e1b07b9aea6de021424",
+    "chainId": "eip155:137",
+    "name": "TETU",
+    "precision": 18,
+    "color": "#5B5B9C",
+    "icon": "https://assets.coingecko.com/coins/images/17882/thumb/gradient_icon_926.png?1696517403",
+    "symbol": "TETU",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x25788a1a171ec66da6502f9975a15b609ff54cf6": {
+    "assetId": "eip155:137/erc20:0x25788a1a171ec66da6502f9975a15b609ff54cf6",
+    "chainId": "eip155:137",
+    "name": "PoolTogether on Polygon",
+    "precision": 18,
+    "color": "#5B32BD",
+    "icon": "https://assets.coingecko.com/coins/images/14003/thumb/PoolTogether.png?1696513732",
+    "symbol": "POOL",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x25c498781ca536547b147e2199f572e5393d36f0": {
+    "assetId": "eip155:137/erc20:0x25c498781ca536547b147e2199f572e5393d36f0",
+    "chainId": "eip155:137",
+    "name": "AirTnT",
+    "precision": 18,
+    "color": "#DF8767",
+    "icon": "https://assets.coingecko.com/coins/images/28328/thumb/airtnt.png?1696527335",
+    "symbol": "AIRTNT",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x2627c26b33f5193da4adfb26df60202479ccd2d3": {
+    "assetId": "eip155:137/erc20:0x2627c26b33f5193da4adfb26df60202479ccd2d3",
+    "chainId": "eip155:137",
+    "name": "Crypto Gladiator League",
+    "precision": 18,
+    "color": "#96A9B3",
+    "icon": "https://assets.coingecko.com/coins/images/18291/thumb/Scalable.png?1696517783",
+    "symbol": "CGL",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x262b8aa7542004f023b0eb02bc6b96350a02b728": {
+    "assetId": "eip155:137/erc20:0x262b8aa7542004f023b0eb02bc6b96350a02b728",
+    "chainId": "eip155:137",
+    "name": "Sway Social",
+    "precision": 18,
+    "color": "#4414E4",
+    "icon": "https://assets.coingecko.com/coins/images/18915/thumb/sway.png?1696518372",
+    "symbol": "SWAY",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x26373ec913876c9e6d38494dde458cb8649cb30c": {
+    "assetId": "eip155:137/erc20:0x26373ec913876c9e6d38494dde458cb8649cb30c",
+    "chainId": "eip155:137",
+    "name": "Ojamu on Polygon",
+    "precision": 18,
+    "color": "#E40C7C",
+    "icon": "https://assets.coingecko.com/coins/images/18947/thumb/ojamu-icon-PNK.png?1696518402",
+    "symbol": "OJA",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x26c80854c36ff62bba7414a358c8c23bbb8dec39": {
+    "assetId": "eip155:137/erc20:0x26c80854c36ff62bba7414a358c8c23bbb8dec39",
+    "chainId": "eip155:137",
+    "name": "CheckDot on Polygon",
+    "precision": 18,
+    "color": "#3CEC94",
+    "icon": "https://assets.coingecko.com/coins/images/20370/thumb/token-200x200_%281%29.png?1696519781",
+    "symbol": "CDT",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x2727ab1c2d22170abc9b595177b2d5c6e1ab7b7b": {
+    "assetId": "eip155:137/erc20:0x2727ab1c2d22170abc9b595177b2d5c6e1ab7b7b",
+    "chainId": "eip155:137",
+    "name": "Cartesi on Polygon",
+    "precision": 18,
+    "color": "#AEAEAE",
+    "icon": "https://assets.coingecko.com/coins/images/11038/thumb/Cartesi_Logo.png?1696510982",
+    "symbol": "CTSI",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x2760e46d9bb43dafcbecaad1f64b93207f9f0ed7": {
+    "assetId": "eip155:137/erc20:0x2760e46d9bb43dafcbecaad1f64b93207f9f0ed7",
+    "chainId": "eip155:137",
+    "name": "Metavault Trade",
+    "precision": 18,
+    "color": "#402A8A",
+    "icon": "https://assets.coingecko.com/coins/images/25402/thumb/mvx.png?1696524534",
+    "symbol": "MVX",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x27842334c55c01ddfe81bf687425f906816c5141": {
+    "assetId": "eip155:137/erc20:0x27842334c55c01ddfe81bf687425f906816c5141",
+    "chainId": "eip155:137",
+    "name": "Veloce on Polygon",
+    "precision": 18,
+    "color": "#E7EBF4",
+    "icon": "https://assets.coingecko.com/coins/images/31214/thumb/VEXT_Logo.jpg?1696530041",
+    "symbol": "VEXT",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x2791bca1f2de4661ed88a30c99a7a9449aa84174": {
+    "assetId": "eip155:137/erc20:0x2791bca1f2de4661ed88a30c99a7a9449aa84174",
+    "chainId": "eip155:137",
+    "name": "Bridged USDC  Polygon PoS Bridge ",
+    "precision": 6,
+    "color": "#2E7ACD",
+    "icon": "https://assets.coingecko.com/coins/images/33000/thumb/usdc.png?1700119918",
+    "symbol": "USDCE",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x27ab6e82f3458edbc0703db2756391b899ce6324": {
+    "assetId": "eip155:137/erc20:0x27ab6e82f3458edbc0703db2756391b899ce6324",
+    "chainId": "eip155:137",
+    "name": "Reental",
+    "precision": 18,
+    "color": "#2D3D65",
+    "icon": "https://assets.coingecko.com/coins/images/32508/thumb/RNT-crypto-icon_1.png?1698397364",
+    "symbol": "RNT",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x27f8d03b3a2196956ed754badc28d73be8830a6e": {
+    "assetId": "eip155:137/erc20:0x27f8d03b3a2196956ed754badc28d73be8830a6e",
+    "chainId": "eip155:137",
+    "name": "Aave Polygon DAI",
+    "precision": 18,
+    "color": "#FCB62D",
+    "icon": "https://assets.coingecko.com/coins/images/17251/thumb/amDAI_2x.png?1696516807",
+    "symbol": "AMDAI",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x281c4746c902a322b9a951f07893ac51a7221acc": {
+    "assetId": "eip155:137/erc20:0x281c4746c902a322b9a951f07893ac51a7221acc",
+    "chainId": "eip155:137",
+    "name": "Staked Ethos Reserve Note on Polygon",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/31522/thumb/stERN.png?1696530332",
+    "symbol": "STERN",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x282d8efce846a88b159800bd4130ad77443fa1a1": {
+    "assetId": "eip155:137/erc20:0x282d8efce846a88b159800bd4130ad77443fa1a1",
+    "chainId": "eip155:137",
+    "name": "Ocean Protocol on Polygon",
+    "precision": 18,
+    "color": "#E9E9E9",
+    "icon": "https://assets.coingecko.com/coins/images/3687/thumb/ocean-protocol-logo.jpg?1696504363",
+    "symbol": "OCEAN",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x28424507fefb6f7f8e9d3860f56504e4e5f5f390": {
+    "assetId": "eip155:137/erc20:0x28424507fefb6f7f8e9d3860f56504e4e5f5f390",
+    "chainId": "eip155:137",
+    "name": "Aave Polygon WETH",
+    "precision": 18,
+    "color": "#7D7FBE",
+    "icon": "https://assets.coingecko.com/coins/images/17266/thumb/amWETH_2x.png?1696516821",
+    "symbol": "AMWETH",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x2934b36ca9a4b31e633c5be670c8c8b28b6aa015": {
+    "assetId": "eip155:137/erc20:0x2934b36ca9a4b31e633c5be670c8c8b28b6aa015",
+    "chainId": "eip155:137",
+    "name": "THX Network on Polygon",
+    "precision": 18,
+    "color": "#FAE314",
+    "icon": "https://assets.coingecko.com/coins/images/21323/thumb/logo-thx-resized-200-200.png?1696520690",
+    "symbol": "THX",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x29e3e6ad4eeadf767919099ee23c907946435a70": {
+    "assetId": "eip155:137/erc20:0x29e3e6ad4eeadf767919099ee23c907946435a70",
+    "chainId": "eip155:137",
+    "name": "Thunder Lands",
+    "precision": 18,
+    "color": "#1E2739",
+    "icon": "https://assets.coingecko.com/coins/images/26488/thumb/logo_v3.png?1696525561",
+    "symbol": "TNDR",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x2a07461a493b994c2a32f549fd185524f306ab38": {
+    "assetId": "eip155:137/erc20:0x2a07461a493b994c2a32f549fd185524f306ab38",
+    "chainId": "eip155:137",
+    "name": "Aree Shards",
+    "precision": 18,
+    "color": "#E27D49",
+    "icon": "https://assets.coingecko.com/coins/images/27231/thumb/AES_TICKER_200.png?1696526282",
+    "symbol": "AES",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x2a93172c8dccbfbc60a39d56183b7279a2f647b4": {
+    "assetId": "eip155:137/erc20:0x2a93172c8dccbfbc60a39d56183b7279a2f647b4",
+    "chainId": "eip155:137",
+    "name": "Decentral Games  Old  on Polygon",
+    "precision": 18,
+    "color": "#076CF7",
+    "icon": "https://assets.coingecko.com/coins/images/13267/thumb/%28Old%29_DG.png?1696513041",
+    "symbol": "DG",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x2ab0e9e4ee70fff1fb9d67031e44f6410170d00e": {
+    "assetId": "eip155:137/erc20:0x2ab0e9e4ee70fff1fb9d67031e44f6410170d00e",
+    "chainId": "eip155:137",
+    "name": "Xen Crypto  MATIC ",
+    "precision": 18,
+    "color": "#C4C4C4",
+    "icon": "https://assets.coingecko.com/coins/images/30005/thumb/1_uMvUPqIbGBqjBL6GfZpp3g.jpg?1696528930",
+    "symbol": "MXEN",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x2ab4f9ac80f33071211729e45cfc346c1f8446d5": {
+    "assetId": "eip155:137/erc20:0x2ab4f9ac80f33071211729e45cfc346c1f8446d5",
+    "chainId": "eip155:137",
+    "name": "Chain Guardians on Polygon",
+    "precision": 18,
+    "color": "#242628",
+    "icon": "https://assets.coingecko.com/coins/images/14326/thumb/cgg_logo.png?1696514015",
+    "symbol": "CGG",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x2b3b16826719bf0b494c8ddebaa5e882093ee37e": {
+    "assetId": "eip155:137/erc20:0x2b3b16826719bf0b494c8ddebaa5e882093ee37e",
+    "chainId": "eip155:137",
+    "name": "FibSwap DEX",
+    "precision": 18,
+    "color": "#20ACE6",
+    "icon": "https://assets.coingecko.com/coins/images/17306/thumb/coingeckofile.png?1696516859",
+    "symbol": "FIBO",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x2b88ad57897a8b496595925f43048301c37615da": {
+    "assetId": "eip155:137/erc20:0x2b88ad57897a8b496595925f43048301c37615da",
+    "chainId": "eip155:137",
+    "name": "Pickle Finance on Polygon",
+    "precision": 18,
+    "color": "#49BF4B",
+    "icon": "https://assets.coingecko.com/coins/images/12435/thumb/0M4W6Yr6_400x400.jpg?1696512255",
+    "symbol": "PICKLE",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x2b9e7ccdf0f4e5b24757c1e1a80e311e34cb10c7": {
+    "assetId": "eip155:137/erc20:0x2b9e7ccdf0f4e5b24757c1e1a80e311e34cb10c7",
+    "chainId": "eip155:137",
+    "name": "Mask Network on Polygon",
+    "precision": 18,
+    "color": "#285FD8",
+    "icon": "https://assets.coingecko.com/coins/images/14051/thumb/Mask_Network.jpg?1696513776",
+    "symbol": "MASK",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x2bc07124d8dac638e290f401046ad584546bc47b": {
+    "assetId": "eip155:137/erc20:0x2bc07124d8dac638e290f401046ad584546bc47b",
+    "chainId": "eip155:137",
+    "name": "Tower on Polygon",
+    "precision": 18,
+    "color": "#403D3F",
+    "icon": "https://assets.coingecko.com/coins/images/14134/thumb/tower-circular-1000.png?1696513854",
+    "symbol": "TOWER",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x2bf9b864cdc97b08b6d79ad4663e71b8ab65c45c": {
+    "assetId": "eip155:137/erc20:0x2bf9b864cdc97b08b6d79ad4663e71b8ab65c45c",
+    "chainId": "eip155:137",
+    "name": "FUSION on Polygon",
+    "precision": 18,
+    "color": "#263C62",
+    "icon": "https://assets.coingecko.com/coins/images/2515/thumb/Fusion_200x200.png?1696503329",
+    "symbol": "FSN",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x2c2d8a078b33bf7782a16acce2c5ba6653a90d5f": {
+    "assetId": "eip155:137/erc20:0x2c2d8a078b33bf7782a16acce2c5ba6653a90d5f",
+    "chainId": "eip155:137",
+    "name": "L3USD on Polygon",
+    "precision": 18,
+    "color": "#247B61",
+    "icon": "https://assets.coingecko.com/coins/images/26937/thumb/L3USD.png?1696525993",
+    "symbol": "L3USD",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x2c826035c1c36986117a0e949bd6ad4bab54afe2": {
+    "assetId": "eip155:137/erc20:0x2c826035c1c36986117a0e949bd6ad4bab54afe2",
+    "chainId": "eip155:137",
+    "name": "XIDR on Polygon",
+    "precision": 6,
+    "color": "#F41414",
+    "icon": "https://assets.coingecko.com/coins/images/21126/thumb/XIDR_Logo_256_X_256.png?1696520505",
+    "symbol": "XIDR",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x2c89bbc92bd86f8075d1decc58c7f4e0107f286b": {
+    "assetId": "eip155:137/erc20:0x2c89bbc92bd86f8075d1decc58c7f4e0107f286b",
+    "chainId": "eip155:137",
+    "name": "Wrapped AVAX on Polygon",
+    "precision": 18,
+    "color": "#EC5C5C",
+    "icon": "https://assets.coingecko.com/coins/images/15075/thumb/wrapped-avax.png?1696514734",
+    "symbol": "WAVAX",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x2c92a8a41f4b806a6f6f1f7c9d9dec78dcd8c18e": {
+    "assetId": "eip155:137/erc20:0x2c92a8a41f4b806a6f6f1f7c9d9dec78dcd8c18e",
+    "chainId": "eip155:137",
+    "name": "99Starz on Polygon",
+    "precision": 18,
+    "color": "#BA1E1E",
+    "icon": "https://assets.coingecko.com/coins/images/21467/thumb/stz.png?1696520828",
+    "symbol": "STZ",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x2ce13e4199443fdfff531abb30c9b6594446bbc7": {
+    "assetId": "eip155:137/erc20:0x2ce13e4199443fdfff531abb30c9b6594446bbc7",
+    "chainId": "eip155:137",
+    "name": "RocketX exchange on Polygon",
+    "precision": 18,
+    "color": "#861FDD",
+    "icon": "https://assets.coingecko.com/coins/images/14728/thumb/avatar-correct-size-official.png?1696514397",
+    "symbol": "RVF",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x2d027e55b85429e9f205930a8aff6d8e6c8c3021": {
+    "assetId": "eip155:137/erc20:0x2d027e55b85429e9f205930a8aff6d8e6c8c3021",
+    "chainId": "eip155:137",
+    "name": "RAYS",
+    "precision": 18,
+    "color": "#FCE66D",
+    "icon": "https://assets.coingecko.com/coins/images/26609/thumb/mch_rays_200.png?1696525683",
+    "symbol": "RAYS",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x2db0db271a10661e7090b6758350e18f6798a49d": {
+    "assetId": "eip155:137/erc20:0x2db0db271a10661e7090b6758350e18f6798a49d",
+    "chainId": "eip155:137",
+    "name": "Mobius Finance",
+    "precision": 18,
+    "color": "#B19CF6",
+    "icon": "https://assets.coingecko.com/coins/images/18144/thumb/11322.png?1696517647",
+    "symbol": "MOT",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x2df54842cd85c60f21b4871e09bcc6047b2dcc4d": {
+    "assetId": "eip155:137/erc20:0x2df54842cd85c60f21b4871e09bcc6047b2dcc4d",
+    "chainId": "eip155:137",
+    "name": "Immortl  OLD  on Polygon",
+    "precision": 18,
+    "color": "#18160F",
+    "icon": "https://assets.coingecko.com/coins/images/21983/thumb/ONE.png?1696521331",
+    "symbol": "IMRTL",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x2e1ad108ff1d8c782fcbbb89aad783ac49586756": {
+    "assetId": "eip155:137/erc20:0x2e1ad108ff1d8c782fcbbb89aad783ac49586756",
+    "chainId": "eip155:137",
+    "name": "Bridged TrueUSD on Polygon",
+    "precision": 18,
+    "color": "#1C5BFC",
+    "icon": "https://assets.coingecko.com/coins/images/30837/thumb/tusd.jpeg?1696529695",
+    "symbol": "TUSD",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x2e2992688ee4b2b7229118f2f4cfd9b8ab13c520": {
+    "assetId": "eip155:137/erc20:0x2e2992688ee4b2b7229118f2f4cfd9b8ab13c520",
+    "chainId": "eip155:137",
+    "name": "EraApe",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/33130/thumb/eraape.logo.png?1700796461",
+    "symbol": "EAPE",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x2e6978ceea865948f4c5685e35aec72652e3cb88": {
+    "assetId": "eip155:137/erc20:0x2e6978ceea865948f4c5685e35aec72652e3cb88",
+    "chainId": "eip155:137",
+    "name": "tPLATINUM on Polygon",
+    "precision": 18,
+    "color": "#525353",
+    "icon": "https://assets.coingecko.com/coins/images/27830/thumb/tPLATINUM_%28TXPT%29_Token.png?1696526849",
+    "symbol": "TXPT",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x2ebd50ae084e71eed419cb6c620b3bbd3927bf7e": {
+    "assetId": "eip155:137/erc20:0x2ebd50ae084e71eed419cb6c620b3bbd3927bf7e",
+    "chainId": "eip155:137",
+    "name": "Moon Rabbit on Polygon",
+    "precision": 18,
+    "color": "#E9E5B2",
+    "icon": "https://assets.coingecko.com/coins/images/17310/thumb/logo_moon_no_inscriptions-01.png?1696516863",
+    "symbol": "AAA",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x2f11eeee0bf21e7661a22dbbbb9068f4ad191b86": {
+    "assetId": "eip155:137/erc20:0x2f11eeee0bf21e7661a22dbbbb9068f4ad191b86",
+    "chainId": "eip155:137",
+    "name": "Backed NIU Technologies on Polygon",
+    "precision": 18,
+    "color": "#EC8898",
+    "icon": "https://assets.coingecko.com/coins/images/31869/thumb/b-NIU-200x200.png?1696530681",
+    "symbol": "BNIU",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x2f123cf3f37ce3328cc9b5b8415f9ec5109b45e7": {
+    "assetId": "eip155:137/erc20:0x2f123cf3f37ce3328cc9b5b8415f9ec5109b45e7",
+    "chainId": "eip155:137",
+    "name": "Backed GOVIES 0 6 months EURO on Polygon",
+    "precision": 18,
+    "color": "#ADB4B6",
+    "icon": "https://assets.coingecko.com/coins/images/31870/thumb/b-C3-M-200x200.png?1696530682",
+    "symbol": "BC3M",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x2f1b1662a895c6ba01a99dcaf56778e7d77e5609": {
+    "assetId": "eip155:137/erc20:0x2f1b1662a895c6ba01a99dcaf56778e7d77e5609",
+    "chainId": "eip155:137",
+    "name": "SpiceUSD on Polygon",
+    "precision": 18,
+    "color": "#5CBC5C",
+    "icon": "https://assets.coingecko.com/coins/images/25697/thumb/USDS.png?1696524824",
+    "symbol": "USDS",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x2f3e306d9f02ee8e8850f9040404918d0b345207": {
+    "assetId": "eip155:137/erc20:0x2f3e306d9f02ee8e8850f9040404918d0b345207",
+    "chainId": "eip155:137",
+    "name": "Dogami",
+    "precision": 5,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/24510/thumb/doga_logo.png?1696523689",
+    "symbol": "DOGA",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x2f5de51823e514de04475ba8db1eeba5b244ba84": {
+    "assetId": "eip155:137/erc20:0x2f5de51823e514de04475ba8db1eeba5b244ba84",
+    "chainId": "eip155:137",
+    "name": "Token Teknoloji A    USD on Polygon",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/32817/thumb/usdot.png?1699579447",
+    "symbol": "USDOT",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x2f6f07cdcf3588944bf4c42ac74ff24bf56e7590": {
+    "assetId": "eip155:137/erc20:0x2f6f07cdcf3588944bf4c42ac74ff24bf56e7590",
+    "chainId": "eip155:137",
+    "name": "Stargate Finance on Polygon",
+    "precision": 18,
+    "color": "#8C8C8C",
+    "icon": "https://assets.coingecko.com/coins/images/24413/thumb/STG_LOGO.png?1696523595",
+    "symbol": "STG",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x2f800db0fdb5223b3c3f354886d907a671414a7f": {
+    "assetId": "eip155:137/erc20:0x2f800db0fdb5223b3c3f354886d907a671414a7f",
+    "chainId": "eip155:137",
+    "name": "Toucan Protocol  Base Carbon Tonne",
+    "precision": 18,
+    "color": "#1DD59C",
+    "icon": "https://assets.coingecko.com/coins/images/19240/thumb/bct_exchange_enhanced.png?1696518686",
+    "symbol": "BCT",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x2fd4d793c1905d82018d75e3b09d3035856890a1": {
+    "assetId": "eip155:137/erc20:0x2fd4d793c1905d82018d75e3b09d3035856890a1",
+    "chainId": "eip155:137",
+    "name": "Spherium on Polygon",
+    "precision": 18,
+    "color": "#3F59F1",
+    "icon": "https://assets.coingecko.com/coins/images/17787/thumb/Group_15.png?1696517311",
+    "symbol": "SPHRI",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x2fe8733dcb25bfbba79292294347415417510067": {
+    "assetId": "eip155:137/erc20:0x2fe8733dcb25bfbba79292294347415417510067",
+    "chainId": "eip155:137",
+    "name": "Exeedme on Polygon",
+    "precision": 18,
+    "color": "#04FC04",
+    "icon": "https://assets.coingecko.com/coins/images/13518/thumb/exeedme.png?1696513279",
+    "symbol": "XED",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x300211def2a644b036a9bdd3e58159bb2074d388": {
+    "assetId": "eip155:137/erc20:0x300211def2a644b036a9bdd3e58159bb2074d388",
+    "chainId": "eip155:137",
+    "name": "Crosschain IOTX on Polygon",
+    "precision": 18,
+    "color": "#CCCDD0",
+    "icon": "https://assets.coingecko.com/coins/images/18331/thumb/iotx.PNG?1696517822",
+    "symbol": "CIOTX",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x301595f6fd5f69fad7a488dacb8971e7c0c2f559": {
+    "assetId": "eip155:137/erc20:0x301595f6fd5f69fad7a488dacb8971e7c0c2f559",
+    "chainId": "eip155:137",
+    "name": "Wrapped ThunderPOKT",
+    "precision": 12,
+    "color": "#17A3C4",
+    "icon": "https://assets.coingecko.com/coins/images/24835/thumb/vjCQH6sw.jpg?1696523992",
+    "symbol": "WTPOKT",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x304243a820d4a3718becc89a3f33513586162cf0": {
+    "assetId": "eip155:137/erc20:0x304243a820d4a3718becc89a3f33513586162cf0",
+    "chainId": "eip155:137",
+    "name": "Cri3x",
+    "precision": 18,
+    "color": "#D853C0",
+    "icon": "https://assets.coingecko.com/coins/images/29944/thumb/200x200_logo.png?1696528871",
+    "symbol": "CRI3X",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x3050731a7ab18d05eaa5e01d66df33e04444e72c": {
+    "assetId": "eip155:137/erc20:0x3050731a7ab18d05eaa5e01d66df33e04444e72c",
+    "chainId": "eip155:137",
+    "name": "ECS Gold",
+    "precision": 6,
+    "color": "#806C20",
+    "icon": "https://assets.coingecko.com/coins/images/27542/thumb/ECOSMART_LOGO_200X200.png?1696526579",
+    "symbol": "ECG",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x306ee01a6ba3b4a8e993fa2c1adc7ea24462000c": {
+    "assetId": "eip155:137/erc20:0x306ee01a6ba3b4a8e993fa2c1adc7ea24462000c",
+    "chainId": "eip155:137",
+    "name": "Neopin",
+    "precision": 18,
+    "color": "#2ABFFC",
+    "icon": "https://assets.coingecko.com/coins/images/23912/thumb/logo_design.png?1696523111",
+    "symbol": "NPT",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x30ea765d4dda26e0f89e1b23a7c7b2526b7d29ec": {
+    "assetId": "eip155:137/erc20:0x30ea765d4dda26e0f89e1b23a7c7b2526b7d29ec",
+    "chainId": "eip155:137",
+    "name": "PolyPad on Polygon",
+    "precision": 18,
+    "color": "#7F68ED",
+    "icon": "https://assets.coingecko.com/coins/images/24905/thumb/BXApUK87_400x400.png?1696524062",
+    "symbol": "POLYPAD",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x31042a4e66eda0d12143ffc8cc1552d611da4cba": {
+    "assetId": "eip155:137/erc20:0x31042a4e66eda0d12143ffc8cc1552d611da4cba",
+    "chainId": "eip155:137",
+    "name": "Morpheus Labs on Polygon",
+    "precision": 18,
+    "color": "#6454DC",
+    "icon": "https://assets.coingecko.com/coins/images/3164/thumb/mitx.png?1696503886",
+    "symbol": "MITX",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x311434160d7537be358930def317afb606c0d737": {
+    "assetId": "eip155:137/erc20:0x311434160d7537be358930def317afb606c0d737",
+    "chainId": "eip155:137",
+    "name": "Nakamoto Games",
+    "precision": 18,
+    "color": "#E71721",
+    "icon": "https://assets.coingecko.com/coins/images/19073/thumb/flCKDeh6_400x400.jpg?1696518523",
+    "symbol": "NAKA",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x315b16bfc91bd6c5d9054f961938b924c7da4964": {
+    "assetId": "eip155:137/erc20:0x315b16bfc91bd6c5d9054f961938b924c7da4964",
+    "chainId": "eip155:137",
+    "name": "UC Finance",
+    "precision": 18,
+    "color": "#0F8ADD",
+    "icon": "https://assets.coingecko.com/coins/images/31337/thumb/20230805_143400.png?1696530155",
+    "symbol": "UCF",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x3235b13708f178af6f110de7177ed5de10c1093d": {
+    "assetId": "eip155:137/erc20:0x3235b13708f178af6f110de7177ed5de10c1093d",
+    "chainId": "eip155:137",
+    "name": "Mongol NFT on Polygon",
+    "precision": 18,
+    "color": "#E2E2E2",
+    "icon": "https://assets.coingecko.com/coins/images/23718/thumb/swI93LWg_400x400.jpg?1696522918",
+    "symbol": "MNFT",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x32515ffdc3a84cfbf9ad4db14ef8f0a535c7afd6": {
+    "assetId": "eip155:137/erc20:0x32515ffdc3a84cfbf9ad4db14ef8f0a535c7afd6",
+    "chainId": "eip155:137",
+    "name": "Baked on Polygon",
+    "precision": 18,
+    "color": "#978CC4",
+    "icon": "https://assets.coingecko.com/coins/images/19178/thumb/rebaked-logo-full.png?1696518627",
+    "symbol": "BAKED",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x32934cb16da43fd661116468c1b225fc26cf9a8c": {
+    "assetId": "eip155:137/erc20:0x32934cb16da43fd661116468c1b225fc26cf9a8c",
+    "chainId": "eip155:137",
+    "name": "StrongNode",
+    "precision": 18,
+    "color": "#A9A69E",
+    "icon": "https://assets.coingecko.com/coins/images/19303/thumb/sne.png?1696518746",
+    "symbol": "SNE",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x329f5e8aff351327e63acdb264389c798a46c2d3": {
+    "assetId": "eip155:137/erc20:0x329f5e8aff351327e63acdb264389c798a46c2d3",
+    "chainId": "eip155:137",
+    "name": "PolyGamma Finance",
+    "precision": 18,
+    "color": "#ECE8F8",
+    "icon": "https://assets.coingecko.com/coins/images/19590/thumb/gamma.png?1696519021",
+    "symbol": "GAMMA",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x32cd1bcb75473845b5d1db6ece60aec6e41d8518": {
+    "assetId": "eip155:137/erc20:0x32cd1bcb75473845b5d1db6ece60aec6e41d8518",
+    "chainId": "eip155:137",
+    "name": "POLYSPORTS on Polygon",
+    "precision": 18,
+    "color": "#E3E7E6",
+    "icon": "https://assets.coingecko.com/coins/images/25070/thumb/L-T2x_cG_400x400.jpg?1696524218",
+    "symbol": "PS1",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x33b6d77c607ea499ab5db7e2201c5a516a78a5db": {
+    "assetId": "eip155:137/erc20:0x33b6d77c607ea499ab5db7e2201c5a516a78a5db",
+    "chainId": "eip155:137",
+    "name": "Aimedis  NEW ",
+    "precision": 18,
+    "color": "#9DC1C1",
+    "icon": "https://assets.coingecko.com/coins/images/29252/thumb/Aimedis_Logo_tg.png?1696528207",
+    "symbol": "AIMX",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x346404079b3792a6c548b072b9c4dddfb92948d5": {
+    "assetId": "eip155:137/erc20:0x346404079b3792a6c548b072b9c4dddfb92948d5",
+    "chainId": "eip155:137",
+    "name": "GeniuX",
+    "precision": 18,
+    "color": "#040404",
+    "icon": "https://assets.coingecko.com/coins/images/26078/thumb/black_IUX-coin-logo2.png?1696525162",
+    "symbol": "IUX",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x34667ed7c36cbbbf2d5d5c5c8d6eb76a094edb9f": {
+    "assetId": "eip155:137/erc20:0x34667ed7c36cbbbf2d5d5c5c8d6eb76a094edb9f",
+    "chainId": "eip155:137",
+    "name": "GenomesDAO on Polygon",
+    "precision": 18,
+    "color": "#E8DFF0",
+    "icon": "https://assets.coingecko.com/coins/images/20807/thumb/1637683704200x200.png?1696520200",
+    "symbol": "GENE",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x34ad6a664b4112a9c6bac7b54b4094a05e3ff775": {
+    "assetId": "eip155:137/erc20:0x34ad6a664b4112a9c6bac7b54b4094a05e3ff775",
+    "chainId": "eip155:137",
+    "name": "MariCoin",
+    "precision": 3,
+    "color": "#4CBEDC",
+    "icon": "https://assets.coingecko.com/coins/images/29600/thumb/01_logoMARICOIN_TM_%281%29_%281%29_%281%29.png?1696528538",
+    "symbol": "MCOIN",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x34c1b299a74588d6abdc1b85a53345a48428a521": {
+    "assetId": "eip155:137/erc20:0x34c1b299a74588d6abdc1b85a53345a48428a521",
+    "chainId": "eip155:137",
+    "name": "EasyFi V2 on Polygon",
+    "precision": 18,
+    "color": "#624A69",
+    "icon": "https://assets.coingecko.com/coins/images/12742/thumb/Logo_Icon.png?1696512540",
+    "symbol": "EZ",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x34d4ab47bee066f361fa52d792e69ac7bd05ee23": {
+    "assetId": "eip155:137/erc20:0x34d4ab47bee066f361fa52d792e69ac7bd05ee23",
+    "chainId": "eip155:137",
+    "name": "Raider Aurum",
+    "precision": 18,
+    "color": "#E7AE25",
+    "icon": "https://assets.coingecko.com/coins/images/18131/thumb/xcqAUkU.png?1696517634",
+    "symbol": "AURUM",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x34f380a4e3389e99c0369264453523bbe5af7fab": {
+    "assetId": "eip155:137/erc20:0x34f380a4e3389e99c0369264453523bbe5af7fab",
+    "chainId": "eip155:137",
+    "name": "Kangal on Polygon",
+    "precision": 18,
+    "color": "#45382F",
+    "icon": "https://assets.coingecko.com/coins/images/14241/thumb/logo-200.png?1696513956",
+    "symbol": "KANGAL",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x3562ddf1f5ce2c02ef109e9d5a72e2fdb702711d": {
+    "assetId": "eip155:137/erc20:0x3562ddf1f5ce2c02ef109e9d5a72e2fdb702711d",
+    "chainId": "eip155:137",
+    "name": "Wrapped Kaspa on Polygon",
+    "precision": 8,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/31037/thumb/WKAS-256-black-ETH-3.png?1696529872",
+    "symbol": "KAS",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x35c2b6826b5c94fd2dfede51e7cfd4b94410840a": {
+    "assetId": "eip155:137/erc20:0x35c2b6826b5c94fd2dfede51e7cfd4b94410840a",
+    "chainId": "eip155:137",
+    "name": "PubGame Coin",
+    "precision": 18,
+    "color": "#26224A",
+    "icon": "https://assets.coingecko.com/coins/images/31460/thumb/pgc.png?1696530273",
+    "symbol": "PGC",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x361a5a4993493ce00f61c32d4ecca5512b82ce90": {
+    "assetId": "eip155:137/erc20:0x361a5a4993493ce00f61c32d4ecca5512b82ce90",
+    "chainId": "eip155:137",
+    "name": "Stake DAO on Polygon",
+    "precision": 18,
+    "color": "#070707",
+    "icon": "https://assets.coingecko.com/coins/images/13724/thumb/stakedao_logo.jpg?1696513468",
+    "symbol": "SDT",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x36596a1dc57c695bed1a063470a7802797dca133": {
+    "assetId": "eip155:137/erc20:0x36596a1dc57c695bed1a063470a7802797dca133",
+    "chainId": "eip155:137",
+    "name": "Umma Token",
+    "precision": 18,
+    "color": "#0486A6",
+    "icon": "https://assets.coingecko.com/coins/images/31681/thumb/UMMA_200x200.png?1696530500",
+    "symbol": "UMMA",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x372246175d50db4fd42c2aba4e3292a0fe41ce2e": {
+    "assetId": "eip155:137/erc20:0x372246175d50db4fd42c2aba4e3292a0fe41ce2e",
+    "chainId": "eip155:137",
+    "name": "AMAUROT",
+    "precision": 18,
+    "color": "#070706",
+    "icon": "https://assets.coingecko.com/coins/images/28229/thumb/10b06d6c-379f-4c34-b3f2-196a770a4512.png?1696527230",
+    "symbol": "AMA",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x37b8e1152fb90a867f3dcca6e8d537681b04705e": {
+    "assetId": "eip155:137/erc20:0x37b8e1152fb90a867f3dcca6e8d537681b04705e",
+    "chainId": "eip155:137",
+    "name": "Proto Gyro Dollar",
+    "precision": 18,
+    "color": "#E4DFB8",
+    "icon": "https://assets.coingecko.com/coins/images/29416/thumb/gyd.png?1696528365",
+    "symbol": "P-GYD",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x3801c3b3b5c98f88a9c9005966aa96aa440b9afc": {
+    "assetId": "eip155:137/erc20:0x3801c3b3b5c98f88a9c9005966aa96aa440b9afc",
+    "chainId": "eip155:137",
+    "name": "GAX Liquidity Token Reward",
+    "precision": 18,
+    "color": "#CB8404",
+    "icon": "https://assets.coingecko.com/coins/images/25790/thumb/gltr-token.png?1696524876",
+    "symbol": "GLTR",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x38029c62dfa30d9fd3cadf4c64e9b2ab21dbda17": {
+    "assetId": "eip155:137/erc20:0x38029c62dfa30d9fd3cadf4c64e9b2ab21dbda17",
+    "chainId": "eip155:137",
+    "name": "Dubbz on Polygon",
+    "precision": 18,
+    "color": "#2F81DA",
+    "icon": "https://assets.coingecko.com/coins/images/28665/thumb/D8EACA06-18ED-4999-8B3A-6339F9E021CE.jpeg?1696527650",
+    "symbol": "DUBBZ",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x3809dcdd5dde24b37abe64a5a339784c3323c44f": {
+    "assetId": "eip155:137/erc20:0x3809dcdd5dde24b37abe64a5a339784c3323c44f",
+    "chainId": "eip155:137",
+    "name": "TrustSwap on Polygon",
+    "precision": 18,
+    "color": "#2FCCFC",
+    "icon": "https://assets.coingecko.com/coins/images/11795/thumb/Untitled_design-removebg-preview.png?1696511671",
+    "symbol": "SWAP",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x381caf412b45dac0f62fbeec89de306d3eabe384": {
+    "assetId": "eip155:137/erc20:0x381caf412b45dac0f62fbeec89de306d3eabe384",
+    "chainId": "eip155:137",
+    "name": "DAO Invest on Polygon",
+    "precision": 18,
+    "color": "#BCBCBC",
+    "icon": "https://assets.coingecko.com/coins/images/17901/thumb/logo-round-200.png?1696517421",
+    "symbol": "VEST",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x385eeac5cb85a38a9a07a70c73e0a3271cfb54a7": {
+    "assetId": "eip155:137/erc20:0x385eeac5cb85a38a9a07a70c73e0a3271cfb54a7",
+    "chainId": "eip155:137",
+    "name": "Aavegotchi on Polygon",
+    "precision": 18,
+    "color": "#F22DF4",
+    "icon": "https://assets.coingecko.com/coins/images/12467/thumb/GHST.png?1696512286",
+    "symbol": "GHST",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x388d819724dd6d71760a38f00dc01d310d879771": {
+    "assetId": "eip155:137/erc20:0x388d819724dd6d71760a38f00dc01d310d879771",
+    "chainId": "eip155:137",
+    "name": "JustMoney on Polygon",
+    "precision": 8,
+    "color": "#F2AA04",
+    "icon": "https://assets.coingecko.com/coins/images/25450/thumb/jm.png?1696524581",
+    "symbol": "JM",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x38a232cabb8a7f745c7d6e0a5bf300e3499aa8a6": {
+    "assetId": "eip155:137/erc20:0x38a232cabb8a7f745c7d6e0a5bf300e3499aa8a6",
+    "chainId": "eip155:137",
+    "name": "PIVN",
+    "precision": 18,
+    "color": "#BF3538",
+    "icon": "https://assets.coingecko.com/coins/images/29617/thumb/pivn.png?1696528553",
+    "symbol": "PIVN",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x38a536a31ba4d8c1bcca016abbf786ecd25877e8": {
+    "assetId": "eip155:137/erc20:0x38a536a31ba4d8c1bcca016abbf786ecd25877e8",
+    "chainId": "eip155:137",
+    "name": "AssetMantle on Polygon",
+    "precision": 6,
+    "color": "#FCF8E6",
+    "icon": "https://assets.coingecko.com/coins/images/25181/thumb/thumbnail.png?1696524326",
+    "symbol": "MNTL",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x38b501279f1b78f2aa8f2117bf26f64252fe3f2f": {
+    "assetId": "eip155:137/erc20:0x38b501279f1b78f2aa8f2117bf26f64252fe3f2f",
+    "chainId": "eip155:137",
+    "name": "CatsApes",
+    "precision": 18,
+    "color": "#233F41",
+    "icon": "https://assets.coingecko.com/coins/images/32363/thumb/logo_%282%29_%281%29.png?1698028862",
+    "symbol": "CATS",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x3963a400b42377376d6c3d92ddf2d6288d8ee0d6": {
+    "assetId": "eip155:137/erc20:0x3963a400b42377376d6c3d92ddf2d6288d8ee0d6",
+    "chainId": "eip155:137",
+    "name": "Equals9",
+    "precision": 18,
+    "color": "#F2F5F7",
+    "icon": "https://assets.coingecko.com/coins/images/28233/thumb/1648392274941.jpeg?1696527236",
+    "symbol": "EQ9",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x39ab6574c289c3ae4d88500eec792ab5b947a5eb": {
+    "assetId": "eip155:137/erc20:0x39ab6574c289c3ae4d88500eec792ab5b947a5eb",
+    "chainId": "eip155:137",
+    "name": "Dystopia",
+    "precision": 18,
+    "color": "#0C5C8C",
+    "icon": "https://assets.coingecko.com/coins/images/25786/thumb/dystopialogo.jpg?1696524872",
+    "symbol": "DYST",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x39fc9e94caeacb435842fadedecb783589f50f5f": {
+    "assetId": "eip155:137/erc20:0x39fc9e94caeacb435842fadedecb783589f50f5f",
+    "chainId": "eip155:137",
+    "name": "Kampay on Polygon",
+    "precision": 18,
+    "color": "#ECD504",
+    "icon": "https://assets.coingecko.com/coins/images/8289/thumb/6130e86152bdb07e2848de00_200_4x.png?1696508490",
+    "symbol": "KAMPAY",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x3a3df212b7aa91aa0402b9035b098891d276572b": {
+    "assetId": "eip155:137/erc20:0x3a3df212b7aa91aa0402b9035b098891d276572b",
+    "chainId": "eip155:137",
+    "name": "Polycat Finance",
+    "precision": 18,
+    "color": "#E6E6E6",
+    "icon": "https://assets.coingecko.com/coins/images/15226/thumb/smallLogo.png?1696514881",
+    "symbol": "FISH",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x3a3e7650f8b9f667da98f236010fbf44ee4b2975": {
+    "assetId": "eip155:137/erc20:0x3a3e7650f8b9f667da98f236010fbf44ee4b2975",
+    "chainId": "eip155:137",
+    "name": "xDollar Stablecoin on Polygon",
+    "precision": 18,
+    "color": "#AF5FA5",
+    "icon": "https://assets.coingecko.com/coins/images/16291/thumb/xUSD-web-transparent.png?1696515890",
+    "symbol": "XUSD",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x3a58a54c066fdc0f2d55fc9c89f0415c92ebf3c4": {
+    "assetId": "eip155:137/erc20:0x3a58a54c066fdc0f2d55fc9c89f0415c92ebf3c4",
+    "chainId": "eip155:137",
+    "name": "Lido Staked Matic on Polygon",
+    "precision": 18,
+    "color": "#BCEEFC",
+    "icon": "https://assets.coingecko.com/coins/images/24185/thumb/stMATIC.png?1696523373",
+    "symbol": "STMATIC",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x3a79241a92a4f06952107308057da1991792d372": {
+    "assetId": "eip155:137/erc20:0x3a79241a92a4f06952107308057da1991792d372",
+    "chainId": "eip155:137",
+    "name": "Zenland on Polygon",
+    "precision": 18,
+    "color": "#5FA7FC",
+    "icon": "https://assets.coingecko.com/coins/images/29477/thumb/tokenicon200px.png?1696528421",
+    "symbol": "ZENF",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x3a9a81d576d83ff21f26f325066054540720fc34": {
+    "assetId": "eip155:137/erc20:0x3a9a81d576d83ff21f26f325066054540720fc34",
+    "chainId": "eip155:137",
+    "name": "Streamr on Polygon",
+    "precision": 18,
+    "color": "#F56510",
+    "icon": "https://assets.coingecko.com/coins/images/17869/thumb/DATA_new_symbol_3x.png?1696517392",
+    "symbol": "DATA",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x3ad707da309f3845cd602059901e39c4dcd66473": {
+    "assetId": "eip155:137/erc20:0x3ad707da309f3845cd602059901e39c4dcd66473",
+    "chainId": "eip155:137",
+    "name": "Index Coop   ETH 2x Flexible Leverage I on Polygon",
+    "precision": 18,
+    "color": "#F1E6F6",
+    "icon": "https://assets.coingecko.com/coins/images/21183/thumb/ETH2x-FLO_token_logo.jpg?1696520559",
+    "symbol": "ETH2X-FLI-P",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x3b1a0c9252ee7403093ff55b4a5886d49a3d837a": {
+    "assetId": "eip155:137/erc20:0x3b1a0c9252ee7403093ff55b4a5886d49a3d837a",
+    "chainId": "eip155:137",
+    "name": "Continuum World on Polygon",
+    "precision": 18,
+    "color": "#7C5026",
+    "icon": "https://assets.coingecko.com/coins/images/18798/thumb/Moneda.png?1696518260",
+    "symbol": "UM",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x3b56a704c01d650147ade2b8cee594066b3f9421": {
+    "assetId": "eip155:137/erc20:0x3b56a704c01d650147ade2b8cee594066b3f9421",
+    "chainId": "eip155:137",
+    "name": "Affyn",
+    "precision": 18,
+    "color": "#FC5C5C",
+    "icon": "https://assets.coingecko.com/coins/images/23275/thumb/fyn.png?1696522495",
+    "symbol": "FYN",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x3b7e1ce09afe2bb3a23919afb65a38e627cfbe97": {
+    "assetId": "eip155:137/erc20:0x3b7e1ce09afe2bb3a23919afb65a38e627cfbe97",
+    "chainId": "eip155:137",
+    "name": "Dragon Soul Token",
+    "precision": 18,
+    "color": "#24DCCC",
+    "icon": "https://assets.coingecko.com/coins/images/29937/thumb/DST_200x200.jpg?1696528864",
+    "symbol": "DST",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x3c1bb39bb696b443a1d80bb2b3a3d950ba9dee87": {
+    "assetId": "eip155:137/erc20:0x3c1bb39bb696b443a1d80bb2b3a3d950ba9dee87",
+    "chainId": "eip155:137",
+    "name": "Wall Street Games on Polygon",
+    "precision": 18,
+    "color": "#692C7C",
+    "icon": "https://assets.coingecko.com/coins/images/15872/thumb/X3Awe42.png?1696515487",
+    "symbol": "WSG",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x3c205c8b3e02421da82064646788c82f7bd753b9": {
+    "assetId": "eip155:137/erc20:0x3c205c8b3e02421da82064646788c82f7bd753b9",
+    "chainId": "eip155:137",
+    "name": "PureFi on Polygon",
+    "precision": 18,
+    "color": "#284361",
+    "icon": "https://assets.coingecko.com/coins/images/17341/thumb/purefi.PNG?1696516893",
+    "symbol": "UFI",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x3c499c542cef5e3811e1192ce70d8cc03d5c3359": {
+    "assetId": "eip155:137/erc20:0x3c499c542cef5e3811e1192ce70d8cc03d5c3359",
+    "chainId": "eip155:137",
+    "name": "USDC on Polygon",
+    "precision": 6,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/6319/thumb/usdc.png?1696506694",
+    "symbol": "USDC",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x3c59798620e5fec0ae6df1a19c6454094572ab92": {
+    "assetId": "eip155:137/erc20:0x3c59798620e5fec0ae6df1a19c6454094572ab92",
+    "chainId": "eip155:137",
+    "name": "Morpheus Network on Polygon",
+    "precision": 18,
+    "color": "#E0E4E8",
+    "icon": "https://assets.coingecko.com/coins/images/2379/thumb/MRPH_CoinGecko.png?1696503245",
+    "symbol": "MNW",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x3c5a5885f6ee4acc2597069fe3c19f49c6efba96": {
+    "assetId": "eip155:137/erc20:0x3c5a5885f6ee4acc2597069fe3c19f49c6efba96",
+    "chainId": "eip155:137",
+    "name": "Krida Fans",
+    "precision": 18,
+    "color": "#4C4C4C",
+    "icon": "https://assets.coingecko.com/coins/images/23104/thumb/bIdz6haF_400x400.jpg?1696522393",
+    "symbol": "KRIDA",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x3c720206bfacb2d16fa3ac0ed87d2048dbc401fc": {
+    "assetId": "eip155:137/erc20:0x3c720206bfacb2d16fa3ac0ed87d2048dbc401fc",
+    "chainId": "eip155:137",
+    "name": "Archethic on Polygon",
+    "precision": 18,
+    "color": "#040607",
+    "icon": "https://assets.coingecko.com/coins/images/12330/thumb/Archethic_logo.png?1696512158",
+    "symbol": "UCO",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x3ce1327867077b551ae9a6987bf10c9fd08edce1": {
+    "assetId": "eip155:137/erc20:0x3ce1327867077b551ae9a6987bf10c9fd08edce1",
+    "chainId": "eip155:137",
+    "name": "SwissCheese",
+    "precision": 18,
+    "color": "#BE3124",
+    "icon": "https://assets.coingecko.com/coins/images/31344/thumb/IMG_7198.jpeg?1696530162",
+    "symbol": "SWCH",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x3cef98bb43d732e2f285ee605a8158cde967d219": {
+    "assetId": "eip155:137/erc20:0x3cef98bb43d732e2f285ee605a8158cde967d219",
+    "chainId": "eip155:137",
+    "name": "Basic Attention on Polygon",
+    "precision": 18,
+    "color": "#FC5404",
+    "icon": "https://assets.coingecko.com/coins/images/677/thumb/basic-attention-token.png?1696501867",
+    "symbol": "BAT",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x3d1d2afd191b165d140e3e8329e634665ffb0e5e": {
+    "assetId": "eip155:137/erc20:0x3d1d2afd191b165d140e3e8329e634665ffb0e5e",
+    "chainId": "eip155:137",
+    "name": "Deri Protocol on Polygon",
+    "precision": 18,
+    "color": "#5B7890",
+    "icon": "https://assets.coingecko.com/coins/images/13931/thumb/200vs200.jpg?1696513670",
+    "symbol": "DERI",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x3d468ab2329f296e1b9d8476bb54dd77d8c2320f": {
+    "assetId": "eip155:137/erc20:0x3d468ab2329f296e1b9d8476bb54dd77d8c2320f",
+    "chainId": "eip155:137",
+    "name": "20WETH 80BAL",
+    "precision": 18,
+    "color": "#DCE4FC",
+    "icon": "https://assets.coingecko.com/coins/images/28005/thumb/0x3d468ab2329f296e1b9d8476bb54dd77d8c2320f.png?1696527022",
+    "symbol": "20WETH-80BAL",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x3e15cd00b456b0fb33827e3c9b49952bb0ec126c": {
+    "assetId": "eip155:137/erc20:0x3e15cd00b456b0fb33827e3c9b49952bb0ec126c",
+    "chainId": "eip155:137",
+    "name": "Hibiki Run",
+    "precision": 18,
+    "color": "#9C4044",
+    "icon": "https://assets.coingecko.com/coins/images/32011/thumb/hibiki.png?1696530809",
+    "symbol": "HUT",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x3ed4c2d63def617f436eb031bacae16f478f3b00": {
+    "assetId": "eip155:137/erc20:0x3ed4c2d63def617f436eb031bacae16f478f3b00",
+    "chainId": "eip155:137",
+    "name": "DPEX",
+    "precision": 18,
+    "color": "#0577AC",
+    "icon": "https://assets.coingecko.com/coins/images/31038/thumb/logo-ai.png?1696529873",
+    "symbol": "DPEX",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x3f374ed3c8e61a0d250f275609be2219005c021e": {
+    "assetId": "eip155:137/erc20:0x3f374ed3c8e61a0d250f275609be2219005c021e",
+    "chainId": "eip155:137",
+    "name": "Arcadium",
+    "precision": 18,
+    "color": "#4B5773",
+    "icon": "https://assets.coingecko.com/coins/images/17717/thumb/4dyLxHe.png?1696517244",
+    "symbol": "ARCADIUM",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x3f6b3595ecf70735d3f48d69b09c4e4506db3f47": {
+    "assetId": "eip155:137/erc20:0x3f6b3595ecf70735d3f48d69b09c4e4506db3f47",
+    "chainId": "eip155:137",
+    "name": "GameStation on Polygon",
+    "precision": 18,
+    "color": "#8097CF",
+    "icon": "https://assets.coingecko.com/coins/images/19584/thumb/game_station.PNG?1696519015",
+    "symbol": "GAMER",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x40379a439d4f6795b6fc9aa5687db461677a2dba": {
+    "assetId": "eip155:137/erc20:0x40379a439d4f6795b6fc9aa5687db461677a2dba",
+    "chainId": "eip155:137",
+    "name": "Real USD",
+    "precision": 9,
+    "color": "#3361FC",
+    "icon": "https://assets.coingecko.com/coins/images/27973/thumb/USDR-200x200.png?1696526992",
+    "symbol": "USDR",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x403e967b044d4be25170310157cb1a4bf10bdd0f": {
+    "assetId": "eip155:137/erc20:0x403e967b044d4be25170310157cb1a4bf10bdd0f",
+    "chainId": "eip155:137",
+    "name": "Aavegotchi FUD",
+    "precision": 18,
+    "color": "#338A48",
+    "icon": "https://assets.coingecko.com/coins/images/24736/thumb/fud.png?1696523899",
+    "symbol": "FUD",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x40d9fc77027a281d85de1fa660c887e645ae26c3": {
+    "assetId": "eip155:137/erc20:0x40d9fc77027a281d85de1fa660c887e645ae26c3",
+    "chainId": "eip155:137",
+    "name": "MetaTrace",
+    "precision": 2,
+    "color": "#F68618",
+    "icon": "https://assets.coingecko.com/coins/images/31427/thumb/Metatrace.png?1696530242",
+    "symbol": "TRC",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x40f97ec376ac1c503e755433bf57f21e3a49f440": {
+    "assetId": "eip155:137/erc20:0x40f97ec376ac1c503e755433bf57f21e3a49f440",
+    "chainId": "eip155:137",
+    "name": "CarrieVerse",
+    "precision": 18,
+    "color": "#F8DCF0",
+    "icon": "https://assets.coingecko.com/coins/images/28922/thumb/cvtx.png?1696527897",
+    "symbol": "CVTX",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x411bc96881a62572ff33c9d8ce60df99e3d96cd8": {
+    "assetId": "eip155:137/erc20:0x411bc96881a62572ff33c9d8ce60df99e3d96cd8",
+    "chainId": "eip155:137",
+    "name": "Mars Token",
+    "precision": 18,
+    "color": "#EDE4E2",
+    "icon": "https://assets.coingecko.com/coins/images/27230/thumb/MRST.png?1696526281",
+    "symbol": "MRST",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x411be1e071675df40fe1c08ca760bb7aa707cedf": {
+    "assetId": "eip155:137/erc20:0x411be1e071675df40fe1c08ca760bb7aa707cedf",
+    "chainId": "eip155:137",
+    "name": "Gamerse on Polygon",
+    "precision": 18,
+    "color": "#3A3A34",
+    "icon": "https://assets.coingecko.com/coins/images/19582/thumb/gamerse.PNG?1696519013",
+    "symbol": "LFG",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x41b3966b4ff7b427969ddf5da3627d6aeae9a48e": {
+    "assetId": "eip155:137/erc20:0x41b3966b4ff7b427969ddf5da3627d6aeae9a48e",
+    "chainId": "eip155:137",
+    "name": "NEXO on Polygon",
+    "precision": 18,
+    "color": "#304DB0",
+    "icon": "https://assets.coingecko.com/coins/images/3695/thumb/nexo.png?1696504370",
+    "symbol": "NEXO",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x421b9b487d5a9b76e4b81809c0f1b9bb8cb24cb9": {
+    "assetId": "eip155:137/erc20:0x421b9b487d5a9b76e4b81809c0f1b9bb8cb24cb9",
+    "chainId": "eip155:137",
+    "name": "Phobos Token",
+    "precision": 18,
+    "color": "#10E5FC",
+    "icon": "https://assets.coingecko.com/coins/images/28529/thumb/Phobos_Token_symbol.png?1696527521",
+    "symbol": "PBOS",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x428360b02c1269bc1c79fbc399ad31d58c1e8fda": {
+    "assetId": "eip155:137/erc20:0x428360b02c1269bc1c79fbc399ad31d58c1e8fda",
+    "chainId": "eip155:137",
+    "name": "Digital Fitness",
+    "precision": 18,
+    "color": "#3A82F5",
+    "icon": "https://assets.coingecko.com/coins/images/14699/thumb/Defit.png?1696514370",
+    "symbol": "DEFIT",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x4287f07cbe6954f9f0decd91d0705c926d8d03a4": {
+    "assetId": "eip155:137/erc20:0x4287f07cbe6954f9f0decd91d0705c926d8d03a4",
+    "chainId": "eip155:137",
+    "name": "Trace Network Labs on Polygon",
+    "precision": 18,
+    "color": "#882ED4",
+    "icon": "https://assets.coingecko.com/coins/images/23266/thumb/Token_Icon_02.png?1696522486",
+    "symbol": "TRACE",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x42d61d766b85431666b39b89c43011f24451bff6": {
+    "assetId": "eip155:137/erc20:0x42d61d766b85431666b39b89c43011f24451bff6",
+    "chainId": "eip155:137",
+    "name": "ParaSwap on Polygon",
+    "precision": 18,
+    "color": "#F6FAF5",
+    "icon": "https://assets.coingecko.com/coins/images/20403/thumb/ep7GqM19_400x400.jpg?1696519812",
+    "symbol": "PSP",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x42dbbd5ae373fea2fc320f62d44c058522bb3758": {
+    "assetId": "eip155:137/erc20:0x42dbbd5ae373fea2fc320f62d44c058522bb3758",
+    "chainId": "eip155:137",
+    "name": "Memecoin on Polygon",
+    "precision": 18,
+    "color": "#F4EDE0",
+    "icon": "https://assets.coingecko.com/coins/images/16370/thumb/mem_gold_200x200_copy.png?1696515969",
+    "symbol": "MEM",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x42e5e06ef5b90fe15f853f59299fc96259209c5c": {
+    "assetId": "eip155:137/erc20:0x42e5e06ef5b90fe15f853f59299fc96259209c5c",
+    "chainId": "eip155:137",
+    "name": "Aavegotchi KEK",
+    "precision": 18,
+    "color": "#8314DC",
+    "icon": "https://assets.coingecko.com/coins/images/24739/thumb/kek.png?1696523902",
+    "symbol": "KEK",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x42f6bdcfd82547e89f1069bf375aa60e6c6c063d": {
+    "assetId": "eip155:137/erc20:0x42f6bdcfd82547e89f1069bf375aa60e6c6c063d",
+    "chainId": "eip155:137",
+    "name": "Civilization on Polygon",
+    "precision": 18,
+    "color": "#1CD8CC",
+    "icon": "https://assets.coingecko.com/coins/images/17626/thumb/civ-200x200.png?1696517157",
+    "symbol": "CIV",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x430ef9263e76dae63c84292c3409d61c598e9682": {
+    "assetId": "eip155:137/erc20:0x430ef9263e76dae63c84292c3409d61c598e9682",
+    "chainId": "eip155:137",
+    "name": "Vulcan Forged on Polygon",
+    "precision": 18,
+    "color": "#F8A024",
+    "icon": "https://assets.coingecko.com/coins/images/14770/thumb/1617088937196.png?1696514439",
+    "symbol": "PYR",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x431cd3c9ac9fc73644bf68bf5691f4b83f9e104f": {
+    "assetId": "eip155:137/erc20:0x431cd3c9ac9fc73644bf68bf5691f4b83f9e104f",
+    "chainId": "eip155:137",
+    "name": "Rainbow Token",
+    "precision": 18,
+    "color": "#DEC6D1",
+    "icon": "https://assets.coingecko.com/coins/images/24498/thumb/icon_rbw.png?1696523678",
+    "symbol": "RBW",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x431d5dff03120afa4bdf332c61a6e1766ef37bdb": {
+    "assetId": "eip155:137/erc20:0x431d5dff03120afa4bdf332c61a6e1766ef37bdb",
+    "chainId": "eip155:137",
+    "name": "JPY Coin on Polygon",
+    "precision": 18,
+    "color": "#1C499E",
+    "icon": "https://assets.coingecko.com/coins/images/25971/thumb/2023jpyc.png?1696525049",
+    "symbol": "JPYC",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x43df9c0a1156c96cea98737b511ac89d0e2a1f46": {
+    "assetId": "eip155:137/erc20:0x43df9c0a1156c96cea98737b511ac89d0e2a1f46",
+    "chainId": "eip155:137",
+    "name": "CVI on Polygon",
+    "precision": 18,
+    "color": "#D6E6F2",
+    "icon": "https://assets.coingecko.com/coins/images/13875/thumb/GOVI.png?1696513619",
+    "symbol": "GOVI",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x444444444444c1a66f394025ac839a535246fcc8": {
+    "assetId": "eip155:137/erc20:0x444444444444c1a66f394025ac839a535246fcc8",
+    "chainId": "eip155:137",
+    "name": "Genius on Polygon",
+    "precision": 9,
+    "color": "#0F073F",
+    "icon": "https://assets.coingecko.com/coins/images/28621/thumb/GENI200x200.png?1696527606",
+    "symbol": "GENI",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x4455ef8b4b4a007a93daa12de63a47eeac700d9d": {
+    "assetId": "eip155:137/erc20:0x4455ef8b4b4a007a93daa12de63a47eeac700d9d",
+    "chainId": "eip155:137",
+    "name": "Forest Knight",
+    "precision": 18,
+    "color": "#ECA80A",
+    "icon": "https://assets.coingecko.com/coins/images/18441/thumb/Coin_Forest_Knight_200x200.png?1696517928",
+    "symbol": "KNIGHT",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x44a6e0be76e1d9620a7f76588e4509fe4fa8e8c8": {
+    "assetId": "eip155:137/erc20:0x44a6e0be76e1d9620a7f76588e4509fe4fa8e8c8",
+    "chainId": "eip155:137",
+    "name": "Aavegotchi FOMO",
+    "precision": 18,
+    "color": "#CC3B22",
+    "icon": "https://assets.coingecko.com/coins/images/24737/thumb/fomo.png?1696523900",
+    "symbol": "FOMO",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x44acd96620b708162af4a90524f29a6839675533": {
+    "assetId": "eip155:137/erc20:0x44acd96620b708162af4a90524f29a6839675533",
+    "chainId": "eip155:137",
+    "name": "TCG Verse",
+    "precision": 18,
+    "color": "#6C934D",
+    "icon": "https://assets.coingecko.com/coins/images/28548/thumb/tcgc.png?1696527539",
+    "symbol": "TCGC",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x4550003152f12014558e5ce025707e4dd841100f": {
+    "assetId": "eip155:137/erc20:0x4550003152f12014558e5ce025707e4dd841100f",
+    "chainId": "eip155:137",
+    "name": "Kaizen Finance on Polygon",
+    "precision": 18,
+    "color": "#FCCFCF",
+    "icon": "https://assets.coingecko.com/coins/images/24396/thumb/PKl5OVRv_400x400.png?1696523579",
+    "symbol": "KZEN",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x4597c8a59ab28b36840b82b3a674994a279593d0": {
+    "assetId": "eip155:137/erc20:0x4597c8a59ab28b36840b82b3a674994a279593d0",
+    "chainId": "eip155:137",
+    "name": "Circuits of Value on Polygon",
+    "precision": 8,
+    "color": "#625F59",
+    "icon": "https://assets.coingecko.com/coins/images/588/thumb/coval-logo.png?1696501792",
+    "symbol": "COVAL",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x45c32fa6df82ead1e2ef74d17b76547eddfaff89": {
+    "assetId": "eip155:137/erc20:0x45c32fa6df82ead1e2ef74d17b76547eddfaff89",
+    "chainId": "eip155:137",
+    "name": "Frax on Polygon",
+    "precision": 18,
+    "color": "#0D0D0D",
+    "icon": "https://assets.coingecko.com/coins/images/13422/thumb/FRAX_icon.png?1696513182",
+    "symbol": "FRAX",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x46d502fac9aea7c5bc7b13c8ec9d02378c33d36f": {
+    "assetId": "eip155:137/erc20:0x46d502fac9aea7c5bc7b13c8ec9d02378c33d36f",
+    "chainId": "eip155:137",
+    "name": "WolfSafePoorPeople Polygon",
+    "precision": 18,
+    "color": "#429D33",
+    "icon": "https://assets.coingecko.com/coins/images/19514/thumb/wspplogo.png?1696518948",
+    "symbol": "WSPP",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x46f48fbdedaa6f5500993bede9539ef85f4bee8e": {
+    "assetId": "eip155:137/erc20:0x46f48fbdedaa6f5500993bede9539ef85f4bee8e",
+    "chainId": "eip155:137",
+    "name": "Arianee on Polygon",
+    "precision": 18,
+    "color": "#BC944C",
+    "icon": "https://assets.coingecko.com/coins/images/5054/thumb/Aria_Logo_256.png?1696505581",
+    "symbol": "ARIA20",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x47536f17f4ff30e64a96a7555826b8f9e66ec468": {
+    "assetId": "eip155:137/erc20:0x47536f17f4ff30e64a96a7555826b8f9e66ec468",
+    "chainId": "eip155:137",
+    "name": "Beluga fi on Polygon",
+    "precision": 18,
+    "color": "#906DC5",
+    "icon": "https://assets.coingecko.com/coins/images/13790/thumb/brand-logo-v2.23e5d279.png?1696513539",
+    "symbol": "BELUGA",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x476718ea98525f6eeba3689b321e709522ae0930": {
+    "assetId": "eip155:137/erc20:0x476718ea98525f6eeba3689b321e709522ae0930",
+    "chainId": "eip155:137",
+    "name": "Morphswap on Polygon",
+    "precision": 18,
+    "color": "#E3358C",
+    "icon": "https://assets.coingecko.com/coins/images/28114/thumb/mslogo200.png?1696527122",
+    "symbol": "MS",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x47c52f93a359db9f4509005cf982dfc440790561": {
+    "assetId": "eip155:137/erc20:0x47c52f93a359db9f4509005cf982dfc440790561",
+    "chainId": "eip155:137",
+    "name": "Empower on Polygon",
+    "precision": 18,
+    "color": "#040708",
+    "icon": "https://assets.coingecko.com/coins/images/25456/thumb/MPWR_200x200.png?1696524587",
+    "symbol": "MPWR",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x47dae46d31f31f84336ac120b15efda261d484fb": {
+    "assetId": "eip155:137/erc20:0x47dae46d31f31f84336ac120b15efda261d484fb",
+    "chainId": "eip155:137",
+    "name": "Bund V2",
+    "precision": 18,
+    "color": "#848484",
+    "icon": "https://assets.coingecko.com/coins/images/13219/thumb/IMG_20230201_114958_189.png?1696512998",
+    "symbol": "BUND",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x480fd103973357266813ecfce9faababf3c4ca3a": {
+    "assetId": "eip155:137/erc20:0x480fd103973357266813ecfce9faababf3c4ca3a",
+    "chainId": "eip155:137",
+    "name": "H3RO3S",
+    "precision": 18,
+    "color": "#A39069",
+    "icon": "https://assets.coingecko.com/coins/images/20906/thumb/h3roes.PNG?1696520297",
+    "symbol": "H3RO3S",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x483dd3425278c1f79f377f1034d9d2cae55648b6": {
+    "assetId": "eip155:137/erc20:0x483dd3425278c1f79f377f1034d9d2cae55648b6",
+    "chainId": "eip155:137",
+    "name": "CrowdSwap",
+    "precision": 18,
+    "color": "#3CB9D1",
+    "icon": "https://assets.coingecko.com/coins/images/23928/thumb/icon_192.png?1696523126",
+    "symbol": "CROWD",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x4867b60ad7c6adc98653f661f1aea31740986ba5": {
+    "assetId": "eip155:137/erc20:0x4867b60ad7c6adc98653f661f1aea31740986ba5",
+    "chainId": "eip155:137",
+    "name": "Mean DAO on Polygon",
+    "precision": 6,
+    "color": "#040404",
+    "icon": "https://assets.coingecko.com/coins/images/21557/thumb/89934951.png?1696520918",
+    "symbol": "MEAN",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x48cbc913de09317df2365e6827df50da083701d5": {
+    "assetId": "eip155:137/erc20:0x48cbc913de09317df2365e6827df50da083701d5",
+    "chainId": "eip155:137",
+    "name": "FOUR on Polygon",
+    "precision": 18,
+    "color": "#74BCDC",
+    "icon": "https://assets.coingecko.com/coins/images/3434/thumb/FOUR.png?1696504127",
+    "symbol": "FOUR",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x492fa53b88614923937b7197c87e0f7f8eeb7b20": {
+    "assetId": "eip155:137/erc20:0x492fa53b88614923937b7197c87e0f7f8eeb7b20",
+    "chainId": "eip155:137",
+    "name": "NFTEarth on Polygon",
+    "precision": 18,
+    "color": "#E1FBED",
+    "icon": "https://assets.coingecko.com/coins/images/29116/thumb/20230223_224134.jpg?1696528078",
+    "symbol": "NFTE",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x49690541e3f6e933a9aa3cffee6010a7bb5b72d7": {
+    "assetId": "eip155:137/erc20:0x49690541e3f6e933a9aa3cffee6010a7bb5b72d7",
+    "chainId": "eip155:137",
+    "name": "Axia on Polygon",
+    "precision": 18,
+    "color": "#1A1124",
+    "icon": "https://assets.coingecko.com/coins/images/12906/thumb/axia_200x200.png?1696512694",
+    "symbol": "AXIAV3",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x4985e0b13554fb521840e893574d3848c10fcc6f": {
+    "assetId": "eip155:137/erc20:0x4985e0b13554fb521840e893574d3848c10fcc6f",
+    "chainId": "eip155:137",
+    "name": "PolySwarm on Polygon",
+    "precision": 18,
+    "color": "#7647B1",
+    "icon": "https://assets.coingecko.com/coins/images/2843/thumb/ImcYCVfX_400x400.jpg?1696503602",
+    "symbol": "NCT",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x4987a49c253c38b3259092e9aac10ec0c7ef7542": {
+    "assetId": "eip155:137/erc20:0x4987a49c253c38b3259092e9aac10ec0c7ef7542",
+    "chainId": "eip155:137",
+    "name": "Dust Protocol on Polygon",
+    "precision": 9,
+    "color": "#08C8D5",
+    "icon": "https://assets.coingecko.com/coins/images/24289/thumb/6388d49d-1f00-448d-92bc-f2db1441bbce.?1696523472",
+    "symbol": "DUST",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x49a0400587a7f65072c87c4910449fdcc5c47242": {
+    "assetId": "eip155:137/erc20:0x49a0400587a7f65072c87c4910449fdcc5c47242",
+    "chainId": "eip155:137",
+    "name": "Magic Internet Money on Polygon",
+    "precision": 18,
+    "color": "#5958FC",
+    "icon": "https://assets.coingecko.com/coins/images/16786/thumb/mimlogopng.png?1696516358",
+    "symbol": "MIM",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x49b1be61a8ca3f9a9f178d6550e41e00d9162159": {
+    "assetId": "eip155:137/erc20:0x49b1be61a8ca3f9a9f178d6550e41e00d9162159",
+    "chainId": "eip155:137",
+    "name": "GG on Polygon",
+    "precision": 18,
+    "color": "#F4D273",
+    "icon": "https://assets.coingecko.com/coins/images/13666/thumb/ggtk.png?1696513416",
+    "symbol": "GGTK",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x49e6a20f1bbdfeec2a8222e052000bbb14ee6007": {
+    "assetId": "eip155:137/erc20:0x49e6a20f1bbdfeec2a8222e052000bbb14ee6007",
+    "chainId": "eip155:137",
+    "name": "Tangible",
+    "precision": 18,
+    "color": "#07161F",
+    "icon": "https://assets.coingecko.com/coins/images/25428/thumb/TNGBL.png?1696524558",
+    "symbol": "TNGBL",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x4a7b9a4589a88a06ca29f99556db08234078d727": {
+    "assetId": "eip155:137/erc20:0x4a7b9a4589a88a06ca29f99556db08234078d727",
+    "chainId": "eip155:137",
+    "name": "NFTmall on Polygon",
+    "precision": 18,
+    "color": "#D4A454",
+    "icon": "https://assets.coingecko.com/coins/images/16217/thumb/Icon-1000x1000.png?1696515817",
+    "symbol": "GEM",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x4a81f8796e0c6ad4877a51c86693b0de8093f2ef": {
+    "assetId": "eip155:137/erc20:0x4a81f8796e0c6ad4877a51c86693b0de8093f2ef",
+    "chainId": "eip155:137",
+    "name": "Iron Finance",
+    "precision": 18,
+    "color": "#2E1913",
+    "icon": "https://assets.coingecko.com/coins/images/17024/thumb/ice_logo.jpg?1696516587",
+    "symbol": "ICE",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x4af5ff1a60a6ef6c7c8f9c4e304cd9051fca3ec0": {
+    "assetId": "eip155:137/erc20:0x4af5ff1a60a6ef6c7c8f9c4e304cd9051fca3ec0",
+    "chainId": "eip155:137",
+    "name": "Rigel Protocol on Polygon",
+    "precision": 18,
+    "color": "#2E94C0",
+    "icon": "https://assets.coingecko.com/coins/images/15837/thumb/A_qRYvB2_400x400.png?1696515455",
+    "symbol": "RGP",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x4b27cd6e6a5e83d236ead376d256fe2f9e9f0d2e": {
+    "assetId": "eip155:137/erc20:0x4b27cd6e6a5e83d236ead376d256fe2f9e9f0d2e",
+    "chainId": "eip155:137",
+    "name": "Bolide on Polygon",
+    "precision": 18,
+    "color": "#22BE6A",
+    "icon": "https://assets.coingecko.com/coins/images/25548/thumb/bld_logo.png?1696524681",
+    "symbol": "BLID",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x4b4327db1600b8b1440163f667e199cef35385f5": {
+    "assetId": "eip155:137/erc20:0x4b4327db1600b8b1440163f667e199cef35385f5",
+    "chainId": "eip155:137",
+    "name": "Coinbase Wrapped Staked ETH on Polygon",
+    "precision": 18,
+    "color": "#0957FC",
+    "icon": "https://assets.coingecko.com/coins/images/27008/thumb/cbeth.png?1696526061",
+    "symbol": "CBETH",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x4b85a666dec7c959e88b97814e46113601b07e57": {
+    "assetId": "eip155:137/erc20:0x4b85a666dec7c959e88b97814e46113601b07e57",
+    "chainId": "eip155:137",
+    "name": "GoCrypto on Polygon",
+    "precision": 18,
+    "color": "#FAE304",
+    "icon": "https://assets.coingecko.com/coins/images/3181/thumb/gocrypto.png?1696503902",
+    "symbol": "GOC",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x4c16f69302ccb511c5fac682c7626b9ef0dc126a": {
+    "assetId": "eip155:137/erc20:0x4c16f69302ccb511c5fac682c7626b9ef0dc126a",
+    "chainId": "eip155:137",
+    "name": "Pancake Bunny Polygon",
+    "precision": 18,
+    "color": "#E8E0FA",
+    "icon": "https://assets.coingecko.com/coins/images/16855/thumb/token-bunny.a8b61846.png?1696516422",
+    "symbol": "POLYBUNNY",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x4c392822d4be8494b798cea17b43d48b2308109c": {
+    "assetId": "eip155:137/erc20:0x4c392822d4be8494b798cea17b43d48b2308109c",
+    "chainId": "eip155:137",
+    "name": "Polly Finance",
+    "precision": 18,
+    "color": "#F2ECE6",
+    "icon": "https://assets.coingecko.com/coins/images/18354/thumb/POLLY.png?1696517843",
+    "symbol": "POLLY",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x4c665bbafd28ec9e5d792345f470ebfca21e3d15": {
+    "assetId": "eip155:137/erc20:0x4c665bbafd28ec9e5d792345f470ebfca21e3d15",
+    "chainId": "eip155:137",
+    "name": "SKYPlay",
+    "precision": 18,
+    "color": "#2E9CDD",
+    "icon": "https://assets.coingecko.com/coins/images/27129/thumb/SKP_logo_20x20.png?1696526181",
+    "symbol": "SKP",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x4c9f66b2806538cf00ef596e09fb05bcb0d17dc8": {
+    "assetId": "eip155:137/erc20:0x4c9f66b2806538cf00ef596e09fb05bcb0d17dc8",
+    "chainId": "eip155:137",
+    "name": "Minato on Polygon",
+    "precision": 18,
+    "color": "#C42434",
+    "icon": "https://assets.coingecko.com/coins/images/24622/thumb/MNTO_200x200.png?1696523794",
+    "symbol": "MNTO",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x4ca7bf91e4384d7c7a48ed4c04b555f350eb6719": {
+    "assetId": "eip155:137/erc20:0x4ca7bf91e4384d7c7a48ed4c04b555f350eb6719",
+    "chainId": "eip155:137",
+    "name": "Zeemcoin",
+    "precision": 18,
+    "color": "#8DC7CA",
+    "icon": "https://assets.coingecko.com/coins/images/30336/thumb/Logo_reducido_Zeemcoin_-_Color.png?1696529237",
+    "symbol": "ZEEM",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x4cd44ced63d9a6fef595f6ad3f7ced13fceac768": {
+    "assetId": "eip155:137/erc20:0x4cd44ced63d9a6fef595f6ad3f7ced13fceac768",
+    "chainId": "eip155:137",
+    "name": "tetuQi",
+    "precision": 18,
+    "color": "#FC7474",
+    "icon": "https://assets.coingecko.com/coins/images/28314/thumb/tetuQi.png?1696527319",
+    "symbol": "TETUQI",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x4cebdbcb286101a17d3ea1f7fe7bbded2b2053dd": {
+    "assetId": "eip155:137/erc20:0x4cebdbcb286101a17d3ea1f7fe7bbded2b2053dd",
+    "chainId": "eip155:137",
+    "name": "Yield App on Polygon",
+    "precision": 18,
+    "color": "#2A4B8F",
+    "icon": "https://assets.coingecko.com/coins/images/13365/thumb/Google_Play_Store_Icon.png?1696513130",
+    "symbol": "YLD",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x4d0def42cf57d6f27cd4983042a55dce1c9f853c": {
+    "assetId": "eip155:137/erc20:0x4d0def42cf57d6f27cd4983042a55dce1c9f853c",
+    "chainId": "eip155:137",
+    "name": "DexKit on Polygon",
+    "precision": 18,
+    "color": "#ECECEC",
+    "icon": "https://assets.coingecko.com/coins/images/13187/thumb/7739.png?1696512969",
+    "symbol": "KIT",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x4d4d883f920f7c0c36a1be71a02aa0cde2aa22d1": {
+    "assetId": "eip155:137/erc20:0x4d4d883f920f7c0c36a1be71a02aa0cde2aa22d1",
+    "chainId": "eip155:137",
+    "name": "Opticash on Polygon",
+    "precision": 18,
+    "color": "#B0CC2D",
+    "icon": "https://assets.coingecko.com/coins/images/29362/thumb/opticash_logo_256*256.jpg?1696528310",
+    "symbol": "OPCH",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x4df071fb2d145be595b767f997c91818694a6ce1": {
+    "assetId": "eip155:137/erc20:0x4df071fb2d145be595b767f997c91818694a6ce1",
+    "chainId": "eip155:137",
+    "name": "MerchDAO on Polygon",
+    "precision": 18,
+    "color": "#FCB6C4",
+    "icon": "https://assets.coingecko.com/coins/images/14540/thumb/logo_256x256.png?1696514224",
+    "symbol": "MRCH",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x4e1581f01046efdd7a1a2cdb0f82cdd7f71f2e59": {
+    "assetId": "eip155:137/erc20:0x4e1581f01046efdd7a1a2cdb0f82cdd7f71f2e59",
+    "chainId": "eip155:137",
+    "name": "Popsicle Finance on Polygon",
+    "precision": 18,
+    "color": "#68E1F9",
+    "icon": "https://assets.coingecko.com/coins/images/14586/thumb/ice.png?1696514266",
+    "symbol": "ICE",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x4e3decbb3645551b8a19f0ea1678079fcb33fb4c": {
+    "assetId": "eip155:137/erc20:0x4e3decbb3645551b8a19f0ea1678079fcb33fb4c",
+    "chainId": "eip155:137",
+    "name": "Jarvis Synthetic Euro on Polygon",
+    "precision": 18,
+    "color": "#093796",
+    "icon": "https://assets.coingecko.com/coins/images/15725/thumb/jEUR.png?1696515352",
+    "symbol": "JEUR",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x4e67b4598bce5f0b2706407407da0d4d8e1d7433": {
+    "assetId": "eip155:137/erc20:0x4e67b4598bce5f0b2706407407da0d4d8e1d7433",
+    "chainId": "eip155:137",
+    "name": "Aventis Metaverse",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAIAAAACACAMAAAD04JH5AAADAFBMVEUtN0jYJqT///8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABRO0XTAAABAHRSTlP/////AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAf6K/dgAAQItJREFUeNoBgEB/vwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAgICAgICAgICAgICAQEBAQEBAQEBAQEBAQECAgICAgICAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgICAgICAgAAAAAAAAACAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgEBAQEBAQECAgICAgICAAAAAAAAAAAAAAAAAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAgICAgICAgMAAAAAAAACAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAgICAgICAgMAAAAAAAACAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAgICAgICAgMAAAAAAAACAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAgICAgICAgMAAAAAAAACAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAgICAgICAgMAAAAAAAACAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAgICAgICAgMAAAAAAAACAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAMDAwMDAwMDAwMDAgICAgICAgEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAgICAgICAgMAAAAAAAAAAwMDAwMDAwMDAwMDAwICAgICAgIDAwMDAwMDAwMDAwMDAwMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAgICAgICAgMAAAAAAAAAAAAAAAAAAAAAAAAAAAICAgICAgIDAAAAAAEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAgICAgICAgMAAAAAAAAAAAAAAAAAAAAAAAAAAAICAgICAgIDAAAAAAEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAgICAgICAgMAAAAAAAAAAAAAAAAAAAAAAAAAAAICAgICAgIDAAAAAAEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAgICAgICAgMAAAAAAAAAAAAAAAAAAAAAAAAAAAICAgICAgIDAAAAAAEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAgICAgICAgMAAAAAAAAAAAAAAAAAAAAAAAAAAAICAgICAgIDAAAAAAEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAgICAgICAgMAAAAAAAAAAAAAAAAAAAAAAAAAAAICAgICAgIDAAAAAAEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAgICAgICAgMAAAAAAAAAAAAAAAAAAAAAAAAAAAICAgICAgIDAAAAAAEBAQEBAQEBAQEBAQEBAQECAgICAgICAgICAgICAgAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAgICAgICAgMAAAAAAAAAAAAAAAAAAAAAAAAAAAICAgICAgIDAAAAAAEBAQEBAQEBAQEBAQEBAQECAgICAgICAgICAgICAgMAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAgICAgICAgMAAAAAAAAAAAAAAAAAAAAAAAAAAAICAgICAgIDAAAAAAEBAQEBAQEBAQEBAQEBAQECAgICAgICAgICAgICAgMAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAgICAgICAgMAAAAAAAAAAAAAAAAAAAAAAAAAAAICAgICAgIDAAAAAAEBAQEBAQEBAQEBAQEBAQECAgICAgICAgICAgICAgMAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAgICAgICAgMAAAAAAAAAAAAAAAAAAAAAAAAAAAICAgICAgIDAAAAAAEBAQEBAQEBAQEBAQEBAQECAgICAgICAgICAgICAgMAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAgICAgICAgMAAAAAAAAAAAAAAAAAAAAAAAAAAAICAgICAgIDAAAAAAEBAQEBAQEBAQEBAQEBAQECAgICAgICAgICAgICAgMAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAgICAgICAgMAAAAAAAAAAAAAAAAAAAAAAAAAAAICAgICAgIDAAAAAAEBAQEBAQEBAQEBAQEBAQECAgICAgICAgICAgICAgMAAAAAAgICAgICAgICAgICAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAgICAgICAgMAAAAAAAAAAAAAAAAAAAAAAAAAAAICAgICAgIDAAAAAAEBAQEBAQEBAQEBAQEBAQECAgICAgICAwMDAwMDAwICAgIAAgICAgICAgICAgICAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAgICAgICAgMAAAAAAAAAAAAAAAAAAAAAAAAAAAICAgICAgIDAAAAAAEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAICAgIDAgICAgICAgICAgICAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAgICAgICAgMAAAAAAAAAAAAAAAAAAAAAAAAAAAICAgICAgIDAAAAAAEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAICAgIDAgICAgICAgICAgICAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAgICAgICAgMAAAAAAAAAAAAAAAAAAAAAAAAAAAICAgICAgIDAAAAAAEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAICAgIDAgICAgICAgICAgICAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAgICAgICAgMAAAAAAAAAAAAAAAAAAAAAAAAAAAICAgICAgIDAAAAAAEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAICAgIDAgICAgICAgICAgICAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAgICAgICAgMAAAAAAAAAAAAAAAAAAAAAAAAAAAICAgICAgIDAAAAAAEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAICAgIDAgICAgICAgICAgICAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAgICAgICAgMAAAAAAAAAAAAAAAAAAAAAAAAAAAICAgICAgIDAAAAAAEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAICAgIDAAMDAwMDAwMDAwMDAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAgICAgICAgMAAAAAAAAAAAAAAAAAAAAAAAAAAAICAgICAgIDAAAAAAEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAADAwMDAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAgICAgICAgMAAAAAAAAAAAAAAAAAAAAAAAAAAAICAgICAgIDAAAAAAEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAgICAgICAgMAAAAAAAAAAAAAAAAAAAAAAAAAAAICAgICAgIDAAAAAAEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAgICAgICAgMAAAAAAAAAAAAAAAAAAAAAAAAAAAICAgICAgIDAAAAAAEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAgICAgICAgMAAAAAAAAAAAAAAAAAAAAAAAAAAAICAgICAgIDAAAAAAEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAgICAgICAgMAAAAAAAAAAAAAAAAAAAAAAAAAAAICAgICAgIDAAAAAAEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgIDAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQEBAwMDAwMDAgICAgICAgEBAQEBAQECAgICAgICAAMDAwMDAwMAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgIDAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgIDAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgIDAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgIDAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgIDAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgIDAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgIDAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQEBAQEBAQEBAQMDAwMDAwICAgICAgIBAwMDAwMDAwAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgIDAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgIDAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgIDAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgIDAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgIDAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgIDAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgIDAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQMDAwMDAwMBAQEBAQEBAQEBAQEBAQEBAQEBAQEDAwMDAwMDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEDAwMDAwMDAQEBAQEBAQEBAQEBAQEBAQEBAQEBAwMDAwMDAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAElVKxm/JhCmAAAAAElFTkSuQmCC",
+    "symbol": "AVTM",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x4e78011ce80ee02d2c3e649fb657e45898257815": {
+    "assetId": "eip155:137/erc20:0x4e78011ce80ee02d2c3e649fb657e45898257815",
+    "chainId": "eip155:137",
+    "name": "KlimaDAO",
+    "precision": 9,
+    "color": "#04A02A",
+    "icon": "https://assets.coingecko.com/coins/images/19169/thumb/Klima-Token.png?1696518618",
+    "symbol": "KLIMA",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x4e830f67ec499e69930867f9017aeb5b3f629c73": {
+    "assetId": "eip155:137/erc20:0x4e830f67ec499e69930867f9017aeb5b3f629c73",
+    "chainId": "eip155:137",
+    "name": "Oddz on Polygon",
+    "precision": 18,
+    "color": "#B4D4FC",
+    "icon": "https://assets.coingecko.com/coins/images/14421/thumb/NewLogo.png?1696514112",
+    "symbol": "ODDZ",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x4ec203dd0699fac6adaf483cdd2519bc05d2c573": {
+    "assetId": "eip155:137/erc20:0x4ec203dd0699fac6adaf483cdd2519bc05d2c573",
+    "chainId": "eip155:137",
+    "name": "Cobak on Polygon",
+    "precision": 18,
+    "color": "#2474FB",
+    "icon": "https://assets.coingecko.com/coins/images/13459/thumb/cbk-128-128.png?1696513222",
+    "symbol": "CBK",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x4ec465d5db20a01bc8404dc84f33bb7a398b8335": {
+    "assetId": "eip155:137/erc20:0x4ec465d5db20a01bc8404dc84f33bb7a398b8335",
+    "chainId": "eip155:137",
+    "name": "Floxypay",
+    "precision": 18,
+    "color": "#070707",
+    "icon": "https://assets.coingecko.com/coins/images/30702/thumb/mNfZxsg__400x400.jpg?1696529574",
+    "symbol": "FXY",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x4ed141110f6eeeaba9a1df36d8c26f684d2475dc": {
+    "assetId": "eip155:137/erc20:0x4ed141110f6eeeaba9a1df36d8c26f684d2475dc",
+    "chainId": "eip155:137",
+    "name": "Brazilian Digital on Polygon",
+    "precision": 18,
+    "color": "#160633",
+    "icon": "https://assets.coingecko.com/coins/images/8472/thumb/MicrosoftTeams-image_%286%29.png?1696508657",
+    "symbol": "BRZ",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x4ee438be38f8682abb089f2bfea48851c5e71eaf": {
+    "assetId": "eip155:137/erc20:0x4ee438be38f8682abb089f2bfea48851c5e71eaf",
+    "chainId": "eip155:137",
+    "name": "Cryptonovae on Polygon",
+    "precision": 18,
+    "color": "#FC2C64",
+    "icon": "https://assets.coingecko.com/coins/images/14693/thumb/yae.png?1696514365",
+    "symbol": "YAE",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x4f604735c1cf31399c6e711d5962b2b3e0225ad3": {
+    "assetId": "eip155:137/erc20:0x4f604735c1cf31399c6e711d5962b2b3e0225ad3",
+    "chainId": "eip155:137",
+    "name": "Glo Dollar on Polygon",
+    "precision": 18,
+    "color": "#143C3C",
+    "icon": "https://assets.coingecko.com/coins/images/29319/thumb/glo_logo_coingecko.png?1696528270",
+    "symbol": "USDGLO",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x4fafad147c8cd0e52f83830484d164e960bdc6c3": {
+    "assetId": "eip155:137/erc20:0x4fafad147c8cd0e52f83830484d164e960bdc6c3",
+    "chainId": "eip155:137",
+    "name": "Qawalla on Polygon",
+    "precision": 18,
+    "color": "#CDD6D8",
+    "icon": "https://assets.coingecko.com/coins/images/15242/thumb/qwla.png?1696514896",
+    "symbol": "QWLA",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x4fb71290ac171e1d144f7221d882becac7196eb5": {
+    "assetId": "eip155:137/erc20:0x4fb71290ac171e1d144f7221d882becac7196eb5",
+    "chainId": "eip155:137",
+    "name": "BiLira on Polygon",
+    "precision": 6,
+    "color": "#8B98E8",
+    "icon": "https://assets.coingecko.com/coins/images/10119/thumb/JBs9jiXO_400x400.jpg?1696510144",
+    "symbol": "TRYB",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x4fdce518fe527439fe76883e6b51a1c522b61b7c": {
+    "assetId": "eip155:137/erc20:0x4fdce518fe527439fe76883e6b51a1c522b61b7c",
+    "chainId": "eip155:137",
+    "name": "COR Token on Polygon",
+    "precision": 18,
+    "color": "#062EFC",
+    "icon": "https://assets.coingecko.com/coins/images/12856/thumb/COR.png?1696512646",
+    "symbol": "COR",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x4ff0b68abc2b9e4e1401e9b691dba7d66b264ac8": {
+    "assetId": "eip155:137/erc20:0x4ff0b68abc2b9e4e1401e9b691dba7d66b264ac8",
+    "chainId": "eip155:137",
+    "name": "Riot Racers on Polygon",
+    "precision": 18,
+    "color": "#080604",
+    "icon": "https://assets.coingecko.com/coins/images/19238/thumb/jyxvIbmJ_400x400.png?1696518684",
+    "symbol": "RIOT",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x503836c8c3a453c57f58cc99b070f2e78ec14fc0": {
+    "assetId": "eip155:137/erc20:0x503836c8c3a453c57f58cc99b070f2e78ec14fc0",
+    "chainId": "eip155:137",
+    "name": "SPORT",
+    "precision": 18,
+    "color": "#2D2D2D",
+    "icon": "https://assets.coingecko.com/coins/images/25823/thumb/SPORT_LOGO_PNG.png?1696524908",
+    "symbol": "SPORT",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x50b728d8d964fd00c2d0aad81718b71311fef68a": {
+    "assetId": "eip155:137/erc20:0x50b728d8d964fd00c2d0aad81718b71311fef68a",
+    "chainId": "eip155:137",
+    "name": "Synthetix Network on Polygon",
+    "precision": 18,
+    "color": "#04B5E5",
+    "icon": "https://assets.coingecko.com/coins/images/3406/thumb/SNX.png?1696504103",
+    "symbol": "SNX",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x50bcbc40306230713239ae1bddd5eefeeaa273dc": {
+    "assetId": "eip155:137/erc20:0x50bcbc40306230713239ae1bddd5eefeeaa273dc",
+    "chainId": "eip155:137",
+    "name": "Asia Coin on Polygon",
+    "precision": 18,
+    "color": "#14249A",
+    "icon": "https://assets.coingecko.com/coins/images/18589/thumb/Ou7mp_R1TQ5B9vsBiZ8oQnSv36M6hiA2hESxV_7YSw0.png?1696518065",
+    "symbol": "ASIA",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x513c7e3a9c69ca3e22550ef58ac1c0088e918fff": {
+    "assetId": "eip155:137/erc20:0x513c7e3a9c69ca3e22550ef58ac1c0088e918fff",
+    "chainId": "eip155:137",
+    "name": "Aave v3 CRV on Polygon",
+    "precision": 18,
+    "color": "#2EA8D1",
+    "icon": "https://assets.coingecko.com/coins/images/32901/thumb/CRV.png?1699802172",
+    "symbol": "ACRV",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x51869836681bce74a514625c856afb697a013797": {
+    "assetId": "eip155:137/erc20:0x51869836681bce74a514625c856afb697a013797",
+    "chainId": "eip155:137",
+    "name": "Genesis Worlds",
+    "precision": 18,
+    "color": "#5E2296",
+    "icon": "https://assets.coingecko.com/coins/images/19905/thumb/kKkWmniB_400x400.jpg?1696519325",
+    "symbol": "GENESIS",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x5198e7cc1640049de37d1bd10b03fa5a3afda120": {
+    "assetId": "eip155:137/erc20:0x5198e7cc1640049de37d1bd10b03fa5a3afda120",
+    "chainId": "eip155:137",
+    "name": "Kaby Arena on Polygon",
+    "precision": 18,
+    "color": "#416A8C",
+    "icon": "https://assets.coingecko.com/coins/images/18090/thumb/URPKhnop_400x400.jpg?1696517595",
+    "symbol": "KABY",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x51b5619f5180e333d18b6310c8d540aea43a0371": {
+    "assetId": "eip155:137/erc20:0x51b5619f5180e333d18b6310c8d540aea43a0371",
+    "chainId": "eip155:137",
+    "name": "Vault Hill City",
+    "precision": 18,
+    "color": "#FC6C3C",
+    "icon": "https://assets.coingecko.com/coins/images/23120/thumb/vhclogo.3929f10d.png?1696522411",
+    "symbol": "VHC",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x51de72b17c7bd12e9e6d69eb506a669eb6b5249e": {
+    "assetId": "eip155:137/erc20:0x51de72b17c7bd12e9e6d69eb506a669eb6b5249e",
+    "chainId": "eip155:137",
+    "name": "Waves Ducks on Polygon",
+    "precision": 18,
+    "color": "#689AFC",
+    "icon": "https://assets.coingecko.com/coins/images/17298/thumb/200x200_pixel.png?1696516851",
+    "symbol": "EGG",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x521cddc0cba84f14c69c1e99249f781aa73ee0bc": {
+    "assetId": "eip155:137/erc20:0x521cddc0cba84f14c69c1e99249f781aa73ee0bc",
+    "chainId": "eip155:137",
+    "name": "Mover on Polygon",
+    "precision": 18,
+    "color": "#BAD65A",
+    "icon": "https://assets.coingecko.com/coins/images/13719/thumb/o0KIvs7T_400x400.jpg?1696513464",
+    "symbol": "MOVE",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x52468c88e8b4f5bcca20a6a7813355637dc5e3ad": {
+    "assetId": "eip155:137/erc20:0x52468c88e8b4f5bcca20a6a7813355637dc5e3ad",
+    "chainId": "eip155:137",
+    "name": "Power Of Deep Ocean",
+    "precision": 18,
+    "color": "#81ACC2",
+    "icon": "https://assets.coingecko.com/coins/images/27645/thumb/PODO_TICKER_200.png?1696526674",
+    "symbol": "PODO",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x52d134c6db5889fad3542a09eaf7aa90c0fdf9e4": {
+    "assetId": "eip155:137/erc20:0x52d134c6db5889fad3542a09eaf7aa90c0fdf9e4",
+    "chainId": "eip155:137",
+    "name": "Backed IBTA   Treasury Bond 1 3yr on Polygon",
+    "precision": 18,
+    "color": "#464C57",
+    "icon": "https://assets.coingecko.com/coins/images/31880/thumb/b-IBTA-200x200.png?1696530692",
+    "symbol": "BIBTA",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x52ede6bba83b7b4ba1d738df0df713d6a2036b71": {
+    "assetId": "eip155:137/erc20:0x52ede6bba83b7b4ba1d738df0df713d6a2036b71",
+    "chainId": "eip155:137",
+    "name": "0xMonero on Polygon",
+    "precision": 18,
+    "color": "#54FCDC",
+    "icon": "https://assets.coingecko.com/coins/images/11035/thumb/0xmnr.PNG?1696510979",
+    "symbol": "0XMR",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x5314ba045a459f63906aa7c76d9f337dcb7d6995": {
+    "assetId": "eip155:137/erc20:0x5314ba045a459f63906aa7c76d9f337dcb7d6995",
+    "chainId": "eip155:137",
+    "name": "Fodl Finance on Polygon",
+    "precision": 18,
+    "color": "#FC685D",
+    "icon": "https://assets.coingecko.com/coins/images/19040/thumb/Fodl_Symbol_Gradient.png?1696518491",
+    "symbol": "FODL",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x534f39c5f4df9cb13e16b24ca07c7c8c0e2eadb7": {
+    "assetId": "eip155:137/erc20:0x534f39c5f4df9cb13e16b24ca07c7c8c0e2eadb7",
+    "chainId": "eip155:137",
+    "name": "Safe Haven on Polygon",
+    "precision": 18,
+    "color": "#AE2CD5",
+    "icon": "https://assets.coingecko.com/coins/images/2584/thumb/safehaven.png?1696503388",
+    "symbol": "SHA",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x538d47d142f6993038a667e9d6210d3735749b36": {
+    "assetId": "eip155:137/erc20:0x538d47d142f6993038a667e9d6210d3735749b36",
+    "chainId": "eip155:137",
+    "name": "Burp on Polygon",
+    "precision": 18,
+    "color": "#EAD5F8",
+    "icon": "https://assets.coingecko.com/coins/images/17317/thumb/Big_Town_Chef_-__BURP_-_Avatar_3x.png?1696516871",
+    "symbol": "BURP",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x53e0bca35ec356bd5dddfebbd1fc0fd03fabad39": {
+    "assetId": "eip155:137/erc20:0x53e0bca35ec356bd5dddfebbd1fc0fd03fabad39",
+    "chainId": "eip155:137",
+    "name": "Chainlink on Polygon",
+    "precision": 18,
+    "color": "#2C5CDC",
+    "icon": "https://assets.coingecko.com/coins/images/877/thumb/chainlink-new-logo.png?1696502009",
+    "symbol": "LINK",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x554cd6bdd03214b10aafa3e0d4d42de0c5d2937b": {
+    "assetId": "eip155:137/erc20:0x554cd6bdd03214b10aafa3e0d4d42de0c5d2937b",
+    "chainId": "eip155:137",
+    "name": "Rupiah Token on Polygon",
+    "precision": 6,
+    "color": "#B04044",
+    "icon": "https://assets.coingecko.com/coins/images/9441/thumb/57421944_1371636006308255_3647136573922738176_n.jpg?1696509533",
+    "symbol": "IDRT",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x554f074d9ccda8f483d1812d4874cbebd682644e": {
+    "assetId": "eip155:137/erc20:0x554f074d9ccda8f483d1812d4874cbebd682644e",
+    "chainId": "eip155:137",
+    "name": "AnRKey X on Polygon",
+    "precision": 18,
+    "color": "#B03A79",
+    "icon": "https://assets.coingecko.com/coins/images/13415/thumb/anrkey.jpg?1696513176",
+    "symbol": "ANRX",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x55555555a687343c6ce28c8e1f6641dc71659fad": {
+    "assetId": "eip155:137/erc20:0x55555555a687343c6ce28c8e1f6641dc71659fad",
+    "chainId": "eip155:137",
+    "name": "XY Finance on Polygon",
+    "precision": 18,
+    "color": "#0C54E2",
+    "icon": "https://assets.coingecko.com/coins/images/21541/thumb/xy.png?1696520900",
+    "symbol": "XY",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x55b1a124c04a54eefdefe5fa2ef5f852fb5f2f26": {
+    "assetId": "eip155:137/erc20:0x55b1a124c04a54eefdefe5fa2ef5f852fb5f2f26",
+    "chainId": "eip155:137",
+    "name": "Ethereum Meta on Polygon",
+    "precision": 18,
+    "color": "#459879",
+    "icon": "https://assets.coingecko.com/coins/images/6586/thumb/ethereum-meta.png?1696506937",
+    "symbol": "ETHM",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x55bb4d4b4545a886df159354e5fa5791c2d13496": {
+    "assetId": "eip155:137/erc20:0x55bb4d4b4545a886df159354e5fa5791c2d13496",
+    "chainId": "eip155:137",
+    "name": "Peak Token",
+    "precision": 18,
+    "color": "#D0D6D8",
+    "icon": "https://assets.coingecko.com/coins/images/28627/thumb/Peak_Token_silver_vector.png?1696527612",
+    "symbol": "PKTK",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x564906ec1df8399f00e4ad32c0ecac0404a27a1c": {
+    "assetId": "eip155:137/erc20:0x564906ec1df8399f00e4ad32c0ecac0404a27a1c",
+    "chainId": "eip155:137",
+    "name": "Ambire Wallet on Polygon",
+    "precision": 18,
+    "color": "#7018F8",
+    "icon": "https://assets.coingecko.com/coins/images/23154/thumb/wallet.PNG?1696522445",
+    "symbol": "WALLET",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x578fee9def9a270c20865242cfd4ff86f31d0e5b": {
+    "assetId": "eip155:137/erc20:0x578fee9def9a270c20865242cfd4ff86f31d0e5b",
+    "chainId": "eip155:137",
+    "name": "Runy",
+    "precision": 18,
+    "color": "#FBB505",
+    "icon": "https://assets.coingecko.com/coins/images/29125/thumb/Coin_Runy_200_200.png?1696528086",
+    "symbol": "RUNY",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x57999936fc9a9ec0751a8d146cce11901be8bed0": {
+    "assetId": "eip155:137/erc20:0x57999936fc9a9ec0751a8d146cce11901be8bed0",
+    "chainId": "eip155:137",
+    "name": "VirtuSwap on Polygon",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/30629/thumb/VirtuSwap_Logo_Red_200x200.png?1696529502",
+    "symbol": "VRSW",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x57c453e7a4d73ac1db8ae07da5dda3b398d17577": {
+    "assetId": "eip155:137/erc20:0x57c453e7a4d73ac1db8ae07da5dda3b398d17577",
+    "chainId": "eip155:137",
+    "name": "Nodewaves",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/33160/thumb/logo-4.png?1700829948",
+    "symbol": "NWS",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x57fcbd6503c8be3b1abad191bc7799ef414a5b31": {
+    "assetId": "eip155:137/erc20:0x57fcbd6503c8be3b1abad191bc7799ef414a5b31",
+    "chainId": "eip155:137",
+    "name": "tSILVER on Polygon",
+    "precision": 18,
+    "color": "#979797",
+    "icon": "https://assets.coingecko.com/coins/images/27829/thumb/tSILVER_token_2D.jpg?1696526848",
+    "symbol": "TXAG",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x58001cc1a9e17a20935079ab40b1b8f4fc19efd1": {
+    "assetId": "eip155:137/erc20:0x58001cc1a9e17a20935079ab40b1b8f4fc19efd1",
+    "chainId": "eip155:137",
+    "name": "Push Protocol on Polygon",
+    "precision": 18,
+    "color": "#D457C8",
+    "icon": "https://assets.coingecko.com/coins/images/14769/thumb/aiOxYOJI_400x400.jpeg?1696514438",
+    "symbol": "PUSH",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x58b9cb810a68a7f3e1e4f8cb45d1b9b3c79705e8": {
+    "assetId": "eip155:137/erc20:0x58b9cb810a68a7f3e1e4f8cb45d1b9b3c79705e8",
+    "chainId": "eip155:137",
+    "name": "Connext on Polygon",
+    "precision": 18,
+    "color": "#09070B",
+    "icon": "https://assets.coingecko.com/coins/images/31293/thumb/connext.png?1696530113",
+    "symbol": "NEXT",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x58c7b2828e7f2b2caa0cc7feef242fa3196d03df": {
+    "assetId": "eip155:137/erc20:0x58c7b2828e7f2b2caa0cc7feef242fa3196d03df",
+    "chainId": "eip155:137",
+    "name": "3A on Polygon",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/33135/thumb/A3A.png?1700801023",
+    "symbol": "A3A",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x590eb2920486486c2d9bb3eb651f73b81df87bcf": {
+    "assetId": "eip155:137/erc20:0x590eb2920486486c2d9bb3eb651f73b81df87bcf",
+    "chainId": "eip155:137",
+    "name": "Bobcoin on Polygon",
+    "precision": 18,
+    "color": "#AA9266",
+    "icon": "https://assets.coingecko.com/coins/images/24264/thumb/bobc.png?1696523448",
+    "symbol": "BOBC",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x596ebe76e2db4470966ea395b0d063ac6197a8c5": {
+    "assetId": "eip155:137/erc20:0x596ebe76e2db4470966ea395b0d063ac6197a8c5",
+    "chainId": "eip155:137",
+    "name": "Jarvis Reward on Polygon",
+    "precision": 18,
+    "color": "#54FC74",
+    "icon": "https://assets.coingecko.com/coins/images/10390/thumb/cfeii0y.png?1696510389",
+    "symbol": "JRT",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x598e49f01befeb1753737934a5b11fea9119c796": {
+    "assetId": "eip155:137/erc20:0x598e49f01befeb1753737934a5b11fea9119c796",
+    "chainId": "eip155:137",
+    "name": "Adshares on Polygon",
+    "precision": 11,
+    "color": "#FC444C",
+    "icon": "https://assets.coingecko.com/coins/images/868/thumb/rnO9DyJ.png?1696502001",
+    "symbol": "ADS",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x59b5654a17ac44f3068b3882f298881433bb07ef": {
+    "assetId": "eip155:137/erc20:0x59b5654a17ac44f3068b3882f298881433bb07ef",
+    "chainId": "eip155:137",
+    "name": "CoinPoker on Polygon",
+    "precision": 18,
+    "color": "#34262E",
+    "icon": "https://assets.coingecko.com/coins/images/1808/thumb/coinpoker.jpg?1696502810",
+    "symbol": "CHP",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x59d9356e565ab3a36dd77763fc0d87feaf85508c": {
+    "assetId": "eip155:137/erc20:0x59d9356e565ab3a36dd77763fc0d87feaf85508c",
+    "chainId": "eip155:137",
+    "name": "Mountain Protocol USD on Polygon",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/31719/thumb/usdm.png?1696530540",
+    "symbol": "USDM",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x5a7bb7b8eff493625a2bb855445911e63a490e42": {
+    "assetId": "eip155:137/erc20:0x5a7bb7b8eff493625a2bb855445911e63a490e42",
+    "chainId": "eip155:137",
+    "name": "TSUBASA Utilitiy Token",
+    "precision": 8,
+    "color": "#B4B3B3",
+    "icon": "https://assets.coingecko.com/coins/images/31796/thumb/TSUBASAUT.png?1696530612",
+    "symbol": "TSUBASAUT",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x5b4cf2c120a9702225814e18543ee658c5f8631e": {
+    "assetId": "eip155:137/erc20:0x5b4cf2c120a9702225814e18543ee658c5f8631e",
+    "chainId": "eip155:137",
+    "name": "UniLend Finance on Polygon",
+    "precision": 18,
+    "color": "#2B6CEC",
+    "icon": "https://assets.coingecko.com/coins/images/12819/thumb/UniLend_Finance_logo_PNG.png?1696512611",
+    "symbol": "UFT",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x5c2ed810328349100a66b82b78a1791b101c9d61": {
+    "assetId": "eip155:137/erc20:0x5c2ed810328349100a66b82b78a1791b101c9d61",
+    "chainId": "eip155:137",
+    "name": "Aave Polygon WBTC",
+    "precision": 8,
+    "color": "#B4B2B8",
+    "icon": "https://assets.coingecko.com/coins/images/17265/thumb/amWBTC_2x.png?1696516820",
+    "symbol": "AMWBTC",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x5c3e6447d97fe80a9818ef3fe14a2bf5bb83e0b8": {
+    "assetId": "eip155:137/erc20:0x5c3e6447d97fe80a9818ef3fe14a2bf5bb83e0b8",
+    "chainId": "eip155:137",
+    "name": "Tracer",
+    "precision": 18,
+    "color": "#0B0B04",
+    "icon": "https://assets.coingecko.com/coins/images/28564/thumb/tracer.png?1696527553",
+    "symbol": "TRC",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x5c59d7cb794471a9633391c4927ade06b8787a90": {
+    "assetId": "eip155:137/erc20:0x5c59d7cb794471a9633391c4927ade06b8787a90",
+    "chainId": "eip155:137",
+    "name": "Timeleap Finance",
+    "precision": 18,
+    "color": "#DAC8CC",
+    "icon": "https://assets.coingecko.com/coins/images/18854/thumb/timeleap.PNG?1696518315",
+    "symbol": "TIME",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x5c7f7fe4766fe8f0fa9b41e2e4194d939488ff1c": {
+    "assetId": "eip155:137/erc20:0x5c7f7fe4766fe8f0fa9b41e2e4194d939488ff1c",
+    "chainId": "eip155:137",
+    "name": "Doki Doki on Polygon",
+    "precision": 18,
+    "color": "#FC94C4",
+    "icon": "https://assets.coingecko.com/coins/images/12759/thumb/doki_logo.png?1696512556",
+    "symbol": "DOKI",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x5ceebb0947d58fabde2fc026ffe4b33ccfe1ba8b": {
+    "assetId": "eip155:137/erc20:0x5ceebb0947d58fabde2fc026ffe4b33ccfe1ba8b",
+    "chainId": "eip155:137",
+    "name": "4INT",
+    "precision": 9,
+    "color": "#78B2C7",
+    "icon": "https://assets.coingecko.com/coins/images/23444/thumb/logo_ff_200x200.jpg?1696522656",
+    "symbol": "4INT",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x5d066d022ede10efa2717ed3d79f22f949f8c175": {
+    "assetId": "eip155:137/erc20:0x5d066d022ede10efa2717ed3d79f22f949f8c175",
+    "chainId": "eip155:137",
+    "name": "Stabl fi CASH",
+    "precision": 18,
+    "color": "#305193",
+    "icon": "https://assets.coingecko.com/coins/images/27558/thumb/cash.png?1696526594",
+    "symbol": "CASH",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x5d089336f95e649e491c054279d64a86565e8b25": {
+    "assetId": "eip155:137/erc20:0x5d089336f95e649e491c054279d64a86565e8b25",
+    "chainId": "eip155:137",
+    "name": "MonoLend",
+    "precision": 18,
+    "color": "#F9AF33",
+    "icon": "https://assets.coingecko.com/coins/images/30143/thumb/MLD.png?1696529064",
+    "symbol": "MLD",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x5d301750cc9719f00872e33ee81f9c37aba242f4": {
+    "assetId": "eip155:137/erc20:0x5d301750cc9719f00872e33ee81f9c37aba242f4",
+    "chainId": "eip155:137",
+    "name": "Revolt 2 Earn",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/26360/thumb/revolt2earn_32.png?1696525438",
+    "symbol": "RVLT",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x5d47baba0d66083c52009271faf3f50dcc01023c": {
+    "assetId": "eip155:137/erc20:0x5d47baba0d66083c52009271faf3f50dcc01023c",
+    "chainId": "eip155:137",
+    "name": "ApeSwap on Polygon",
+    "precision": 18,
+    "color": "#FCF4E3",
+    "icon": "https://assets.coingecko.com/coins/images/14870/thumb/banana.png?1696514534",
+    "symbol": "BANANA",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x5d48a5e5a3e737322ae27e25897f1c9e19ecc941": {
+    "assetId": "eip155:137/erc20:0x5d48a5e5a3e737322ae27e25897f1c9e19ecc941",
+    "chainId": "eip155:137",
+    "name": "OkLetsPlay",
+    "precision": 18,
+    "color": "#DCC5FB",
+    "icon": "https://assets.coingecko.com/coins/images/22796/thumb/262654028_2202751929890590_982664396355018092_n.png?1696522099",
+    "symbol": "OKLP",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x5d5530eb3147152fe78d5c4bfeede054c8d1442a": {
+    "assetId": "eip155:137/erc20:0x5d5530eb3147152fe78d5c4bfeede054c8d1442a",
+    "chainId": "eip155:137",
+    "name": "WalletNow on Polygon",
+    "precision": 18,
+    "color": "#BE36BF",
+    "icon": "https://assets.coingecko.com/coins/images/20149/thumb/walletnow.PNG?1696519563",
+    "symbol": "WNOW",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x5dfd5edfde4d8ec9e632dca9d09fc7e833f74210": {
+    "assetId": "eip155:137/erc20:0x5dfd5edfde4d8ec9e632dca9d09fc7e833f74210",
+    "chainId": "eip155:137",
+    "name": "Infinity Skies",
+    "precision": 18,
+    "color": "#D38135",
+    "icon": "https://assets.coingecko.com/coins/images/22583/thumb/isky.png?1696521901",
+    "symbol": "ISKY",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x5e0294af1732498c77f8db015a2d52a76298542b": {
+    "assetId": "eip155:137/erc20:0x5e0294af1732498c77f8db015a2d52a76298542b",
+    "chainId": "eip155:137",
+    "name": "Orion Money on Polygon",
+    "precision": 18,
+    "color": "#04BC74",
+    "icon": "https://assets.coingecko.com/coins/images/18630/thumb/YtrqPIWc.png?1696518102",
+    "symbol": "ORION",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x5e430f88d1be82eb3ef92b6ff06125168fd5dcf2": {
+    "assetId": "eip155:137/erc20:0x5e430f88d1be82eb3ef92b6ff06125168fd5dcf2",
+    "chainId": "eip155:137",
+    "name": "MODA DAO on Polygon",
+    "precision": 18,
+    "color": "#99BDDB",
+    "icon": "https://assets.coingecko.com/coins/images/20870/thumb/ModaDAO__logomark-primary_3x.png?1696520264",
+    "symbol": "MODA",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x5e6602b762f76d8bfdc7321aa0b787b1e67b187f": {
+    "assetId": "eip155:137/erc20:0x5e6602b762f76d8bfdc7321aa0b787b1e67b187f",
+    "chainId": "eip155:137",
+    "name": "KRED",
+    "precision": 18,
+    "color": "#151719",
+    "icon": "https://assets.coingecko.com/coins/images/22935/thumb/kred_logo_200.png?1696522231",
+    "symbol": "KRED",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x5eab32fe1d104ce0c5436fedc3433b646096e47c": {
+    "assetId": "eip155:137/erc20:0x5eab32fe1d104ce0c5436fedc3433b646096e47c",
+    "chainId": "eip155:137",
+    "name": "LIF3 LSHARE on Polygon",
+    "precision": 18,
+    "color": "#B28E66",
+    "icon": "https://assets.coingecko.com/coins/images/31575/thumb/LSHARE.png?1696530392",
+    "symbol": "LSHARE",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x5ec03c1f7fa7ff05ec476d19e34a22eddb48acdc": {
+    "assetId": "eip155:137/erc20:0x5ec03c1f7fa7ff05ec476d19e34a22eddb48acdc",
+    "chainId": "eip155:137",
+    "name": "ZED RUN",
+    "precision": 18,
+    "color": "#E0E6E9",
+    "icon": "https://assets.coingecko.com/coins/images/26607/thumb/zed-run.jpeg?1696525681",
+    "symbol": "ZED",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x5f0197ba06860dac7e31258bdf749f92b6a636d4": {
+    "assetId": "eip155:137/erc20:0x5f0197ba06860dac7e31258bdf749f92b6a636d4",
+    "chainId": "eip155:137",
+    "name": "Flare Token",
+    "precision": 18,
+    "color": "#7822C3",
+    "icon": "https://assets.coingecko.com/coins/images/19114/thumb/flr.png?1696518566",
+    "symbol": "1FLR",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x5fcb9de282af6122ce3518cde28b7089c9f97b26": {
+    "assetId": "eip155:137/erc20:0x5fcb9de282af6122ce3518cde28b7089c9f97b26",
+    "chainId": "eip155:137",
+    "name": "DeHive on Polygon",
+    "precision": 18,
+    "color": "#14141C",
+    "icon": "https://assets.coingecko.com/coins/images/14926/thumb/logo_200x200.png?1696514587",
+    "symbol": "DHV",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x5fe2b58c013d7601147dcdd68c143a77499f5531": {
+    "assetId": "eip155:137/erc20:0x5fe2b58c013d7601147dcdd68c143a77499f5531",
+    "chainId": "eip155:137",
+    "name": "The Graph on Polygon",
+    "precision": 18,
+    "color": "#433DAA",
+    "icon": "https://assets.coingecko.com/coins/images/13397/thumb/Graph_Token.png?1696513159",
+    "symbol": "GRT",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x6002410dda2fb88b4d0dc3c1d562f7761191ea80": {
+    "assetId": "eip155:137/erc20:0x6002410dda2fb88b4d0dc3c1d562f7761191ea80",
+    "chainId": "eip155:137",
+    "name": "The Employment Commons Work",
+    "precision": 18,
+    "color": "#A44C06",
+    "icon": "https://assets.coingecko.com/coins/images/18546/thumb/mXSw8Qw.png?1696518025",
+    "symbol": "WORK",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x60d55f02a771d515e077c9c2403a1ef324885cec": {
+    "assetId": "eip155:137/erc20:0x60d55f02a771d515e077c9c2403a1ef324885cec",
+    "chainId": "eip155:137",
+    "name": "Aave Polygon USDT",
+    "precision": 6,
+    "color": "#5CAC98",
+    "icon": "https://assets.coingecko.com/coins/images/17264/thumb/amUSDT_2x.png?1696516819",
+    "symbol": "AMUSDT",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x60eec374a1ba3907e9bdd8a74ce368d041d89c79": {
+    "assetId": "eip155:137/erc20:0x60eec374a1ba3907e9bdd8a74ce368d041d89c79",
+    "chainId": "eip155:137",
+    "name": "Parrotly",
+    "precision": 18,
+    "color": "#24ACE4",
+    "icon": "https://assets.coingecko.com/coins/images/28219/thumb/PARROTLY_BRAND_ASSETS__PARROTLY_ICON_BLUE_-_Copy_-_Copy_-_Copy.png?1696527221",
+    "symbol": "PBIRB",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x6109cb051c5c64093830121ed76272ab04bbdd7c": {
+    "assetId": "eip155:137/erc20:0x6109cb051c5c64093830121ed76272ab04bbdd7c",
+    "chainId": "eip155:137",
+    "name": "Prosper on Polygon",
+    "precision": 18,
+    "color": "#5D12E7",
+    "icon": "https://assets.coingecko.com/coins/images/13668/thumb/heD6cg22l3sF5VgPh4G1xC6lnKEWXJif-jbaqUpv8CDP6jbWaqn9UjBdkXWNrw1CewaQOxb8zXRdNeNJWWiUDjfsEl_d7E3bPLg4cFoilQF5TGKHfWyJlnpm3UYc9ytvRvOjxOevMuiu8-lusnNoOcwgsJpMkYWHqe322GAxLt0_30kFMVAcjEDUrOlkK6hUYi0m9P433mvNlOm.jpg?1696513418",
+    "symbol": "PROS",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x61299774020da444af134c82fa83e3810b309991": {
+    "assetId": "eip155:137/erc20:0x61299774020da444af134c82fa83e3810b309991",
+    "chainId": "eip155:137",
+    "name": "Render on Polygon",
+    "precision": 18,
+    "color": "#EEAAAA",
+    "icon": "https://assets.coingecko.com/coins/images/11636/thumb/rndr.png?1696511529",
+    "symbol": "RNDR",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x612d833c0c7a54cdfbe9a4328b6d658020563ec0": {
+    "assetId": "eip155:137/erc20:0x612d833c0c7a54cdfbe9a4328b6d658020563ec0",
+    "chainId": "eip155:137",
+    "name": "Pine on Polygon",
+    "precision": 18,
+    "color": "#7CFCB4",
+    "icon": "https://assets.coingecko.com/coins/images/25660/thumb/Logomark-Colour.png?1696524788",
+    "symbol": "PINE",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x613a489785c95afeb3b404cc41565ccff107b6e0": {
+    "assetId": "eip155:137/erc20:0x613a489785c95afeb3b404cc41565ccff107b6e0",
+    "chainId": "eip155:137",
+    "name": "RadioShack on Polygon",
+    "precision": 18,
+    "color": "#F5E7E0",
+    "icon": "https://assets.coingecko.com/coins/images/25307/thumb/ZVoPiysPJq6dPIZm_Se-6vjmsBepwhHlTQfdYZRILbHyVVTRUYCO-wmJJ4zT10HXCGv1j-ZyWr2u2sBaVlap5Y-ILqeXZuIquWdBDxxG0E0qDpgH7omLqYdgWWLSM_TUK9d1PiiYdu6bERdCDaucgFjlqwmhVQK4uV4jyUiXzchVUnu8Qt6SnxlNxz88G0mQ_tfiwkFv_vKqtgb1CcPycVZVz9.jpg?1696524444",
+    "symbol": "RADIO",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x614389eaae0a6821dc49062d56bda3d9d45fa2ff": {
+    "assetId": "eip155:137/erc20:0x614389eaae0a6821dc49062d56bda3d9d45fa2ff",
+    "chainId": "eip155:137",
+    "name": "Orbs on Polygon",
+    "precision": 18,
+    "color": "#6E809F",
+    "icon": "https://assets.coingecko.com/coins/images/4630/thumb/Orbs.jpg?1696505200",
+    "symbol": "ORBS",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x61aee582896064ecd5d85d66a32ddeb5574a699d": {
+    "assetId": "eip155:137/erc20:0x61aee582896064ecd5d85d66a32ddeb5574a699d",
+    "chainId": "eip155:137",
+    "name": "Hyve on Polygon",
+    "precision": 18,
+    "color": "#ADADAD",
+    "icon": "https://assets.coingecko.com/coins/images/13072/thumb/bAe1G-lD_400x400.png?1696512861",
+    "symbol": "HYVE",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x61daecab65ee2a1d5b6032df030f3faa3d116aa7": {
+    "assetId": "eip155:137/erc20:0x61daecab65ee2a1d5b6032df030f3faa3d116aa7",
+    "chainId": "eip155:137",
+    "name": "Dark Magic",
+    "precision": 18,
+    "color": "#091310",
+    "icon": "https://assets.coingecko.com/coins/images/15842/thumb/Dark_Magic.png?1696515459",
+    "symbol": "DMAGIC",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x61f95bd637e3034133335c1baa0148e518d438ad": {
+    "assetId": "eip155:137/erc20:0x61f95bd637e3034133335c1baa0148e518d438ad",
+    "chainId": "eip155:137",
+    "name": "MetaShooter on Polygon",
+    "precision": 18,
+    "color": "#060704",
+    "icon": "https://assets.coingecko.com/coins/images/24985/thumb/200x200.png?1696524137",
+    "symbol": "MHUNT",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x623a1350f6b749575f92ea54d0f745f9f07d3665": {
+    "assetId": "eip155:137/erc20:0x623a1350f6b749575f92ea54d0f745f9f07d3665",
+    "chainId": "eip155:137",
+    "name": "Karmaverse Zombie Serum",
+    "precision": 0,
+    "color": "#201087",
+    "icon": "https://assets.coingecko.com/coins/images/26002/thumb/serum.png?1696525079",
+    "symbol": "SERUM",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x623ebda5fc6b271dd597e20ae99927ea9ef8515e": {
+    "assetId": "eip155:137/erc20:0x623ebda5fc6b271dd597e20ae99927ea9ef8515e",
+    "chainId": "eip155:137",
+    "name": "DUX",
+    "precision": 18,
+    "color": "#E7BA3D",
+    "icon": "https://assets.coingecko.com/coins/images/28836/thumb/photo_2023-01-12_17-36-54.jpg?1696527812",
+    "symbol": "DUX",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x625e7708f30ca75bfd92586e17077590c60eb4cd": {
+    "assetId": "eip155:137/erc20:0x625e7708f30ca75bfd92586e17077590c60eb4cd",
+    "chainId": "eip155:137",
+    "name": "Aave v3 USDC on Polygon",
+    "precision": 6,
+    "color": "#AFACD6",
+    "icon": "https://assets.coingecko.com/coins/images/32847/thumb/usdc_%281%29.png?1699619355",
+    "symbol": "AUSDC",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x6286a9e6f7e745a6d884561d88f94542d6715698": {
+    "assetId": "eip155:137/erc20:0x6286a9e6f7e745a6d884561d88f94542d6715698",
+    "chainId": "eip155:137",
+    "name": "Cryptomeda on Polygon",
+    "precision": 18,
+    "color": "#F6B738",
+    "icon": "https://assets.coingecko.com/coins/images/17983/thumb/tech.png?1696517501",
+    "symbol": "TECH",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x62a872d9977db171d9e213a5dc2b782e72ca0033": {
+    "assetId": "eip155:137/erc20:0x62a872d9977db171d9e213a5dc2b782e72ca0033",
+    "chainId": "eip155:137",
+    "name": "NEUY",
+    "precision": 18,
+    "color": "#46B6E5",
+    "icon": "https://assets.coingecko.com/coins/images/25870/thumb/logo200x200.png?1696524953",
+    "symbol": "NEUY",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x62f594339830b90ae4c084ae7d223ffafd9658a7": {
+    "assetId": "eip155:137/erc20:0x62f594339830b90ae4c084ae7d223ffafd9658a7",
+    "chainId": "eip155:137",
+    "name": "Sphere Finance",
+    "precision": 18,
+    "color": "#2E9CE1",
+    "icon": "https://assets.coingecko.com/coins/images/24424/thumb/2iR2JsL.png?1696523606",
+    "symbol": "SPHERE",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x632b8c4e95b2f8a9309417f8d990ab9c04c77369": {
+    "assetId": "eip155:137/erc20:0x632b8c4e95b2f8a9309417f8d990ab9c04c77369",
+    "chainId": "eip155:137",
+    "name": "Weble Ecosystem on Polygon",
+    "precision": 18,
+    "color": "#98BBC8",
+    "icon": "https://assets.coingecko.com/coins/images/17353/thumb/cropped-logo-wombat.png?1696516905",
+    "symbol": "WET",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x638df98ad8069a15569da5a6b01181804c47e34c": {
+    "assetId": "eip155:137/erc20:0x638df98ad8069a15569da5a6b01181804c47e34c",
+    "chainId": "eip155:137",
+    "name": "Dafi Protocol on Polygon",
+    "precision": 18,
+    "color": "#34343C",
+    "icon": "https://assets.coingecko.com/coins/images/14428/thumb/Dafi_Black_Icon.png?1696514118",
+    "symbol": "DAFI",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x6396252377f54ad33cff9131708da075b21d9b88": {
+    "assetId": "eip155:137/erc20:0x6396252377f54ad33cff9131708da075b21d9b88",
+    "chainId": "eip155:137",
+    "name": "NFTBooks",
+    "precision": 9,
+    "color": "#323B41",
+    "icon": "https://assets.coingecko.com/coins/images/17291/thumb/76C625EC-11F3-46D2-B1E1-B471ACE02B26.jpeg?1696516845",
+    "symbol": "NFTBS",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x63c54c41794e14d283123cd38895f7abdf33c379": {
+    "assetId": "eip155:137/erc20:0x63c54c41794e14d283123cd38895f7abdf33c379",
+    "chainId": "eip155:137",
+    "name": "Qoodo",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/32840/thumb/Top_Shine_Remove-Recovered_%281%29_3.png?1699588905",
+    "symbol": "QDO",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x64060ab139feaae7f06ca4e63189d86adeb51691": {
+    "assetId": "eip155:137/erc20:0x64060ab139feaae7f06ca4e63189d86adeb51691",
+    "chainId": "eip155:137",
+    "name": "Unicorn Milk",
+    "precision": 18,
+    "color": "#5E6D80",
+    "icon": "https://assets.coingecko.com/coins/images/23321/thumb/SVJI5-cerIpV4P1K3d_LeLKN3ZlE4eaazbnPEzrKhnU.png?1696522537",
+    "symbol": "UNIM",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x644192291cc835a93d6330b24ea5f5fedd0eef9e": {
+    "assetId": "eip155:137/erc20:0x644192291cc835a93d6330b24ea5f5fedd0eef9e",
+    "chainId": "eip155:137",
+    "name": "AllianceBlock Nexera on Polygon",
+    "precision": 18,
+    "color": "#6B6CF9",
+    "icon": "https://assets.coingecko.com/coins/images/29181/thumb/nxra.png?1696528139",
+    "symbol": "NXRA",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x64afdf9e28946419e325d801fb3053d8b8ffdc23": {
+    "assetId": "eip155:137/erc20:0x64afdf9e28946419e325d801fb3053d8b8ffdc23",
+    "chainId": "eip155:137",
+    "name": "Meeb Master",
+    "precision": 18,
+    "color": "#1771C1",
+    "icon": "https://assets.coingecko.com/coins/images/17312/thumb/logo_-_2021-07-26T144950.172.png?1696516866",
+    "symbol": "MEEB",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x64ca1571d1476b7a21c5aaf9f1a750a193a103c0": {
+    "assetId": "eip155:137/erc20:0x64ca1571d1476b7a21c5aaf9f1a750a193a103c0",
+    "chainId": "eip155:137",
+    "name": "Forj on Polygon",
+    "precision": 18,
+    "color": "#343474",
+    "icon": "https://assets.coingecko.com/coins/images/13322/thumb/FORJ_twitter_twitter-linked_in_profile_%281%29.png?1696513091",
+    "symbol": "BONDLY",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x64ee4f41a15d6c431ab6607d4e95462169d50f6c": {
+    "assetId": "eip155:137/erc20:0x64ee4f41a15d6c431ab6607d4e95462169d50f6c",
+    "chainId": "eip155:137",
+    "name": "Unvest on Polygon",
+    "precision": 18,
+    "color": "#D7D7D7",
+    "icon": "https://assets.coingecko.com/coins/images/18119/thumb/UNV.jpg?1696517622",
+    "symbol": "UNV",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x65517425ac3ce259a34400bb67ceb39ff3ddc0bd": {
+    "assetId": "eip155:137/erc20:0x65517425ac3ce259a34400bb67ceb39ff3ddc0bd",
+    "chainId": "eip155:137",
+    "name": "Num ARS",
+    "precision": 18,
+    "color": "#EFF3F2",
+    "icon": "https://assets.coingecko.com/coins/images/23054/thumb/num_finance.png?1696522347",
+    "symbol": "NARS",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x656bf6767fa8863ac0dd0b7d2a26602b838a2e70": {
+    "assetId": "eip155:137/erc20:0x656bf6767fa8863ac0dd0b7d2a26602b838a2e70",
+    "chainId": "eip155:137",
+    "name": "Fitmint",
+    "precision": 18,
+    "color": "#04151F",
+    "icon": "https://assets.coingecko.com/coins/images/27021/thumb/logo_black.png?1696526073",
+    "symbol": "FITT",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x65a05db8322701724c197af82c9cae41195b0aa8": {
+    "assetId": "eip155:137/erc20:0x65a05db8322701724c197af82c9cae41195b0aa8",
+    "chainId": "eip155:137",
+    "name": "FOX on Polygon",
+    "precision": 18,
+    "color": "#3761F9",
+    "icon": "https://assets.coincap.io/assets/icons/256/fox.png",
+    "symbol": "FOX",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x65ad509db5924ef0001d977590985f965ef1aaaa": {
+    "assetId": "eip155:137/erc20:0x65ad509db5924ef0001d977590985f965ef1aaaa",
+    "chainId": "eip155:137",
+    "name": "Meta Toy DragonZ SAGA  FXERC20 ",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/32859/thumb/Coin-Line_%281%29.png?1699669121",
+    "symbol": "FXMETOD",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x65ad6a2288b2dd23e466226397c8f5d1794e58fc": {
+    "assetId": "eip155:137/erc20:0x65ad6a2288b2dd23e466226397c8f5d1794e58fc",
+    "chainId": "eip155:137",
+    "name": "GamyFi on Polygon",
+    "precision": 18,
+    "color": "#DCD9FA",
+    "icon": "https://assets.coingecko.com/coins/images/14559/thumb/circle-cropped_%281%29.png?1696514241",
+    "symbol": "GFX",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x669ddc70273084ea30e6cd4f28ca6e2c70735065": {
+    "assetId": "eip155:137/erc20:0x669ddc70273084ea30e6cd4f28ca6e2c70735065",
+    "chainId": "eip155:137",
+    "name": "AGA Carbon Credit",
+    "precision": 18,
+    "color": "#79CC2E",
+    "icon": "https://assets.coingecko.com/coins/images/16728/thumb/agac128.png?1696516302",
+    "symbol": "AGAC",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x66dc5a08091d1968e08c16aa5b27bac8398b02be": {
+    "assetId": "eip155:137/erc20:0x66dc5a08091d1968e08c16aa5b27bac8398b02be",
+    "chainId": "eip155:137",
+    "name": "Civic on Polygon",
+    "precision": 8,
+    "color": "#2E0C33",
+    "icon": "https://assets.coingecko.com/coins/images/788/thumb/civic-orange.png?1696501939",
+    "symbol": "CVC",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x66e8617d1df7ab523a316a6c01d16aa5bed93681": {
+    "assetId": "eip155:137/erc20:0x66e8617d1df7ab523a316a6c01d16aa5bed93681",
+    "chainId": "eip155:137",
+    "name": "Spice Trade on Polygon",
+    "precision": 18,
+    "color": "#250E45",
+    "icon": "https://assets.coingecko.com/coins/images/25770/thumb/SPICE.png?1696524857",
+    "symbol": "SPICE",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x672688c6ee3e750dfaa4874743ef693a6f2538ed": {
+    "assetId": "eip155:137/erc20:0x672688c6ee3e750dfaa4874743ef693a6f2538ed",
+    "chainId": "eip155:137",
+    "name": "CRISP Scored Cookstoves",
+    "precision": 18,
+    "color": "#C484D4",
+    "icon": "https://assets.coingecko.com/coins/images/32033/thumb/CRISP-C.png?1696530830",
+    "symbol": "CRISP-C",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x6749441fdc8650b5b5a854ed255c82ef361f1596": {
+    "assetId": "eip155:137/erc20:0x6749441fdc8650b5b5a854ed255c82ef361f1596",
+    "chainId": "eip155:137",
+    "name": "Lucha",
+    "precision": 18,
+    "color": "#E4BB3C",
+    "icon": "https://assets.coingecko.com/coins/images/22794/thumb/lucha.png?1696522097",
+    "symbol": "LUCHA",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x67eb41a14c0fe5cd701fc9d5a3d6597a72f641a6": {
+    "assetId": "eip155:137/erc20:0x67eb41a14c0fe5cd701fc9d5a3d6597a72f641a6",
+    "chainId": "eip155:137",
+    "name": "Giddy",
+    "precision": 18,
+    "color": "#D3CEC7",
+    "icon": "https://assets.coingecko.com/coins/images/24960/thumb/gddy.png?1696524114",
+    "symbol": "GDDY",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x6863bd30c9e313b264657b107352ba246f8af8e0": {
+    "assetId": "eip155:137/erc20:0x6863bd30c9e313b264657b107352ba246f8af8e0",
+    "chainId": "eip155:137",
+    "name": "BlackPool on Polygon",
+    "precision": 18,
+    "color": "#050505",
+    "icon": "https://assets.coingecko.com/coins/images/15887/thumb/uyO7dQzR_400x400.jpg?1696515502",
+    "symbol": "BPT",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x688b4231472fde70c1d30f48638aa1661725d3ce": {
+    "assetId": "eip155:137/erc20:0x688b4231472fde70c1d30f48638aa1661725d3ce",
+    "chainId": "eip155:137",
+    "name": "SendCrypto",
+    "precision": 18,
+    "color": "#AE9CDC",
+    "icon": "https://assets.coingecko.com/coins/images/28334/thumb/SC_Logo_200x200.png?1696527340",
+    "symbol": "SENDC",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x6899face15c14348e1759371049ab64a3a06bfa6": {
+    "assetId": "eip155:137/erc20:0x6899face15c14348e1759371049ab64a3a06bfa6",
+    "chainId": "eip155:137",
+    "name": "SmarDex on Polygon",
+    "precision": 18,
+    "color": "#04F7AF",
+    "icon": "https://assets.coingecko.com/coins/images/29470/thumb/SDEX_logo_transparent_outside_240x240.png?1696930070",
+    "symbol": "SDEX",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x689f8e5913c158ffb5ac5aeb83b3c875f5d20309": {
+    "assetId": "eip155:137/erc20:0x689f8e5913c158ffb5ac5aeb83b3c875f5d20309",
+    "chainId": "eip155:137",
+    "name": "Snook",
+    "precision": 18,
+    "color": "#046AB0",
+    "icon": "https://assets.coingecko.com/coins/images/18197/thumb/snk.png?1696517696",
+    "symbol": "SNK",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x68ee0d0aad9e1984af85ca224117e4d20eaf68be": {
+    "assetId": "eip155:137/erc20:0x68ee0d0aad9e1984af85ca224117e4d20eaf68be",
+    "chainId": "eip155:137",
+    "name": "Crypto Royale on Polygon",
+    "precision": 18,
+    "color": "#646CFC",
+    "icon": "https://assets.coingecko.com/coins/images/20668/thumb/ROY_logo_new_design_small.png?1696520069",
+    "symbol": "ROY",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x6911f552842236bd9e8ea8ddbb3fb414e2c5fa9d": {
+    "assetId": "eip155:137/erc20:0x6911f552842236bd9e8ea8ddbb3fb414e2c5fa9d",
+    "chainId": "eip155:137",
+    "name": "Synapse Network on Polygon",
+    "precision": 18,
+    "color": "#14143C",
+    "icon": "https://assets.coingecko.com/coins/images/17962/thumb/Webp-net-resizeimage_%282%29.png?1696517481",
+    "symbol": "SNP",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x692597b009d13c4049a947cab2239b7d6517875f": {
+    "assetId": "eip155:137/erc20:0x692597b009d13c4049a947cab2239b7d6517875f",
+    "chainId": "eip155:137",
+    "name": "Wrapped USTC on Polygon",
+    "precision": 18,
+    "color": "#4374D9",
+    "icon": "https://assets.coingecko.com/coins/images/15462/thumb/ust.png?1696515108",
+    "symbol": "USTC",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x692ac1e363ae34b6b489148152b12e2785a3d8d6": {
+    "assetId": "eip155:137/erc20:0x692ac1e363ae34b6b489148152b12e2785a3d8d6",
+    "chainId": "eip155:137",
+    "name": "Polytrade on Polygon",
+    "precision": 18,
+    "color": "#4CB4C4",
+    "icon": "https://assets.coingecko.com/coins/images/16416/thumb/Logo_colored_200.png?1696516012",
+    "symbol": "TRADE",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x692c44990e4f408ba0917f5c78a83160c1557237": {
+    "assetId": "eip155:137/erc20:0x692c44990e4f408ba0917f5c78a83160c1557237",
+    "chainId": "eip155:137",
+    "name": "Thales on Polygon",
+    "precision": 18,
+    "color": "#11136F",
+    "icon": "https://assets.coingecko.com/coins/images/18388/thumb/CLVZJN_C_400x400.png?1696517879",
+    "symbol": "THALES",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x6949804b60dd9dcea43fd8d10ccdc640b55f9f7f": {
+    "assetId": "eip155:137/erc20:0x6949804b60dd9dcea43fd8d10ccdc640b55f9f7f",
+    "chainId": "eip155:137",
+    "name": "BreederDAO on Polygon",
+    "precision": 18,
+    "color": "#0F1419",
+    "icon": "https://assets.coingecko.com/coins/images/25203/thumb/BreederDAO-Breed_Token-FINAL.png?1696524347",
+    "symbol": "BREED",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x695fc8b80f344411f34bdbcb4e621aa69ada384b": {
+    "assetId": "eip155:137/erc20:0x695fc8b80f344411f34bdbcb4e621aa69ada384b",
+    "chainId": "eip155:137",
+    "name": "Nitro League on Polygon",
+    "precision": 18,
+    "color": "#F01645",
+    "icon": "https://assets.coingecko.com/coins/images/21668/thumb/_X6vYBDM_400x400.jpg?1696521025",
+    "symbol": "NITRO",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x6968105460f67c3bf751be7c15f92f5286fd0ce5": {
+    "assetId": "eip155:137/erc20:0x6968105460f67c3bf751be7c15f92f5286fd0ce5",
+    "chainId": "eip155:137",
+    "name": "Monavale on Polygon",
+    "precision": 18,
+    "color": "#CBCBCB",
+    "icon": "https://assets.coingecko.com/coins/images/13298/thumb/monavale_logo.jpg?1696513070",
+    "symbol": "MONA",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x6a3e7c3c6ef65ee26975b12293ca1aad7e1daed2": {
+    "assetId": "eip155:137/erc20:0x6a3e7c3c6ef65ee26975b12293ca1aad7e1daed2",
+    "chainId": "eip155:137",
+    "name": "Aavegotchi ALPHA",
+    "precision": 18,
+    "color": "#3ABCF1",
+    "icon": "https://assets.coingecko.com/coins/images/24738/thumb/alpha.png?1696523901",
+    "symbol": "ALPHA",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x6a8ec2d9bfbdd20a7f5a4e89d640f7e7ceba4499": {
+    "assetId": "eip155:137/erc20:0x6a8ec2d9bfbdd20a7f5a4e89d640f7e7ceba4499",
+    "chainId": "eip155:137",
+    "name": "MSquare Global",
+    "precision": 18,
+    "color": "#313C82",
+    "icon": "https://assets.coingecko.com/coins/images/25305/thumb/19743.png?1696524442",
+    "symbol": "MSQ",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x6ab6d61428fde76768d7b45d8bfeec19c6ef91a8": {
+    "assetId": "eip155:137/erc20:0x6ab6d61428fde76768d7b45d8bfeec19c6ef91a8",
+    "chainId": "eip155:137",
+    "name": "Anyswap on Polygon",
+    "precision": 18,
+    "color": "#5975E7",
+    "icon": "https://assets.coingecko.com/coins/images/12242/thumb/anyswap.jpg?1696512074",
+    "symbol": "ANY",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x6ab707aca953edaefbc4fd23ba73294241490620": {
+    "assetId": "eip155:137/erc20:0x6ab707aca953edaefbc4fd23ba73294241490620",
+    "chainId": "eip155:137",
+    "name": "Aave v3 USDT on Polygon",
+    "precision": 6,
+    "color": "#51AC9D",
+    "icon": "https://assets.coingecko.com/coins/images/32884/thumb/USDT.PNG?1699768611",
+    "symbol": "AUSDT",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x6aca77cf3bab0c4e8210a09b57b07854a995289a": {
+    "assetId": "eip155:137/erc20:0x6aca77cf3bab0c4e8210a09b57b07854a995289a",
+    "chainId": "eip155:137",
+    "name": "Meeds DAO on Polygon",
+    "precision": 18,
+    "color": "#E45C5C",
+    "icon": "https://assets.coingecko.com/coins/images/24281/thumb/s-YfFWYu_400x400.png?1696523464",
+    "symbol": "MEED",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x6acda5e7eb1117733dc7cb6158fc67f226b32022": {
+    "assetId": "eip155:137/erc20:0x6acda5e7eb1117733dc7cb6158fc67f226b32022",
+    "chainId": "eip155:137",
+    "name": "Carb0n fi",
+    "precision": 18,
+    "color": "#EC042C",
+    "icon": "https://assets.coingecko.com/coins/images/23378/thumb/Signet_Zoom_200px_Transparent.png?1696522593",
+    "symbol": "ZRO",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x6ae7dfc73e0dde2aa99ac063dcf7e8a63265108c": {
+    "assetId": "eip155:137/erc20:0x6ae7dfc73e0dde2aa99ac063dcf7e8a63265108c",
+    "chainId": "eip155:137",
+    "name": "JPY Coin v1 on Polygon",
+    "precision": 18,
+    "color": "#C9D2E8",
+    "icon": "https://assets.coingecko.com/coins/images/17277/thumb/WoZ8rruL_400x400.png?1696516831",
+    "symbol": "JPYC",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x6ae96cc93331c19148541d4d2f31363684917092": {
+    "assetId": "eip155:137/erc20:0x6ae96cc93331c19148541d4d2f31363684917092",
+    "chainId": "eip155:137",
+    "name": "Caviar",
+    "precision": 18,
+    "color": "#223140",
+    "icon": "https://assets.coingecko.com/coins/images/31354/thumb/caviar-token_200x200.png?1696530171",
+    "symbol": "CVR",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x6b021b3f68491974be6d4009fee61a4e3c708fd6": {
+    "assetId": "eip155:137/erc20:0x6b021b3f68491974be6d4009fee61a4e3c708fd6",
+    "chainId": "eip155:137",
+    "name": "Fuse on Polygon",
+    "precision": 18,
+    "color": "#141B14",
+    "icon": "https://assets.coingecko.com/coins/images/10347/thumb/fuse.png?1696510348",
+    "symbol": "FUSE",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x6bb45ceac714c52342ef73ec663479da35934bf7": {
+    "assetId": "eip155:137/erc20:0x6bb45ceac714c52342ef73ec663479da35934bf7",
+    "chainId": "eip155:137",
+    "name": "PolyPup Bone",
+    "precision": 18,
+    "color": "#F4E4CE",
+    "icon": "https://assets.coingecko.com/coins/images/16819/thumb/9.png?1696516388",
+    "symbol": "BONE",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x6bd10299f4f1d31b3489dc369ea958712d27c81b": {
+    "assetId": "eip155:137/erc20:0x6bd10299f4f1d31b3489dc369ea958712d27c81b",
+    "chainId": "eip155:137",
+    "name": "Art de Finance",
+    "precision": 18,
+    "color": "#C4C4C4",
+    "icon": "https://assets.coingecko.com/coins/images/31348/thumb/200x200.png?1696530165",
+    "symbol": "ADF",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x6c0ab120dbd11ba701aff6748568311668f63fe0": {
+    "assetId": "eip155:137/erc20:0x6c0ab120dbd11ba701aff6748568311668f63fe0",
+    "chainId": "eip155:137",
+    "name": "Spectra on Polygon",
+    "precision": 18,
+    "color": "#201F37",
+    "icon": "https://assets.coingecko.com/coins/images/15597/thumb/spectra.png?1696515232",
+    "symbol": "APW",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x6c3b2f402cd7d22ae2c319b9d2f16f57927a4a17": {
+    "assetId": "eip155:137/erc20:0x6c3b2f402cd7d22ae2c319b9d2f16f57927a4a17",
+    "chainId": "eip155:137",
+    "name": "KROWN on Polygon",
+    "precision": 18,
+    "color": "#19202E",
+    "icon": "https://assets.coingecko.com/coins/images/16530/thumb/KRW_token_logo_200x200.png?1696516093",
+    "symbol": "KRW",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x6c526368e1185e4cd8a50468eb3429c5aeb674f3": {
+    "assetId": "eip155:137/erc20:0x6c526368e1185e4cd8a50468eb3429c5aeb674f3",
+    "chainId": "eip155:137",
+    "name": "Selfbar",
+    "precision": 18,
+    "color": "#D8EEE6",
+    "icon": "https://assets.coingecko.com/coins/images/20599/thumb/sbar-icon.png?1696520005",
+    "symbol": "SBAR",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x6ccf12b480a99c54b23647c995f4525d544a7e72": {
+    "assetId": "eip155:137/erc20:0x6ccf12b480a99c54b23647c995f4525d544a7e72",
+    "chainId": "eip155:137",
+    "name": "Starter xyz on Polygon",
+    "precision": 18,
+    "color": "#272025",
+    "icon": "https://assets.coingecko.com/coins/images/14301/thumb/logo_poly_sym.png?1696513997",
+    "symbol": "START",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x6cd6cb131764c704ba9167c29930fbdc38901ab7": {
+    "assetId": "eip155:137/erc20:0x6cd6cb131764c704ba9167c29930fbdc38901ab7",
+    "chainId": "eip155:137",
+    "name": "xWIN Finance on Polygon",
+    "precision": 18,
+    "color": "#81BA23",
+    "icon": "https://assets.coingecko.com/coins/images/15400/thumb/200x200_%28transparent_background%29.png?1696515046",
+    "symbol": "XWIN",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x6d1fdbb266fcc09a16a22016369210a15bb95761": {
+    "assetId": "eip155:137/erc20:0x6d1fdbb266fcc09a16a22016369210a15bb95761",
+    "chainId": "eip155:137",
+    "name": "Staked Frax Ether on Polygon",
+    "precision": 18,
+    "color": "#B4B4B4",
+    "icon": "https://assets.coingecko.com/coins/images/28285/thumb/sfrxETH_icon.png?1696527285",
+    "symbol": "SFRXETH",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x6d295da283c4c0658eafe608e4145e8a86777b88": {
+    "assetId": "eip155:137/erc20:0x6d295da283c4c0658eafe608e4145e8a86777b88",
+    "chainId": "eip155:137",
+    "name": "SolarX",
+    "precision": 18,
+    "color": "#040404",
+    "icon": "https://assets.coingecko.com/coins/images/31877/thumb/x_black.png?1696530689",
+    "symbol": "SOLX",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x6d80113e533a2c0fe82eabd35f1875dcea89ea97": {
+    "assetId": "eip155:137/erc20:0x6d80113e533a2c0fe82eabd35f1875dcea89ea97",
+    "chainId": "eip155:137",
+    "name": "Aave v3 WMATIC",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/32922/thumb/wmatic.png?1699825896",
+    "symbol": "AWMATIC",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x6d969cea201e427d2875724fd4e8044833fbc7f4": {
+    "assetId": "eip155:137/erc20:0x6d969cea201e427d2875724fd4e8044833fbc7f4",
+    "chainId": "eip155:137",
+    "name": "Polygon HBD",
+    "precision": 3,
+    "color": "#DEE4DD",
+    "icon": "https://assets.coingecko.com/coins/images/25142/thumb/image.png?1696524291",
+    "symbol": "PHBD",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x6d9c0b104e5af90a6d11a13eb77288e533333301": {
+    "assetId": "eip155:137/erc20:0x6d9c0b104e5af90a6d11a13eb77288e533333301",
+    "chainId": "eip155:137",
+    "name": "MAXX Finance",
+    "precision": 18,
+    "color": "#E6E0F2",
+    "icon": "https://assets.coingecko.com/coins/images/27203/thumb/maxxfinance.jpeg?1696526252",
+    "symbol": "MAXX",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x6ddb31002abc64e1479fc439692f7ea061e78165": {
+    "assetId": "eip155:137/erc20:0x6ddb31002abc64e1479fc439692f7ea061e78165",
+    "chainId": "eip155:137",
+    "name": "Furucombo on Polygon",
+    "precision": 18,
+    "color": "#20242F",
+    "icon": "https://assets.coingecko.com/coins/images/13629/thumb/COMBO_token_ol.png?1696513377",
+    "symbol": "COMBO",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x6e4e624106cb12e168e6533f8ec7c82263358940": {
+    "assetId": "eip155:137/erc20:0x6e4e624106cb12e168e6533f8ec7c82263358940",
+    "chainId": "eip155:137",
+    "name": "Axelar on Polygon",
+    "precision": 6,
+    "color": "#141414",
+    "icon": "https://assets.coingecko.com/coins/images/27277/thumb/V-65_xQ1_400x400.jpeg?1696526329",
+    "symbol": "AXL",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x6e65ae5572df196fae40be2545ebc2a9a24eace9": {
+    "assetId": "eip155:137/erc20:0x6e65ae5572df196fae40be2545ebc2a9a24eace9",
+    "chainId": "eip155:137",
+    "name": "Shack on Polygon",
+    "precision": 18,
+    "color": "#EC1C24",
+    "icon": "https://assets.coingecko.com/coins/images/25699/thumb/shack_no_bg_no_pad3.png?1696524826",
+    "symbol": "SHACK",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x6e7118b82fb9608342c288a90eeb5e614aaee2e9": {
+    "assetId": "eip155:137/erc20:0x6e7118b82fb9608342c288a90eeb5e614aaee2e9",
+    "chainId": "eip155:137",
+    "name": "Edgeware on Polygon",
+    "precision": 18,
+    "color": "#FC3C84",
+    "icon": "https://assets.coingecko.com/coins/images/8452/thumb/logo-edgeware.png?1696508638",
+    "symbol": "EDG",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x6e8a8726639d12935b3219892155520bdc57366b": {
+    "assetId": "eip155:137/erc20:0x6e8a8726639d12935b3219892155520bdc57366b",
+    "chainId": "eip155:137",
+    "name": "GNOME on Polygon",
+    "precision": 18,
+    "color": "#7AA7EE",
+    "icon": "https://assets.coingecko.com/coins/images/20885/thumb/gnome.png?1696520278",
+    "symbol": "GNOME",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x6f06e6bed64cf4c4187c06ee2a4732f6a171bc4e": {
+    "assetId": "eip155:137/erc20:0x6f06e6bed64cf4c4187c06ee2a4732f6a171bc4e",
+    "chainId": "eip155:137",
+    "name": "FoodChain Global",
+    "precision": 18,
+    "color": "#262227",
+    "icon": "https://assets.coingecko.com/coins/images/23755/thumb/food.png?1696522956",
+    "symbol": "FOOD",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x6f3cc27e17a0f2e52d8e7693ff0d892cea1854bf": {
+    "assetId": "eip155:137/erc20:0x6f3cc27e17a0f2e52d8e7693ff0d892cea1854bf",
+    "chainId": "eip155:137",
+    "name": "Gooeys",
+    "precision": 9,
+    "color": "#E2A5DF",
+    "icon": "https://assets.coingecko.com/coins/images/25802/thumb/GOO-200.png?1696524888",
+    "symbol": "GOO",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x6f7c932e7684666c9fd1d44527765433e01ff61d": {
+    "assetId": "eip155:137/erc20:0x6f7c932e7684666c9fd1d44527765433e01ff61d",
+    "chainId": "eip155:137",
+    "name": "Maker on Polygon",
+    "precision": 18,
+    "color": "#1CAC9C",
+    "icon": "https://assets.coingecko.com/coins/images/1364/thumb/Mark_Maker.png?1696502423",
+    "symbol": "MKR",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x6fb54ffe60386ac33b722be13d2549dd87bf63af": {
+    "assetId": "eip155:137/erc20:0x6fb54ffe60386ac33b722be13d2549dd87bf63af",
+    "chainId": "eip155:137",
+    "name": "Polinate on Polygon",
+    "precision": 18,
+    "color": "#2E3378",
+    "icon": "https://assets.coingecko.com/coins/images/18096/thumb/Polinate_Games___Guilds_Elements-05.png?1696517601",
+    "symbol": "POLI",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x70048335a8bcd746a2f45bd4bb15f99da5e0eb05": {
+    "assetId": "eip155:137/erc20:0x70048335a8bcd746a2f45bd4bb15f99da5e0eb05",
+    "chainId": "eip155:137",
+    "name": "Crypto Puffs on Polygon",
+    "precision": 18,
+    "color": "#63B0EB",
+    "icon": "https://assets.coingecko.com/coins/images/17672/thumb/puff.PNG?1696517202",
+    "symbol": "PUFFS",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x7067bebfa1720132dfb9373d65b522afbe3a201e": {
+    "assetId": "eip155:137/erc20:0x7067bebfa1720132dfb9373d65b522afbe3a201e",
+    "chainId": "eip155:137",
+    "name": "Floyx",
+    "precision": 18,
+    "color": "#D8D2E4",
+    "icon": "https://assets.coingecko.com/coins/images/29527/thumb/FloyxLogo_200x200.png?1696528469",
+    "symbol": "FLOYX",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x709a4b6217584188ddb93c82f5d716d969acce1c": {
+    "assetId": "eip155:137/erc20:0x709a4b6217584188ddb93c82f5d716d969acce1c",
+    "chainId": "eip155:137",
+    "name": "Hanu Yokia on Polygon",
+    "precision": 12,
+    "color": "#12AC9A",
+    "icon": "https://assets.coingecko.com/coins/images/17161/thumb/Goji_Hanu_Logo_200x200.png?1696516720",
+    "symbol": "HANU",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x709d140925272ee606825781b1bef7be6b1412cd": {
+    "assetId": "eip155:137/erc20:0x709d140925272ee606825781b1bef7be6b1412cd",
+    "chainId": "eip155:137",
+    "name": "Crypto Global United on Polygon",
+    "precision": 8,
+    "color": "#328DC1",
+    "icon": "https://assets.coingecko.com/coins/images/20751/thumb/2022_CGU-MG_RGB.png?1696520148",
+    "symbol": "CGU",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x70c006878a5a50ed185ac4c87d837633923de296": {
+    "assetId": "eip155:137/erc20:0x70c006878a5a50ed185ac4c87d837633923de296",
+    "chainId": "eip155:137",
+    "name": "REVV on Polygon",
+    "precision": 18,
+    "color": "#858588",
+    "icon": "https://assets.coingecko.com/coins/images/12373/thumb/REVV_TOKEN_Refined_2021_%281%29.png?1696512197",
+    "symbol": "REVV",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x70e29b7e036b14d496431b77e0b6eb0008be6165": {
+    "assetId": "eip155:137/erc20:0x70e29b7e036b14d496431b77e0b6eb0008be6165",
+    "chainId": "eip155:137",
+    "name": "Captain Tsubasa",
+    "precision": 8,
+    "color": "#B89F65",
+    "icon": "https://assets.coingecko.com/coins/images/31757/thumb/TSUBASAGT.png?1696530576",
+    "symbol": "TSUGT",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x714db550b574b3e927af3d93e26127d15721d4c2": {
+    "assetId": "eip155:137/erc20:0x714db550b574b3e927af3d93e26127d15721d4c2",
+    "chainId": "eip155:137",
+    "name": "STEPN on Polygon",
+    "precision": 8,
+    "color": "#D9BA69",
+    "icon": "https://assets.coingecko.com/coins/images/23597/thumb/gmt.png?1696522804",
+    "symbol": "GMT",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x71b821aa52a49f32eed535fca6eb5aa130085978": {
+    "assetId": "eip155:137/erc20:0x71b821aa52a49f32eed535fca6eb5aa130085978",
+    "chainId": "eip155:137",
+    "name": "0xBitcoin on Polygon",
+    "precision": 8,
+    "color": "#FC7D05",
+    "icon": "https://assets.coingecko.com/coins/images/4454/thumb/0xbtc.png?1696505045",
+    "symbol": "0XBTC",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x71eeba415a523f5c952cc2f06361d5443545ad28": {
+    "assetId": "eip155:137/erc20:0x71eeba415a523f5c952cc2f06361d5443545ad28",
+    "chainId": "eip155:137",
+    "name": "XDAO on Polygon",
+    "precision": 18,
+    "color": "#045CFC",
+    "icon": "https://assets.coingecko.com/coins/images/27363/thumb/token_2.png?1696526408",
+    "symbol": "XDAO",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x7205705771547cf79201111b4bd8aaf29467b9ec": {
+    "assetId": "eip155:137/erc20:0x7205705771547cf79201111b4bd8aaf29467b9ec",
+    "chainId": "eip155:137",
+    "name": "Rocket Pool on Polygon",
+    "precision": 18,
+    "color": "#FCA063",
+    "icon": "https://assets.coingecko.com/coins/images/2090/thumb/rocket_pool_%28RPL%29.png?1696503058",
+    "symbol": "RPL",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x7238390d5f6f64e67c3211c343a410e2a3dec142": {
+    "assetId": "eip155:137/erc20:0x7238390d5f6f64e67c3211c343a410e2a3dec142",
+    "chainId": "eip155:137",
+    "name": "Pearl",
+    "precision": 18,
+    "color": "#EDF1F7",
+    "icon": "https://assets.coingecko.com/coins/images/30799/thumb/Yp9H3agr_400x400.jpg?1696529660",
+    "symbol": "PEARL",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x723b17718289a91af252d616de2c77944962d122": {
+    "assetId": "eip155:137/erc20:0x723b17718289a91af252d616de2c77944962d122",
+    "chainId": "eip155:137",
+    "name": "Gaia Everworld on Polygon",
+    "precision": 18,
+    "color": "#084882",
+    "icon": "https://assets.coingecko.com/coins/images/19629/thumb/gaia.png?1696519058",
+    "symbol": "GAIA",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x724dc807b04555b71ed48a6896b6f41593b8c637": {
+    "assetId": "eip155:137/erc20:0x724dc807b04555b71ed48a6896b6f41593b8c637",
+    "chainId": "eip155:137",
+    "name": "Aave v3 DPI",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/32926/thumb/dpi.png?1699826275",
+    "symbol": "ADPI",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x727cd3b1fcaee2ee44218119ef3b1f5fc370e67e": {
+    "assetId": "eip155:137/erc20:0x727cd3b1fcaee2ee44218119ef3b1f5fc370e67e",
+    "chainId": "eip155:137",
+    "name": "DYKAN",
+    "precision": 18,
+    "color": "#B48528",
+    "icon": "https://assets.coingecko.com/coins/images/32073/thumb/Whats-App-Image-2022-08-19-at-9-29-36-PM-removebg-preview_%281%29.png?1696530870",
+    "symbol": "DKN",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x72928d5436ff65e57f72d5566dcd3baedc649a88": {
+    "assetId": "eip155:137/erc20:0x72928d5436ff65e57f72d5566dcd3baedc649a88",
+    "chainId": "eip155:137",
+    "name": "humanDAO on Polygon",
+    "precision": 18,
+    "color": "#C9B1E9",
+    "icon": "https://assets.coingecko.com/coins/images/21138/thumb/Untitled-2.jpg?1696520516",
+    "symbol": "HDAO",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x72a5a58f79ffc2102227b92faeba93b169a3a3f1": {
+    "assetId": "eip155:137/erc20:0x72a5a58f79ffc2102227b92faeba93b169a3a3f1",
+    "chainId": "eip155:137",
+    "name": "Finance Vote on Polygon",
+    "precision": 18,
+    "color": "#0C253D",
+    "icon": "https://assets.coingecko.com/coins/images/13181/thumb/finance.png?1696512964",
+    "symbol": "FVT",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x72b9f88e822cf08b031c2206612b025a82fb303c": {
+    "assetId": "eip155:137/erc20:0x72b9f88e822cf08b031c2206612b025a82fb303c",
+    "chainId": "eip155:137",
+    "name": "Day By Day on Polygon",
+    "precision": 18,
+    "color": "#F1DCE0",
+    "icon": "https://assets.coingecko.com/coins/images/21691/thumb/DBD-icon_200x200_%281%29.png?1696521046",
+    "symbol": "DBD",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x72c96c73207936e94066b4c8566c6987c9a1f1de": {
+    "assetId": "eip155:137/erc20:0x72c96c73207936e94066b4c8566c6987c9a1f1de",
+    "chainId": "eip155:137",
+    "name": "Colb USD Stablecolb",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/32670/thumb/USD-Stable-Colb-%28SCB%29-Symbol-Green-400px.png?1698910227",
+    "symbol": "SCB",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x72d6066f486bd0052eefb9114b66ae40e0a6031a": {
+    "assetId": "eip155:137/erc20:0x72d6066f486bd0052eefb9114b66ae40e0a6031a",
+    "chainId": "eip155:137",
+    "name": "WazirX on Polygon",
+    "precision": 8,
+    "color": "#3464F4",
+    "icon": "https://assets.coingecko.com/coins/images/10547/thumb/WazirX.png?1696510532",
+    "symbol": "WRX",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x735fa792e731a2e8f83f32eb539841b7b72e6d8f": {
+    "assetId": "eip155:137/erc20:0x735fa792e731a2e8f83f32eb539841b7b72e6d8f",
+    "chainId": "eip155:137",
+    "name": "ARYZE eEUR on Polygon",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/32421/thumb/ARYZE_eEUR.png?1698118176",
+    "symbol": "EEUR",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x73a4dc4215dc3eb6aae3c7aafd2514cb34e5d983": {
+    "assetId": "eip155:137/erc20:0x73a4dc4215dc3eb6aae3c7aafd2514cb34e5d983",
+    "chainId": "eip155:137",
+    "name": "Netvrk on Polygon",
+    "precision": 18,
+    "color": "#B5B0FB",
+    "icon": "https://assets.coingecko.com/coins/images/15721/thumb/netvrk_icon.png?1696515348",
+    "symbol": "NTVRK",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x750e4c4984a9e0f12978ea6742bc1c5d248f40ed": {
+    "assetId": "eip155:137/erc20:0x750e4c4984a9e0f12978ea6742bc1c5d248f40ed",
+    "chainId": "eip155:137",
+    "name": "Bridged USD Coin  Axelar  on Polygon",
+    "precision": 6,
+    "color": "#2C78CD",
+    "icon": "https://assets.coingecko.com/coins/images/26476/thumb/uausdc_D_3x.png?1696525548",
+    "symbol": "AXLUSDC",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x7614bd00e0560ec9214e4fcb36d5ae23b3ecd3c5": {
+    "assetId": "eip155:137/erc20:0x7614bd00e0560ec9214e4fcb36d5ae23b3ecd3c5",
+    "chainId": "eip155:137",
+    "name": "Koop360 on Polygon",
+    "precision": 18,
+    "color": "#D7AD2F",
+    "icon": "https://assets.coingecko.com/coins/images/32312/thumb/KOOP_Logo.png?1697189111",
+    "symbol": "KOOP",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x767058f11800fba6a682e73a6e79ec5eb74fac8c": {
+    "assetId": "eip155:137/erc20:0x767058f11800fba6a682e73a6e79ec5eb74fac8c",
+    "chainId": "eip155:137",
+    "name": "Jarvis Synthetic British Pound on Polygon",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/15726/thumb/jGBP.png?1696515352",
+    "symbol": "JGBP",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x76bf0c28e604cc3fe9967c83b3c3f31c213cfe64": {
+    "assetId": "eip155:137/erc20:0x76bf0c28e604cc3fe9967c83b3c3f31c213cfe64",
+    "chainId": "eip155:137",
+    "name": "Crystl Finance",
+    "precision": 18,
+    "color": "#18184F",
+    "icon": "https://assets.coingecko.com/coins/images/17023/thumb/CRYSTL_Rebrand_Logo.png?1696516586",
+    "symbol": "CRYSTL",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x76e63a3e7ba1e2e61d3da86a87479f983de89a7e": {
+    "assetId": "eip155:137/erc20:0x76e63a3e7ba1e2e61d3da86a87479f983de89a7e",
+    "chainId": "eip155:137",
+    "name": "Augury Finance",
+    "precision": 18,
+    "color": "#BF8C84",
+    "icon": "https://assets.coingecko.com/coins/images/16573/thumb/omen.PNG?1696516134",
+    "symbol": "OMEN",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x77a6f2e9a9e44fd5d5c3f9be9e52831fc1c3c0a0": {
+    "assetId": "eip155:137/erc20:0x77a6f2e9a9e44fd5d5c3f9be9e52831fc1c3c0a0",
+    "chainId": "eip155:137",
+    "name": "World tateCoin",
+    "precision": 18,
+    "color": "#1F6996",
+    "icon": "https://assets.coingecko.com/coins/images/29636/thumb/wsc_polygon_logo_200.png?1696528573",
+    "symbol": "WC",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x77d97db5615dfe8a2d16b38eaa3f8f34524a0a74": {
+    "assetId": "eip155:137/erc20:0x77d97db5615dfe8a2d16b38eaa3f8f34524a0a74",
+    "chainId": "eip155:137",
+    "name": "Lunafi on Polygon",
+    "precision": 18,
+    "color": "#060708",
+    "icon": "https://assets.coingecko.com/coins/images/24594/thumb/lfi.png?1696523768",
+    "symbol": "LFI",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x77f56cf9365955486b12c4816992388ee8606f0e": {
+    "assetId": "eip155:137/erc20:0x77f56cf9365955486b12c4816992388ee8606f0e",
+    "chainId": "eip155:137",
+    "name": "Coin98 on Polygon",
+    "precision": 18,
+    "color": "#E4C255",
+    "icon": "https://assets.coingecko.com/coins/images/17117/thumb/logo.png?1696516677",
+    "symbol": "C98",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x78a0a62fba6fb21a83fe8a3433d44c73a4017a6f": {
+    "assetId": "eip155:137/erc20:0x78a0a62fba6fb21a83fe8a3433d44c73a4017a6f",
+    "chainId": "eip155:137",
+    "name": "Open Exchange Token on Polygon",
+    "precision": 18,
+    "color": "#0454FC",
+    "icon": "https://assets.coingecko.com/coins/images/30604/thumb/Logo2.png?1696529473",
+    "symbol": "OX",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x79375c41d88f839f551457145066096c5c8944bc": {
+    "assetId": "eip155:137/erc20:0x79375c41d88f839f551457145066096c5c8944bc",
+    "chainId": "eip155:137",
+    "name": "SocialGood on Polygon",
+    "precision": 18,
+    "color": "#60CCD8",
+    "icon": "https://assets.coingecko.com/coins/images/3948/thumb/logo_200.png?1696504592",
+    "symbol": "SG",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x7a6168e5a0ecc9841ad8fad20dcfcc4458fef0fb": {
+    "assetId": "eip155:137/erc20:0x7a6168e5a0ecc9841ad8fad20dcfcc4458fef0fb",
+    "chainId": "eip155:137",
+    "name": "Epillo",
+    "precision": 18,
+    "color": "#5662CA",
+    "icon": "https://assets.coingecko.com/coins/images/28846/thumb/2CyKXwGy_400x400.jpg?1696527822",
+    "symbol": "EPILLO",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x7b6838c155f2800a0fb99b0382002dbfeee8ce22": {
+    "assetId": "eip155:137/erc20:0x7b6838c155f2800a0fb99b0382002dbfeee8ce22",
+    "chainId": "eip155:137",
+    "name": "HYBRID TOKEN",
+    "precision": 8,
+    "color": "#DCE3EF",
+    "icon": "https://assets.coingecko.com/coins/images/29411/thumb/logo-200x200.png?1696528361",
+    "symbol": "HBD",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x7c28f627ea3aec8b882b51eb1935f66e5b875714": {
+    "assetId": "eip155:137/erc20:0x7c28f627ea3aec8b882b51eb1935f66e5b875714",
+    "chainId": "eip155:137",
+    "name": "MurAll on Polygon",
+    "precision": 18,
+    "color": "#F48AFC",
+    "icon": "https://assets.coingecko.com/coins/images/14103/thumb/paint_logo_200x200.png?1696513825",
+    "symbol": "PAINT",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x7c603c3c0c97a565cf202c94ab5298bf8510f7dc": {
+    "assetId": "eip155:137/erc20:0x7c603c3c0c97a565cf202c94ab5298bf8510f7dc",
+    "chainId": "eip155:137",
+    "name": "OATH on Polygon",
+    "precision": 18,
+    "color": "#0E0E0E",
+    "icon": "https://assets.coingecko.com/coins/images/24075/thumb/OATH.png?1698051304",
+    "symbol": "OATH",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x7cc15fef543f205bf21018f038f591c6bada941c": {
+    "assetId": "eip155:137/erc20:0x7cc15fef543f205bf21018f038f591c6bada941c",
+    "chainId": "eip155:137",
+    "name": "PolyCub",
+    "precision": 18,
+    "color": "#D4A14B",
+    "icon": "https://assets.coingecko.com/coins/images/24124/thumb/polycub.png?1696523315",
+    "symbol": "POLYCUB",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x7cdc0421469398e0f3aa8890693d86c840ac8931": {
+    "assetId": "eip155:137/erc20:0x7cdc0421469398e0f3aa8890693d86c840ac8931",
+    "chainId": "eip155:137",
+    "name": "Azuki on Polygon",
+    "precision": 18,
+    "color": "#F43686",
+    "icon": "https://assets.coingecko.com/coins/images/13091/thumb/bdUBSCo.png?1696512878",
+    "symbol": "AZUKI",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x7ceb23fd6bc0add59e62ac25578270cff1b9f619": {
+    "assetId": "eip155:137/erc20:0x7ceb23fd6bc0add59e62ac25578270cff1b9f619",
+    "chainId": "eip155:137",
+    "name": "WETH on Polygon",
+    "precision": 18,
+    "color": "#393838",
+    "icon": "https://assets.coingecko.com/coins/images/2518/thumb/weth.png?1696503332",
+    "symbol": "WETH",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x7dc47cfb674beb5827283f6140f635680a5ce992": {
+    "assetId": "eip155:137/erc20:0x7dc47cfb674beb5827283f6140f635680a5ce992",
+    "chainId": "eip155:137",
+    "name": "BollyCoin on Polygon",
+    "precision": 18,
+    "color": "#F0B249",
+    "icon": "https://assets.coingecko.com/coins/images/21610/thumb/IMG-20211208-124337-701.jpg?1696520970",
+    "symbol": "BOLLY",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x7e4c577ca35913af564ee2a24d882a4946ec492b": {
+    "assetId": "eip155:137/erc20:0x7e4c577ca35913af564ee2a24d882a4946ec492b",
+    "chainId": "eip155:137",
+    "name": "MoonEdge",
+    "precision": 18,
+    "color": "#DBDBDB",
+    "icon": "https://assets.coingecko.com/coins/images/17393/thumb/ME_logo_200_200.png?1696516942",
+    "symbol": "MOONED",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x7e7737c40878e720b32e7bc9cd096259f876d69f": {
+    "assetId": "eip155:137/erc20:0x7e7737c40878e720b32e7bc9cd096259f876d69f",
+    "chainId": "eip155:137",
+    "name": "Catheon Gaming",
+    "precision": 9,
+    "color": "#CE40A7",
+    "icon": "https://assets.coingecko.com/coins/images/28052/thumb/_removal.ai__tmp-635fe0271d6a3%281%29.png?1696527065",
+    "symbol": "CATHEON",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x7e7ff932fab08a0af569f93ce65e7b8b23698ad8": {
+    "assetId": "eip155:137/erc20:0x7e7ff932fab08a0af569f93ce65e7b8b23698ad8",
+    "chainId": "eip155:137",
+    "name": "YfDAI finance on Polygon",
+    "precision": 18,
+    "color": "#98CAF6",
+    "icon": "https://assets.coingecko.com/coins/images/12385/thumb/1619048513068.png?1696512208",
+    "symbol": "YF-DAI",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x7f280dac515121dcda3eac69eb4c13a52392cace": {
+    "assetId": "eip155:137/erc20:0x7f280dac515121dcda3eac69eb4c13a52392cace",
+    "chainId": "eip155:137",
+    "name": "Fancy Games on Polygon",
+    "precision": 18,
+    "color": "#E5B909",
+    "icon": "https://assets.coingecko.com/coins/images/21367/thumb/fnc.png?1696520733",
+    "symbol": "FNC",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x7f426f6dc648e50464a0392e60e1bb465a67e9cf": {
+    "assetId": "eip155:137/erc20:0x7f426f6dc648e50464a0392e60e1bb465a67e9cf",
+    "chainId": "eip155:137",
+    "name": "Auto on Polygon",
+    "precision": 18,
+    "color": "#3535BC",
+    "icon": "https://assets.coingecko.com/coins/images/13751/thumb/autofarm_icon_200x200.png?1696513494",
+    "symbol": "AUTO",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x7f67639ffc8c93dd558d452b8920b28815638c44": {
+    "assetId": "eip155:137/erc20:0x7f67639ffc8c93dd558d452b8920b28815638c44",
+    "chainId": "eip155:137",
+    "name": "iMe Lab on Polygon",
+    "precision": 18,
+    "color": "#1469EC",
+    "icon": "https://assets.coingecko.com/coins/images/16243/thumb/lim_200.2.png?1696515843",
+    "symbol": "LIME",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x7f792db54b0e580cdc755178443f0430cf799aca": {
+    "assetId": "eip155:137/erc20:0x7f792db54b0e580cdc755178443f0430cf799aca",
+    "chainId": "eip155:137",
+    "name": "Volt Inu on Polygon",
+    "precision": 9,
+    "color": "#414140",
+    "icon": "https://assets.coingecko.com/coins/images/25201/thumb/logo200.png?1696524344",
+    "symbol": "VOLT",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x7fbc10850cae055b27039af31bd258430e714c62": {
+    "assetId": "eip155:137/erc20:0x7fbc10850cae055b27039af31bd258430e714c62",
+    "chainId": "eip155:137",
+    "name": "Unibright on Polygon",
+    "precision": 8,
+    "color": "#2E4A87",
+    "icon": "https://assets.coingecko.com/coins/images/2707/thumb/UnibrightLogo_colorful_500x500_preview.png?1696503489",
+    "symbol": "UBT",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x7fc9e0aa043787bfad28e29632ada302c790ce33": {
+    "assetId": "eip155:137/erc20:0x7fc9e0aa043787bfad28e29632ada302c790ce33",
+    "chainId": "eip155:137",
+    "name": "tetuBAL",
+    "precision": 18,
+    "color": "#1E4687",
+    "icon": "https://assets.coingecko.com/coins/images/27969/thumb/tetuBal.png?1696526988",
+    "symbol": "TETUBAL",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x80244c2441779361f35803b8c711c6c8fc6054a3": {
+    "assetId": "eip155:137/erc20:0x80244c2441779361f35803b8c711c6c8fc6054a3",
+    "chainId": "eip155:137",
+    "name": "BoneSwap",
+    "precision": 18,
+    "color": "#1890D4",
+    "icon": "https://assets.coingecko.com/coins/images/17126/thumb/logo_-_2021-07-16T103422.157.png?1696516686",
+    "symbol": "BONE",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x80ca0d8c38d2e2bcbab66aa1648bd1c7160500fe": {
+    "assetId": "eip155:137/erc20:0x80ca0d8c38d2e2bcbab66aa1648bd1c7160500fe",
+    "chainId": "eip155:137",
+    "name": "Aave v3 MaticX",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/32920/thumb/maticx.png?1699825663",
+    "symbol": "AMATICX",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x8105f88e77a5d102099bf73db4469d3f1e3b0cd6": {
+    "assetId": "eip155:137/erc20:0x8105f88e77a5d102099bf73db4469d3f1e3b0cd6",
+    "chainId": "eip155:137",
+    "name": "JennyCo",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/32006/thumb/jenny.jpg?1696530804",
+    "symbol": "JCO",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x81382e9693de2afc33f69b70a6c12ca9b3a73f47": {
+    "assetId": "eip155:137/erc20:0x81382e9693de2afc33f69b70a6c12ca9b3a73f47",
+    "chainId": "eip155:137",
+    "name": "DOSE on Polygon",
+    "precision": 18,
+    "color": "#E8D3C1",
+    "icon": "https://assets.coingecko.com/coins/images/18847/thumb/dose.PNG?1696518308",
+    "symbol": "DOSE",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x81ee105457c4eafc061b8c8fedc7bb45d22286d2": {
+    "assetId": "eip155:137/erc20:0x81ee105457c4eafc061b8c8fedc7bb45d22286d2",
+    "chainId": "eip155:137",
+    "name": "Space Rebase XUSD",
+    "precision": 18,
+    "color": "#12124F",
+    "icon": "https://assets.coingecko.com/coins/images/28311/thumb/XUSD.png?1696527316",
+    "symbol": "XUSD",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x820802fa8a99901f52e39acd21177b0be6ee2974": {
+    "assetId": "eip155:137/erc20:0x820802fa8a99901f52e39acd21177b0be6ee2974",
+    "chainId": "eip155:137",
+    "name": "EUROe Stablecoin on Polygon",
+    "precision": 6,
+    "color": "#DCE1E1",
+    "icon": "https://assets.coingecko.com/coins/images/28913/thumb/euroe-200x200-round.png?1696527889",
+    "symbol": "EUROE",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x82362ec182db3cf7829014bc61e9be8a2e82868a": {
+    "assetId": "eip155:137/erc20:0x82362ec182db3cf7829014bc61e9be8a2e82868a",
+    "chainId": "eip155:137",
+    "name": "Meshswap Protocol",
+    "precision": 18,
+    "color": "#7753C0",
+    "icon": "https://assets.coingecko.com/coins/images/25609/thumb/VxtSquTp_400x400.jpeg?1652844613",
+    "symbol": "MESH",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x823bbb870b0eb86bd7ec0bcc98c84b46a0f99ac7": {
+    "assetId": "eip155:137/erc20:0x823bbb870b0eb86bd7ec0bcc98c84b46a0f99ac7",
+    "chainId": "eip155:137",
+    "name": "Voy Finance",
+    "precision": 18,
+    "color": "#886CF4",
+    "icon": "https://assets.coingecko.com/coins/images/30304/thumb/Profile_Picture_2.png?1696529207",
+    "symbol": "VOY",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x823cd4264c1b951c9209ad0deaea9988fe8429bf": {
+    "assetId": "eip155:137/erc20:0x823cd4264c1b951c9209ad0deaea9988fe8429bf",
+    "chainId": "eip155:137",
+    "name": "Matic Aave Interest Bearing AAVE",
+    "precision": 18,
+    "color": "#4E9CDC",
+    "icon": "https://assets.coingecko.com/coins/images/14077/thumb/maAAVE.png?1696513800",
+    "symbol": "MAAAVE",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x82a0e6c02b91ec9f6ff943c0a933c03dbaa19689": {
+    "assetId": "eip155:137/erc20:0x82a0e6c02b91ec9f6ff943c0a933c03dbaa19689",
+    "chainId": "eip155:137",
+    "name": "Wicrypt",
+    "precision": 18,
+    "color": "#47458A",
+    "icon": "https://assets.coingecko.com/coins/images/21223/thumb/wicrypt.PNG?1696520597",
+    "symbol": "WNT",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x82e64f49ed5ec1bc6e43dad4fc8af9bb3a2312ee": {
+    "assetId": "eip155:137/erc20:0x82e64f49ed5ec1bc6e43dad4fc8af9bb3a2312ee",
+    "chainId": "eip155:137",
+    "name": "Aave v3 DAI on Polygon",
+    "precision": 18,
+    "color": "#FCBF41",
+    "icon": "https://assets.coingecko.com/coins/images/32886/thumb/dai.png?1699769446",
+    "symbol": "ADAI",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x831753dd7087cac61ab5644b308642cc1c33dc13": {
+    "assetId": "eip155:137/erc20:0x831753dd7087cac61ab5644b308642cc1c33dc13",
+    "chainId": "eip155:137",
+    "name": "Quickswap  OLD  on Polygon",
+    "precision": 18,
+    "color": "#DECFFA",
+    "icon": "https://assets.coingecko.com/coins/images/13970/thumb/quick.png?1696513704",
+    "symbol": "QUICK",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x8343091f2499fd4b6174a46d067a920a3b851ff9": {
+    "assetId": "eip155:137/erc20:0x8343091f2499fd4b6174a46d067a920a3b851ff9",
+    "chainId": "eip155:137",
+    "name": "Jarvis Synthetic Japanese Yen",
+    "precision": 18,
+    "color": "#E1899C",
+    "icon": "https://assets.coingecko.com/coins/images/24327/thumb/jJPY.png?1696523512",
+    "symbol": "JJPY",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x8346ab8d5ea7a9db0209aed2d1806afa0e2c4c21": {
+    "assetId": "eip155:137/erc20:0x8346ab8d5ea7a9db0209aed2d1806afa0e2c4c21",
+    "chainId": "eip155:137",
+    "name": "Modefi on Polygon",
+    "precision": 18,
+    "color": "#24C4EC",
+    "icon": "https://assets.coingecko.com/coins/images/13980/thumb/modefi_logo.png?1696513713",
+    "symbol": "MOD",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x839f1a22a59eaaf26c85958712ab32f80fea23d9": {
+    "assetId": "eip155:137/erc20:0x839f1a22a59eaaf26c85958712ab32f80fea23d9",
+    "chainId": "eip155:137",
+    "name": "Axion",
+    "precision": 18,
+    "color": "#1387D1",
+    "icon": "https://assets.coingecko.com/coins/images/13110/thumb/AXION.png?1696512895",
+    "symbol": "AXN",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x83a6da342099835bcaa9c219dd76a5033c837de5": {
+    "assetId": "eip155:137/erc20:0x83a6da342099835bcaa9c219dd76a5033c837de5",
+    "chainId": "eip155:137",
+    "name": "Basis Share on Polygon",
+    "precision": 18,
+    "color": "#FCBC04",
+    "icon": "https://assets.coingecko.com/coins/images/13251/thumb/BAS.png?1696513026",
+    "symbol": "BAS",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x840195888db4d6a99ed9f73fcd3b225bb3cb1a79": {
+    "assetId": "eip155:137/erc20:0x840195888db4d6a99ed9f73fcd3b225bb3cb1a79",
+    "chainId": "eip155:137",
+    "name": "SX Network on Polygon",
+    "precision": 18,
+    "color": "#266FBC",
+    "icon": "https://assets.coingecko.com/coins/images/13779/thumb/sx.png?1696513520",
+    "symbol": "SX",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x84342e932797fc62814189f01f0fb05f52519708": {
+    "assetId": "eip155:137/erc20:0x84342e932797fc62814189f01f0fb05f52519708",
+    "chainId": "eip155:137",
+    "name": "Neighbourhoods on Polygon",
+    "precision": 18,
+    "color": "#040404",
+    "icon": "https://assets.coingecko.com/coins/images/22055/thumb/social_media_logo_black_bg.png?1696521399",
+    "symbol": "NHT",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x8437d7c167dfb82ed4cb79cd44b7a32a1dd95c77": {
+    "assetId": "eip155:137/erc20:0x8437d7c167dfb82ed4cb79cd44b7a32a1dd95c77",
+    "chainId": "eip155:137",
+    "name": "Aave v3 agEUR",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/32925/thumb/eur.png?1699826217",
+    "symbol": "AAGEUR",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x8497842420cfdbc97896c2353d75d89fc8d5be5d": {
+    "assetId": "eip155:137/erc20:0x8497842420cfdbc97896c2353d75d89fc8d5be5d",
+    "chainId": "eip155:137",
+    "name": "VersaGames",
+    "precision": 18,
+    "color": "#202270",
+    "icon": "https://assets.coingecko.com/coins/images/25491/thumb/versa_token_96_96.png?1696524624",
+    "symbol": "VERSA",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x8505b9d2254a7ae468c0e9dd10ccea3a837aef5c": {
+    "assetId": "eip155:137/erc20:0x8505b9d2254a7ae468c0e9dd10ccea3a837aef5c",
+    "chainId": "eip155:137",
+    "name": "Compound on Polygon",
+    "precision": 18,
+    "color": "#040B0C",
+    "icon": "https://assets.coingecko.com/coins/images/10775/thumb/COMP.png?1696510737",
+    "symbol": "COMP",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x855d4248672a1fce482165e8dbe1207b94b1968a": {
+    "assetId": "eip155:137/erc20:0x855d4248672a1fce482165e8dbe1207b94b1968a",
+    "chainId": "eip155:137",
+    "name": "WOWswap on Polygon",
+    "precision": 18,
+    "color": "#F0B82C",
+    "icon": "https://assets.coingecko.com/coins/images/14101/thumb/Group-423.png?1696513823",
+    "symbol": "WOW",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x85955046df4668e1dd369d2de9f3aeb98dd2a369": {
+    "assetId": "eip155:137/erc20:0x85955046df4668e1dd369d2de9f3aeb98dd2a369",
+    "chainId": "eip155:137",
+    "name": "DeFi Pulse Index on Polygon",
+    "precision": 18,
+    "color": "#8050DD",
+    "icon": "https://assets.coingecko.com/coins/images/12465/thumb/defi_pulse_index_set.png?1696512284",
+    "symbol": "DPI",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x859a50979fdb2a2fd8ba1adcc66977c6f6b1cd5b": {
+    "assetId": "eip155:137/erc20:0x859a50979fdb2a2fd8ba1adcc66977c6f6b1cd5b",
+    "chainId": "eip155:137",
+    "name": "Mad Meerkat Optimizer  Polygon ",
+    "precision": 18,
+    "color": "#2D262F",
+    "icon": "https://assets.coingecko.com/coins/images/27012/thumb/21545.png?1696526064",
+    "symbol": "MMO",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x8626264b6a1b4e920905efd381002aba52ea0eea": {
+    "assetId": "eip155:137/erc20:0x8626264b6a1b4e920905efd381002aba52ea0eea",
+    "chainId": "eip155:137",
+    "name": "BlackHat Coin on Polygon",
+    "precision": 8,
+    "color": "#C2C2C3",
+    "icon": "https://assets.coingecko.com/coins/images/15987/thumb/logo_light.png?1696515600",
+    "symbol": "BLKC",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x863d6074afaf02d9d41a5f8ea83278df7089aa86": {
+    "assetId": "eip155:137/erc20:0x863d6074afaf02d9d41a5f8ea83278df7089aa86",
+    "chainId": "eip155:137",
+    "name": "CryptoBlades on Polygon",
+    "precision": 18,
+    "color": "#E5E5E4",
+    "icon": "https://assets.coingecko.com/coins/images/15334/thumb/cryptoblade.PNG?1696514982",
+    "symbol": "SKILL",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x86775d0b80b3df266af5377db34ba8f318d715ec": {
+    "assetId": "eip155:137/erc20:0x86775d0b80b3df266af5377db34ba8f318d715ec",
+    "chainId": "eip155:137",
+    "name": "Xend Finance on Polygon",
+    "precision": 18,
+    "color": "#F3EAE8",
+    "icon": "https://assets.coingecko.com/coins/images/14496/thumb/WeChat_Image_20210325163206.png?1696514181",
+    "symbol": "XEND",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x86a298581388bc199e61bfecdca8ea22cf6c0da3": {
+    "assetId": "eip155:137/erc20:0x86a298581388bc199e61bfecdca8ea22cf6c0da3",
+    "chainId": "eip155:137",
+    "name": "DELOT IO on Polygon",
+    "precision": 18,
+    "color": "#EFF0F8",
+    "icon": "https://assets.coingecko.com/coins/images/25561/thumb/Logo_200.png?1696524694",
+    "symbol": "DELOT",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x874e178a2f3f3f9d34db862453cd756e7eab0381": {
+    "assetId": "eip155:137/erc20:0x874e178a2f3f3f9d34db862453cd756e7eab0381",
+    "chainId": "eip155:137",
+    "name": "Gravity Finance",
+    "precision": 18,
+    "color": "#FCA404",
+    "icon": "https://assets.coingecko.com/coins/images/15871/thumb/GFI-Icon.png?1696515486",
+    "symbol": "GFI",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x8765f05adce126d70bcdf1b0a48db573316662eb": {
+    "assetId": "eip155:137/erc20:0x8765f05adce126d70bcdf1b0a48db573316662eb",
+    "chainId": "eip155:137",
+    "name": "PlayDapp on Polygon",
+    "precision": 18,
+    "color": "#C8F8EE",
+    "icon": "https://assets.coingecko.com/coins/images/14316/thumb/54023228.png?1696514005",
+    "symbol": "PLA",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x87847703d4bb4fcd42db887ffdcb94496e77e3ab": {
+    "assetId": "eip155:137/erc20:0x87847703d4bb4fcd42db887ffdcb94496e77e3ab",
+    "chainId": "eip155:137",
+    "name": "Hypersign Identity on Polygon",
+    "precision": 18,
+    "color": "#3B3B3C",
+    "icon": "https://assets.coingecko.com/coins/images/16158/thumb/hypersign.png?1696515762",
+    "symbol": "HID",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x87e28bd5499e6846141a85659bc7f0cf815db11d": {
+    "assetId": "eip155:137/erc20:0x87e28bd5499e6846141a85659bc7f0cf815db11d",
+    "chainId": "eip155:137",
+    "name": "Quantum Tech",
+    "precision": 18,
+    "color": "#CDB01D",
+    "icon": "https://assets.coingecko.com/coins/images/22465/thumb/Pm9J4C3KD-5W41f2VH2IIWUY3gRCNJqTyu7X4SQt0ptuUYnhm68zPVBxTEgehAE_WSZBSz_TzxLfAWu8P7a8zOSZa8MpuqUmntsWVeK01s7IoEBERumgQq1mcTuxyOQXBH68OZBkC_hqVEiSf4vNw_EgbtCSATx6XTaLUmCO33kTaolgB5CU33MiINZkwvRDsexAQnxT7BWO6F.jpg?1696521787",
+    "symbol": "QUA",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x87f654c4b347230c60cad8d7ea9cf0d7238bcc79": {
+    "assetId": "eip155:137/erc20:0x87f654c4b347230c60cad8d7ea9cf0d7238bcc79",
+    "chainId": "eip155:137",
+    "name": "Yamp Finance",
+    "precision": 18,
+    "color": "#BFA07C",
+    "icon": "https://assets.coingecko.com/coins/images/17301/thumb/0x87f654c4b347230C60CAD8d7ea9cF0D7238bcc79.png?1696516854",
+    "symbol": "YAMP",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x8839e639f210b80ffea73aedf51baed8dac04499": {
+    "assetId": "eip155:137/erc20:0x8839e639f210b80ffea73aedf51baed8dac04499",
+    "chainId": "eip155:137",
+    "name": "DecentraWeb on Polygon",
+    "precision": 18,
+    "color": "#4C94F4",
+    "icon": "https://assets.coingecko.com/coins/images/18971/thumb/dweb-logo-transparent.png?1696518425",
+    "symbol": "DWEB",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x883abe4168705d2e5da925d28538b7a6aa9d8419": {
+    "assetId": "eip155:137/erc20:0x883abe4168705d2e5da925d28538b7a6aa9d8419",
+    "chainId": "eip155:137",
+    "name": "Ball",
+    "precision": 18,
+    "color": "#E0DEE0",
+    "icon": "https://assets.coingecko.com/coins/images/17557/thumb/2_%289%29.png?1696517092",
+    "symbol": "BALL",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x88c949b4eb85a90071f2c0bef861bddee1a7479d": {
+    "assetId": "eip155:137/erc20:0x88c949b4eb85a90071f2c0bef861bddee1a7479d",
+    "chainId": "eip155:137",
+    "name": "Sheesha Finance Polygon",
+    "precision": 18,
+    "color": "#4A67BE",
+    "icon": "https://assets.coingecko.com/coins/images/23494/thumb/sheesha.PNG?1696522704",
+    "symbol": "MSHEESHA",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x8929e9dbd2785e3ba16175e596cdd61520fee0d1": {
+    "assetId": "eip155:137/erc20:0x8929e9dbd2785e3ba16175e596cdd61520fee0d1",
+    "chainId": "eip155:137",
+    "name": "Altitude on Polygon",
+    "precision": 18,
+    "color": "#436CFC",
+    "icon": "https://assets.coingecko.com/coins/images/30114/thumb/logo.png?1696529036",
+    "symbol": "ALTD",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x89c90e480a39fbe3886bb5bd53ba5b1acc69d4fb": {
+    "assetId": "eip155:137/erc20:0x89c90e480a39fbe3886bb5bd53ba5b1acc69d4fb",
+    "chainId": "eip155:137",
+    "name": "Aladdin cvxCRV on Polygon",
+    "precision": 18,
+    "color": "#080A1D",
+    "icon": "https://assets.coingecko.com/coins/images/25395/thumb/Sv06cFHS_400x400.jpg?1696524527",
+    "symbol": "ACRV",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x89ef0900b0a6b5548ab2ff58ef588f9433b5fcf5": {
+    "assetId": "eip155:137/erc20:0x89ef0900b0a6b5548ab2ff58ef588f9433b5fcf5",
+    "chainId": "eip155:137",
+    "name": "Carbon on Polygon",
+    "precision": 18,
+    "color": "#5B2BEC",
+    "icon": "https://assets.coingecko.com/coins/images/13262/thumb/carbon.png?1696513037",
+    "symbol": "CRBN",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x8a0e8b4b0903929f47c3ea30973940d4a9702067": {
+    "assetId": "eip155:137/erc20:0x8a0e8b4b0903929f47c3ea30973940d4a9702067",
+    "chainId": "eip155:137",
+    "name": "InsurAce on Polygon",
+    "precision": 18,
+    "color": "#DAEDD0",
+    "icon": "https://assets.coingecko.com/coins/images/14226/thumb/insur.png?1696513941",
+    "symbol": "INSUR",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x8a16d4bf8a0a716017e8d2262c4ac32927797a2f": {
+    "assetId": "eip155:137/erc20:0x8a16d4bf8a0a716017e8d2262c4ac32927797a2f",
+    "chainId": "eip155:137",
+    "name": "ViciCoin",
+    "precision": 18,
+    "color": "#86A670",
+    "icon": "https://assets.coingecko.com/coins/images/31305/thumb/ViciCoin_-_small.png?1696530124",
+    "symbol": "VCNT",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x8a6f1738b2ff63c7c29f7e2b0073d96c839b0b23": {
+    "assetId": "eip155:137/erc20:0x8a6f1738b2ff63c7c29f7e2b0073d96c839b0b23",
+    "chainId": "eip155:137",
+    "name": "Dog Tag on Polygon",
+    "precision": 18,
+    "color": "#F2A006",
+    "icon": "https://assets.coingecko.com/coins/images/26418/thumb/TAG_PNG.png?1696525494",
+    "symbol": "TAG",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x8a953cfe442c5e8855cc6c61b1293fa648bae472": {
+    "assetId": "eip155:137/erc20:0x8a953cfe442c5e8855cc6c61b1293fa648bae472",
+    "chainId": "eip155:137",
+    "name": "PolyDoge",
+    "precision": 18,
+    "color": "#C06F89",
+    "icon": "https://assets.coingecko.com/coins/images/15146/thumb/p1kSco1h_400x400.jpg?1696514802",
+    "symbol": "POLYDOGE",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x8af78f0c818302164f73b2365fe152c2d1fe80e1": {
+    "assetId": "eip155:137/erc20:0x8af78f0c818302164f73b2365fe152c2d1fe80e1",
+    "chainId": "eip155:137",
+    "name": "Financie Token on Polygon",
+    "precision": 18,
+    "color": "#FAF8F6",
+    "icon": "https://assets.coingecko.com/coins/images/29099/thumb/VcJQzCWT_400x400.jpg?1696528062",
+    "symbol": "FNCT",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x8bb30e0e67b11b978a5040144c410e1ccddcba30": {
+    "assetId": "eip155:137/erc20:0x8bb30e0e67b11b978a5040144c410e1ccddcba30",
+    "chainId": "eip155:137",
+    "name": "Zus on Polygon",
+    "precision": 10,
+    "color": "#2C04FC",
+    "icon": "https://assets.coingecko.com/coins/images/4934/thumb/200x200_transparent.png?1696505474",
+    "symbol": "ZCN",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x8c069b6cef3453babb15fa97784affeb95d398fa": {
+    "assetId": "eip155:137/erc20:0x8c069b6cef3453babb15fa97784affeb95d398fa",
+    "chainId": "eip155:137",
+    "name": "People s Money PMXX",
+    "precision": 18,
+    "color": "#080507",
+    "icon": "https://assets.coingecko.com/coins/images/26722/thumb/WhatsApp_Image_2022-08-14_at_11.21.14_AM.jpeg?1696525792",
+    "symbol": "PMXX",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x8c4476dfec8e7eedf2de3e9e9461b7c14c828d46": {
+    "assetId": "eip155:137/erc20:0x8c4476dfec8e7eedf2de3e9e9461b7c14c828d46",
+    "chainId": "eip155:137",
+    "name": "UniX on Polygon",
+    "precision": 18,
+    "color": "#240946",
+    "icon": "https://assets.coingecko.com/coins/images/20674/thumb/unix.png?1696520075",
+    "symbol": "UNIX",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x8c92e38eca8210f4fcbf17f0951b198dd7668292": {
+    "assetId": "eip155:137/erc20:0x8c92e38eca8210f4fcbf17f0951b198dd7668292",
+    "chainId": "eip155:137",
+    "name": "dHEDGE DAO on Polygon",
+    "precision": 18,
+    "color": "#0C0C0C",
+    "icon": "https://assets.coingecko.com/coins/images/12508/thumb/dht.png?1696512323",
+    "symbol": "DHT",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x8d1566569d5b695d44a9a234540f68d393cdc40d": {
+    "assetId": "eip155:137/erc20:0x8d1566569d5b695d44a9a234540f68d393cdc40d",
+    "chainId": "eip155:137",
+    "name": "GameCredits on Polygon",
+    "precision": 18,
+    "color": "#46AA44",
+    "icon": "https://assets.coingecko.com/coins/images/193/thumb/XlQmXoU.png?1696501564",
+    "symbol": "GAME",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x8d520c8e66091cfd6743fe37fbe3a09505616c4b": {
+    "assetId": "eip155:137/erc20:0x8d520c8e66091cfd6743fe37fbe3a09505616c4b",
+    "chainId": "eip155:137",
+    "name": "Cosplay Token on Polygon",
+    "precision": 18,
+    "color": "#E082A0",
+    "icon": "https://assets.coingecko.com/coins/images/21294/thumb/brave_ZxsjzUc8xn.png?1696520664",
+    "symbol": "COT",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x8db0a6d1b06950b4e81c4f67d1289fc7b9359c7f": {
+    "assetId": "eip155:137/erc20:0x8db0a6d1b06950b4e81c4f67d1289fc7b9359c7f",
+    "chainId": "eip155:137",
+    "name": "Enegra",
+    "precision": 6,
+    "color": "#2CAC54",
+    "icon": "https://assets.coingecko.com/coins/images/23082/thumb/imgonline-com-ua-Resize-LHUSvWAko1XuD.png?1696522372",
+    "symbol": "EGX",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x8df3aad3a84da6b69a4da8aec3ea40d9091b2ac4": {
+    "assetId": "eip155:137/erc20:0x8df3aad3a84da6b69a4da8aec3ea40d9091b2ac4",
+    "chainId": "eip155:137",
+    "name": "Aave Polygon WMATIC",
+    "precision": 18,
+    "color": "#3899ED",
+    "icon": "https://assets.coingecko.com/coins/images/17267/thumb/amWMATIC_2x.png?1696516822",
+    "symbol": "AMWMATIC",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x8eb270e296023e9d92081fdf967ddd7878724424": {
+    "assetId": "eip155:137/erc20:0x8eb270e296023e9d92081fdf967ddd7878724424",
+    "chainId": "eip155:137",
+    "name": "Aave v3 GHST",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/32923/thumb/ghst.png?1699826089",
+    "symbol": "AGHST",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x8eef5a82e6aa222a60f009ac18c24ee12dbf4b41": {
+    "assetId": "eip155:137/erc20:0x8eef5a82e6aa222a60f009ac18c24ee12dbf4b41",
+    "chainId": "eip155:137",
+    "name": "Autobahn Network on Polygon",
+    "precision": 18,
+    "color": "#5176ED",
+    "icon": "https://assets.coingecko.com/coins/images/12432/thumb/txl.png?1696512252",
+    "symbol": "TXL",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x8f006d1e1d9dc6c98996f50a4c810f17a47fbf19": {
+    "assetId": "eip155:137/erc20:0x8f006d1e1d9dc6c98996f50a4c810f17a47fbf19",
+    "chainId": "eip155:137",
+    "name": "Pleasure Coin on Polygon",
+    "precision": 18,
+    "color": "#8F04CA",
+    "icon": "https://assets.coingecko.com/coins/images/15315/thumb/pleasurecoin-icon.png?1696514965",
+    "symbol": "NSFW",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x8f18dc399594b451eda8c5da02d0563c0b2d0f16": {
+    "assetId": "eip155:137/erc20:0x8f18dc399594b451eda8c5da02d0563c0b2d0f16",
+    "chainId": "eip155:137",
+    "name": "moonwolf io",
+    "precision": 9,
+    "color": "#201554",
+    "icon": "https://assets.coingecko.com/coins/images/14698/thumb/oC37AkkD_400x400.jpg?1696514370",
+    "symbol": "WOLF",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x8f36cc333f55b09bb71091409a3d7ade399e3b1c": {
+    "assetId": "eip155:137/erc20:0x8f36cc333f55b09bb71091409a3d7ade399e3b1c",
+    "chainId": "eip155:137",
+    "name": "Cherry Network on Polygon",
+    "precision": 18,
+    "color": "#EFE2F1",
+    "icon": "https://assets.coingecko.com/coins/images/21855/thumb/cherry.PNG?1696521209",
+    "symbol": "CHER",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x8f3cf7ad23cd3cadbd9735aff958023239c6a063": {
+    "assetId": "eip155:137/erc20:0x8f3cf7ad23cd3cadbd9735aff958023239c6a063",
+    "chainId": "eip155:137",
+    "name": "Dai on Polygon",
+    "precision": 18,
+    "color": "#FCBD3C",
+    "icon": "https://assets.coingecko.com/coins/images/9956/thumb/Badge_Dai.png?1696509996",
+    "symbol": "DAI",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x8f6196901a4a153d8ee8f3fa779a042f6092d908": {
+    "assetId": "eip155:137/erc20:0x8f6196901a4a153d8ee8f3fa779a042f6092d908",
+    "chainId": "eip155:137",
+    "name": "DxSale Network on Polygon",
+    "precision": 18,
+    "color": "#CCCCCC",
+    "icon": "https://assets.coingecko.com/coins/images/12250/thumb/dx-light.png?1696512081",
+    "symbol": "SALE",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x8f9e8e833a69aa467e42c46cca640da84dd4585f": {
+    "assetId": "eip155:137/erc20:0x8f9e8e833a69aa467e42c46cca640da84dd4585f",
+    "chainId": "eip155:137",
+    "name": "NFT Champions",
+    "precision": 8,
+    "color": "#FA2053",
+    "icon": "https://assets.coingecko.com/coins/images/19536/thumb/champ.png?1696518969",
+    "symbol": "CHAMP",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x8ffdf2de812095b1d19cb146e4c004587c0a0692": {
+    "assetId": "eip155:137/erc20:0x8ffdf2de812095b1d19cb146e4c004587c0a0692",
+    "chainId": "eip155:137",
+    "name": "Aave v3 BAL on Polygon",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/32903/thumb/BAL_%281%29.png?1699802595",
+    "symbol": "ABAL",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x9008d70a5282a936552593f410abcbce2f891a97": {
+    "assetId": "eip155:137/erc20:0x9008d70a5282a936552593f410abcbce2f891a97",
+    "chainId": "eip155:137",
+    "name": "Penrose Finance",
+    "precision": 18,
+    "color": "#8C64E4",
+    "icon": "https://assets.coingecko.com/coins/images/26105/thumb/6iWxdkG.png?1696525196",
+    "symbol": "PEN",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x904371845bc56dcbbcf0225ef84a669b2fd6bd0d": {
+    "assetId": "eip155:137/erc20:0x904371845bc56dcbbcf0225ef84a669b2fd6bd0d",
+    "chainId": "eip155:137",
+    "name": "Relay Chain on Polygon",
+    "precision": 18,
+    "color": "#0CA4EC",
+    "icon": "https://assets.coingecko.com/coins/images/17816/thumb/relay-logo-200.png?1696517336",
+    "symbol": "RELAY",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x90f3edc7d5298918f7bb51694134b07356f7d0c7": {
+    "assetId": "eip155:137/erc20:0x90f3edc7d5298918f7bb51694134b07356f7d0c7",
+    "chainId": "eip155:137",
+    "name": "DDAO Hunters",
+    "precision": 18,
+    "color": "#0F0F0F",
+    "icon": "https://assets.coingecko.com/coins/images/23018/thumb/New-Logo.jpg?1696522313",
+    "symbol": "DDAO",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x9111d6446ac5b88a84cf06425c6286658368542f": {
+    "assetId": "eip155:137/erc20:0x9111d6446ac5b88a84cf06425c6286658368542f",
+    "chainId": "eip155:137",
+    "name": "For Loot And Glory on Polygon",
+    "precision": 18,
+    "color": "#C7C5C7",
+    "icon": "https://assets.coingecko.com/coins/images/20726/thumb/token_logo.ico?1696520124",
+    "symbol": "FLAG",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x91e7e32c710661c44ae44d10aa86135d91c3ed65": {
+    "assetId": "eip155:137/erc20:0x91e7e32c710661c44ae44d10aa86135d91c3ed65",
+    "chainId": "eip155:137",
+    "name": "Peercoin on Polygon",
+    "precision": 6,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/4/thumb/peercoin-icon-green-transparent_6x.png?1696501402",
+    "symbol": "PPC",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x91f0484f9b65dc5187e414dae5ed37ea7a4b8af4": {
+    "assetId": "eip155:137/erc20:0x91f0484f9b65dc5187e414dae5ed37ea7a4b8af4",
+    "chainId": "eip155:137",
+    "name": "Coorest on Polygon",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/30623/thumb/crst-token-1-1.png?1696529497",
+    "symbol": "CRST",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x925fadb35b73720238cc78777d02ed4dd3100816": {
+    "assetId": "eip155:137/erc20:0x925fadb35b73720238cc78777d02ed4dd3100816",
+    "chainId": "eip155:137",
+    "name": "AutoSingle",
+    "precision": 18,
+    "color": "#7573F1",
+    "icon": "https://assets.coingecko.com/coins/images/27083/thumb/autos.png?1696526133",
+    "symbol": "AUTOS",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x92868a5255c628da08f550a858a802f5351c5223": {
+    "assetId": "eip155:137/erc20:0x92868a5255c628da08f550a858a802f5351c5223",
+    "chainId": "eip155:137",
+    "name": "Cross Chain Bridge on Polygon",
+    "precision": 18,
+    "color": "#0554FC",
+    "icon": "https://assets.coingecko.com/coins/images/20223/thumb/0x92868A5255C628dA08F550a858A802f5351C5223.png?1696519632",
+    "symbol": "BRIDGE",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x92c59f1cc9a322670cca29594e4d994d48bdfd36": {
+    "assetId": "eip155:137/erc20:0x92c59f1cc9a322670cca29594e4d994d48bdfd36",
+    "chainId": "eip155:137",
+    "name": "PhoenixDAO on Polygon",
+    "precision": 18,
+    "color": "#5F5AF8",
+    "icon": "https://assets.coingecko.com/coins/images/11523/thumb/Token_Icon.png?1696511425",
+    "symbol": "PHNX",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x930a7dc10ae084fbbddc6537d7df7d4c65a40944": {
+    "assetId": "eip155:137/erc20:0x930a7dc10ae084fbbddc6537d7df7d4c65a40944",
+    "chainId": "eip155:137",
+    "name": "UNLOCK",
+    "precision": 18,
+    "color": "#464647",
+    "icon": "https://assets.coingecko.com/coins/images/23646/thumb/unlock.png?1696522849",
+    "symbol": "UNLOCK",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x94025780a1ab58868d9b2dbbb775f44b32e8e6e5": {
+    "assetId": "eip155:137/erc20:0x94025780a1ab58868d9b2dbbb775f44b32e8e6e5",
+    "chainId": "eip155:137",
+    "name": "BetSwirl on Polygon",
+    "precision": 18,
+    "color": "#476DEF",
+    "icon": "https://assets.coingecko.com/coins/images/26618/thumb/icon_200.png?1696525691",
+    "symbol": "BETS",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x948d0a28b600bdbd77af4ea30e6f338167034181": {
+    "assetId": "eip155:137/erc20:0x948d0a28b600bdbd77af4ea30e6f338167034181",
+    "chainId": "eip155:137",
+    "name": "NSHARE",
+    "precision": 18,
+    "color": "#FBBA14",
+    "icon": "https://assets.coingecko.com/coins/images/21692/thumb/NF_nshare_2_200x200.png?1696521047",
+    "symbol": "NSHARE",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x95093f8348c6678df4812c008248d88cad344069": {
+    "assetId": "eip155:137/erc20:0x95093f8348c6678df4812c008248d88cad344069",
+    "chainId": "eip155:137",
+    "name": "War Legends on Polygon",
+    "precision": 18,
+    "color": "#666062",
+    "icon": "https://assets.coingecko.com/coins/images/30672/thumb/wZBMVBr2_400x400.jpg?1696529542",
+    "symbol": "WAR",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x950e1561b7a7deb1a32a6419fd435410daf851b0": {
+    "assetId": "eip155:137/erc20:0x950e1561b7a7deb1a32a6419fd435410daf851b0",
+    "chainId": "eip155:137",
+    "name": "Decentralized Universal Basic Income",
+    "precision": 18,
+    "color": "#18789F",
+    "icon": "https://assets.coingecko.com/coins/images/2606/thumb/decentralized-universal-basic-income.png?1696503407",
+    "symbol": "DUBI",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x95e376390f472fcaa21995169e11d523954b3bbb": {
+    "assetId": "eip155:137/erc20:0x95e376390f472fcaa21995169e11d523954b3bbb",
+    "chainId": "eip155:137",
+    "name": "LiraT on Polygon",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/32815/thumb/lirat.png?1699579061",
+    "symbol": "TRYT",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x968b493a2b27d03dad92b9ea1e2e8232a72c9c2c": {
+    "assetId": "eip155:137/erc20:0x968b493a2b27d03dad92b9ea1e2e8232a72c9c2c",
+    "chainId": "eip155:137",
+    "name": "Swords of Blood",
+    "precision": 18,
+    "color": "#161D32",
+    "icon": "https://assets.coingecko.com/coins/images/31358/thumb/Swoordsofblood_-_m11-200x200.png?1696530175",
+    "symbol": "SWDTKN",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x9719d867a500ef117cc201206b8ab51e794d3f82": {
+    "assetId": "eip155:137/erc20:0x9719d867a500ef117cc201206b8ab51e794d3f82",
+    "chainId": "eip155:137",
+    "name": "Matic Aave Interest Bearing USDC",
+    "precision": 6,
+    "color": "#CED6EC",
+    "icon": "https://assets.coingecko.com/coins/images/14074/thumb/maUSDC.png?1696513798",
+    "symbol": "MAUSDC",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x972999c58bbce63a2e398d4ed3bde414b8349eb3": {
+    "assetId": "eip155:137/erc20:0x972999c58bbce63a2e398d4ed3bde414b8349eb3",
+    "chainId": "eip155:137",
+    "name": "Purpose",
+    "precision": 18,
+    "color": "#2E515C",
+    "icon": "https://assets.coingecko.com/coins/images/2539/thumb/purpose.png?1696503350",
+    "symbol": "PRPS",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x9767203e89dcd34851240b3919d4900d3e5069f1": {
+    "assetId": "eip155:137/erc20:0x9767203e89dcd34851240b3919d4900d3e5069f1",
+    "chainId": "eip155:137",
+    "name": "A4 Finance on Polygon",
+    "precision": 6,
+    "color": "#D4D4D4",
+    "icon": "https://assets.coingecko.com/coins/images/21992/thumb/ba384ad07217a4be75cb85314f5760f7.jpg?1696521340",
+    "symbol": "A4",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x97d45ec651d25b90701ec49c959e75efe4e1f36c": {
+    "assetId": "eip155:137/erc20:0x97d45ec651d25b90701ec49c959e75efe4e1f36c",
+    "chainId": "eip155:137",
+    "name": "NX7",
+    "precision": 9,
+    "color": "#998CB6",
+    "icon": "https://assets.coingecko.com/coins/images/31791/thumb/nx7-02-.png?1696530608",
+    "symbol": "NX7",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x981aecc6eb4d382b96a02b75e931900705e95a31": {
+    "assetId": "eip155:137/erc20:0x981aecc6eb4d382b96a02b75e931900705e95a31",
+    "chainId": "eip155:137",
+    "name": "SAVAGE",
+    "precision": 18,
+    "color": "#E2E2E2",
+    "icon": "https://assets.coingecko.com/coins/images/22750/thumb/savg_logo.jpg?1696522054",
+    "symbol": "SAVG",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x99083d1b9c6744c71d0cf70b8965faca37684527": {
+    "assetId": "eip155:137/erc20:0x99083d1b9c6744c71d0cf70b8965faca37684527",
+    "chainId": "eip155:137",
+    "name": "FRANCE REV FINANCE on Polygon",
+    "precision": 18,
+    "color": "#3CCC3E",
+    "icon": "https://assets.coingecko.com/coins/images/22224/thumb/LOGO200_FRF.png?1696521567",
+    "symbol": "FRF",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x998013798440d44c1dd4c767bdd9580e16e46e28": {
+    "assetId": "eip155:137/erc20:0x998013798440d44c1dd4c767bdd9580e16e46e28",
+    "chainId": "eip155:137",
+    "name": "ITSBLOC",
+    "precision": 18,
+    "color": "#272D62",
+    "icon": "https://assets.coingecko.com/coins/images/27268/thumb/ezgif-2-1826f94a8a.jpeg?1696526320",
+    "symbol": "ITSB",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x9a06db14d639796b25a6cec6a1bf614fd98815ec": {
+    "assetId": "eip155:137/erc20:0x9a06db14d639796b25a6cec6a1bf614fd98815ec",
+    "chainId": "eip155:137",
+    "name": "Panther Protocol on Polygon",
+    "precision": 18,
+    "color": "#151515",
+    "icon": "https://assets.coingecko.com/coins/images/18611/thumb/panther.jpg?1696518084",
+    "symbol": "ZKP",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x9a41e03fef7f16f552c6fba37ffa7590fb1ec0c4": {
+    "assetId": "eip155:137/erc20:0x9a41e03fef7f16f552c6fba37ffa7590fb1ec0c4",
+    "chainId": "eip155:137",
+    "name": "Arch Blockchains",
+    "precision": 18,
+    "color": "#CC05FC",
+    "icon": "https://assets.coingecko.com/coins/images/26563/thumb/CHAINS.png?1696525636",
+    "symbol": "CHAIN",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x9a4eb698e5de3d3df0a68f681789072de1e50222": {
+    "assetId": "eip155:137/erc20:0x9a4eb698e5de3d3df0a68f681789072de1e50222",
+    "chainId": "eip155:137",
+    "name": "Fidira",
+    "precision": 18,
+    "color": "#F9F00D",
+    "icon": "https://assets.coingecko.com/coins/images/19446/thumb/nl0qESy3_400x400.jpg?1696518884",
+    "symbol": "FID",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x9a71012b13ca4d3d0cdc72a177df3ef03b0e76a3": {
+    "assetId": "eip155:137/erc20:0x9a71012b13ca4d3d0cdc72a177df3ef03b0e76a3",
+    "chainId": "eip155:137",
+    "name": "Balancer on Polygon",
+    "precision": 18,
+    "color": "#040404",
+    "icon": "https://assets.coingecko.com/coins/images/11683/thumb/Balancer.png?1696511572",
+    "symbol": "BAL",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x9af3b7dc29d3c4b1a5731408b6a9656fa7ac3b72": {
+    "assetId": "eip155:137/erc20:0x9af3b7dc29d3c4b1a5731408b6a9656fa7ac3b72",
+    "chainId": "eip155:137",
+    "name": "PUSD Polyquity",
+    "precision": 18,
+    "color": "#875AEC",
+    "icon": "https://assets.coingecko.com/coins/images/16762/thumb/PUSD-purple-200.png?1696516335",
+    "symbol": "PUSD",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x9b3b0703d392321ad24338ff1f846650437a43c9": {
+    "assetId": "eip155:137/erc20:0x9b3b0703d392321ad24338ff1f846650437a43c9",
+    "chainId": "eip155:137",
+    "name": "Boson Protocol on Polygon",
+    "precision": 18,
+    "color": "#24253A",
+    "icon": "https://assets.coingecko.com/coins/images/14710/thumb/boson_logo.png?1696514381",
+    "symbol": "BOSON",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x9b760d11f63cb80bffbcf69421cd46511e429f83": {
+    "assetId": "eip155:137/erc20:0x9b760d11f63cb80bffbcf69421cd46511e429f83",
+    "chainId": "eip155:137",
+    "name": "LFi on Polygon",
+    "precision": 8,
+    "color": "#143A46",
+    "icon": "https://assets.coingecko.com/coins/images/31897/thumb/LFi_Token.png?1696530708",
+    "symbol": "LFI",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x9b79fe702e2508dc61d6db44574462128e626222": {
+    "assetId": "eip155:137/erc20:0x9b79fe702e2508dc61d6db44574462128e626222",
+    "chainId": "eip155:137",
+    "name": "DigiBunnies",
+    "precision": 18,
+    "color": "#638A60",
+    "icon": "https://assets.coingecko.com/coins/images/32353/thumb/digi.jpg?1697475198",
+    "symbol": "DGBN",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x9c1c23e60b72bc88a043bf64afdb16a02540ae8f": {
+    "assetId": "eip155:137/erc20:0x9c1c23e60b72bc88a043bf64afdb16a02540ae8f",
+    "chainId": "eip155:137",
+    "name": "Darwinia Network on Polygon",
+    "precision": 18,
+    "color": "#9EA3B1",
+    "icon": "https://assets.coingecko.com/coins/images/9443/thumb/RING.png?1696509535",
+    "symbol": "RING",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x9c2c5fd7b07e95ee044ddeba0e97a665f142394f": {
+    "assetId": "eip155:137/erc20:0x9c2c5fd7b07e95ee044ddeba0e97a665f142394f",
+    "chainId": "eip155:137",
+    "name": "1inch on Polygon",
+    "precision": 18,
+    "color": "#DFE3EA",
+    "icon": "https://assets.coingecko.com/coins/images/13469/thumb/1inch-token.png?1696513230",
+    "symbol": "1INCH",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x9c32185b81766a051e08de671207b34466dd1021": {
+    "assetId": "eip155:137/erc20:0x9c32185b81766a051e08de671207b34466dd1021",
+    "chainId": "eip155:137",
+    "name": "BTC Proxy on Polygon",
+    "precision": 8,
+    "color": "#EFE0DE",
+    "icon": "https://assets.coingecko.com/coins/images/22630/thumb/MB1aYO7T_400x400.jpg?1696521945",
+    "symbol": "BTCPX",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x9c6bfedc14b5c23e3900889436edca7805170f01": {
+    "assetId": "eip155:137/erc20:0x9c6bfedc14b5c23e3900889436edca7805170f01",
+    "chainId": "eip155:137",
+    "name": "Phoenix Finance on Polygon",
+    "precision": 18,
+    "color": "#CD2628",
+    "icon": "https://assets.coingecko.com/coins/images/17675/thumb/phx_logo.png?1696517205",
+    "symbol": "PHX",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x9c78ee466d6cb57a4d01fd887d2b5dfb2d46288f": {
+    "assetId": "eip155:137/erc20:0x9c78ee466d6cb57a4d01fd887d2b5dfb2d46288f",
+    "chainId": "eip155:137",
+    "name": "Must on Polygon",
+    "precision": 18,
+    "color": "#2D5B53",
+    "icon": "https://assets.coingecko.com/coins/images/13688/thumb/must_logo.png?1696513436",
+    "symbol": "MUST",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x9c891326fd8b1a713974f73bb604677e1e63396d": {
+    "assetId": "eip155:137/erc20:0x9c891326fd8b1a713974f73bb604677e1e63396d",
+    "chainId": "eip155:137",
+    "name": "ISLAMICOIN",
+    "precision": 7,
+    "color": "#957245",
+    "icon": "https://assets.coingecko.com/coins/images/24749/thumb/3100-x-3100-px-e1632233028219.png?1696523911",
+    "symbol": "ISLAMI",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x9c9e5fd8bbc25984b178fdce6117defa39d2db39": {
+    "assetId": "eip155:137/erc20:0x9c9e5fd8bbc25984b178fdce6117defa39d2db39",
+    "chainId": "eip155:137",
+    "name": "Binance Peg BUSD on Polygon",
+    "precision": 18,
+    "color": "#F4BC0C",
+    "icon": "https://assets.coingecko.com/coins/images/31273/thumb/new_binance-peg-busd.png?1696530096",
+    "symbol": "BUSD",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x9ca6a77c8b38159fd2da9bd25bc3e259c33f5e39": {
+    "assetId": "eip155:137/erc20:0x9ca6a77c8b38159fd2da9bd25bc3e259c33f5e39",
+    "chainId": "eip155:137",
+    "name": "SporkDAO on Polygon",
+    "precision": 18,
+    "color": "#928DAD",
+    "icon": "https://assets.coingecko.com/coins/images/23358/thumb/sporkdao.PNG?1696522573",
+    "symbol": "SPORK",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x9cb74c8032b007466865f060ad2c46145d45553d": {
+    "assetId": "eip155:137/erc20:0x9cb74c8032b007466865f060ad2c46145d45553d",
+    "chainId": "eip155:137",
+    "name": "IDEX on Polygon",
+    "precision": 18,
+    "color": "#D60784",
+    "icon": "https://assets.coingecko.com/coins/images/2565/thumb/idexlogo.png?1696503371",
+    "symbol": "IDEX",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x9cd552551ec130b50c1421649c8d11e76ac821e1": {
+    "assetId": "eip155:137/erc20:0x9cd552551ec130b50c1421649c8d11e76ac821e1",
+    "chainId": "eip155:137",
+    "name": "Crypto Volatility on Polygon",
+    "precision": 18,
+    "color": "#B7DAED",
+    "icon": "https://assets.coingecko.com/coins/images/24008/thumb/govi-dao.03ef3083.png?1696523202",
+    "symbol": "CVI",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x9dbfc1cbf7a1e711503a29b4b5f9130ebeccac96": {
+    "assetId": "eip155:137/erc20:0x9dbfc1cbf7a1e711503a29b4b5f9130ebeccac96",
+    "chainId": "eip155:137",
+    "name": "UpOnly",
+    "precision": 18,
+    "color": "#847ACF",
+    "icon": "https://assets.coingecko.com/coins/images/24900/thumb/f-WNwLNJ_400x400.jpg?1696524058",
+    "symbol": "UPO",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x9de41aff9f55219d5bf4359f167d1d0c772a396d": {
+    "assetId": "eip155:137/erc20:0x9de41aff9f55219d5bf4359f167d1d0c772a396d",
+    "chainId": "eip155:137",
+    "name": "CAD Coin on Polygon",
+    "precision": 18,
+    "color": "#FC6464",
+    "icon": "https://assets.coingecko.com/coins/images/14149/thumb/cadc_2.png?1696513868",
+    "symbol": "CADC",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x9e6b19874e97fe8e8cad77f2c0ab5e7a693e5dbf": {
+    "assetId": "eip155:137/erc20:0x9e6b19874e97fe8e8cad77f2c0ab5e7a693e5dbf",
+    "chainId": "eip155:137",
+    "name": "StrongHands Finance on Polygon",
+    "precision": 18,
+    "color": "#3DAB47",
+    "icon": "https://assets.coingecko.com/coins/images/20158/thumb/ISHND_512x512px.png?1696519571",
+    "symbol": "ISHND",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x9eb8a789ed1bd38d281962b523349d5d17a37d47": {
+    "assetId": "eip155:137/erc20:0x9eb8a789ed1bd38d281962b523349d5d17a37d47",
+    "chainId": "eip155:137",
+    "name": "Xion Finance",
+    "precision": 18,
+    "color": "#FC04FC",
+    "icon": "https://assets.coingecko.com/coins/images/14039/thumb/xgt.png?1696513765",
+    "symbol": "XGT",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x9f28e2455f9ffcfac9ebd6084853417362bc5dbb": {
+    "assetId": "eip155:137/erc20:0x9f28e2455f9ffcfac9ebd6084853417362bc5dbb",
+    "chainId": "eip155:137",
+    "name": "StaFi Staked MATIC on Polygon",
+    "precision": 18,
+    "color": "#04C4CA",
+    "icon": "https://assets.coingecko.com/coins/images/29610/thumb/rMATIC.png?1696528546",
+    "symbol": "RMATIC",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x9f95e17b2668afe01f8fbd157068b0a4405cc08d": {
+    "assetId": "eip155:137/erc20:0x9f95e17b2668afe01f8fbd157068b0a4405cc08d",
+    "chainId": "eip155:137",
+    "name": "Bullieverse",
+    "precision": 18,
+    "color": "#050505",
+    "icon": "https://assets.coingecko.com/coins/images/24174/thumb/KR3qVAQe_400x400.jpg?1696523362",
+    "symbol": "BULL",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x9fb9a33956351cf4fa040f65a13b835a3c8764e3": {
+    "assetId": "eip155:137/erc20:0x9fb9a33956351cf4fa040f65a13b835a3c8764e3",
+    "chainId": "eip155:137",
+    "name": "Multichain on Polygon",
+    "precision": 18,
+    "color": "#D6D2FA",
+    "icon": "https://assets.coingecko.com/coins/images/22087/thumb/1_Wyot-SDGZuxbjdkaOeT2-A.png?1696521430",
+    "symbol": "MULTI",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0x9ff62d1fc52a907b6dcba8077c2ddca6e6a9d3e1": {
+    "assetId": "eip155:137/erc20:0x9ff62d1fc52a907b6dcba8077c2ddca6e6a9d3e1",
+    "chainId": "eip155:137",
+    "name": "Forta on Polygon",
+    "precision": 18,
+    "color": "#0C0C0C",
+    "icon": "https://assets.coingecko.com/coins/images/25060/thumb/Forta_lgo_%281%29.png?1696524210",
+    "symbol": "FORT",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0xa0af9f13e067562aae8e52a5fb6a74febfcf7d41": {
+    "assetId": "eip155:137/erc20:0xa0af9f13e067562aae8e52a5fb6a74febfcf7d41",
+    "chainId": "eip155:137",
+    "name": "EMG SuperApp",
+    "precision": 18,
+    "color": "#C4414E",
+    "icon": "https://assets.coingecko.com/coins/images/28516/thumb/IMG_20230726_152907_551.jpg?1696527509",
+    "symbol": "EMGS",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0xa0cb0ce7c6d93a7ebd72952feb4407dddee8a194": {
+    "assetId": "eip155:137/erc20:0xa0cb0ce7c6d93a7ebd72952feb4407dddee8a194",
+    "chainId": "eip155:137",
+    "name": "Shibaken Finance on Polygon",
+    "precision": 0,
+    "color": "#0C0C0C",
+    "icon": "https://assets.coingecko.com/coins/images/15413/thumb/shibak.png?1696515059",
+    "symbol": "SHIBAKEN",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0xa0df47432d9d88bcc040e9ee66ddc7e17a882715": {
+    "assetId": "eip155:137/erc20:0xa0df47432d9d88bcc040e9ee66ddc7e17a882715",
+    "chainId": "eip155:137",
+    "name": "Ripae pMATIC",
+    "precision": 18,
+    "color": "#09ACE2",
+    "icon": "https://assets.coingecko.com/coins/images/26366/thumb/l5k8DuE3_400x400.png?1696525443",
+    "symbol": "PMATIC",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0xa0e390e9cea0d0e8cd40048ced9fa9ea10d71639": {
+    "assetId": "eip155:137/erc20:0xa0e390e9cea0d0e8cd40048ced9fa9ea10d71639",
+    "chainId": "eip155:137",
+    "name": "DSLA Protocol on Polygon",
+    "precision": 18,
+    "color": "#C7C5C5",
+    "icon": "https://assets.coingecko.com/coins/images/6694/thumb/dsla_logo-squared_200x200.png?1696507035",
+    "symbol": "DSLA",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0xa0e4c84693266a9d3bbef2f394b33712c76599ab": {
+    "assetId": "eip155:137/erc20:0xa0e4c84693266a9d3bbef2f394b33712c76599ab",
+    "chainId": "eip155:137",
+    "name": "EURO3",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/33118/thumb/EURO3.png?1700732918",
+    "symbol": "EURO3",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0xa0ead927e6c31646cf1d4cc721705c415e515bd4": {
+    "assetId": "eip155:137/erc20:0xa0ead927e6c31646cf1d4cc721705c415e515bd4",
+    "chainId": "eip155:137",
+    "name": "TRIMBEX",
+    "precision": 18,
+    "color": "#D4D4CF",
+    "icon": "https://assets.coingecko.com/coins/images/32338/thumb/mm-removebg-preview_7.png?1697453288",
+    "symbol": "TRIM",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0xa1388e73c51b37383b1ab9dce8317ef5a0349cc5": {
+    "assetId": "eip155:137/erc20:0xa1388e73c51b37383b1ab9dce8317ef5a0349cc5",
+    "chainId": "eip155:137",
+    "name": "Shibaverse on Polygon",
+    "precision": 18,
+    "color": "#DC7714",
+    "icon": "https://assets.coingecko.com/coins/images/18407/thumb/logo_200.png?1696517897",
+    "symbol": "VERSE",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0xa1428174f516f527fafdd146b883bb4428682737": {
+    "assetId": "eip155:137/erc20:0xa1428174f516f527fafdd146b883bb4428682737",
+    "chainId": "eip155:137",
+    "name": "SuperVerse on Polygon",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/14040/thumb/SuperVerse_Logo_200x200.png?1696513766",
+    "symbol": "SUPER",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0xa1c57f48f0deb89f569dfbe6e2b7f46d33606fd4": {
+    "assetId": "eip155:137/erc20:0xa1c57f48f0deb89f569dfbe6e2b7f46d33606fd4",
+    "chainId": "eip155:137",
+    "name": "Decentraland on Polygon",
+    "precision": 18,
+    "color": "#F7475A",
+    "icon": "https://assets.coingecko.com/coins/images/878/thumb/decentraland-mana.png?1696502010",
+    "symbol": "MANA",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0xa1fd25f9d59768dfaa376b25a46df2ab2729fb83": {
+    "assetId": "eip155:137/erc20:0xa1fd25f9d59768dfaa376b25a46df2ab2729fb83",
+    "chainId": "eip155:137",
+    "name": "5mc",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/32862/thumb/5mc_200X200.png?1699670007",
+    "symbol": "5MC",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0xa25610a77077390a75ad9072a084c5fbc7d43a0d": {
+    "assetId": "eip155:137/erc20:0xa25610a77077390a75ad9072a084c5fbc7d43a0d",
+    "chainId": "eip155:137",
+    "name": "Monsoon Finance",
+    "precision": 18,
+    "color": "#25A6E1",
+    "icon": "https://assets.coingecko.com/coins/images/18632/thumb/DdcZZeP_%282%29.png?1696518104",
+    "symbol": "MCASH",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0xa288e965e86ac4e5c03352f199cc7a66022e15a8": {
+    "assetId": "eip155:137/erc20:0xa288e965e86ac4e5c03352f199cc7a66022e15a8",
+    "chainId": "eip155:137",
+    "name": "Black Whale on Polygon",
+    "precision": 18,
+    "color": "#E6872F",
+    "icon": "https://assets.coingecko.com/coins/images/32516/thumb/BLK_LOGO%28200x200%29.png?1698406168",
+    "symbol": "XXX",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0xa2c638b78783e9afe26a16ec8b11de54eb169360": {
+    "assetId": "eip155:137/erc20:0xa2c638b78783e9afe26a16ec8b11de54eb169360",
+    "chainId": "eip155:137",
+    "name": "Pay It Now",
+    "precision": 18,
+    "color": "#1D2C55",
+    "icon": "https://assets.coingecko.com/coins/images/22482/thumb/PINlogo.png?1696521805",
+    "symbol": "PIN",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0xa2ca40dbe72028d3ac78b5250a8cb8c404e7fb8c": {
+    "assetId": "eip155:137/erc20:0xa2ca40dbe72028d3ac78b5250a8cb8c404e7fb8c",
+    "chainId": "eip155:137",
+    "name": "FEAR on Polygon",
+    "precision": 18,
+    "color": "#0A0A0A",
+    "icon": "https://assets.coingecko.com/coins/images/15825/thumb/fear-logo-400-400.png?1696515443",
+    "symbol": "FEAR",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0xa380c0b01ad15c8cf6b46890bddab5f0868e87f3": {
+    "assetId": "eip155:137/erc20:0xa380c0b01ad15c8cf6b46890bddab5f0868e87f3",
+    "chainId": "eip155:137",
+    "name": "Vyvo US Dollar on Polygon",
+    "precision": 6,
+    "color": "#3B44D4",
+    "icon": "https://assets.coingecko.com/coins/images/31718/thumb/_USDV_Solid%28200x200%29.png?1696530539",
+    "symbol": "USDV",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0xa3c322ad15218fbfaed26ba7f616249f7705d945": {
+    "assetId": "eip155:137/erc20:0xa3c322ad15218fbfaed26ba7f616249f7705d945",
+    "chainId": "eip155:137",
+    "name": "GensoKishi Metaverse on Polygon",
+    "precision": 18,
+    "color": "#DF8320",
+    "icon": "https://assets.coingecko.com/coins/images/23143/thumb/geno.png?1696522435",
+    "symbol": "MV",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0xa3c53b53fe43083aa31c6f32ffe90c4d91b44391": {
+    "assetId": "eip155:137/erc20:0xa3c53b53fe43083aa31c6f32ffe90c4d91b44391",
+    "chainId": "eip155:137",
+    "name": "Sportzchain on Polygon",
+    "precision": 18,
+    "color": "#541C10",
+    "icon": "https://assets.coingecko.com/coins/images/24915/thumb/Sportzchain_logo_195_195.png?1696524072",
+    "symbol": "SPN",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0xa3d315e8e0a62e9abd4a910d07b4768a1b3ff525": {
+    "assetId": "eip155:137/erc20:0xa3d315e8e0a62e9abd4a910d07b4768a1b3ff525",
+    "chainId": "eip155:137",
+    "name": "AGOS",
+    "precision": 18,
+    "color": "#454233",
+    "icon": "https://assets.coingecko.com/coins/images/31902/thumb/GT_200x200.png?1696530712",
+    "symbol": "AGOS",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0xa3ed22eee92a3872709823a6970069e12a4540eb": {
+    "assetId": "eip155:137/erc20:0xa3ed22eee92a3872709823a6970069e12a4540eb",
+    "chainId": "eip155:137",
+    "name": "Frontier on Polygon",
+    "precision": 18,
+    "color": "#BAB6B5",
+    "icon": "https://assets.coingecko.com/coins/images/12479/thumb/frontier_logo.png?1696512296",
+    "symbol": "FRONT",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0xa3fa99a148fa48d14ed51d610c367c61876997f1": {
+    "assetId": "eip155:137/erc20:0xa3fa99a148fa48d14ed51d610c367c61876997f1",
+    "chainId": "eip155:137",
+    "name": "MAI on Polygon",
+    "precision": 18,
+    "color": "#F1C5C5",
+    "icon": "https://assets.coingecko.com/coins/images/15264/thumb/mimatic-red.png?1696514916",
+    "symbol": "MIMATIC",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0xa4335da338ec4c07c391fc1a9bf75f306adadc08": {
+    "assetId": "eip155:137/erc20:0xa4335da338ec4c07c391fc1a9bf75f306adadc08",
+    "chainId": "eip155:137",
+    "name": "ARYZE eUSD on Polygon",
+    "precision": 18,
+    "color": "#B9DCC9",
+    "icon": "https://assets.coingecko.com/coins/images/32422/thumb/ARYZE_eUSD.png?1698118313",
+    "symbol": "EUSD",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0xa47150f5c615dcf4f2e47aad1862a0f2b54c3973": {
+    "assetId": "eip155:137/erc20:0xa47150f5c615dcf4f2e47aad1862a0f2b54c3973",
+    "chainId": "eip155:137",
+    "name": "LEAP Token on Polygon",
+    "precision": 18,
+    "color": "#642CE4",
+    "icon": "https://assets.coingecko.com/coins/images/27258/thumb/LEAPtoken_LOGO.png?1696526311",
+    "symbol": "LEAP",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0xa486c6bc102f409180ccb8a94ba045d39f8fc7cb": {
+    "assetId": "eip155:137/erc20:0xa486c6bc102f409180ccb8a94ba045d39f8fc7cb",
+    "chainId": "eip155:137",
+    "name": "Nash on Polygon",
+    "precision": 8,
+    "color": "#DDF622",
+    "icon": "https://assets.coingecko.com/coins/images/3246/thumb/Nash_M.png?1696503962",
+    "symbol": "NEX",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0xa48ad8b964bbf2c420e964b648146567ceb6d5e1": {
+    "assetId": "eip155:137/erc20:0xa48ad8b964bbf2c420e964b648146567ceb6d5e1",
+    "chainId": "eip155:137",
+    "name": "SpaceShipX aUSDC",
+    "precision": 18,
+    "color": "#7263C2",
+    "icon": "https://assets.coingecko.com/coins/images/28332/thumb/CRYTOLOGO.png?1696527339",
+    "symbol": "AUSDC",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0xa4ce4a467e51aefec683a649c3f14427f104667f": {
+    "assetId": "eip155:137/erc20:0xa4ce4a467e51aefec683a649c3f14427f104667f",
+    "chainId": "eip155:137",
+    "name": "Onston on Polygon",
+    "precision": 18,
+    "color": "#202841",
+    "icon": "https://assets.coingecko.com/coins/images/20669/thumb/onston.PNG?1696520070",
+    "symbol": "ONSTON",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0xa55870278d6389ec5b524553d03c04f5677c061e": {
+    "assetId": "eip155:137/erc20:0xa55870278d6389ec5b524553d03c04f5677c061e",
+    "chainId": "eip155:137",
+    "name": "XCAD Network on Polygon",
+    "precision": 18,
+    "color": "#DB2D62",
+    "icon": "https://assets.coingecko.com/coins/images/15857/thumb/logoWhiteX.jpg?1696515473",
+    "symbol": "XCAD",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0xa5eb60ca85898f8b26e18ff7c7e43623ccba772c": {
+    "assetId": "eip155:137/erc20:0xa5eb60ca85898f8b26e18ff7c7e43623ccba772c",
+    "chainId": "eip155:137",
+    "name": "CosmicSwap on Polygon",
+    "precision": 18,
+    "color": "#7450BA",
+    "icon": "https://assets.coingecko.com/coins/images/16197/thumb/logo_-_2021-06-10T084120.309.png?1696515798",
+    "symbol": "COSMIC",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0xa5ff48e326958e0ce6fdf9518de561f2b5f57da3": {
+    "assetId": "eip155:137/erc20:0xa5ff48e326958e0ce6fdf9518de561f2b5f57da3",
+    "chainId": "eip155:137",
+    "name": "Lokr on Polygon",
+    "precision": 18,
+    "color": "#E4047C",
+    "icon": "https://assets.coingecko.com/coins/images/14692/thumb/lokr.png?1696514364",
+    "symbol": "LKR",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0xa649325aa7c5093d12d6f98eb4378deae68ce23f": {
+    "assetId": "eip155:137/erc20:0xa649325aa7c5093d12d6f98eb4378deae68ce23f",
+    "chainId": "eip155:137",
+    "name": "Wrapped BNB on Polygon",
+    "precision": 18,
+    "color": "#F4BC2C",
+    "icon": "https://assets.coingecko.com/coins/images/12591/thumb/binance-coin-logo.png?1696512401",
+    "symbol": "WBNB",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0xa64a329876a27192c7f8bde4430bdec70ea4b2f9": {
+    "assetId": "eip155:137/erc20:0xa64a329876a27192c7f8bde4430bdec70ea4b2f9",
+    "chainId": "eip155:137",
+    "name": "NaturesGold",
+    "precision": 18,
+    "color": "#355326",
+    "icon": "https://assets.coingecko.com/coins/images/32030/thumb/i1Uvl8U.png?1696530827",
+    "symbol": "NGOLD",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0xa69d14d6369e414a32a5c7e729b7afbafd285965": {
+    "assetId": "eip155:137/erc20:0xa69d14d6369e414a32a5c7e729b7afbafd285965",
+    "chainId": "eip155:137",
+    "name": "Global Coin Research on Polygon",
+    "precision": 4,
+    "color": "#2747ED",
+    "icon": "https://assets.coingecko.com/coins/images/14815/thumb/gcr.jpeg?1696514483",
+    "symbol": "GCR",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0xa6b37fc85d870711c56fbcb8afe2f8db049ae774": {
+    "assetId": "eip155:137/erc20:0xa6b37fc85d870711c56fbcb8afe2f8db049ae774",
+    "chainId": "eip155:137",
+    "name": "Pillar on Polygon",
+    "precision": 18,
+    "color": "#AC44FC",
+    "icon": "https://assets.coingecko.com/coins/images/809/thumb/v2logo-1.png?1696501958",
+    "symbol": "PLR",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0xa6da8c8999c094432c77e7d318951d34019af24b": {
+    "assetId": "eip155:137/erc20:0xa6da8c8999c094432c77e7d318951d34019af24b",
+    "chainId": "eip155:137",
+    "name": "tGOLD on Polygon",
+    "precision": 18,
+    "color": "#DFC264",
+    "icon": "https://assets.coingecko.com/coins/images/27828/thumb/tGOLD_token_2D.jpg?1696526846",
+    "symbol": "TXAU",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0xa7051c5a22d963b81d71c2ba64d46a877fbc1821": {
+    "assetId": "eip155:137/erc20:0xa7051c5a22d963b81d71c2ba64d46a877fbc1821",
+    "chainId": "eip155:137",
+    "name": "Sifchain on Polygon",
+    "precision": 18,
+    "color": "#F2C719",
+    "icon": "https://assets.coingecko.com/coins/images/14044/thumb/EROWAN.png?1696513770",
+    "symbol": "EROWAN",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0xa7305ae84519ff8be02484cda45834c4e7d13dd6": {
+    "assetId": "eip155:137/erc20:0xa7305ae84519ff8be02484cda45834c4e7d13dd6",
+    "chainId": "eip155:137",
+    "name": "UniFarm on Polygon",
+    "precision": 18,
+    "color": "#812CA4",
+    "icon": "https://assets.coingecko.com/coins/images/15247/thumb/ufarm.jpeg?1696514900",
+    "symbol": "UFARM",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0xa7aac53f7c860b1f9d610147341c57579c51403e": {
+    "assetId": "eip155:137/erc20:0xa7aac53f7c860b1f9d610147341c57579c51403e",
+    "chainId": "eip155:137",
+    "name": "Rebel Bots Oil",
+    "precision": 8,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/32640/thumb/Xoil_coingecko.png?1698888846",
+    "symbol": "XOIL",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0xa8fcee762642f156b5d757b6fabc36e06b6d4a1a": {
+    "assetId": "eip155:137/erc20:0xa8fcee762642f156b5d757b6fabc36e06b6d4a1a",
+    "chainId": "eip155:137",
+    "name": "Aluna on Polygon",
+    "precision": 18,
+    "color": "#C7AEE2",
+    "icon": "https://assets.coingecko.com/coins/images/14379/thumb/uaLoLU8c_400x400_%281%29.png?1696514071",
+    "symbol": "ALN",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0xa91fe5a535967f52d3abebdffb3b306d964ace13": {
+    "assetId": "eip155:137/erc20:0xa91fe5a535967f52d3abebdffb3b306d964ace13",
+    "chainId": "eip155:137",
+    "name": "Sandclock on Polygon",
+    "precision": 18,
+    "color": "#242424",
+    "icon": "https://assets.coingecko.com/coins/images/19368/thumb/sandclock.jpg?1696518808",
+    "symbol": "QUARTZ",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0xa9806851eb87ad27e8d75660cec2fe6297f92a59": {
+    "assetId": "eip155:137/erc20:0xa9806851eb87ad27e8d75660cec2fe6297f92a59",
+    "chainId": "eip155:137",
+    "name": "Drive To Earn",
+    "precision": 18,
+    "color": "#040504",
+    "icon": "https://assets.coingecko.com/coins/images/32243/thumb/DTE.png?1696953033",
+    "symbol": "DTE",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0xaa1e97614eaf8d85dbf58f7f0b3080b2affcfefc": {
+    "assetId": "eip155:137/erc20:0xaa1e97614eaf8d85dbf58f7f0b3080b2affcfefc",
+    "chainId": "eip155:137",
+    "name": "Flappy Bird Evolution",
+    "precision": 18,
+    "color": "#967A3A",
+    "icon": "https://assets.coingecko.com/coins/images/32289/thumb/200x200t.png?1697182279",
+    "symbol": "FEVO",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0xaa3717090cddc9b227e49d0d84a28ac0a996e6ff": {
+    "assetId": "eip155:137/erc20:0xaa3717090cddc9b227e49d0d84a28ac0a996e6ff",
+    "chainId": "eip155:137",
+    "name": "Permission Coin",
+    "precision": 18,
+    "color": "#C9C9C9",
+    "icon": "https://assets.coingecko.com/coins/images/12521/thumb/rjQjTU3c_400x400.jpg?1696512335",
+    "symbol": "ASK",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0xaa404804ba583c025fa64c9a276a6127ceb355c6": {
+    "assetId": "eip155:137/erc20:0xaa404804ba583c025fa64c9a276a6127ceb355c6",
+    "chainId": "eip155:137",
+    "name": "CIPHER",
+    "precision": 2,
+    "color": "#A5A054",
+    "icon": "https://assets.coingecko.com/coins/images/22719/thumb/E-97BTDPNxk2PYsd8EwHzDbEpM6w-VoJc3t5DutqiPPydT57269nRUrxk8Pqig4CboNanb2Rd0MA8a0N9CGUmGG1jKdbzhy8pIwiDEGcPBP0mslchklUxO7BWSbDOv-ouncsR0aHjYGlG1hTWueUJOeqSLcVR90UKpCLhEWtJ6mS4o8_XQh57pEAEw_aiZmetQ9z0-rsla4JFo.jpg?1696522023",
+    "symbol": "CPR",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0xaa9654becca45b5bdfa5ac646c939c62b527d394": {
+    "assetId": "eip155:137/erc20:0xaa9654becca45b5bdfa5ac646c939c62b527d394",
+    "chainId": "eip155:137",
+    "name": "DinoSwap",
+    "precision": 18,
+    "color": "#99C67F",
+    "icon": "https://assets.coingecko.com/coins/images/17103/thumb/DINO.png?1696516664",
+    "symbol": "DINO",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0xaaa5b9e6c589642f98a1cda99b9d024b8407285a": {
+    "assetId": "eip155:137/erc20:0xaaa5b9e6c589642f98a1cda99b9d024b8407285a",
+    "chainId": "eip155:137",
+    "name": "IRON Titanium",
+    "precision": 18,
+    "color": "#DEB658",
+    "icon": "https://assets.coingecko.com/coins/images/16031/thumb/titan.png?1696515641",
+    "symbol": "TITAN",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0xab0b2ddb9c7e440fac8e140a89c0dbcbf2d7bbff": {
+    "assetId": "eip155:137/erc20:0xab0b2ddb9c7e440fac8e140a89c0dbcbf2d7bbff",
+    "chainId": "eip155:137",
+    "name": "iFARM on Polygon",
+    "precision": 18,
+    "color": "#5D3826",
+    "icon": "https://assets.coingecko.com/coins/images/14472/thumb/ifarm.png?1696514159",
+    "symbol": "IFARM",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0xab1b1680f6037006e337764547fb82d17606c187": {
+    "assetId": "eip155:137/erc20:0xab1b1680f6037006e337764547fb82d17606c187",
+    "chainId": "eip155:137",
+    "name": "Arch USD Div  Yield on Polygon",
+    "precision": 18,
+    "color": "#0E6EF4",
+    "icon": "https://assets.coingecko.com/coins/images/30484/thumb/ADDY.png?1696529370",
+    "symbol": "ADDY",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0xab3d689c22a2bb821f50a4ff0f21a7980dcb8591": {
+    "assetId": "eip155:137/erc20:0xab3d689c22a2bb821f50a4ff0f21a7980dcb8591",
+    "chainId": "eip155:137",
+    "name": "Proxy",
+    "precision": 18,
+    "color": "#1F1563",
+    "icon": "https://assets.coingecko.com/coins/images/17442/thumb/Proxy_logo_200.png?1696516988",
+    "symbol": "PRXY",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0xab5f7a0e20b0d056aed4aa4528c78da45be7308b": {
+    "assetId": "eip155:137/erc20:0xab5f7a0e20b0d056aed4aa4528c78da45be7308b",
+    "chainId": "eip155:137",
+    "name": "Obyte on Polygon",
+    "precision": 18,
+    "color": "#2C3C4C",
+    "icon": "https://assets.coingecko.com/coins/images/561/thumb/byteball.png?1696501768",
+    "symbol": "GBYTE",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0xac0f66379a6d7801d7726d5a943356a172549adb": {
+    "assetId": "eip155:137/erc20:0xac0f66379a6d7801d7726d5a943356a172549adb",
+    "chainId": "eip155:137",
+    "name": "Geodnet",
+    "precision": 18,
+    "color": "#CA2831",
+    "icon": "https://assets.coingecko.com/coins/images/31608/thumb/Circular_White.png?1696530424",
+    "symbol": "GEOD",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0xac63686230f64bdeaf086fe6764085453ab3023f": {
+    "assetId": "eip155:137/erc20:0xac63686230f64bdeaf086fe6764085453ab3023f",
+    "chainId": "eip155:137",
+    "name": "Atlas USV on Polygon",
+    "precision": 9,
+    "color": "#081623",
+    "icon": "https://assets.coingecko.com/coins/images/22066/thumb/7iUyjg5t.png?1696521410",
+    "symbol": "USV",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0xacbdc2b7a577299718309ed5c4b703fb5ed7af90": {
+    "assetId": "eip155:137/erc20:0xacbdc2b7a577299718309ed5c4b703fb5ed7af90",
+    "chainId": "eip155:137",
+    "name": "Signed",
+    "precision": 18,
+    "color": "#060706",
+    "icon": "https://assets.coingecko.com/coins/images/24030/thumb/wjnKYes.png?1696523222",
+    "symbol": "SIGN",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0xacd4e2d936be9b16c01848a3742a34b3d5a5bdfa": {
+    "assetId": "eip155:137/erc20:0xacd4e2d936be9b16c01848a3742a34b3d5a5bdfa",
+    "chainId": "eip155:137",
+    "name": "Mechanium on Polygon",
+    "precision": 18,
+    "color": "#0F0F0F",
+    "icon": "https://assets.coingecko.com/coins/images/24374/thumb/w4K4OOMo_400x400.jpg?1696523558",
+    "symbol": "MECHA",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0xad5dc12e88c6534eea8cfe2265851d9d4a1472ad": {
+    "assetId": "eip155:137/erc20:0xad5dc12e88c6534eea8cfe2265851d9d4a1472ad",
+    "chainId": "eip155:137",
+    "name": "Falconswap on Polygon",
+    "precision": 18,
+    "color": "#2D6EEC",
+    "icon": "https://assets.coingecko.com/coins/images/12256/thumb/falconswap.png?1696512086",
+    "symbol": "FSW",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0xad684e79ce4b6d464f2ff7c3fd51646892e24b96": {
+    "assetId": "eip155:137/erc20:0xad684e79ce4b6d464f2ff7c3fd51646892e24b96",
+    "chainId": "eip155:137",
+    "name": "Autonio on Polygon",
+    "precision": 4,
+    "color": "#74C4C4",
+    "icon": "https://assets.coingecko.com/coins/images/1122/thumb/NewLogo.png?1696502216",
+    "symbol": "NIOX",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0xad9f61563b104281b14322fec8b42eb67711bf68": {
+    "assetId": "eip155:137/erc20:0xad9f61563b104281b14322fec8b42eb67711bf68",
+    "chainId": "eip155:137",
+    "name": "Synergy Land Token",
+    "precision": 18,
+    "color": "#FCBE14",
+    "icon": "https://assets.coingecko.com/coins/images/30471/thumb/15919.png?1696529357",
+    "symbol": "SNG",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0xadac33f543267c4d59a8c299cf804c303bc3e4ac": {
+    "assetId": "eip155:137/erc20:0xadac33f543267c4d59a8c299cf804c303bc3e4ac",
+    "chainId": "eip155:137",
+    "name": "Mimo Governance on Polygon",
+    "precision": 18,
+    "color": "#A548D6",
+    "icon": "https://assets.coingecko.com/coins/images/16449/thumb/mimodefi.PNG?1696516045",
+    "symbol": "MIMO",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0xadbe0eac80f955363f4ff47b0f70189093908c04": {
+    "assetId": "eip155:137/erc20:0xadbe0eac80f955363f4ff47b0f70189093908c04",
+    "chainId": "eip155:137",
+    "name": "MetalSwap on Polygon",
+    "precision": 18,
+    "color": "#1B5C74",
+    "icon": "https://assets.coingecko.com/coins/images/22075/thumb/Logo_COIN_-_Gradiente.png?1696521419",
+    "symbol": "XMT",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0xade6057fcafa57d6d51ffa341c64ce4814995995": {
+    "assetId": "eip155:137/erc20:0xade6057fcafa57d6d51ffa341c64ce4814995995",
+    "chainId": "eip155:137",
+    "name": "Backed ZPR1   1 3 Month T Bill on Polygon",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/32867/thumb/b-ZPR1-200x200.png?1699671603",
+    "symbol": "BZPR1",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0xae29ac47a9e3b0a52840e547adf74b912999f7fc": {
+    "assetId": "eip155:137/erc20:0xae29ac47a9e3b0a52840e547adf74b912999f7fc",
+    "chainId": "eip155:137",
+    "name": "EVE",
+    "precision": 18,
+    "color": "#040404",
+    "icon": "https://assets.coingecko.com/coins/images/22744/thumb/eve-exchange-logo-200-200-03.png?1696522049",
+    "symbol": "EVE",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0xaecebfcf604ad245eaf0d5bd68459c3a7a6399c2": {
+    "assetId": "eip155:137/erc20:0xaecebfcf604ad245eaf0d5bd68459c3a7a6399c2",
+    "chainId": "eip155:137",
+    "name": "RAMP  OLD  on Polygon",
+    "precision": 18,
+    "color": "#27BFDA",
+    "icon": "https://assets.coingecko.com/coins/images/12837/thumb/RAMP-Logo-v2-1000pxsq.png?1696512628",
+    "symbol": "RAMP",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0xaf24765f631c8830b5528b57002241ee7eef1c14": {
+    "assetId": "eip155:137/erc20:0xaf24765f631c8830b5528b57002241ee7eef1c14",
+    "chainId": "eip155:137",
+    "name": "IOI on Polygon",
+    "precision": 6,
+    "color": "#141414",
+    "icon": "https://assets.coingecko.com/coins/images/15952/thumb/IOI_new_logo.png?1696515564",
+    "symbol": "IOI",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0xaf3cbaeba9fe7a7d4e7531f1b2553972fd1c4e9c": {
+    "assetId": "eip155:137/erc20:0xaf3cbaeba9fe7a7d4e7531f1b2553972fd1c4e9c",
+    "chainId": "eip155:137",
+    "name": "Zizy",
+    "precision": 8,
+    "color": "#CAC1C0",
+    "icon": "https://assets.coingecko.com/coins/images/30123/thumb/ZIZYlogo_%282%29.png?1696529045",
+    "symbol": "ZIZY",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0xafb6e8331355fae99c8e8953bb4c6dc5d11e9f3c": {
+    "assetId": "eip155:137/erc20:0xafb6e8331355fae99c8e8953bb4c6dc5d11e9f3c",
+    "chainId": "eip155:137",
+    "name": "Arch Aggressive Portfolio",
+    "precision": 18,
+    "color": "#CCCCD2",
+    "icon": "https://assets.coingecko.com/coins/images/30638/thumb/AAGG.png?1696529510",
+    "symbol": "AAGG",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0xafcdd4f666c84fed1d8bd825aa762e3714f652c9": {
+    "assetId": "eip155:137/erc20:0xafcdd4f666c84fed1d8bd825aa762e3714f652c9",
+    "chainId": "eip155:137",
+    "name": "Vita Inu on Polygon",
+    "precision": 18,
+    "color": "#D6BFD8",
+    "icon": "https://assets.coingecko.com/coins/images/20594/thumb/vita-inu-head-wallet-icon-transparent.png?1696520000",
+    "symbol": "VINU",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0xb03e3b00baf9954bf1604d09a4dbd5cf88e1f695": {
+    "assetId": "eip155:137/erc20:0xb03e3b00baf9954bf1604d09a4dbd5cf88e1f695",
+    "chainId": "eip155:137",
+    "name": "Open Campus on Polygon",
+    "precision": 18,
+    "color": "#04ECBC",
+    "icon": "https://assets.coingecko.com/coins/images/29948/thumb/EDU_Logo.png?1696528874",
+    "symbol": "EDU",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0xb092e1bf50f518b3ebf7ed26a40015183ae36ac2": {
+    "assetId": "eip155:137/erc20:0xb092e1bf50f518b3ebf7ed26a40015183ae36ac2",
+    "chainId": "eip155:137",
+    "name": "Tarot on Polygon",
+    "precision": 18,
+    "color": "#E5E5E5",
+    "icon": "https://assets.coingecko.com/coins/images/31800/thumb/TAROT.jpg?1696530615",
+    "symbol": "TAROT",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0xb0b195aefa3650a6908f15cdac7d92f8a5791b0b": {
+    "assetId": "eip155:137/erc20:0xb0b195aefa3650a6908f15cdac7d92f8a5791b0b",
+    "chainId": "eip155:137",
+    "name": "BOB on Polygon",
+    "precision": 18,
+    "color": "#A265FC",
+    "icon": "https://assets.coingecko.com/coins/images/27266/thumb/Bob-logo.png?1696526318",
+    "symbol": "BOB",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0xb0b2ef34d412d73b0ff90a709d1779a20655165a": {
+    "assetId": "eip155:137/erc20:0xb0b2ef34d412d73b0ff90a709d1779a20655165a",
+    "chainId": "eip155:137",
+    "name": "Guardian GUARD on Polygon",
+    "precision": 18,
+    "color": "#456198",
+    "icon": "https://assets.coingecko.com/coins/images/17995/thumb/LS_wolfDen_logo.0025_Light_200x200.png?1696517512",
+    "symbol": "GUARD",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0xb0f61c597bbcc29f3f38396b01f9c0f0c2e8bff0": {
+    "assetId": "eip155:137/erc20:0xb0f61c597bbcc29f3f38396b01f9c0f0c2e8bff0",
+    "chainId": "eip155:137",
+    "name": "Etherland on Polygon",
+    "precision": 18,
+    "color": "#046464",
+    "icon": "https://assets.coingecko.com/coins/images/14432/thumb/eland_logo.png?1696514122",
+    "symbol": "ELAND",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0xb140665dde25c644c6b418e417c930de8a8a6ac9": {
+    "assetId": "eip155:137/erc20:0xb140665dde25c644c6b418e417c930de8a8a6ac9",
+    "chainId": "eip155:137",
+    "name": "Atari on Polygon",
+    "precision": 0,
+    "color": "#EB545A",
+    "icon": "https://assets.coingecko.com/coins/images/12992/thumb/AtariLogoPS_200x200_%281%29.png?1696512782",
+    "symbol": "ATRI",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0xb1c5c9b97b35592777091cd34ffff141ae866abd": {
+    "assetId": "eip155:137/erc20:0xb1c5c9b97b35592777091cd34ffff141ae866abd",
+    "chainId": "eip155:137",
+    "name": "Ubiq",
+    "precision": 18,
+    "color": "#04EC94",
+    "icon": "https://assets.coingecko.com/coins/images/181/thumb/ubiq.png?1696501553",
+    "symbol": "UBQ",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0xb1cb9d9c85aa10c332083bcd03d2fcf871556e52": {
+    "assetId": "eip155:137/erc20:0xb1cb9d9c85aa10c332083bcd03d2fcf871556e52",
+    "chainId": "eip155:137",
+    "name": "Gascoin",
+    "precision": 18,
+    "color": "#FAF9F0",
+    "icon": "https://assets.coingecko.com/coins/images/31901/thumb/GAS_LOGO.jpg?1696530712",
+    "symbol": "GCN",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0xb25e20de2f2ebb4cffd4d16a55c7b395e8a94762": {
+    "assetId": "eip155:137/erc20:0xb25e20de2f2ebb4cffd4d16a55c7b395e8a94762",
+    "chainId": "eip155:137",
+    "name": "Request on Polygon",
+    "precision": 18,
+    "color": "#04E4A4",
+    "icon": "https://assets.coingecko.com/coins/images/1031/thumb/Request_icon_green.png?1696502140",
+    "symbol": "REQ",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0xb2c63830d4478cb331142fac075a39671a5541dc": {
+    "assetId": "eip155:137/erc20:0xb2c63830d4478cb331142fac075a39671a5541dc",
+    "chainId": "eip155:137",
+    "name": "Bombcrypto Coin",
+    "precision": 18,
+    "color": "#F4C539",
+    "icon": "https://assets.coingecko.com/coins/images/26399/thumb/Bombcrypto_Coin.png?1696525476",
+    "symbol": "BOMB",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0xb33eaad8d922b1083446dc23f610c2567fb5180f": {
+    "assetId": "eip155:137/erc20:0xb33eaad8d922b1083446dc23f610c2567fb5180f",
+    "chainId": "eip155:137",
+    "name": "Uniswap on Polygon",
+    "precision": 18,
+    "color": "#FCECF5",
+    "icon": "https://assets.coingecko.com/coins/images/12504/thumb/uni.jpg?1696512319",
+    "symbol": "UNI",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0xb355f4f4cc84a9429a59d5c2b98d77016f7ec482": {
+    "assetId": "eip155:137/erc20:0xb355f4f4cc84a9429a59d5c2b98d77016f7ec482",
+    "chainId": "eip155:137",
+    "name": "Bitcoin BR on Polygon",
+    "precision": 18,
+    "color": "#F29F15",
+    "icon": "https://assets.coingecko.com/coins/images/21205/thumb/btcbr.png?1696520580",
+    "symbol": "BTCBR",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0xb35fcbcf1fd489fce02ee146599e893fdcdc60e6": {
+    "assetId": "eip155:137/erc20:0xb35fcbcf1fd489fce02ee146599e893fdcdc60e6",
+    "chainId": "eip155:137",
+    "name": "DeRace on Polygon",
+    "precision": 18,
+    "color": "#141414",
+    "icon": "https://assets.coingecko.com/coins/images/17438/thumb/DERC_logo_coingecko.png?1696516984",
+    "symbol": "DERC",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0xb382c1cfa622795a534e5bd56fac93d59bac8b0d": {
+    "assetId": "eip155:137/erc20:0xb382c1cfa622795a534e5bd56fac93d59bac8b0d",
+    "chainId": "eip155:137",
+    "name": "KIRO on Polygon",
+    "precision": 18,
+    "color": "#44B0E0",
+    "icon": "https://assets.coingecko.com/coins/images/12688/thumb/logo_kirobo-04.png?1696512491",
+    "symbol": "KIRO",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0xb3bc8dae5a49ed956b5d2207d9040c816c56398f": {
+    "assetId": "eip155:137/erc20:0xb3bc8dae5a49ed956b5d2207d9040c816c56398f",
+    "chainId": "eip155:137",
+    "name": "Robinos  OLD ",
+    "precision": 18,
+    "color": "#BA2427",
+    "icon": "https://assets.coingecko.com/coins/images/18864/thumb/1vZaRdJ__400x400.png?1696518324",
+    "symbol": "RBN",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0xb3bec36e9fb41c88b0f0433a3e5f16cf0dd7e0a3": {
+    "assetId": "eip155:137/erc20:0xb3bec36e9fb41c88b0f0433a3e5f16cf0dd7e0a3",
+    "chainId": "eip155:137",
+    "name": "UZXCoin",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/33056/thumb/Group-2.png?1700476300",
+    "symbol": "UZX",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0xb41c43fabd22a6c6ea135e975769e9051f9ee8ad": {
+    "assetId": "eip155:137/erc20:0xb41c43fabd22a6c6ea135e975769e9051f9ee8ad",
+    "chainId": "eip155:137",
+    "name": "Ebox on Polygon",
+    "precision": 18,
+    "color": "#FC6C04",
+    "icon": "https://assets.coingecko.com/coins/images/14528/thumb/ebox.png?1696514213",
+    "symbol": "EBOX",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0xb41ec2c036f8a42da384dde6ada79884f8b84b26": {
+    "assetId": "eip155:137/erc20:0xb41ec2c036f8a42da384dde6ada79884f8b84b26",
+    "chainId": "eip155:137",
+    "name": "Tidal Finance on Polygon",
+    "precision": 18,
+    "color": "#1C1C64",
+    "icon": "https://assets.coingecko.com/coins/images/14460/thumb/Tidal-mono.png?1696514147",
+    "symbol": "TIDAL",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0xb53ec4ace420a62cfb75afdeba600d284777cd65": {
+    "assetId": "eip155:137/erc20:0xb53ec4ace420a62cfb75afdeba600d284777cd65",
+    "chainId": "eip155:137",
+    "name": "Space Token BSC on Polygon",
+    "precision": 18,
+    "color": "#EC476A",
+    "icon": "https://assets.coingecko.com/coins/images/20676/thumb/jYw3kgsY_400x400.png?1696520076",
+    "symbol": "SPACE",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0xb541a306dd240ef04fb5e7e0db9a3c6cb7ddbb07": {
+    "assetId": "eip155:137/erc20:0xb541a306dd240ef04fb5e7e0db9a3c6cb7ddbb07",
+    "chainId": "eip155:137",
+    "name": "WFDP on Polygon",
+    "precision": 18,
+    "color": "#314480",
+    "icon": "https://assets.coingecko.com/coins/images/23758/thumb/wfdp.png?1696522959",
+    "symbol": "WFDP",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0xb565cf70613ca464d68427106af80c67a8e4b801": {
+    "assetId": "eip155:137/erc20:0xb565cf70613ca464d68427106af80c67a8e4b801",
+    "chainId": "eip155:137",
+    "name": "YVS Finance on Polygon",
+    "precision": 18,
+    "color": "#EC443C",
+    "icon": "https://assets.coingecko.com/coins/images/13471/thumb/cu0LSzE.png?1696513232",
+    "symbol": "YVS",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0xb5b8381b67248f832c7961bd265f021cd8d291a4": {
+    "assetId": "eip155:137/erc20:0xb5b8381b67248f832c7961bd265f021cd8d291a4",
+    "chainId": "eip155:137",
+    "name": "Zelwin on Polygon",
+    "precision": 18,
+    "color": "#FCC40C",
+    "icon": "https://assets.coingecko.com/coins/images/11547/thumb/5614.png?1696511447",
+    "symbol": "ZLW",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0xb5c064f955d8e7f38fe0460c556a72987494ee17": {
+    "assetId": "eip155:137/erc20:0xb5c064f955d8e7f38fe0460c556a72987494ee17",
+    "chainId": "eip155:137",
+    "name": "Quickswap on Polygon",
+    "precision": 18,
+    "color": "#DECFFA",
+    "icon": "https://assets.coingecko.com/coins/images/25393/thumb/quickswap.png?1696524525",
+    "symbol": "QUICK",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0xb5e0cfe1b4db501ac003b740665bf43192cc7853": {
+    "assetId": "eip155:137/erc20:0xb5e0cfe1b4db501ac003b740665bf43192cc7853",
+    "chainId": "eip155:137",
+    "name": "Ghost",
+    "precision": 8,
+    "color": "#0C0C0C",
+    "icon": "https://assets.coingecko.com/coins/images/11339/thumb/mxpD9xS.png?1696511260",
+    "symbol": "GHOST",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0xb6169e71144b4debd9caa2dbb851fc8ffde6119f": {
+    "assetId": "eip155:137/erc20:0xb6169e71144b4debd9caa2dbb851fc8ffde6119f",
+    "chainId": "eip155:137",
+    "name": "DuDe",
+    "precision": 18,
+    "color": "#CCB05C",
+    "icon": "https://assets.coingecko.com/coins/images/25924/thumb/dude-logo-png.jpg?1696525004",
+    "symbol": "DUDE",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0xb6a5ae40e79891e4deadad06c8a7ca47396df21c": {
+    "assetId": "eip155:137/erc20:0xb6a5ae40e79891e4deadad06c8a7ca47396df21c",
+    "chainId": "eip155:137",
+    "name": "Carbify",
+    "precision": 18,
+    "color": "#124B2C",
+    "icon": "https://assets.coingecko.com/coins/images/29892/thumb/Carbify_logo.png?1696528816",
+    "symbol": "CBY",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0xb7042c40de76cfc607ac05e68f9c28a778f0c8a6": {
+    "assetId": "eip155:137/erc20:0xb7042c40de76cfc607ac05e68f9c28a778f0c8a6",
+    "chainId": "eip155:137",
+    "name": "Wistaverse",
+    "precision": 18,
+    "color": "#985098",
+    "icon": "https://assets.coingecko.com/coins/images/30599/thumb/LOGO_round.png?1696529469",
+    "symbol": "WISTA",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0xb7486718ea21c79bbd894126f79f504fd3625f68": {
+    "assetId": "eip155:137/erc20:0xb7486718ea21c79bbd894126f79f504fd3625f68",
+    "chainId": "eip155:137",
+    "name": "Poodl Exchange Token",
+    "precision": 18,
+    "color": "#F0F0EC",
+    "icon": "https://assets.coingecko.com/coins/images/29762/thumb/PET_200x200.png?1696528693",
+    "symbol": "PET",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0xb75bbd79985a8092b05224f62d7fed25924b075d": {
+    "assetId": "eip155:137/erc20:0xb75bbd79985a8092b05224f62d7fed25924b075d",
+    "chainId": "eip155:137",
+    "name": "Datamine on Polygon",
+    "precision": 18,
+    "color": "#BABBBE",
+    "icon": "https://assets.coingecko.com/coins/images/11695/thumb/qxsFH8W.png?1696511584",
+    "symbol": "DAM",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0xb763f1177e9b2fb66fbe0d50372e3e2575c043e5": {
+    "assetId": "eip155:137/erc20:0xb763f1177e9b2fb66fbe0d50372e3e2575c043e5",
+    "chainId": "eip155:137",
+    "name": "Karmaverse",
+    "precision": 18,
+    "color": "#0974F9",
+    "icon": "https://assets.coingecko.com/coins/images/24239/thumb/knot.png?1696523424",
+    "symbol": "KNOT",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0xb7b31a6bc18e48888545ce79e83e06003be70930": {
+    "assetId": "eip155:137/erc20:0xb7b31a6bc18e48888545ce79e83e06003be70930",
+    "chainId": "eip155:137",
+    "name": "ApeCoin on Polygon",
+    "precision": 18,
+    "color": "#D5E7F2",
+    "icon": "https://assets.coingecko.com/coins/images/24383/thumb/apecoin.jpg?1696523566",
+    "symbol": "APE",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0xb7f1219db39ea0cb029e4dcc3daffdcfd233defd": {
+    "assetId": "eip155:137/erc20:0xb7f1219db39ea0cb029e4dcc3daffdcfd233defd",
+    "chainId": "eip155:137",
+    "name": "KeySATIN",
+    "precision": 18,
+    "color": "#DEBC3E",
+    "icon": "https://assets.coingecko.com/coins/images/29703/thumb/1-01.png?1696528635",
+    "symbol": "KEYSATIN",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0xb87904db461005fc716a6bf9f2d451c33b10b80b": {
+    "assetId": "eip155:137/erc20:0xb87904db461005fc716a6bf9f2d451c33b10b80b",
+    "chainId": "eip155:137",
+    "name": "Alongside Crypto Market Index on Polygon",
+    "precision": 18,
+    "color": "#EEEEEE",
+    "icon": "https://assets.coingecko.com/coins/images/28496/thumb/22999.png?1696527488",
+    "symbol": "AMKT",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0xb9585ec9d4c97ad9ded7250bb9a199fe8eed0eca": {
+    "assetId": "eip155:137/erc20:0xb9585ec9d4c97ad9ded7250bb9a199fe8eed0eca",
+    "chainId": "eip155:137",
+    "name": "WHALE on Polygon",
+    "precision": 4,
+    "color": "#040404",
+    "icon": "https://assets.coingecko.com/coins/images/11797/thumb/WHALE.png?1696511673",
+    "symbol": "WHALE",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0xb9638272ad6998708de56bbc0a290a1de534a578": {
+    "assetId": "eip155:137/erc20:0xb9638272ad6998708de56bbc0a290a1de534a578",
+    "chainId": "eip155:137",
+    "name": "IQ on Polygon",
+    "precision": 18,
+    "color": "#FB5CAC",
+    "icon": "https://assets.coingecko.com/coins/images/5010/thumb/YAIS3fUh.png?1696505542",
+    "symbol": "IQ",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0xb988bd378a0754957d5d9471c96e0f8051645a26": {
+    "assetId": "eip155:137/erc20:0xb988bd378a0754957d5d9471c96e0f8051645a26",
+    "chainId": "eip155:137",
+    "name": "iNFTspace",
+    "precision": 18,
+    "color": "#6AD2EB",
+    "icon": "https://assets.coingecko.com/coins/images/24681/thumb/4hTuPCCC_400x400.jpg?1696523848",
+    "symbol": "INS",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0xba25b552c8a098afdf276324c32c71fe28e0ad40": {
+    "assetId": "eip155:137/erc20:0xba25b552c8a098afdf276324c32c71fe28e0ad40",
+    "chainId": "eip155:137",
+    "name": "MacaronSwap on Polygon",
+    "precision": 18,
+    "color": "#6A4A84",
+    "icon": "https://assets.coingecko.com/coins/images/14633/thumb/macaron.png?1696514311",
+    "symbol": "MCRN",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0xba3cb8329d442e6f9eb70fafe1e214251df3d275": {
+    "assetId": "eip155:137/erc20:0xba3cb8329d442e6f9eb70fafe1e214251df3d275",
+    "chainId": "eip155:137",
+    "name": "Swash on Polygon",
+    "precision": 18,
+    "color": "#D2F9D9",
+    "icon": "https://assets.coingecko.com/coins/images/18774/thumb/Swash_CMC_light.png?1696878896",
+    "symbol": "SWASH",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0xba777ae3a3c91fcd83ef85bfe65410592bdd0f7c": {
+    "assetId": "eip155:137/erc20:0xba777ae3a3c91fcd83ef85bfe65410592bdd0f7c",
+    "chainId": "eip155:137",
+    "name": "BitCone",
+    "precision": 18,
+    "color": "#ABA08C",
+    "icon": "https://assets.coingecko.com/coins/images/32278/thumb/BitCone_Logo_V7.5_halo_NO_circle_-200x200_copy_BIGGER.png?1697180757",
+    "symbol": "CONE",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0xbbba073c31bf03b8acf7c28ef0738decf3695683": {
+    "assetId": "eip155:137/erc20:0xbbba073c31bf03b8acf7c28ef0738decf3695683",
+    "chainId": "eip155:137",
+    "name": "The Sandbox on Polygon",
+    "precision": 18,
+    "color": "#09AAEB",
+    "icon": "https://assets.coingecko.com/coins/images/12129/thumb/sandbox_logo.jpg?1696511971",
+    "symbol": "SAND",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0xbbcb0356bb9e6b3faa5cbf9e5f36185d53403ac9": {
+    "assetId": "eip155:137/erc20:0xbbcb0356bb9e6b3faa5cbf9e5f36185d53403ac9",
+    "chainId": "eip155:137",
+    "name": "Backed Coinbase Global on Polygon",
+    "precision": 18,
+    "color": "#0548DB",
+    "icon": "https://assets.coingecko.com/coins/images/31872/thumb/b-COIN-200x200.png?1696530684",
+    "symbol": "BCOIN",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0xbbfe0b60de96a189bf09079de86a2db7bf0c7883": {
+    "assetId": "eip155:137/erc20:0xbbfe0b60de96a189bf09079de86a2db7bf0c7883",
+    "chainId": "eip155:137",
+    "name": "Lunr on Polygon",
+    "precision": 4,
+    "color": "#11CCA4",
+    "icon": "https://assets.coingecko.com/coins/images/19256/thumb/lunr.png?1696518701",
+    "symbol": "LUNR",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0xbc0bea8e634ec838a2a45f8a43e7e16cd2a8ba99": {
+    "assetId": "eip155:137/erc20:0xbc0bea8e634ec838a2a45f8a43e7e16cd2a8ba99",
+    "chainId": "eip155:137",
+    "name": "RigoBlock on Polygon",
+    "precision": 18,
+    "color": "#F1BC40",
+    "icon": "https://assets.coingecko.com/coins/images/1532/thumb/Symbol-RigoblockRGB.png?1696502572",
+    "symbol": "GRG",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0xbc2597d3f1f9565100582cde02e3712d03b8b0f6": {
+    "assetId": "eip155:137/erc20:0xbc2597d3f1f9565100582cde02e3712d03b8b0f6",
+    "chainId": "eip155:137",
+    "name": "CheesecakeSwap on Polygon",
+    "precision": 18,
+    "color": "#7CE1EA",
+    "icon": "https://assets.coingecko.com/coins/images/14547/thumb/CCAKElogo.png?1696514230",
+    "symbol": "CCAKE",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0xbc2659ead8d2d13a157a75bfc5acc156e1ea06df": {
+    "assetId": "eip155:137/erc20:0xbc2659ead8d2d13a157a75bfc5acc156e1ea06df",
+    "chainId": "eip155:137",
+    "name": "Ommniverse",
+    "precision": 18,
+    "color": "#80D40C",
+    "icon": "https://assets.coingecko.com/coins/images/29394/thumb/ommi_gold.png?1696528344",
+    "symbol": "OMMI",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0xbc5b59ea1b6f8da8258615ee38d40e999ec5d74f": {
+    "assetId": "eip155:137/erc20:0xbc5b59ea1b6f8da8258615ee38d40e999ec5d74f",
+    "chainId": "eip155:137",
+    "name": "Paw V2",
+    "precision": 18,
+    "color": "#1E1E1E",
+    "icon": "https://assets.coingecko.com/coins/images/22836/thumb/v9uvwsJ.png?1696522137",
+    "symbol": "PAW",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0xbc5eb84c052fd012bb902c258c9fd241b17c0005": {
+    "assetId": "eip155:137/erc20:0xbc5eb84c052fd012bb902c258c9fd241b17c0005",
+    "chainId": "eip155:137",
+    "name": "XNET Mobile",
+    "precision": 18,
+    "color": "#0FA2C9",
+    "icon": "https://assets.coingecko.com/coins/images/31799/thumb/depin.jpeg?1696530614",
+    "symbol": "XNET",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0xbc91347e80886453f3f8bbd6d7ac07c122d87735": {
+    "assetId": "eip155:137/erc20:0xbc91347e80886453f3f8bbd6d7ac07c122d87735",
+    "chainId": "eip155:137",
+    "name": "Banana on Polygon",
+    "precision": 18,
+    "color": "#F0D71C",
+    "icon": "https://assets.coingecko.com/coins/images/17521/thumb/banana-token-cg.png?1696517059",
+    "symbol": "BANANA",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0xbcd2c5c78000504efbc1ce6489dfcac71835406a": {
+    "assetId": "eip155:137/erc20:0xbcd2c5c78000504efbc1ce6489dfcac71835406a",
+    "chainId": "eip155:137",
+    "name": "Arch Ethereum Web3 on Polygon",
+    "precision": 18,
+    "color": "#FCC40E",
+    "icon": "https://assets.coingecko.com/coins/images/26562/thumb/WEB3-TOKEN.png?1696525635",
+    "symbol": "WEB3",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0xbd1463f02f61676d53fd183c2b19282bff93d099": {
+    "assetId": "eip155:137/erc20:0xbd1463f02f61676d53fd183c2b19282bff93d099",
+    "chainId": "eip155:137",
+    "name": "Jarvis Synthetic Swiss Franc on Polygon",
+    "precision": 18,
+    "color": "#DC1235",
+    "icon": "https://assets.coingecko.com/coins/images/15727/thumb/jCHF.png?1696515353",
+    "symbol": "JCHF",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0xbd8005612124dc30601e22d8b5d188a89767c640": {
+    "assetId": "eip155:137/erc20:0xbd8005612124dc30601e22d8b5d188a89767c640",
+    "chainId": "eip155:137",
+    "name": "Exohood",
+    "precision": 18,
+    "color": "#FCBCBC",
+    "icon": "https://assets.coingecko.com/coins/images/15590/thumb/LOGO_200x200_CIRCLE.png?1696515225",
+    "symbol": "EXO",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0xbd9c89536e406478d8a42c51b35bcfb6bf8a1384": {
+    "assetId": "eip155:137/erc20:0xbd9c89536e406478d8a42c51b35bcfb6bf8a1384",
+    "chainId": "eip155:137",
+    "name": "GrabCoinClub",
+    "precision": 18,
+    "color": "#CC1E9C",
+    "icon": "https://assets.coingecko.com/coins/images/30742/thumb/GrabCoinClub.png?1696529612",
+    "symbol": "GC",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0xbe5cf150e1ff59ca7f2499eaa13bfc40aae70e78": {
+    "assetId": "eip155:137/erc20:0xbe5cf150e1ff59ca7f2499eaa13bfc40aae70e78",
+    "chainId": "eip155:137",
+    "name": "Glitch Protocol on Polygon",
+    "precision": 18,
+    "color": "#EAF6FA",
+    "icon": "https://assets.coingecko.com/coins/images/13712/thumb/glitch_logo.jpeg?1696513457",
+    "symbol": "GLCH",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0xbf9f916bbda29a7f990f5f55c7607d94d7c3a60b": {
+    "assetId": "eip155:137/erc20:0xbf9f916bbda29a7f990f5f55c7607d94d7c3a60b",
+    "chainId": "eip155:137",
+    "name": "DEFY on Polygon",
+    "precision": 18,
+    "color": "#20372B",
+    "icon": "https://assets.coingecko.com/coins/images/26877/thumb/8ybr83fb0ca45cm1yvrcaclwbvcp.jpeg?1696525936",
+    "symbol": "DEFY",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0xbfa35599c7aebb0dace9b5aa3ca5f2a79624d8eb": {
+    "assetId": "eip155:137/erc20:0xbfa35599c7aebb0dace9b5aa3ca5f2a79624d8eb",
+    "chainId": "eip155:137",
+    "name": "Retro Finance",
+    "precision": 18,
+    "color": "#D7D0C2",
+    "icon": "https://assets.coingecko.com/coins/images/31136/thumb/retro.png?1696529965",
+    "symbol": "RETRO",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0xbfc70507384047aa74c29cdc8c5cb88d0f7213ac": {
+    "assetId": "eip155:137/erc20:0xbfc70507384047aa74c29cdc8c5cb88d0f7213ac",
+    "chainId": "eip155:137",
+    "name": "Artificial Liquid Intelligence on Polygon",
+    "precision": 18,
+    "color": "#18A1AF",
+    "icon": "https://assets.coingecko.com/coins/images/22062/thumb/Logo_Circle_720_%281%29.png?1696521405",
+    "symbol": "ALI",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0xc004e2318722ea2b15499d6375905d75ee5390b8": {
+    "assetId": "eip155:137/erc20:0xc004e2318722ea2b15499d6375905d75ee5390b8",
+    "chainId": "eip155:137",
+    "name": "Kommunitas on Polygon",
+    "precision": 8,
+    "color": "#D9F0F6",
+    "icon": "https://assets.coingecko.com/coins/images/17483/thumb/1_f1S3h57YLT1e1cl8g7RJpw_2x.jpeg?1696517024",
+    "symbol": "KOM",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0xc0a1adce1c62daedf1b5f07b31266090bc5cc6d2": {
+    "assetId": "eip155:137/erc20:0xc0a1adce1c62daedf1b5f07b31266090bc5cc6d2",
+    "chainId": "eip155:137",
+    "name": "ONUS on Polygon",
+    "precision": 18,
+    "color": "#0666FC",
+    "icon": "https://assets.coingecko.com/coins/images/24599/thumb/ONUS_200.png?1696523773",
+    "symbol": "ONUS",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0xc10358f062663448a3489fc258139944534592ac": {
+    "assetId": "eip155:137/erc20:0xc10358f062663448a3489fc258139944534592ac",
+    "chainId": "eip155:137",
+    "name": "Blockchain Monster Hunt on Polygon",
+    "precision": 18,
+    "color": "#EF8223",
+    "icon": "https://assets.coingecko.com/coins/images/19045/thumb/bcmc-coin-200x200.png?1696518496",
+    "symbol": "BCMC",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0xc1381c17d29a22df5c3015c3d83ebd90abd0e6b3": {
+    "assetId": "eip155:137/erc20:0xc1381c17d29a22df5c3015c3d83ebd90abd0e6b3",
+    "chainId": "eip155:137",
+    "name": "TruFin Staked MATIC on Polygon",
+    "precision": 18,
+    "color": "#8DF1B5",
+    "icon": "https://assets.coingecko.com/coins/images/32416/thumb/TruMATIC_logo_250px_%281%29.png?1698114190",
+    "symbol": "TRUMATIC",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0xc1543024dc71247888a7e139c644f44e75e96d38": {
+    "assetId": "eip155:137/erc20:0xc1543024dc71247888a7e139c644f44e75e96d38",
+    "chainId": "eip155:137",
+    "name": "Battle World",
+    "precision": 18,
+    "color": "#24B431",
+    "icon": "https://assets.coingecko.com/coins/images/25799/thumb/battleworld_logo_200x200.png?1696524885",
+    "symbol": "BWO",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0xc168e40227e4ebd8c1cae80f7a55a4f0e6d66c97": {
+    "assetId": "eip155:137/erc20:0xc168e40227e4ebd8c1cae80f7a55a4f0e6d66c97",
+    "chainId": "eip155:137",
+    "name": "Dfyn Network on Polygon",
+    "precision": 18,
+    "color": "#EFF0EE",
+    "icon": "https://assets.coingecko.com/coins/images/15368/thumb/SgqhfWz4_400x400_%281%29.jpg?1696515016",
+    "symbol": "DFYN",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0xc17c30e98541188614df99239cabd40280810ca3": {
+    "assetId": "eip155:137/erc20:0xc17c30e98541188614df99239cabd40280810ca3",
+    "chainId": "eip155:137",
+    "name": "EverRise on Polygon",
+    "precision": 18,
+    "color": "#EFDEDE",
+    "icon": "https://assets.coingecko.com/coins/images/16367/thumb/Logo_EverRise_Icon_logo.png?1696515966",
+    "symbol": "RISE",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0xc19669a405067927865b40ea045a2baabbbe57f5": {
+    "assetId": "eip155:137/erc20:0xc19669a405067927865b40ea045a2baabbbe57f5",
+    "chainId": "eip155:137",
+    "name": "Star on Polygon",
+    "precision": 18,
+    "color": "#C454FC",
+    "icon": "https://assets.coingecko.com/coins/images/31277/thumb/STAR.png?1696530101",
+    "symbol": "STAR",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0xc1c93d475dc82fe72dbc7074d55f5a734f8ceeae": {
+    "assetId": "eip155:137/erc20:0xc1c93d475dc82fe72dbc7074d55f5a734f8ceeae",
+    "chainId": "eip155:137",
+    "name": "Pegaxy",
+    "precision": 18,
+    "color": "#6A0404",
+    "icon": "https://assets.coingecko.com/coins/images/19305/thumb/CMC_PGX_Square.png?1700486146",
+    "symbol": "PGX",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0xc2132d05d31c914a87c6611c10748aeb04b58e8f": {
+    "assetId": "eip155:137/erc20:0xc2132d05d31c914a87c6611c10748aeb04b58e8f",
+    "chainId": "eip155:137",
+    "name": "Tether on Polygon",
+    "precision": 6,
+    "color": "#049494",
+    "icon": "https://assets.coingecko.com/coins/images/325/thumb/Tether.png?1696501661",
+    "symbol": "USDT",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0xc25351811983818c9fe6d8c580531819c8ade90f": {
+    "assetId": "eip155:137/erc20:0xc25351811983818c9fe6d8c580531819c8ade90f",
+    "chainId": "eip155:137",
+    "name": "IDLE on Polygon",
+    "precision": 18,
+    "color": "#0C24D4",
+    "icon": "https://assets.coingecko.com/coins/images/13286/thumb/image.png?1696513058",
+    "symbol": "IDLE",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0xc27158bb8e08899d38765752f91d7d778e16ab8e": {
+    "assetId": "eip155:137/erc20:0xc27158bb8e08899d38765752f91d7d778e16ab8e",
+    "chainId": "eip155:137",
+    "name": "KAP Games on Polygon",
+    "precision": 18,
+    "color": "#CDE404",
+    "icon": "https://assets.coingecko.com/coins/images/27682/thumb/KAP_Logo.png?1696526710",
+    "symbol": "KAP",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0xc2a45fe7d40bcac8369371b08419ddafd3131b4a": {
+    "assetId": "eip155:137/erc20:0xc2a45fe7d40bcac8369371b08419ddafd3131b4a",
+    "chainId": "eip155:137",
+    "name": "Lucidao",
+    "precision": 18,
+    "color": "#C8C8CC",
+    "icon": "https://assets.coingecko.com/coins/images/23693/thumb/200x200_LUCIDAO_TOKEN_BLUE.png?1700936891",
+    "symbol": "LCD",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0xc3a9a54c043f348027fffaac0f2f996123a19bf4": {
+    "assetId": "eip155:137/erc20:0xc3a9a54c043f348027fffaac0f2f996123a19bf4",
+    "chainId": "eip155:137",
+    "name": "Ethos Reserve Note on Polygon",
+    "precision": 18,
+    "color": "#0C0C0C",
+    "icon": "https://assets.coingecko.com/coins/images/29744/thumb/ERN200x200.png?1696528676",
+    "symbol": "ERN",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0xc3c604f1943b8c619c5d65cd11a876e9c8edcf10": {
+    "assetId": "eip155:137/erc20:0xc3c604f1943b8c619c5d65cd11a876e9c8edcf10",
+    "chainId": "eip155:137",
+    "name": "MetaGameHub DAO on Polygon",
+    "precision": 18,
+    "color": "#D7C6E4",
+    "icon": "https://assets.coingecko.com/coins/images/20625/thumb/mgh.PNG?1696520029",
+    "symbol": "MGH",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0xc3c7d422809852031b44ab29eec9f1eff2a58756": {
+    "assetId": "eip155:137/erc20:0xc3c7d422809852031b44ab29eec9f1eff2a58756",
+    "chainId": "eip155:137",
+    "name": "Lido DAO on Polygon",
+    "precision": 18,
+    "color": "#EBB29E",
+    "icon": "https://assets.coingecko.com/coins/images/13573/thumb/Lido_DAO.png?1696513326",
+    "symbol": "LDO",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0xc3ec80343d2bae2f8e680fdadde7c17e71e114ea": {
+    "assetId": "eip155:137/erc20:0xc3ec80343d2bae2f8e680fdadde7c17e71e114ea",
+    "chainId": "eip155:137",
+    "name": "MANTRA on Polygon",
+    "precision": 18,
+    "color": "#FB94D3",
+    "icon": "https://assets.coingecko.com/coins/images/12151/thumb/OM_Token.png?1696511991",
+    "symbol": "OM",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0xc3f56d567e7663e8932e65d85ae4be7eb5575ca7": {
+    "assetId": "eip155:137/erc20:0xc3f56d567e7663e8932e65d85ae4be7eb5575ca7",
+    "chainId": "eip155:137",
+    "name": "Faith Tribe on Polygon",
+    "precision": 18,
+    "color": "#C1C1C1",
+    "icon": "https://assets.coingecko.com/coins/images/23939/thumb/ym1Hf4x2_400x400.jpg?1696523135",
+    "symbol": "FTRB",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0xc3f6434df5ef44798610c921942e49822c6f5108": {
+    "assetId": "eip155:137/erc20:0xc3f6434df5ef44798610c921942e49822c6f5108",
+    "chainId": "eip155:137",
+    "name": "Decentral ART on Polygon",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/29398/thumb/E58AC31F-1B46-4BAD-B8D8-E01551303E09.jpeg?1696528348",
+    "symbol": "ART",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0xc3fdbadc7c795ef1d6ba111e06ff8f16a20ea539": {
+    "assetId": "eip155:137/erc20:0xc3fdbadc7c795ef1d6ba111e06ff8f16a20ea539",
+    "chainId": "eip155:137",
+    "name": "Adamant",
+    "precision": 18,
+    "color": "#546454",
+    "icon": "https://assets.coingecko.com/coins/images/15225/thumb/adamant.png?1696514880",
+    "symbol": "ADDY",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0xc45a479877e1e9dfe9fcd4056c699575a1045daa": {
+    "assetId": "eip155:137/erc20:0xc45a479877e1e9dfe9fcd4056c699575a1045daa",
+    "chainId": "eip155:137",
+    "name": "Aave v3 SUSHI",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/32924/thumb/sushi.png?1699826150",
+    "symbol": "ASUSHI",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0xc46a37fbbe433ef24bc7b9388c8728ddcf3ca87c": {
+    "assetId": "eip155:137/erc20:0xc46a37fbbe433ef24bc7b9388c8728ddcf3ca87c",
+    "chainId": "eip155:137",
+    "name": "Mainstream For The Underground on Polygon",
+    "precision": 18,
+    "color": "#DCDAD8",
+    "icon": "https://assets.coingecko.com/coins/images/5519/thumb/Mainstream_for_the_underground.png?1696505989",
+    "symbol": "MFTU",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0xc48f61a288a08f1b80c2edd74652e1276b6a168c": {
+    "assetId": "eip155:137/erc20:0xc48f61a288a08f1b80c2edd74652e1276b6a168c",
+    "chainId": "eip155:137",
+    "name": "Geyser on Polygon",
+    "precision": 18,
+    "color": "#1474F4",
+    "icon": "https://assets.coingecko.com/coins/images/12995/thumb/logo_padded_shifted.png?1696512785",
+    "symbol": "GYSR",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0xc4bb7277a74678f053259cb1f96140347efbfd46": {
+    "assetId": "eip155:137/erc20:0xc4bb7277a74678f053259cb1f96140347efbfd46",
+    "chainId": "eip155:137",
+    "name": "LunaChow on Polygon",
+    "precision": 18,
+    "color": "#D96A3C",
+    "icon": "https://assets.coingecko.com/coins/images/18805/thumb/J-MwYfhD_400x400.jpg?1696518267",
+    "symbol": "LUCHOW",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0xc5102fe9359fd9a28f877a67e36b0f050d81a3cc": {
+    "assetId": "eip155:137/erc20:0xc5102fe9359fd9a28f877a67e36b0f050d81a3cc",
+    "chainId": "eip155:137",
+    "name": "Hop Protocol on Polygon",
+    "precision": 18,
+    "color": "#D267CC",
+    "icon": "https://assets.coingecko.com/coins/images/25445/thumb/hop.png?1696524577",
+    "symbol": "HOP",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0xc56d17dd519e5eb43a19c9759b5d5372115220bd": {
+    "assetId": "eip155:137/erc20:0xc56d17dd519e5eb43a19c9759b5d5372115220bd",
+    "chainId": "eip155:137",
+    "name": "Polywolf",
+    "precision": 18,
+    "color": "#131313",
+    "icon": "https://assets.coingecko.com/coins/images/16034/thumb/moon-black.png?1696515644",
+    "symbol": "MOON",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0xc59132fbdf8de8fbe510f568a5d831c991b4fc38": {
+    "assetId": "eip155:137/erc20:0xc59132fbdf8de8fbe510f568a5d831c991b4fc38",
+    "chainId": "eip155:137",
+    "name": "Borderless Money",
+    "precision": 18,
+    "color": "#0454FC",
+    "icon": "https://assets.coingecko.com/coins/images/28399/thumb/Logo_BOM_200x200.png?1696527398",
+    "symbol": "BOM",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0xc5b57e9a1e7914fda753a88f24e5703e617ee50c": {
+    "assetId": "eip155:137/erc20:0xc5b57e9a1e7914fda753a88f24e5703e617ee50c",
+    "chainId": "eip155:137",
+    "name": "Popcorn on Polygon",
+    "precision": 18,
+    "color": "#FCE45C",
+    "icon": "https://assets.coingecko.com/coins/images/21438/thumb/pop-1_200_x_200.png?1696520801",
+    "symbol": "POP",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0xc6480da81151b2277761024599e8db2ad4c388c8": {
+    "assetId": "eip155:137/erc20:0xc6480da81151b2277761024599e8db2ad4c388c8",
+    "chainId": "eip155:137",
+    "name": "Decentral Games Governance on Polygon",
+    "precision": 18,
+    "color": "#CCCCCC",
+    "icon": "https://assets.coingecko.com/coins/images/21176/thumb/xDG_Logo.png?1696520552",
+    "symbol": "XDG",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0xc6c855ad634dcdad23e64da71ba85b8c51e5ad7c": {
+    "assetId": "eip155:137/erc20:0xc6c855ad634dcdad23e64da71ba85b8c51e5ad7c",
+    "chainId": "eip155:137",
+    "name": "Decentral Games ICE",
+    "precision": 18,
+    "color": "#A4DCFC",
+    "icon": "https://assets.coingecko.com/coins/images/18110/thumb/ice-poker.png?1696517614",
+    "symbol": "ICE",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0xc708d6f2153933daa50b2d0758955be0a93a8fec": {
+    "assetId": "eip155:137/erc20:0xc708d6f2153933daa50b2d0758955be0a93a8fec",
+    "chainId": "eip155:137",
+    "name": "Verse on Polygon",
+    "precision": 18,
+    "color": "#0484FC",
+    "icon": "https://assets.coingecko.com/coins/images/28424/thumb/verselogo.png?1696527421",
+    "symbol": "VERSE",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0xc71a7e46266a9a78212a5d87b030f8d1ce942efd": {
+    "assetId": "eip155:137/erc20:0xc71a7e46266a9a78212a5d87b030f8d1ce942efd",
+    "chainId": "eip155:137",
+    "name": "Coinbet Finance",
+    "precision": 18,
+    "color": "#7454FC",
+    "icon": "https://assets.coingecko.com/coins/images/28809/thumb/coinbet-transparent.png?1696527786",
+    "symbol": "CFI",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0xc748b2a084f8efc47e086ccddd9b7e67aeb571bf": {
+    "assetId": "eip155:137/erc20:0xc748b2a084f8efc47e086ccddd9b7e67aeb571bf",
+    "chainId": "eip155:137",
+    "name": "HUMAN Protocol on Polygon",
+    "precision": 18,
+    "color": "#4C1E40",
+    "icon": "https://assets.coingecko.com/coins/images/16412/thumb/human_protocol.PNG?1696516009",
+    "symbol": "HMT",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0xc77aea972f862df1f6a520be673df63a01255ff9": {
+    "assetId": "eip155:137/erc20:0xc77aea972f862df1f6a520be673df63a01255ff9",
+    "chainId": "eip155:137",
+    "name": "EarnTV",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAIAAAACACAMAAAD04JH5AAADAFBMVEUtN0jYcib///8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEya/DAAABAHRSTlP/////AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAf6K/dgAAQItJREFUeNoBgEB/vwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgAAAAAAAAACAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgAAAAAAAAACAgICAgICAQEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgAAAAAAAAAAAAACAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMAAAAAAAACAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMAAAAAAAACAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMAAAAAAAACAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMAAAAAAAACAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMAAAAAAAACAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMAAAAAAAACAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMAAAAAAAAAAwMDAwMDAwMDAwMDAwICAgICAgIDAwMDAwMDAwMDAwMDAwMAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAICAgICAgIDAAAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAICAgICAgIDAAAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAICAgICAgIDAAAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAICAgICAgIDAAAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAICAgICAgIDAAAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAICAgICAgIDAAAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAICAgICAgIDAAAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAICAgICAgIDAAAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAICAgICAgIDAAAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAICAgICAgIDAAAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAICAgICAgIDAAAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAICAgICAgIDAAAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAICAgICAgIDAAAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAgICAgICAgICAgICAgICAgICAgICAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAICAgICAgIDAAAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAgICAgICAgICAgICAgICAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAICAgICAgIDAAAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAgICAgICAgICAgICAgICAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAICAgICAgIDAAAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAgICAgICAgICAgICAgICAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAICAgICAgIDAAAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAgICAgICAgICAgICAgICAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAICAgICAgIDAAAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAgICAgICAgICAgICAgICAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAICAgICAgIDAAAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAgICAgICAgICAgICAgICAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAICAgICAgIDAAAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAICAgICAgIDAAAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAICAgICAgIDAAAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAICAgICAgIDAAAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAICAgICAgIDAAAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAICAgICAgIDAAAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAICAgICAgIDAAAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAICAgICAgIDAAAAAAEBAQEBAQEBAQEBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAICAgICAgIDAAAAAAEBAQEBAQEBAQEBAQEBAQEBAwMDAwMDAgICAgICAgEBAQEBAQECAgICAgICAAMDAwMDAwMAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAICAgICAgIDAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAICAgICAgIDAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAICAgICAgIDAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAICAgICAgIDAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAICAgICAgIDAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAICAgICAgIDAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAACAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgEBAQEBAQEBAQEBAQAAAAAAAAAAAAICAgICAgIDAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQMDAwMDAwICAgICAgIBAwMDAwMDAwAAAAAAAAAAAAAAAAAAAAACAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMBAQEBAQEBAQEBAQAAAAAAAAAAAAICAgICAgIDAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMBAQEBAQEBAQEBAQAAAAAAAAAAAAICAgICAgIDAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMBAQEBAQEBAQEBAQAAAAAAAAAAAAICAgICAgIDAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMBAQEBAQEBAQEBAQAAAAAAAAAAAAICAgICAgIDAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMBAQEBAQEBAQEBAQAAAAAAAAAAAAICAgICAgIDAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMBAQEBAQEBAQEBAQAAAAAAAAAAAAICAgICAgIDAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMBAQEBAQEBAQEBAQAAAAAAAAAAAAADAwMDAwMDAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEDAwMDAwMDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABlmK9xgI32cAAAAAElFTkSuQmCC",
+    "symbol": "ETV",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0xc79ae93d9c215eaa8c8da5c77e465bac7de28891": {
+    "assetId": "eip155:137/erc20:0xc79ae93d9c215eaa8c8da5c77e465bac7de28891",
+    "chainId": "eip155:137",
+    "name": "pax world",
+    "precision": 18,
+    "color": "#69FCCC",
+    "icon": "https://assets.coingecko.com/coins/images/27944/thumb/paxcoin_200.fw.png?1696526963",
+    "symbol": "PAXW",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0xc88640b734fea3b35c132fe757aeb5ca6c8cdc66": {
+    "assetId": "eip155:137/erc20:0xc88640b734fea3b35c132fe757aeb5ca6c8cdc66",
+    "chainId": "eip155:137",
+    "name": "Nexum on Polygon",
+    "precision": 8,
+    "color": "#04D2D4",
+    "icon": "https://assets.coingecko.com/coins/images/23472/thumb/200_-_200_coinmarketcap.png?1696522683",
+    "symbol": "NEXM",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0xc8bb8eda94931ca2f20ef43ea7dbd58e68400400": {
+    "assetId": "eip155:137/erc20:0xc8bb8eda94931ca2f20ef43ea7dbd58e68400400",
+    "chainId": "eip155:137",
+    "name": "VNX Gold on Polygon",
+    "precision": 18,
+    "color": "#E3CB4C",
+    "icon": "https://assets.coingecko.com/coins/images/28019/thumb/VNX_Token_logo_%283%29.png?1696527035",
+    "symbol": "VNXAU",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0xc91c06db0f7bffba61e2a5645cc15686f0a8c828": {
+    "assetId": "eip155:137/erc20:0xc91c06db0f7bffba61e2a5645cc15686f0a8c828",
+    "chainId": "eip155:137",
+    "name": "Razor Network on Polygon",
+    "precision": 18,
+    "color": "#E2EDF4",
+    "icon": "https://assets.coingecko.com/coins/images/13797/thumb/icon.png?1696513545",
+    "symbol": "RAZOR",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0xcaaf554900e33ae5dbc66ae9f8adc3049b7d31db": {
+    "assetId": "eip155:137/erc20:0xcaaf554900e33ae5dbc66ae9f8adc3049b7d31db",
+    "chainId": "eip155:137",
+    "name": "Liquid Driver liveRETRO",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/33076/thumb/Rectangle_23015.png?1700544954",
+    "symbol": "LIVERETRO",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0xcaf5191fc480f43e4df80106c7695eca56e48b18": {
+    "assetId": "eip155:137/erc20:0xcaf5191fc480f43e4df80106c7695eca56e48b18",
+    "chainId": "eip155:137",
+    "name": "DinoX on Polygon",
+    "precision": 18,
+    "color": "#DE7C04",
+    "icon": "https://assets.coingecko.com/coins/images/17321/thumb/asset_icon_dnxc_200.png?1696516875",
+    "symbol": "DNXC",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0xcb64cdeb45def1c513fd890e7e76a865bae46060": {
+    "assetId": "eip155:137/erc20:0xcb64cdeb45def1c513fd890e7e76a865bae46060",
+    "chainId": "eip155:137",
+    "name": "Medifakt on Polygon",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/25248/thumb/fxOi9ZYI_400x400.png?1696524389",
+    "symbol": "FAKT",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0xcb898b0efb084df14dd8e018da37b4d0f06ab26d": {
+    "assetId": "eip155:137/erc20:0xcb898b0efb084df14dd8e018da37b4d0f06ab26d",
+    "chainId": "eip155:137",
+    "name": "Sing",
+    "precision": 18,
+    "color": "#5C5C5C",
+    "icon": "https://assets.coingecko.com/coins/images/17682/thumb/200_%2810%29.png?1696517211",
+    "symbol": "SING",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0xcbce9f77921c2e90522d438df4c5582f4c617768": {
+    "assetId": "eip155:137/erc20:0xcbce9f77921c2e90522d438df4c5582f4c617768",
+    "chainId": "eip155:137",
+    "name": "AGA Carbon Rewards",
+    "precision": 18,
+    "color": "#60C434",
+    "icon": "https://assets.coingecko.com/coins/images/16729/thumb/acr128.png?1696516303",
+    "symbol": "ACAR",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0xcc081220542a60a8ea7963c4f53d522b503272c1": {
+    "assetId": "eip155:137/erc20:0xcc081220542a60a8ea7963c4f53d522b503272c1",
+    "chainId": "eip155:137",
+    "name": "NFTY on Polygon",
+    "precision": 18,
+    "color": "#F2E4F0",
+    "icon": "https://assets.coingecko.com/coins/images/18741/thumb/coingecko.png?1696518206",
+    "symbol": "NFTY",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0xcc1b9517460d8ae86fe576f614d091fca65a28fc": {
+    "assetId": "eip155:137/erc20:0xcc1b9517460d8ae86fe576f614d091fca65a28fc",
+    "chainId": "eip155:137",
+    "name": "Vigorus",
+    "precision": 18,
+    "color": "#BE8009",
+    "icon": "https://assets.coingecko.com/coins/images/21245/thumb/VIS.PNG?1696520618",
+    "symbol": "VIS",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0xcce87c5b269c94b31ec437b1d7d85bf1413b7804": {
+    "assetId": "eip155:137/erc20:0xcce87c5b269c94b31ec437b1d7d85bf1413b7804",
+    "chainId": "eip155:137",
+    "name": "Oort Digital",
+    "precision": 18,
+    "color": "#DC7C24",
+    "icon": "https://assets.coingecko.com/coins/images/29553/thumb/512_512.png?1696528493",
+    "symbol": "OORT",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0xcd7361ac3307d1c5a46b63086a90742ff44c63b3": {
+    "assetId": "eip155:137/erc20:0xcd7361ac3307d1c5a46b63086a90742ff44c63b3",
+    "chainId": "eip155:137",
+    "name": "Crypto Raiders",
+    "precision": 18,
+    "color": "#040404",
+    "icon": "https://assets.coingecko.com/coins/images/17638/thumb/Ue3Hfh8.png?1696517168",
+    "symbol": "RAIDER",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0xcd86152047e800d67bdf00a4c635a8b6c0e5c4c2": {
+    "assetId": "eip155:137/erc20:0xcd86152047e800d67bdf00a4c635a8b6c0e5c4c2",
+    "chainId": "eip155:137",
+    "name": "Nacho Finance",
+    "precision": 18,
+    "color": "#F8581C",
+    "icon": "https://assets.coingecko.com/coins/images/21635/thumb/NF_nacho_2_200x200.png?1696520994",
+    "symbol": "NACHO",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0xcda6c923458ca9fac8e3354999e866feaa80b72f": {
+    "assetId": "eip155:137/erc20:0xcda6c923458ca9fac8e3354999e866feaa80b72f",
+    "chainId": "eip155:137",
+    "name": "Polygame",
+    "precision": 18,
+    "color": "#B5D341",
+    "icon": "https://assets.coingecko.com/coins/images/32349/thumb/polygame.jpg?1697471722",
+    "symbol": "PGEM",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0xcdb3867935247049e87c38ea270edd305d84c9ae": {
+    "assetId": "eip155:137/erc20:0xcdb3867935247049e87c38ea270edd305d84c9ae",
+    "chainId": "eip155:137",
+    "name": "VNX Swiss Franc on Polygon",
+    "precision": 18,
+    "color": "#E3D693",
+    "icon": "https://assets.coingecko.com/coins/images/29547/thumb/VNXCHF_%282%29.png?1696528488",
+    "symbol": "VCHF",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0xcdf937995a55a9ab551d81b463ac0f7f02795368": {
+    "assetId": "eip155:137/erc20:0xcdf937995a55a9ab551d81b463ac0f7f02795368",
+    "chainId": "eip155:137",
+    "name": "Vyvo Smart Chain on Polygon",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/32105/thumb/Vyvo.png?1696530902",
+    "symbol": "VSC",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0xce4e6da9c509cb33c23d748713c681c959f68658": {
+    "assetId": "eip155:137/erc20:0xce4e6da9c509cb33c23d748713c681c959f68658",
+    "chainId": "eip155:137",
+    "name": "PolyYield",
+    "precision": 18,
+    "color": "#98DAC4",
+    "icon": "https://assets.coingecko.com/coins/images/16656/thumb/polylogo.png?1696516218",
+    "symbol": "YIELD",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0xce6bf09e5c7a3e65b84f88dcc6475c88d38ba5ef": {
+    "assetId": "eip155:137/erc20:0xce6bf09e5c7a3e65b84f88dcc6475c88d38ba5ef",
+    "chainId": "eip155:137",
+    "name": "Opacity on Polygon",
+    "precision": 18,
+    "color": "#EBF0F5",
+    "icon": "https://assets.coingecko.com/coins/images/7237/thumb/Opacity.jpg?1696507532",
+    "symbol": "OPCT",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0xce829a89d4a55a63418bcc43f00145adef0edb8e": {
+    "assetId": "eip155:137/erc20:0xce829a89d4a55a63418bcc43f00145adef0edb8e",
+    "chainId": "eip155:137",
+    "name": "renDOGE on Polygon",
+    "precision": 8,
+    "color": "#BFA83F",
+    "icon": "https://assets.coingecko.com/coins/images/13796/thumb/Dogecoin.jpg?1696513544",
+    "symbol": "RENDOGE",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0xce899f26928a2b21c6a2fddd393ef37c61dba918": {
+    "assetId": "eip155:137/erc20:0xce899f26928a2b21c6a2fddd393ef37c61dba918",
+    "chainId": "eip155:137",
+    "name": "Museum of Crypto Art on Polygon",
+    "precision": 18,
+    "color": "#D9BB2B",
+    "icon": "https://assets.coingecko.com/coins/images/15829/thumb/photo_2021-06-04_09.36.16.jpeg?1696515447",
+    "symbol": "MOCA",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0xcebdc775e9f18156ec2e04fb4150f1bc54de690f": {
+    "assetId": "eip155:137/erc20:0xcebdc775e9f18156ec2e04fb4150f1bc54de690f",
+    "chainId": "eip155:137",
+    "name": "Leandro Lopes",
+    "precision": 18,
+    "color": "#444444",
+    "icon": "https://assets.coingecko.com/coins/images/28613/thumb/lopes.png?1696527598",
+    "symbol": "LOPES",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0xceed2671d8634e3ee65000edbbee66139b132fbf": {
+    "assetId": "eip155:137/erc20:0xceed2671d8634e3ee65000edbbee66139b132fbf",
+    "chainId": "eip155:137",
+    "name": "Bridged Tether  Axelar  on Polygon",
+    "precision": 6,
+    "color": "#54AC94",
+    "icon": "https://assets.coingecko.com/coins/images/31002/thumb/uusdt_D_3x.png?1696529840",
+    "symbol": "AXLUSDT",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0xcf32822ff397ef82425153a9dcb726e5ff61dca7": {
+    "assetId": "eip155:137/erc20:0xcf32822ff397ef82425153a9dcb726e5ff61dca7",
+    "chainId": "eip155:137",
+    "name": "GAMEE on Polygon",
+    "precision": 18,
+    "color": "#5654FA",
+    "icon": "https://assets.coingecko.com/coins/images/14716/thumb/gmee-200x200.png?1696514386",
+    "symbol": "GMEE",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0xcf403036bc139d30080d2cf0f5b48066f98191bb": {
+    "assetId": "eip155:137/erc20:0xcf403036bc139d30080d2cf0f5b48066f98191bb",
+    "chainId": "eip155:137",
+    "name": "Stobox on Polygon",
+    "precision": 18,
+    "color": "#282C36",
+    "icon": "https://assets.coingecko.com/coins/images/12637/thumb/123456826.png?1696512445",
+    "symbol": "STBU",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0xcf66eb3d546f0415b368d98a95eaf56ded7aa752": {
+    "assetId": "eip155:137/erc20:0xcf66eb3d546f0415b368d98a95eaf56ded7aa752",
+    "chainId": "eip155:137",
+    "name": "dForce USD on Polygon",
+    "precision": 18,
+    "color": "#FC9C04",
+    "icon": "https://assets.coingecko.com/coins/images/17422/thumb/usx_32.png?1696516969",
+    "symbol": "USX",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0xcfb54a6d2da14abecd231174fc5735b4436965d8": {
+    "assetId": "eip155:137/erc20:0xcfb54a6d2da14abecd231174fc5735b4436965d8",
+    "chainId": "eip155:137",
+    "name": "Cyclone Protocol on Polygon",
+    "precision": 18,
+    "color": "#D2D0D2",
+    "icon": "https://assets.coingecko.com/coins/images/14065/thumb/b3_DFjFp_400x400.jpg?1696513790",
+    "symbol": "CYC",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0xcfe2cf35d2bdde84967e67d00ad74237e234ce59": {
+    "assetId": "eip155:137/erc20:0xcfe2cf35d2bdde84967e67d00ad74237e234ce59",
+    "chainId": "eip155:137",
+    "name": "PolyPup",
+    "precision": 18,
+    "color": "#DEBEA5",
+    "icon": "https://assets.coingecko.com/coins/images/16420/thumb/2_%288%29.png?1696516016",
+    "symbol": "PUP",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0xd0258a3fd00f38aa8090dfee343f10a9d4d30d3f": {
+    "assetId": "eip155:137/erc20:0xd0258a3fd00f38aa8090dfee343f10a9d4d30d3f",
+    "chainId": "eip155:137",
+    "name": "Voxies",
+    "precision": 18,
+    "color": "#0424B4",
+    "icon": "https://assets.coingecko.com/coins/images/21260/thumb/voxies.png?1696520632",
+    "symbol": "VOXEL",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0xd0ac5be680bfbc0f1958413f4201f91934f61bea": {
+    "assetId": "eip155:137/erc20:0xd0ac5be680bfbc0f1958413f4201f91934f61bea",
+    "chainId": "eip155:137",
+    "name": "MILO",
+    "precision": 18,
+    "color": "#405076",
+    "icon": "https://assets.coingecko.com/coins/images/32183/thumb/MILO.jpg?1696743309",
+    "symbol": "MILO",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0xd0b3a0e0ea080a0882d6e048cae8558f010ce81f": {
+    "assetId": "eip155:137/erc20:0xd0b3a0e0ea080a0882d6e048cae8558f010ce81f",
+    "chainId": "eip155:137",
+    "name": "TORA",
+    "precision": 18,
+    "color": "#2F2922",
+    "icon": "https://assets.coingecko.com/coins/images/29332/thumb/200tora.jpg?1696528282",
+    "symbol": "TORA",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0xd0cfd20e8bbdb7621b705a4fd61de2e80c2cd02f": {
+    "assetId": "eip155:137/erc20:0xd0cfd20e8bbdb7621b705a4fd61de2e80c2cd02f",
+    "chainId": "eip155:137",
+    "name": "Safeswap SSGTX",
+    "precision": 18,
+    "color": "#D4E4FC",
+    "icon": "https://assets.coingecko.com/coins/images/20769/thumb/GBpj6TpI.png?1696520163",
+    "symbol": "SSGTX",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0xd0e9c8f5fae381459cf07ec506c1d2896e8b5df6": {
+    "assetId": "eip155:137/erc20:0xd0e9c8f5fae381459cf07ec506c1d2896e8b5df6",
+    "chainId": "eip155:137",
+    "name": "Internet of Energy Network on Polygon",
+    "precision": 18,
+    "color": "#CD864C",
+    "icon": "https://assets.coingecko.com/coins/images/19095/thumb/12799.png?1696518548",
+    "symbol": "IOEN",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0xd125443f38a69d776177c2b9c041f462936f8218": {
+    "assetId": "eip155:137/erc20:0xd125443f38a69d776177c2b9c041f462936f8218",
+    "chainId": "eip155:137",
+    "name": "FireBot on Polygon",
+    "precision": 18,
+    "color": "#C6D1F5",
+    "icon": "https://assets.coingecko.com/coins/images/21713/thumb/fbx200.png?1696521068",
+    "symbol": "FBX",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0xd14d1e501b2b52d6134db1ad0857aa91f9bfe2dd": {
+    "assetId": "eip155:137/erc20:0xd14d1e501b2b52d6134db1ad0857aa91f9bfe2dd",
+    "chainId": "eip155:137",
+    "name": "shuts Wave",
+    "precision": 18,
+    "color": "#4464FC",
+    "icon": "https://assets.coingecko.com/coins/images/28830/thumb/swave_logo.png?1696527806",
+    "symbol": "SWAVE",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0xd1790c5435b9fb7c9444c749cefe53d40d751eac": {
+    "assetId": "eip155:137/erc20:0xd1790c5435b9fb7c9444c749cefe53d40d751eac",
+    "chainId": "eip155:137",
+    "name": "Mimir on Polygon",
+    "precision": 18,
+    "color": "#F7F9FA",
+    "icon": "https://assets.coingecko.com/coins/images/19551/thumb/xaq5Xlzg_400x400.jpg?1696518984",
+    "symbol": "MIMIR",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0xd192bac61522e0bc13543528173e69c44472c93a": {
+    "assetId": "eip155:137/erc20:0xd192bac61522e0bc13543528173e69c44472c93a",
+    "chainId": "eip155:137",
+    "name": "VersoView on Polygon",
+    "precision": 18,
+    "color": "#A09D98",
+    "icon": "https://assets.coingecko.com/coins/images/13380/thumb/HkfxEtWh_400x400.jpg?1696513143",
+    "symbol": "VVT",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0xd1a5f2a049343fc4d5f8d478f734eba51b22375e": {
+    "assetId": "eip155:137/erc20:0xd1a5f2a049343fc4d5f8d478f734eba51b22375e",
+    "chainId": "eip155:137",
+    "name": "KeyFi on Polygon",
+    "precision": 18,
+    "color": "#1458B4",
+    "icon": "https://assets.coingecko.com/coins/images/15098/thumb/keyfi_logo.jpg?1696514756",
+    "symbol": "KEYFI",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0xd1f9c58e33933a993a3891f8acfe05a68e1afc05": {
+    "assetId": "eip155:137/erc20:0xd1f9c58e33933a993a3891f8acfe05a68e1afc05",
+    "chainId": "eip155:137",
+    "name": "Sunflower Land",
+    "precision": 18,
+    "color": "#F9EA45",
+    "icon": "https://assets.coingecko.com/coins/images/25514/thumb/download.png?1696524647",
+    "symbol": "SFL",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0xd201b8511aab3e9b094b35abcd5d7863c78d6d0e": {
+    "assetId": "eip155:137/erc20:0xd201b8511aab3e9b094b35abcd5d7863c78d6d0e",
+    "chainId": "eip155:137",
+    "name": "PolyShark Finance",
+    "precision": 18,
+    "color": "#B7DBF9",
+    "icon": "https://assets.coingecko.com/coins/images/15398/thumb/2KY2RdEo_400x400.png?1696515044",
+    "symbol": "SHARK",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0xd24157aa1097486dc9d7cf094a7e15026e566b5d": {
+    "assetId": "eip155:137/erc20:0xd24157aa1097486dc9d7cf094a7e15026e566b5d",
+    "chainId": "eip155:137",
+    "name": "TPRO on Polygon",
+    "precision": 18,
+    "color": "#0C1420",
+    "icon": "https://assets.coingecko.com/coins/images/26694/thumb/tpro-logo-200x200.png?1696525768",
+    "symbol": "TPRO",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0xd281af594cbb99e8469f3591d57a0c72eb725bdb": {
+    "assetId": "eip155:137/erc20:0xd281af594cbb99e8469f3591d57a0c72eb725bdb",
+    "chainId": "eip155:137",
+    "name": "Marvelous NFTs on Polygon",
+    "precision": 18,
+    "color": "#0F0B05",
+    "icon": "https://assets.coingecko.com/coins/images/22613/thumb/mnft.png?1696521929",
+    "symbol": "MNFT",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0xd28449bb9bb659725accad52947677cce3719fd7": {
+    "assetId": "eip155:137/erc20:0xd28449bb9bb659725accad52947677cce3719fd7",
+    "chainId": "eip155:137",
+    "name": "Dark Matter on Polygon",
+    "precision": 18,
+    "color": "#BCC4DC",
+    "icon": "https://assets.coingecko.com/coins/images/14223/thumb/dmt.jpg?1696513938",
+    "symbol": "DMT",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0xd3144ff5f388d36c0a445686c08540296d8b209b": {
+    "assetId": "eip155:137/erc20:0xd3144ff5f388d36c0a445686c08540296d8b209b",
+    "chainId": "eip155:137",
+    "name": "WolfWorksDAO",
+    "precision": 18,
+    "color": "#343838",
+    "icon": "https://assets.coingecko.com/coins/images/24106/thumb/200px-cmc.png?1696523298",
+    "symbol": "WWD",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0xd32dfefd9d00f772db460a3b542f0a736d80662f": {
+    "assetId": "eip155:137/erc20:0xd32dfefd9d00f772db460a3b542f0a736d80662f",
+    "chainId": "eip155:137",
+    "name": "LOCKON Passive Index",
+    "precision": 18,
+    "color": "#7E5CFC",
+    "icon": "https://assets.coingecko.com/coins/images/32110/thumb/index_passive_icon.png?1696527501",
+    "symbol": "LPI",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0xd3ac016b1b8c80eeadde4d186a9138c9324e4189": {
+    "assetId": "eip155:137/erc20:0xd3ac016b1b8c80eeadde4d186a9138c9324e4189",
+    "chainId": "eip155:137",
+    "name": "Okcash on Polygon",
+    "precision": 18,
+    "color": "#0C1C34",
+    "icon": "https://assets.coingecko.com/coins/images/274/thumb/ok-logo-200px.png?1696501624",
+    "symbol": "OK",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0xd3b71117e6c1558c1553305b44988cd944e97300": {
+    "assetId": "eip155:137/erc20:0xd3b71117e6c1558c1553305b44988cd944e97300",
+    "chainId": "eip155:137",
+    "name": "Yel Finance on Polygon",
+    "precision": 18,
+    "color": "#8E2EBF",
+    "icon": "https://assets.coingecko.com/coins/images/17429/thumb/Logo200.png?1696516976",
+    "symbol": "YEL",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0xd3f07ea86ddf7baebefd49731d7bbd207fedc53b": {
+    "assetId": "eip155:137/erc20:0xd3f07ea86ddf7baebefd49731d7bbd207fedc53b",
+    "chainId": "eip155:137",
+    "name": "Polly DeFi Nest",
+    "precision": 18,
+    "color": "#332D47",
+    "icon": "https://assets.coingecko.com/coins/images/18317/thumb/nDEFI.png?1696517808",
+    "symbol": "NDEFI",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0xd4cce747e623ce2d72322892e5db238e2a5eb4f3": {
+    "assetId": "eip155:137/erc20:0xd4cce747e623ce2d72322892e5db238e2a5eb4f3",
+    "chainId": "eip155:137",
+    "name": "HumansCareFoundationWater",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/32645/thumb/hcfw_200_%282%29.png?1698893125",
+    "symbol": "HCFW",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0xd52f6ca48882be8fbaa98ce390db18e1dbe1062d": {
+    "assetId": "eip155:137/erc20:0xd52f6ca48882be8fbaa98ce390db18e1dbe1062d",
+    "chainId": "eip155:137",
+    "name": "ORE Network on Polygon",
+    "precision": 18,
+    "color": "#04D8CF",
+    "icon": "https://assets.coingecko.com/coins/images/18917/thumb/ORE_FullColor.png?1696518374",
+    "symbol": "ORE",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0xd55fce7cdab84d84f2ef3f99816d765a2a94a509": {
+    "assetId": "eip155:137/erc20:0xd55fce7cdab84d84f2ef3f99816d765a2a94a509",
+    "chainId": "eip155:137",
+    "name": "Chain Games on Polygon",
+    "precision": 18,
+    "color": "#4656E9",
+    "icon": "https://assets.coingecko.com/coins/images/12257/thumb/chain-pfp-logo.png?1696512087",
+    "symbol": "CHAIN",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0xd57f8b6f3e5d1e0ab85118f5e0dd893a08c43346": {
+    "assetId": "eip155:137/erc20:0xd57f8b6f3e5d1e0ab85118f5e0dd893a08c43346",
+    "chainId": "eip155:137",
+    "name": "Omnisea on Polygon",
+    "precision": 18,
+    "color": "#F26286",
+    "icon": "https://assets.coingecko.com/coins/images/26475/thumb/293837892_407994084681555_3167689470652146992_n.png?1696525547",
+    "symbol": "OSEA",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0xd5d86fc8d5c0ea1ac1ac5dfab6e529c9967a45e9": {
+    "assetId": "eip155:137/erc20:0xd5d86fc8d5c0ea1ac1ac5dfab6e529c9967a45e9",
+    "chainId": "eip155:137",
+    "name": "NFT Worlds on Polygon",
+    "precision": 18,
+    "color": "#1B1D1C",
+    "icon": "https://assets.coingecko.com/coins/images/22112/thumb/ZyBrRgfO.jpg?1696521454",
+    "symbol": "WRLD",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0xd5fa77a860fea9cff31da91bbf9e0faea9538290": {
+    "assetId": "eip155:137/erc20:0xd5fa77a860fea9cff31da91bbf9e0faea9538290",
+    "chainId": "eip155:137",
+    "name": "Dog Collar on Polygon",
+    "precision": 18,
+    "color": "#A11C24",
+    "icon": "https://assets.coingecko.com/coins/images/18324/thumb/dcLogo.png?1696517815",
+    "symbol": "COLLAR",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0xd60deba014459f07bbcc077a5b817f31dafd5229": {
+    "assetId": "eip155:137/erc20:0xd60deba014459f07bbcc077a5b817f31dafd5229",
+    "chainId": "eip155:137",
+    "name": "Croatian FF Fan Token",
+    "precision": 18,
+    "color": "#130C24",
+    "icon": "https://assets.coingecko.com/coins/images/28295/thumb/Vatreni.png?1696527294",
+    "symbol": "VATRENI",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0xd6a33f67b733d422c821c36f0f79ca145b930d01": {
+    "assetId": "eip155:137/erc20:0xd6a33f67b733d422c821c36f0f79ca145b930d01",
+    "chainId": "eip155:137",
+    "name": "Angola",
+    "precision": 18,
+    "color": "#6B6B6B",
+    "icon": "https://assets.coingecko.com/coins/images/27547/thumb/8SGgovDI_400x400.png?1696526584",
+    "symbol": "AGLA",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0xd6a5ab46ead26f49b03bbb1f9eb1ad5c1767974a": {
+    "assetId": "eip155:137/erc20:0xd6a5ab46ead26f49b03bbb1f9eb1ad5c1767974a",
+    "chainId": "eip155:137",
+    "name": "Ethermon on Polygon",
+    "precision": 18,
+    "color": "#EBC93E",
+    "icon": "https://assets.coingecko.com/coins/images/15889/thumb/LtET0reH_400x400.jpg?1696515504",
+    "symbol": "EMON",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0xd6a5c5adc3905b354b8d945d9d73142f54254989": {
+    "assetId": "eip155:137/erc20:0xd6a5c5adc3905b354b8d945d9d73142f54254989",
+    "chainId": "eip155:137",
+    "name": "Rezolut",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/32720/thumb/logomark-light.png?1699001694",
+    "symbol": "ZOLT",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0xd6d3b4254b4526c3095d8ab00b75f186c56dd72c": {
+    "assetId": "eip155:137/erc20:0xd6d3b4254b4526c3095d8ab00b75f186c56dd72c",
+    "chainId": "eip155:137",
+    "name": "Lithium Ventures",
+    "precision": 18,
+    "color": "#F2E9F5",
+    "icon": "https://assets.coingecko.com/coins/images/15298/thumb/lithium_ions.jpg?1696514948",
+    "symbol": "IONS",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0xd6df932a45c0f255f85145f286ea0b292b21c90b": {
+    "assetId": "eip155:137/erc20:0xd6df932a45c0f255f85145f286ea0b292b21c90b",
+    "chainId": "eip155:137",
+    "name": "Aave on Polygon",
+    "precision": 18,
+    "color": "#7188B4",
+    "icon": "https://assets.coingecko.com/coins/images/12645/thumb/AAVE.png?1696512452",
+    "symbol": "AAVE",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0xd6e274f6899ed9d1ea49fdd1beaae9dcdf3081a6": {
+    "assetId": "eip155:137/erc20:0xd6e274f6899ed9d1ea49fdd1beaae9dcdf3081a6",
+    "chainId": "eip155:137",
+    "name": "Ninja Warriors",
+    "precision": 9,
+    "color": "#EC1C1C",
+    "icon": "https://assets.coingecko.com/coins/images/32483/thumb/logo.png?1698288214",
+    "symbol": "NWT",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0xd711d7d893de57dc13ff465763218770bd42db1d": {
+    "assetId": "eip155:137/erc20:0xd711d7d893de57dc13ff465763218770bd42db1d",
+    "chainId": "eip155:137",
+    "name": "ARYZE eGBP on Polygon",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/32989/thumb/ARYZE_eGBP.png?1700099647",
+    "symbol": "EGBP",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0xd7bb095a60d7666d4a6f236423b47ddd6ae6cfa7": {
+    "assetId": "eip155:137/erc20:0xd7bb095a60d7666d4a6f236423b47ddd6ae6cfa7",
+    "chainId": "eip155:137",
+    "name": "Bridged Wrapped stETH  Axelar  on Polygon",
+    "precision": 18,
+    "color": "#EAEEF9",
+    "icon": "https://assets.coingecko.com/coins/images/32223/thumb/steth-wei_D_3x.png?1696926841",
+    "symbol": "AXL-WSTETH",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0xd7c8469c7ec40f853da5f651de81b45aed47e5ab": {
+    "assetId": "eip155:137/erc20:0xd7c8469c7ec40f853da5f651de81b45aed47e5ab",
+    "chainId": "eip155:137",
+    "name": "Potcoin",
+    "precision": 18,
+    "color": "#155E30",
+    "icon": "https://assets.coingecko.com/coins/images/51/thumb/potcoin.png?1696501447",
+    "symbol": "POT",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0xd7ecf95cf7ef5256990beaf4ac895cd9e64cb947": {
+    "assetId": "eip155:137/erc20:0xd7ecf95cf7ef5256990beaf4ac895cd9e64cb947",
+    "chainId": "eip155:137",
+    "name": "pTokens BTC on Polygon",
+    "precision": 18,
+    "color": "#F17069",
+    "icon": "https://assets.coingecko.com/coins/images/25861/thumb/wMTpRljt_400x400.png?1696524945",
+    "symbol": "PBTC",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0xd838290e877e0188a4a44700463419ed96c16107": {
+    "assetId": "eip155:137/erc20:0xd838290e877e0188a4a44700463419ed96c16107",
+    "chainId": "eip155:137",
+    "name": "Toucan Protocol  Nature Carbon Tonne",
+    "precision": 18,
+    "color": "#161C24",
+    "icon": "https://assets.coingecko.com/coins/images/24484/thumb/NCT-removebg-preview.png?1696523665",
+    "symbol": "NCT",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0xd85d1e945766fea5eda9103f918bd915fbca63e6": {
+    "assetId": "eip155:137/erc20:0xd85d1e945766fea5eda9103f918bd915fbca63e6",
+    "chainId": "eip155:137",
+    "name": "Celsius Network on Polygon",
+    "precision": 4,
+    "color": "#F4973C",
+    "icon": "https://assets.coingecko.com/coins/images/3263/thumb/CEL_logo.png?1696503976",
+    "symbol": "CEL",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0xd86b5923f3ad7b585ed81b448170ae026c65ae9a": {
+    "assetId": "eip155:137/erc20:0xd86b5923f3ad7b585ed81b448170ae026c65ae9a",
+    "chainId": "eip155:137",
+    "name": "Iron",
+    "precision": 18,
+    "color": "#FCE2D1",
+    "icon": "https://assets.coingecko.com/coins/images/14588/thumb/logo_-_2021-03-31T123525.615.png?1696514268",
+    "symbol": "IRON",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0xd872b7ffca41a67eda85b04a9185c6b270006b58": {
+    "assetId": "eip155:137/erc20:0xd872b7ffca41a67eda85b04a9185c6b270006b58",
+    "chainId": "eip155:137",
+    "name": "Taki",
+    "precision": 9,
+    "color": "#AE526A",
+    "icon": "https://assets.coingecko.com/coins/images/25271/thumb/logo.png?1696524410",
+    "symbol": "TAKI",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0xd8ca34fd379d9ca3c6ee3b3905678320f5b45195": {
+    "assetId": "eip155:137/erc20:0xd8ca34fd379d9ca3c6ee3b3905678320f5b45195",
+    "chainId": "eip155:137",
+    "name": "Governance OHM on Polygon",
+    "precision": 18,
+    "color": "#859CA3",
+    "icon": "https://assets.coingecko.com/coins/images/21129/thumb/token_wsOHM_logo.png?1696520508",
+    "symbol": "GOHM",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0xd99bafe5031cc8b345cb2e8c80135991f12d7130": {
+    "assetId": "eip155:137/erc20:0xd99bafe5031cc8b345cb2e8c80135991f12d7130",
+    "chainId": "eip155:137",
+    "name": "Ferrum Network on Polygon",
+    "precision": 18,
+    "color": "#DAD5C6",
+    "icon": "https://assets.coingecko.com/coins/images/8251/thumb/FRM.png?1696508455",
+    "symbol": "FRM",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0xd9e838dd60c8ea1e7dd4e670913323bb87db112c": {
+    "assetId": "eip155:137/erc20:0xd9e838dd60c8ea1e7dd4e670913323bb87db112c",
+    "chainId": "eip155:137",
+    "name": "Ecowatt",
+    "precision": 4,
+    "color": "#F6F8F4",
+    "icon": "https://assets.coingecko.com/coins/images/24407/thumb/28382.jpeg?1696523589",
+    "symbol": "EWT",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0xda537104d6a5edd53c6fbba9a898708e465260b6": {
+    "assetId": "eip155:137/erc20:0xda537104d6a5edd53c6fbba9a898708e465260b6",
+    "chainId": "eip155:137",
+    "name": "yearn finance on Polygon",
+    "precision": 18,
+    "color": "#C1D5FC",
+    "icon": "https://assets.coingecko.com/coins/images/11849/thumb/yearn.jpg?1696511720",
+    "symbol": "YFI",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0xda5949544aaf6124d06f398bfde4c86cc33b0ee7": {
+    "assetId": "eip155:137/erc20:0xda5949544aaf6124d06f398bfde4c86cc33b0ee7",
+    "chainId": "eip155:137",
+    "name": "CyberFM on Polygon",
+    "precision": 18,
+    "color": "#D4D8DC",
+    "icon": "https://assets.coingecko.com/coins/images/5476/thumb/cyberfm.png?1696505952",
+    "symbol": "CYFM",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0xdab35042e63e93cc8556c9bae482e5415b5ac4b1": {
+    "assetId": "eip155:137/erc20:0xdab35042e63e93cc8556c9bae482e5415b5ac4b1",
+    "chainId": "eip155:137",
+    "name": "Iris",
+    "precision": 18,
+    "color": "#91C1C5",
+    "icon": "https://assets.coingecko.com/coins/images/18361/thumb/hermes.PNG?1696517854",
+    "symbol": "IRIS",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0xdab529f40e671a1d4bf91361c21bf9f0c9712ab7": {
+    "assetId": "eip155:137/erc20:0xdab529f40e671a1d4bf91361c21bf9f0c9712ab7",
+    "chainId": "eip155:137",
+    "name": "BUSD on Polygon",
+    "precision": 18,
+    "color": "#F4BC0C",
+    "icon": "https://assets.coingecko.com/coins/images/9576/thumb/BUSDLOGO.jpg?1696509654",
+    "symbol": "BUSD",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0xdae89da41a96956e9e70320ac9c0dd077070d3a5": {
+    "assetId": "eip155:137/erc20:0xdae89da41a96956e9e70320ac9c0dd077070d3a5",
+    "chainId": "eip155:137",
+    "name": "Centaur on Polygon",
+    "precision": 18,
+    "color": "#34CC34",
+    "icon": "https://assets.coingecko.com/coins/images/12743/thumb/logo_%2898%29.png?1696512542",
+    "symbol": "CNTR",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0xdb298285fe4c5410b05390ca80e8fbe9de1f259b": {
+    "assetId": "eip155:137/erc20:0xdb298285fe4c5410b05390ca80e8fbe9de1f259b",
+    "chainId": "eip155:137",
+    "name": "handle fi on Polygon",
+    "precision": 18,
+    "color": "#2D353D",
+    "icon": "https://assets.coingecko.com/coins/images/18533/thumb/handle.fiFOREXLogoDark200x200.png?1696518013",
+    "symbol": "FOREX",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0xdb725f82818de83e99f1dac22a9b5b51d3d04dd4": {
+    "assetId": "eip155:137/erc20:0xdb725f82818de83e99f1dac22a9b5b51d3d04dd4",
+    "chainId": "eip155:137",
+    "name": "GET Protocol on Polygon",
+    "precision": 18,
+    "color": "#A7ECDA",
+    "icon": "https://assets.coingecko.com/coins/images/1927/thumb/GET_Protocol.png?1696502916",
+    "symbol": "GET",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0xdb7cb471dd0b49b29cab4a1c14d070f27216a0ab": {
+    "assetId": "eip155:137/erc20:0xdb7cb471dd0b49b29cab4a1c14d070f27216a0ab",
+    "chainId": "eip155:137",
+    "name": "Bankless DAO on Polygon",
+    "precision": 18,
+    "color": "#BABABA",
+    "icon": "https://assets.coingecko.com/coins/images/15227/thumb/j4WEJrwU.png?1696514882",
+    "symbol": "BANK",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0xdbb5da27ffcfebea8799a5832d4607714fc6aba8": {
+    "assetId": "eip155:137/erc20:0xdbb5da27ffcfebea8799a5832d4607714fc6aba8",
+    "chainId": "eip155:137",
+    "name": "DGEN on Polygon",
+    "precision": 18,
+    "color": "#7B37CC",
+    "icon": "https://assets.coingecko.com/coins/images/31294/thumb/dgen-new-200-200.png?1696530114",
+    "symbol": "DGEN",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0xdbf31df14b66535af65aac99c32e9ea844e14501": {
+    "assetId": "eip155:137/erc20:0xdbf31df14b66535af65aac99c32e9ea844e14501",
+    "chainId": "eip155:137",
+    "name": "renBTC on Polygon",
+    "precision": 8,
+    "color": "#E8932A",
+    "icon": "https://assets.coingecko.com/coins/images/11370/thumb/Bitcoin.jpg?1696511287",
+    "symbol": "RENBTC",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0xdc0e17eae3b9651875030244b971fa0223a1764f": {
+    "assetId": "eip155:137/erc20:0xdc0e17eae3b9651875030244b971fa0223a1764f",
+    "chainId": "eip155:137",
+    "name": "PERI Finance on Polygon",
+    "precision": 18,
+    "color": "#140C5C",
+    "icon": "https://assets.coingecko.com/coins/images/15313/thumb/6xVEMS1.png?1696514963",
+    "symbol": "PERI",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0xdc3326e71d45186f113a2f448984ca0e8d201995": {
+    "assetId": "eip155:137/erc20:0xdc3326e71d45186f113a2f448984ca0e8d201995",
+    "chainId": "eip155:137",
+    "name": "XSGD on Polygon",
+    "precision": 6,
+    "color": "#B8CAF8",
+    "icon": "https://assets.coingecko.com/coins/images/12832/thumb/StraitsX_Singapore_Dollar_%28XSGD%29_Token_Logo.png?1696512623",
+    "symbol": "XSGD",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0xdd2af2e723547088d3846841fbdcc6a8093313d6": {
+    "assetId": "eip155:137/erc20:0xdd2af2e723547088d3846841fbdcc6a8093313d6",
+    "chainId": "eip155:137",
+    "name": "GOGOcoin",
+    "precision": 18,
+    "color": "#D47885",
+    "icon": "https://assets.coingecko.com/coins/images/21341/thumb/gogo.png?1696520708",
+    "symbol": "GOGO",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0xdd9ba3b2571bea0854beb0508ce10fed0eca7e3e": {
+    "assetId": "eip155:137/erc20:0xdd9ba3b2571bea0854beb0508ce10fed0eca7e3e",
+    "chainId": "eip155:137",
+    "name": "EnviDa",
+    "precision": 18,
+    "color": "#34B4A2",
+    "icon": "https://assets.coingecko.com/coins/images/20342/thumb/logo1.png?1696519749",
+    "symbol": "EDAT",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0xdda40cdfe4a0090f42ff49f264a831402adb801a": {
+    "assetId": "eip155:137/erc20:0xdda40cdfe4a0090f42ff49f264a831402adb801a",
+    "chainId": "eip155:137",
+    "name": "Dogira on Polygon",
+    "precision": 9,
+    "color": "#3F2C2C",
+    "icon": "https://assets.coingecko.com/coins/images/14634/thumb/IQgaRw0.png?1696514312",
+    "symbol": "DOGIRA",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0xdda7b23d2d72746663e7939743f929a3d85fc975": {
+    "assetId": "eip155:137/erc20:0xdda7b23d2d72746663e7939743f929a3d85fc975",
+    "chainId": "eip155:137",
+    "name": "AdEx on Polygon",
+    "precision": 18,
+    "color": "#892BFC",
+    "icon": "https://assets.coingecko.com/coins/images/847/thumb/adex.jpeg?1696501984",
+    "symbol": "ADX",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0xde5ed76e7c05ec5e4572cfc88d1acea165109e44": {
+    "assetId": "eip155:137/erc20:0xde5ed76e7c05ec5e4572cfc88d1acea165109e44",
+    "chainId": "eip155:137",
+    "name": "DEUS Finance on Polygon",
+    "precision": 18,
+    "color": "#040708",
+    "icon": "https://assets.coingecko.com/coins/images/18778/thumb/Black_Background_200x200.png?1696518242",
+    "symbol": "DEUS",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0xdf7837de1f2fa4631d716cf2502f8b230f1dcc32": {
+    "assetId": "eip155:137/erc20:0xdf7837de1f2fa4631d716cf2502f8b230f1dcc32",
+    "chainId": "eip155:137",
+    "name": "Telcoin on Polygon",
+    "precision": 2,
+    "color": "#15CCFC",
+    "icon": "https://assets.coingecko.com/coins/images/1899/thumb/tel.png?1696502892",
+    "symbol": "TEL",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0xdfc2c4ce66561c3ee53dbea9ff78550f395a25e2": {
+    "assetId": "eip155:137/erc20:0xdfc2c4ce66561c3ee53dbea9ff78550f395a25e2",
+    "chainId": "eip155:137",
+    "name": "Aidi Finance",
+    "precision": 18,
+    "color": "#7297DA",
+    "icon": "https://assets.coingecko.com/coins/images/29675/thumb/aidi_finance.png?1696528610",
+    "symbol": "AIDI",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0xdfc3829b127761a3218bfcee7fc92e1232c9d116": {
+    "assetId": "eip155:137/erc20:0xdfc3829b127761a3218bfcee7fc92e1232c9d116",
+    "chainId": "eip155:137",
+    "name": "PRivaCY Coin on Polygon",
+    "precision": 8,
+    "color": "#319A8A",
+    "icon": "https://assets.coingecko.com/coins/images/14151/thumb/prcy.png?1696513870",
+    "symbol": "PRCY",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0xdfce1e99a31c4597a3f8a8945cbfa9037655e335": {
+    "assetId": "eip155:137/erc20:0xdfce1e99a31c4597a3f8a8945cbfa9037655e335",
+    "chainId": "eip155:137",
+    "name": "Astrafer on Polygon",
+    "precision": 18,
+    "color": "#D71261",
+    "icon": "https://assets.coingecko.com/coins/images/26246/thumb/ATSRA_Token.png?1696525331",
+    "symbol": "ASTRAFER",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0xe0339c80ffde91f3e20494df88d4206d86024cdf": {
+    "assetId": "eip155:137/erc20:0xe0339c80ffde91f3e20494df88d4206d86024cdf",
+    "chainId": "eip155:137",
+    "name": "Dogelon Mars on Polygon",
+    "precision": 18,
+    "color": "#E8E3D6",
+    "icon": "https://assets.coingecko.com/coins/images/14962/thumb/6GxcPRo3_400x400.jpg?1696514622",
+    "symbol": "ELON",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0xe06bd4f5aac8d0aa337d13ec88db6defc6eaeefe": {
+    "assetId": "eip155:137/erc20:0xe06bd4f5aac8d0aa337d13ec88db6defc6eaeefe",
+    "chainId": "eip155:137",
+    "name": "Planet IX",
+    "precision": 18,
+    "color": "#803525",
+    "icon": "https://assets.coingecko.com/coins/images/20927/thumb/IXT_LOGO_PNG_RGB_200X.png?1696520316",
+    "symbol": "IXT",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0xe09473ed3c1d317d3601290ae7bc511d7e16e62f": {
+    "assetId": "eip155:137/erc20:0xe09473ed3c1d317d3601290ae7bc511d7e16e62f",
+    "chainId": "eip155:137",
+    "name": "Zpunk",
+    "precision": 9,
+    "color": "#BF976A",
+    "icon": "https://assets.coingecko.com/coins/images/32305/thumb/zpunklogop2b-resized.png?1697188091",
+    "symbol": "ZPT",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0xe0b52e49357fd4daf2c15e02058dce6bc0057db4": {
+    "assetId": "eip155:137/erc20:0xe0b52e49357fd4daf2c15e02058dce6bc0057db4",
+    "chainId": "eip155:137",
+    "name": "agEUR on Polygon",
+    "precision": 18,
+    "color": "#C0B99D",
+    "icon": "https://assets.coingecko.com/coins/images/19479/thumb/agEUR.png?1696518915",
+    "symbol": "AGEUR",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0xe0bceef36f3a6efdd5eebfacd591423f8549b9d5": {
+    "assetId": "eip155:137/erc20:0xe0bceef36f3a6efdd5eebfacd591423f8549b9d5",
+    "chainId": "eip155:137",
+    "name": "Defactor on Polygon",
+    "precision": 18,
+    "color": "#5C5CEC",
+    "icon": "https://assets.coingecko.com/coins/images/19201/thumb/jFLSu4U9_400x400.png?1696518648",
+    "symbol": "FACTR",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0xe0ce60af0850bf54072635e66e79df17082a1109": {
+    "assetId": "eip155:137/erc20:0xe0ce60af0850bf54072635e66e79df17082a1109",
+    "chainId": "eip155:137",
+    "name": "PayRue on Polygon",
+    "precision": 18,
+    "color": "#5282AF",
+    "icon": "https://assets.coingecko.com/coins/images/8794/thumb/-RNl00DU_400x400.jpg?1696508949",
+    "symbol": "PROPEL",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0xe111178a87a3bff0c8d18decba5798827539ae99": {
+    "assetId": "eip155:137/erc20:0xe111178a87a3bff0c8d18decba5798827539ae99",
+    "chainId": "eip155:137",
+    "name": "STASIS EURO on Polygon",
+    "precision": 2,
+    "color": "#CAC5F8",
+    "icon": "https://assets.coingecko.com/coins/images/5164/thumb/EURS_300x300.png?1696505680",
+    "symbol": "EURS",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0xe118e8b6dc166cd83695825eb1d30e792435bb00": {
+    "assetId": "eip155:137/erc20:0xe118e8b6dc166cd83695825eb1d30e792435bb00",
+    "chainId": "eip155:137",
+    "name": "FireBall",
+    "precision": 9,
+    "color": "#E6F1F9",
+    "icon": "https://assets.coingecko.com/coins/images/15644/thumb/fireball.png?1696515276",
+    "symbol": "FIRE",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0xe20b9e246db5a0d21bf9209e4858bc9a3ff7a034": {
+    "assetId": "eip155:137/erc20:0xe20b9e246db5a0d21bf9209e4858bc9a3ff7a034",
+    "chainId": "eip155:137",
+    "name": "Wrapped Banano on Polygon",
+    "precision": 18,
+    "color": "#373739",
+    "icon": "https://assets.coingecko.com/coins/images/32617/thumb/WBAN.jpg?1698749253",
+    "symbol": "WBAN",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0xe20d2df5041f8ed06976846470f727295cdd4d23": {
+    "assetId": "eip155:137/erc20:0xe20d2df5041f8ed06976846470f727295cdd4d23",
+    "chainId": "eip155:137",
+    "name": "0x nodes on Polygon",
+    "precision": 18,
+    "color": "#378060",
+    "icon": "https://assets.coingecko.com/coins/images/15600/thumb/BIOS_01.png?1696515235",
+    "symbol": "BIOS",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0xe238ecb42c424e877652ad82d8a939183a04c35f": {
+    "assetId": "eip155:137/erc20:0xe238ecb42c424e877652ad82d8a939183a04c35f",
+    "chainId": "eip155:137",
+    "name": "WiFi Map",
+    "precision": 18,
+    "color": "#276DF4",
+    "icon": "https://assets.coingecko.com/coins/images/29533/thumb/IMG_4643.png?1696528475",
+    "symbol": "WIFI",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0xe261d618a959afffd53168cd07d12e37b26761db": {
+    "assetId": "eip155:137/erc20:0xe261d618a959afffd53168cd07d12e37b26761db",
+    "chainId": "eip155:137",
+    "name": "DIMO on Polygon",
+    "precision": 18,
+    "color": "#BFBFBF",
+    "icon": "https://assets.coingecko.com/coins/images/28383/thumb/Token_Logo.png?1696527383",
+    "symbol": "DIMO",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0xe26cda27c13f4f87cffc2f437c5900b27ebb5bbb": {
+    "assetId": "eip155:137/erc20:0xe26cda27c13f4f87cffc2f437c5900b27ebb5bbb",
+    "chainId": "eip155:137",
+    "name": "Rebel Bots",
+    "precision": 8,
+    "color": "#755720",
+    "icon": "https://assets.coingecko.com/coins/images/24094/thumb/logo-footer-356.88b37f33.png?1696523287",
+    "symbol": "RBLS",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0xe2aa7db6da1dae97c5f5c6914d285fbfcc32a128": {
+    "assetId": "eip155:137/erc20:0xe2aa7db6da1dae97c5f5c6914d285fbfcc32a128",
+    "chainId": "eip155:137",
+    "name": "Parallel on Polygon",
+    "precision": 18,
+    "color": "#0828FC",
+    "icon": "https://assets.coingecko.com/coins/images/14153/thumb/par_round_200.png?1696513872",
+    "symbol": "PAR",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0xe3322702bedaaed36cddab233360b939775ae5f1": {
+    "assetId": "eip155:137/erc20:0xe3322702bedaaed36cddab233360b939775ae5f1",
+    "chainId": "eip155:137",
+    "name": "Tellor Tributes on Polygon",
+    "precision": 18,
+    "color": "#44DA9C",
+    "icon": "https://assets.coingecko.com/coins/images/9644/thumb/Blk_icon_current.png?1696509713",
+    "symbol": "TRB",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0xe3ab61371ecc88534c522922a026f2296116c109": {
+    "assetId": "eip155:137/erc20:0xe3ab61371ecc88534c522922a026f2296116c109",
+    "chainId": "eip155:137",
+    "name": "Mochi Market on Polygon",
+    "precision": 18,
+    "color": "#D13C7F",
+    "icon": "https://assets.coingecko.com/coins/images/14993/thumb/mochi.PNG?1696514657",
+    "symbol": "MOMA",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0xe4095d9372e68d108225c306a4491cacfb33b097": {
+    "assetId": "eip155:137/erc20:0xe4095d9372e68d108225c306a4491cacfb33b097",
+    "chainId": "eip155:137",
+    "name": "VNX EURO on Polygon",
+    "precision": 18,
+    "color": "#DFD088",
+    "icon": "https://assets.coingecko.com/coins/images/29351/thumb/VNXEUR_%281%29.png?1696528300",
+    "symbol": "VEUR",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0xe46f5128b933e5a6f907fe73ece80059c222db0a": {
+    "assetId": "eip155:137/erc20:0xe46f5128b933e5a6f907fe73ece80059c222db0a",
+    "chainId": "eip155:137",
+    "name": "dotmoovs on Polygon",
+    "precision": 18,
+    "color": "#FC4C64",
+    "icon": "https://assets.coingecko.com/coins/images/15817/thumb/dotmoovs-symbol-gradient.png?1696515436",
+    "symbol": "MOOV",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0xe4885ed2818cc9e840a25f94f9b2a28169d1aea7": {
+    "assetId": "eip155:137/erc20:0xe4885ed2818cc9e840a25f94f9b2a28169d1aea7",
+    "chainId": "eip155:137",
+    "name": "Balancer Aave Boosted WMATIC",
+    "precision": 18,
+    "color": "#F6F1F7",
+    "icon": "https://assets.coingecko.com/coins/images/30773/thumb/2023-06-20_09.34.11.jpg?1696529641",
+    "symbol": "BB-A-WMATIC",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0xe4bf2864ebec7b7fdf6eeca9bacae7cdfdaffe78": {
+    "assetId": "eip155:137/erc20:0xe4bf2864ebec7b7fdf6eeca9bacae7cdfdaffe78",
+    "chainId": "eip155:137",
+    "name": "DODO on Polygon",
+    "precision": 18,
+    "color": "#413E04",
+    "icon": "https://assets.coingecko.com/coins/images/12651/thumb/dodo_logo.png?1696512458",
+    "symbol": "DODO",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0xe50fa9b3c56ffb159cb0fca61f5c9d750e8128c8": {
+    "assetId": "eip155:137/erc20:0xe50fa9b3c56ffb159cb0fca61f5c9d750e8128c8",
+    "chainId": "eip155:137",
+    "name": "Aave v3 WETH on Polygon",
+    "precision": 18,
+    "color": "#C5B9CB",
+    "icon": "https://assets.coingecko.com/coins/images/32882/thumb/WETH_%281%29.png?1699716492",
+    "symbol": "AWETH",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0xe51e88dd08499762b8e4eb3a9f3da9b8e79608c3": {
+    "assetId": "eip155:137/erc20:0xe51e88dd08499762b8e4eb3a9f3da9b8e79608c3",
+    "chainId": "eip155:137",
+    "name": "Sekuritance on Polygon",
+    "precision": 18,
+    "color": "#64BCEC",
+    "icon": "https://assets.coingecko.com/coins/images/15495/thumb/skrt.png?1696515139",
+    "symbol": "SKRT",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0xe5417af564e4bfda1c483642db72007871397896": {
+    "assetId": "eip155:137/erc20:0xe5417af564e4bfda1c483642db72007871397896",
+    "chainId": "eip155:137",
+    "name": "Gains Network on Polygon",
+    "precision": 18,
+    "color": "#48F698",
+    "icon": "https://assets.coingecko.com/coins/images/19737/thumb/logo.png?1696519161",
+    "symbol": "GNS",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0xe57594f829b3d514ee12c41e81df3861b19c26e3": {
+    "assetId": "eip155:137/erc20:0xe57594f829b3d514ee12c41e81df3861b19c26e3",
+    "chainId": "eip155:137",
+    "name": "Technology Metal Network Global on Polygon",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/32834/thumb/TMN_Logo_dark_silver_2.PNG?1699586186",
+    "symbol": "TMNG",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0xe580074a10360404af3abfe2d524d5806d993ea3": {
+    "assetId": "eip155:137/erc20:0xe580074a10360404af3abfe2d524d5806d993ea3",
+    "chainId": "eip155:137",
+    "name": "PayBolt on Polygon",
+    "precision": 18,
+    "color": "#147CF4",
+    "icon": "https://assets.coingecko.com/coins/images/24175/thumb/logo.png?1696523363",
+    "symbol": "PAY",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0xe58e8391ba17731c5671f9c6e00e420608dca10e": {
+    "assetId": "eip155:137/erc20:0xe58e8391ba17731c5671f9c6e00e420608dca10e",
+    "chainId": "eip155:137",
+    "name": "GNFT on Polygon",
+    "precision": 18,
+    "color": "#7A68B4",
+    "icon": "https://assets.coingecko.com/coins/images/23532/thumb/gnft_200x200.png?1696522740",
+    "symbol": "GNFT",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0xe5b49820e5a1063f6f4ddf851327b5e8b2301048": {
+    "assetId": "eip155:137/erc20:0xe5b49820e5a1063f6f4ddf851327b5e8b2301048",
+    "chainId": "eip155:137",
+    "name": "Bonk on Polygon",
+    "precision": 5,
+    "color": "#ED960F",
+    "icon": "https://assets.coingecko.com/coins/images/28600/thumb/bonk.jpg?1696527587",
+    "symbol": "BONK",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0xe613a914bbb433855378183c3ab13003285da40a": {
+    "assetId": "eip155:137/erc20:0xe613a914bbb433855378183c3ab13003285da40a",
+    "chainId": "eip155:137",
+    "name": "Bit2Me on Polygon",
+    "precision": 18,
+    "color": "#3684DC",
+    "icon": "https://assets.coingecko.com/coins/images/19848/thumb/b2m-circle-solid-default.png?1696519271",
+    "symbol": "B2M",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0xe631dabef60c37a37d70d3b4f812871df663226f": {
+    "assetId": "eip155:137/erc20:0xe631dabef60c37a37d70d3b4f812871df663226f",
+    "chainId": "eip155:137",
+    "name": "Swarm Markets on Polygon",
+    "precision": 18,
+    "color": "#047AF4",
+    "icon": "https://assets.coingecko.com/coins/images/17488/thumb/swarm-SMT-token-symbol_200x200.png?1696517029",
+    "symbol": "SMT",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0xe6b9d092223f39013656702a40dbe6b7decc5746": {
+    "assetId": "eip155:137/erc20:0xe6b9d092223f39013656702a40dbe6b7decc5746",
+    "chainId": "eip155:137",
+    "name": "RealFevr on Polygon",
+    "precision": 18,
+    "color": "#580DA7",
+    "icon": "https://assets.coingecko.com/coins/images/17136/thumb/Fevr-Token.png?1696516695",
+    "symbol": "FEVR",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0xe6fc6c7cb6d2c31b359a49a33ef08ab87f4de7ce": {
+    "assetId": "eip155:137/erc20:0xe6fc6c7cb6d2c31b359a49a33ef08ab87f4de7ce",
+    "chainId": "eip155:137",
+    "name": "IG Gold on Polygon",
+    "precision": 6,
+    "color": "#1A3150",
+    "icon": "https://assets.coingecko.com/coins/images/7697/thumb/N7aEdYrY_400x400.png?1696507947",
+    "symbol": "IGG",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0xe749ea14a2d18e361ed092ebefba64d77a8b4eac": {
+    "assetId": "eip155:137/erc20:0xe749ea14a2d18e361ed092ebefba64d77a8b4eac",
+    "chainId": "eip155:137",
+    "name": "Digitex on Polygon",
+    "precision": 18,
+    "color": "#2464F4",
+    "icon": "https://assets.coingecko.com/coins/images/2188/thumb/DGTX.png?1696503145",
+    "symbol": "DGTX",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0xe77abb1e75d2913b2076dd16049992ffeaca5235": {
+    "assetId": "eip155:137/erc20:0xe77abb1e75d2913b2076dd16049992ffeaca5235",
+    "chainId": "eip155:137",
+    "name": "Decentrawood",
+    "precision": 18,
+    "color": "#9E3965",
+    "icon": "https://assets.coingecko.com/coins/images/29308/thumb/LOGO.png?1696528259",
+    "symbol": "DEOD",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0xe7804d91dfcde7f776c90043e03eaa6df87e6395": {
+    "assetId": "eip155:137/erc20:0xe7804d91dfcde7f776c90043e03eaa6df87e6395",
+    "chainId": "eip155:137",
+    "name": "DFX Finance on Polygon",
+    "precision": 18,
+    "color": "#09D5F4",
+    "icon": "https://assets.coingecko.com/coins/images/14091/thumb/DFX.png?1696513813",
+    "symbol": "DFX",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0xe78649874bcdb7a9d1666e665f340723a0187482": {
+    "assetId": "eip155:137/erc20:0xe78649874bcdb7a9d1666e665f340723a0187482",
+    "chainId": "eip155:137",
+    "name": "BIM",
+    "precision": 17,
+    "color": "#FCA408",
+    "icon": "https://assets.coingecko.com/coins/images/30137/thumb/logo200x200.png?1696529058",
+    "symbol": "BIM",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0xe78b25c06db117fdf8f98583cdaaa6c92b79e917": {
+    "assetId": "eip155:137/erc20:0xe78b25c06db117fdf8f98583cdaaa6c92b79e917",
+    "chainId": "eip155:137",
+    "name": "Balancer MaticX Boosted Aave WMATIC",
+    "precision": 18,
+    "color": "#0E0C16",
+    "icon": "https://assets.coingecko.com/coins/images/30772/thumb/2023-06-20_09.33.35.jpg?1696529640",
+    "symbol": "MATICX-BB-A-WMATIC-",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0xe79feaaa457ad7899357e8e2065a3267ac9ee601": {
+    "assetId": "eip155:137/erc20:0xe79feaaa457ad7899357e8e2065a3267ac9ee601",
+    "chainId": "eip155:137",
+    "name": "XAYA on Polygon",
+    "precision": 8,
+    "color": "#EC2824",
+    "icon": "https://assets.coingecko.com/coins/images/2091/thumb/xaya200x200.png?1696503058",
+    "symbol": "WCHI",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0xe7a24ef0c5e95ffb0f6684b813a78f2a3ad7d171": {
+    "assetId": "eip155:137/erc20:0xe7a24ef0c5e95ffb0f6684b813a78f2a3ad7d171",
+    "chainId": "eip155:137",
+    "name": "Curve fi amDAI amUSDC amUSDT",
+    "precision": 18,
+    "color": "#C4340A",
+    "icon": "https://assets.coingecko.com/coins/images/26740/thumb/W1sQNVWo_400x400.jpeg?1696525809",
+    "symbol": "AM3CRV",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0xe82808eaa78339b06a691fd92e1be79671cad8d3": {
+    "assetId": "eip155:137/erc20:0xe82808eaa78339b06a691fd92e1be79671cad8d3",
+    "chainId": "eip155:137",
+    "name": "PlotX on Polygon",
+    "precision": 18,
+    "color": "#D2AAAE",
+    "icon": "https://assets.coingecko.com/coins/images/12795/thumb/PlotX.png?1696512589",
+    "symbol": "PLOT",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0xe8377a076adabb3f9838afb77bee96eac101ffb1": {
+    "assetId": "eip155:137/erc20:0xe8377a076adabb3f9838afb77bee96eac101ffb1",
+    "chainId": "eip155:137",
+    "name": "MetaSoccer",
+    "precision": 18,
+    "color": "#0B061D",
+    "icon": "https://assets.coingecko.com/coins/images/21670/thumb/Om_U3jQg_400x400.jpg?1696521027",
+    "symbol": "MSU",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0xe8d17b127ba8b9899a160d9a07b69bca8e08bfc6": {
+    "assetId": "eip155:137/erc20:0xe8d17b127ba8b9899a160d9a07b69bca8e08bfc6",
+    "chainId": "eip155:137",
+    "name": "NASDEX",
+    "precision": 18,
+    "color": "#C4CACD",
+    "icon": "https://assets.coingecko.com/coins/images/18634/thumb/nadex.PNG?1696518106",
+    "symbol": "NSDX",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0xe8f157e041df3b28151b667364e9c90789da7923": {
+    "assetId": "eip155:137/erc20:0xe8f157e041df3b28151b667364e9c90789da7923",
+    "chainId": "eip155:137",
+    "name": "Opium on Polygon",
+    "precision": 18,
+    "color": "#DDAE48",
+    "icon": "https://assets.coingecko.com/coins/images/13758/thumb/opium-token-black_%281%29.png?1696513500",
+    "symbol": "OPIUM",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0xe94845ac6782a2e71c407abe4d5201445c26a62b": {
+    "assetId": "eip155:137/erc20:0xe94845ac6782a2e71c407abe4d5201445c26a62b",
+    "chainId": "eip155:137",
+    "name": "BUILD on Polygon",
+    "precision": 18,
+    "color": "#EC1C24",
+    "icon": "https://assets.coingecko.com/coins/images/26533/thumb/BUILD.png?1696525607",
+    "symbol": "BUILD",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0xe9993763e0b7f7d915a62a5f22a6e151f91d98a8": {
+    "assetId": "eip155:137/erc20:0xe9993763e0b7f7d915a62a5f22a6e151f91d98a8",
+    "chainId": "eip155:137",
+    "name": "TORG on Polygon",
+    "precision": 18,
+    "color": "#0C5CFC",
+    "icon": "https://assets.coingecko.com/coins/images/17596/thumb/TORG_Logo_200x200.png?1696517129",
+    "symbol": "TORG",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0xea1132120ddcdda2f119e99fa7a27a0d036f7ac9": {
+    "assetId": "eip155:137/erc20:0xea1132120ddcdda2f119e99fa7a27a0d036f7ac9",
+    "chainId": "eip155:137",
+    "name": "Aave v3 stMATIC",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/32921/thumb/stmatic.png?1699825800",
+    "symbol": "ASTMATIC",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0xeaecc18198a475c921b24b8a6c1c1f0f5f3f7ea0": {
+    "assetId": "eip155:137/erc20:0xeaecc18198a475c921b24b8a6c1c1f0f5f3f7ea0",
+    "chainId": "eip155:137",
+    "name": "MetaGame on Polygon",
+    "precision": 18,
+    "color": "#12B084",
+    "icon": "https://assets.coingecko.com/coins/images/13099/thumb/V8phEz8V.png?1696512885",
+    "symbol": "SEED",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0xeaf631ac57f3cdddd261770dd47f85066131a156": {
+    "assetId": "eip155:137/erc20:0xeaf631ac57f3cdddd261770dd47f85066131a156",
+    "chainId": "eip155:137",
+    "name": "Equalizer on Polygon",
+    "precision": 18,
+    "color": "#121654",
+    "icon": "https://assets.coingecko.com/coins/images/14741/thumb/X2p5mb2f_400x400.png?1696514410",
+    "symbol": "EQZ",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0xeb2778f74e5ee038e67aa6c77f0f0451abd748fd": {
+    "assetId": "eip155:137/erc20:0xeb2778f74e5ee038e67aa6c77f0f0451abd748fd",
+    "chainId": "eip155:137",
+    "name": "PolyZap",
+    "precision": 18,
+    "color": "#1C618C",
+    "icon": "https://assets.coingecko.com/coins/images/15623/thumb/polyzap.png?1696515256",
+    "symbol": "PZAP",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0xeb7eab87837f4dad1bb80856db9e4506fc441f3d": {
+    "assetId": "eip155:137/erc20:0xeb7eab87837f4dad1bb80856db9e4506fc441f3d",
+    "chainId": "eip155:137",
+    "name": "Medieval Empires",
+    "precision": 18,
+    "color": "#AF8330",
+    "icon": "https://assets.coingecko.com/coins/images/27588/thumb/MEE_200x200.png?1696526620",
+    "symbol": "MEE",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0xeb94a5e2c643403e29fa1d7197e7e0708b09ad84": {
+    "assetId": "eip155:137/erc20:0xeb94a5e2c643403e29fa1d7197e7e0708b09ad84",
+    "chainId": "eip155:137",
+    "name": "OnX Finance on Polygon",
+    "precision": 18,
+    "color": "#4B2DF9",
+    "icon": "https://assets.coingecko.com/coins/images/13445/thumb/onxlogo-1.png?1696513209",
+    "symbol": "ONX",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0xeb99748e91afca94a6289db3b02e7ef4a8f0a22d": {
+    "assetId": "eip155:137/erc20:0xeb99748e91afca94a6289db3b02e7ef4a8f0a22d",
+    "chainId": "eip155:137",
+    "name": "MahaDAO on Polygon",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/13404/thumb/MAHA_Token.png?1696513166",
+    "symbol": "MAHA",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0xec38621e72d86775a89c7422746de1f52bba5320": {
+    "assetId": "eip155:137/erc20:0xec38621e72d86775a89c7422746de1f52bba5320",
+    "chainId": "eip155:137",
+    "name": "Davos Protocol on Polygon",
+    "precision": 18,
+    "color": "#EC4F74",
+    "icon": "https://assets.coingecko.com/coins/images/28775/thumb/dusd_logo_200x200.png?1696527754",
+    "symbol": "DUSD",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0xecf8f2fa183b1c4d2a269bf98a54fce86c812d3e": {
+    "assetId": "eip155:137/erc20:0xecf8f2fa183b1c4d2a269bf98a54fce86c812d3e",
+    "chainId": "eip155:137",
+    "name": "CyberFi on Polygon",
+    "precision": 18,
+    "color": "#F3E90C",
+    "icon": "https://assets.coingecko.com/coins/images/13112/thumb/cyberfi_logo.jpeg?1696512897",
+    "symbol": "CFI",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0xed28b1890fbb4aa9ded528c1034fed278ff68f5d": {
+    "assetId": "eip155:137/erc20:0xed28b1890fbb4aa9ded528c1034fed278ff68f5d",
+    "chainId": "eip155:137",
+    "name": "Vabble on Polygon",
+    "precision": 18,
+    "color": "#C525BC",
+    "icon": "https://assets.coingecko.com/coins/images/17508/thumb/vabble_tplogo_200_x_200.png?1696517047",
+    "symbol": "VAB",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0xed755dba6ec1eb520076cec051a582a6d81a8253": {
+    "assetId": "eip155:137/erc20:0xed755dba6ec1eb520076cec051a582a6d81a8253",
+    "chainId": "eip155:137",
+    "name": "Ultimate Champions on Polygon",
+    "precision": 18,
+    "color": "#E0B680",
+    "icon": "https://assets.coingecko.com/coins/images/28091/thumb/champ.png?1696527101",
+    "symbol": "CHAMP",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0xed88227296943857409a8e0f15ad7134e70d0f73": {
+    "assetId": "eip155:137/erc20:0xed88227296943857409a8e0f15ad7134e70d0f73",
+    "chainId": "eip155:137",
+    "name": "Lumiii",
+    "precision": 18,
+    "color": "#C8C4D2",
+    "icon": "https://assets.coingecko.com/coins/images/27424/thumb/lumiii-icon-200x200.png?1696526465",
+    "symbol": "LUMIII",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0xedcfb6984a3c70501baa8b7f5421ae795ecc1496": {
+    "assetId": "eip155:137/erc20:0xedcfb6984a3c70501baa8b7f5421ae795ecc1496",
+    "chainId": "eip155:137",
+    "name": "ABCMETA",
+    "precision": 8,
+    "color": "#242C39",
+    "icon": "https://assets.coingecko.com/coins/images/27723/thumb/meta-gecko50.png?1696526747",
+    "symbol": "META",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0xee327f889d5947c1dc1934bb208a1e792f953e96": {
+    "assetId": "eip155:137/erc20:0xee327f889d5947c1dc1934bb208a1e792f953e96",
+    "chainId": "eip155:137",
+    "name": "Frax Ether on Polygon",
+    "precision": 18,
+    "color": "#B3B3B3",
+    "icon": "https://assets.coingecko.com/coins/images/28284/thumb/frxETH_icon.png?1696527284",
+    "symbol": "FRXETH",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0xee7666aacaefaa6efeef62ea40176d3eb21953b9": {
+    "assetId": "eip155:137/erc20:0xee7666aacaefaa6efeef62ea40176d3eb21953b9",
+    "chainId": "eip155:137",
+    "name": "MCH Coin on Polygon",
+    "precision": 18,
+    "color": "#9E55D1",
+    "icon": "https://assets.coingecko.com/coins/images/15399/thumb/MCHC.jpg?1696515045",
+    "symbol": "MCHC",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0xee800b277a96b0f490a1a732e1d6395fad960a26": {
+    "assetId": "eip155:137/erc20:0xee800b277a96b0f490a1a732e1d6395fad960a26",
+    "chainId": "eip155:137",
+    "name": "ARPA on Polygon",
+    "precision": 18,
+    "color": "#6A6A6C",
+    "icon": "https://assets.coingecko.com/coins/images/8506/thumb/9u0a23XY_400x400.jpg?1696508685",
+    "symbol": "ARPA",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0xee9801669c6138e84bd50deb500827b776777d28": {
+    "assetId": "eip155:137/erc20:0xee9801669c6138e84bd50deb500827b776777d28",
+    "chainId": "eip155:137",
+    "name": "O3 Swap on Polygon",
+    "precision": 18,
+    "color": "#D7F0E8",
+    "icon": "https://assets.coingecko.com/coins/images/15460/thumb/o3.png?1696515107",
+    "symbol": "O3",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0xee9a352f6aac4af1a5b9f467f6a93e0ffbe9dd35": {
+    "assetId": "eip155:137/erc20:0xee9a352f6aac4af1a5b9f467f6a93e0ffbe9dd35",
+    "chainId": "eip155:137",
+    "name": "MASQ on Polygon",
+    "precision": 18,
+    "color": "#049EF7",
+    "icon": "https://assets.coingecko.com/coins/images/13699/thumb/masq.png?1696513446",
+    "symbol": "MASQ",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0xeeda694439c6fb56cbaa011cc849650b7273285b": {
+    "assetId": "eip155:137/erc20:0xeeda694439c6fb56cbaa011cc849650b7273285b",
+    "chainId": "eip155:137",
+    "name": "Bankless BED Index on Polygon",
+    "precision": 18,
+    "color": "#151010",
+    "icon": "https://assets.coingecko.com/coins/images/17175/thumb/BED_Logo_-_No_border.png?1696516734",
+    "symbol": "BED",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0xeee3371b89fc43ea970e908536fcddd975135d8a": {
+    "assetId": "eip155:137/erc20:0xeee3371b89fc43ea970e908536fcddd975135d8a",
+    "chainId": "eip155:137",
+    "name": "The Doge NFT on Polygon",
+    "precision": 18,
+    "color": "#D0B882",
+    "icon": "https://assets.coingecko.com/coins/images/18111/thumb/Doge.png?1696517615",
+    "symbol": "DOG",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0xeeeeeb57642040be42185f49c52f7e9b38f8eeee": {
+    "assetId": "eip155:137/erc20:0xeeeeeb57642040be42185f49c52f7e9b38f8eeee",
+    "chainId": "eip155:137",
+    "name": "Elk Finance on Polygon",
+    "precision": 18,
+    "color": "#CDCFCD",
+    "icon": "https://assets.coingecko.com/coins/images/17813/thumb/elk.png?1696517333",
+    "symbol": "ELK",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0xef6ab48ef8dfe984fab0d5c4cd6aff2e54dfda14": {
+    "assetId": "eip155:137/erc20:0xef6ab48ef8dfe984fab0d5c4cd6aff2e54dfda14",
+    "chainId": "eip155:137",
+    "name": "CRISP Scored Mangroves",
+    "precision": 18,
+    "color": "#12BE8F",
+    "icon": "https://assets.coingecko.com/coins/images/30555/thumb/CrispM_small.png?1696529426",
+    "symbol": "CRISP-M",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0xef938b6da8576a896f6e0321ef80996f4890f9c4": {
+    "assetId": "eip155:137/erc20:0xef938b6da8576a896f6e0321ef80996f4890f9c4",
+    "chainId": "eip155:137",
+    "name": "Decentral Games on Polygon",
+    "precision": 18,
+    "color": "#B5CDFC",
+    "icon": "https://assets.coingecko.com/coins/images/21173/thumb/Decentral_Games_Logo-1.png?1696520549",
+    "symbol": "DG",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0xefcfece12a99d1dbbf6f3264ee97f8c045e97f1f": {
+    "assetId": "eip155:137/erc20:0xefcfece12a99d1dbbf6f3264ee97f8c045e97f1f",
+    "chainId": "eip155:137",
+    "name": "The Unfettered Souls",
+    "precision": 18,
+    "color": "#4A474E",
+    "icon": "https://assets.coingecko.com/coins/images/30591/thumb/un.jpg?1696529459",
+    "symbol": "SOULS",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0xefee2de82343be622dcb4e545f75a3b9f50c272d": {
+    "assetId": "eip155:137/erc20:0xefee2de82343be622dcb4e545f75a3b9f50c272d",
+    "chainId": "eip155:137",
+    "name": "TryHards on Polygon",
+    "precision": 18,
+    "color": "#B17A40",
+    "icon": "https://assets.coingecko.com/coins/images/18624/thumb/TryHards_Tokenticker.png?1696518096",
+    "symbol": "TRY",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0xf0059cc2b3e980065a906940fbce5f9db7ae40a7": {
+    "assetId": "eip155:137/erc20:0xf0059cc2b3e980065a906940fbce5f9db7ae40a7",
+    "chainId": "eip155:137",
+    "name": "Shardus on Polygon",
+    "precision": 18,
+    "color": "#EC2424",
+    "icon": "https://assets.coingecko.com/coins/images/8383/thumb/final_logo_photoshop.png?1696508575",
+    "symbol": "ULT",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0xf0b2b2d73a7c070e5f44a4e12b3f6a51949a3459": {
+    "assetId": "eip155:137/erc20:0xf0b2b2d73a7c070e5f44a4e12b3f6a51949a3459",
+    "chainId": "eip155:137",
+    "name": "UNILAPSE",
+    "precision": 18,
+    "color": "#ECF0FC",
+    "icon": "https://assets.coingecko.com/coins/images/32458/thumb/a.png?1698241491",
+    "symbol": "UNILAPSE",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0xf0f14634971c43d872d1cf1785195c0ce1000a9d": {
+    "assetId": "eip155:137/erc20:0xf0f14634971c43d872d1cf1785195c0ce1000a9d",
+    "chainId": "eip155:137",
+    "name": "Libera Financial on Polygon",
+    "precision": 18,
+    "color": "#4AAEA9",
+    "icon": "https://assets.coingecko.com/coins/images/26194/thumb/20791.png?1696525280",
+    "symbol": "LIBERA",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0xf124ed9ec309907808b1fbc6bedb2a76927b3665": {
+    "assetId": "eip155:137/erc20:0xf124ed9ec309907808b1fbc6bedb2a76927b3665",
+    "chainId": "eip155:137",
+    "name": "Empire Network on Polygon",
+    "precision": 18,
+    "color": "#2F4555",
+    "icon": "https://assets.coingecko.com/coins/images/29240/thumb/empire.jpeg?1696528197",
+    "symbol": "EMPIRE",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0xf1428850f92b87e629c6f3a3b75bffbc496f7ba6": {
+    "assetId": "eip155:137/erc20:0xf1428850f92b87e629c6f3a3b75bffbc496f7ba6",
+    "chainId": "eip155:137",
+    "name": "Geopoly",
+    "precision": 18,
+    "color": "#2558D0",
+    "icon": "https://assets.coingecko.com/coins/images/21632/thumb/Geopoly_Token.png?1696520992",
+    "symbol": "GEO",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0xf1c1a3c2481a3a8a3f173a9ab5ade275292a6fa3": {
+    "assetId": "eip155:137/erc20:0xf1c1a3c2481a3a8a3f173a9ab5ade275292a6fa3",
+    "chainId": "eip155:137",
+    "name": "BLOCKv on Polygon",
+    "precision": 18,
+    "color": "#E8EAEE",
+    "icon": "https://assets.coingecko.com/coins/images/1266/thumb/blockv.png?1696502339",
+    "symbol": "VEE",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0xf21441f9ec4c1fe69cb7cf186eceab31af2b658d": {
+    "assetId": "eip155:137/erc20:0xf21441f9ec4c1fe69cb7cf186eceab31af2b658d",
+    "chainId": "eip155:137",
+    "name": "Vent Finance on Polygon",
+    "precision": 18,
+    "color": "#040404",
+    "icon": "https://assets.coingecko.com/coins/images/17925/thumb/Artboard_29.png?1696517445",
+    "symbol": "VENT",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0xf239e69ce434c7fb408b05a0da416b14917d934e": {
+    "assetId": "eip155:137/erc20:0xf239e69ce434c7fb408b05a0da416b14917d934e",
+    "chainId": "eip155:137",
+    "name": "PolyShield",
+    "precision": 18,
+    "color": "#09896C",
+    "icon": "https://assets.coingecko.com/coins/images/17641/thumb/QRE5xI0.png?1696517172",
+    "symbol": "SHI3LD",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0xf28164a485b0b2c90639e47b0f377b4a438a16b1": {
+    "assetId": "eip155:137/erc20:0xf28164a485b0b2c90639e47b0f377b4a438a16b1",
+    "chainId": "eip155:137",
+    "name": "Dragon s Quick",
+    "precision": 18,
+    "color": "#DECFFA",
+    "icon": "https://assets.coingecko.com/coins/images/15185/thumb/quick.png?1696514843",
+    "symbol": "DQUICK",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0xf287d97b6345bad3d88856b26fb7c0ab3f2c7976": {
+    "assetId": "eip155:137/erc20:0xf287d97b6345bad3d88856b26fb7c0ab3f2c7976",
+    "chainId": "eip155:137",
+    "name": "Index Coop   MATIC 2x Flexible Leverage",
+    "precision": 18,
+    "color": "#4E1284",
+    "icon": "https://assets.coingecko.com/coins/images/23388/thumb/MATIC2x-FLI.png?1696522602",
+    "symbol": "MATIC2X-FLI-P",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0xf2ae0038696774d65e67892c9d301c5f2cbbda58": {
+    "assetId": "eip155:137/erc20:0xf2ae0038696774d65e67892c9d301c5f2cbbda58",
+    "chainId": "eip155:137",
+    "name": "CargoX on Polygon",
+    "precision": 18,
+    "color": "#DFF4C4",
+    "icon": "https://assets.coingecko.com/coins/images/2580/thumb/cargox.png?1696503384",
+    "symbol": "CXO",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0xf2da37643c25ca14291c2a69f51423ed9b7ff4b0": {
+    "assetId": "eip155:137/erc20:0xf2da37643c25ca14291c2a69f51423ed9b7ff4b0",
+    "chainId": "eip155:137",
+    "name": "Farmsent",
+    "precision": 18,
+    "color": "#DCCABD",
+    "icon": "https://assets.coingecko.com/coins/images/32241/thumb/FARMS.png?1696952898",
+    "symbol": "FARMS",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0xf2f77fe7b8e66571e0fca7104c4d670bf1c8d722": {
+    "assetId": "eip155:137/erc20:0xf2f77fe7b8e66571e0fca7104c4d670bf1c8d722",
+    "chainId": "eip155:137",
+    "name": "Jarvis Brazilian Real on Polygon",
+    "precision": 18,
+    "color": "#E7D821",
+    "icon": "https://assets.coingecko.com/coins/images/31446/thumb/03674260-1AE8-44C7-A78A-B44686BA1CD5.png?1696530260",
+    "symbol": "JBRL",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0xf328b73b6c685831f238c30a23fc19140cb4d8fc": {
+    "assetId": "eip155:137/erc20:0xf328b73b6c685831f238c30a23fc19140cb4d8fc",
+    "chainId": "eip155:137",
+    "name": "Across Protocol on Polygon",
+    "precision": 18,
+    "color": "#6BF9D9",
+    "icon": "https://assets.coingecko.com/coins/images/28161/thumb/across-200x200.png?1696527165",
+    "symbol": "ACX",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0xf329e36c7bf6e5e86ce2150875a84ce77f477375": {
+    "assetId": "eip155:137/erc20:0xf329e36c7bf6e5e86ce2150875a84ce77f477375",
+    "chainId": "eip155:137",
+    "name": "Aave v3 AAVE on Polygon",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/32887/thumb/aave.png?1699773604",
+    "symbol": "AAAVE",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0xf401e2c1ce8f252947b60bfb92578f84217a1545": {
+    "assetId": "eip155:137/erc20:0xf401e2c1ce8f252947b60bfb92578f84217a1545",
+    "chainId": "eip155:137",
+    "name": "Arch Balanced Portfolio",
+    "precision": 18,
+    "color": "#9C9CAC",
+    "icon": "https://assets.coingecko.com/coins/images/30639/thumb/ABAL.png?1696529511",
+    "symbol": "ABAL",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0xf46cb10e8c5fb9368bbf497a3176b80c0af66d44": {
+    "assetId": "eip155:137/erc20:0xf46cb10e8c5fb9368bbf497a3176b80c0af66d44",
+    "chainId": "eip155:137",
+    "name": "Vortex Protocol",
+    "precision": 11,
+    "color": "#9546FC",
+    "icon": "https://assets.coingecko.com/coins/images/28122/thumb/vp.png?1696527130",
+    "symbol": "VP",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0xf4b0903774532aee5ee567c02aab681a81539e92": {
+    "assetId": "eip155:137/erc20:0xf4b0903774532aee5ee567c02aab681a81539e92",
+    "chainId": "eip155:137",
+    "name": "Gaj Finance on Polygon",
+    "precision": 18,
+    "color": "#E0D2D6",
+    "icon": "https://assets.coingecko.com/coins/images/15257/thumb/logo200x200.png?1696514910",
+    "symbol": "GAJ",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0xf4bb0ed25ac7bcc9c327b88bac5ca288a08ec41e": {
+    "assetId": "eip155:137/erc20:0xf4bb0ed25ac7bcc9c327b88bac5ca288a08ec41e",
+    "chainId": "eip155:137",
+    "name": "Rari Governance on Polygon",
+    "precision": 18,
+    "color": "#151515",
+    "icon": "https://assets.coingecko.com/coins/images/12900/thumb/Rari_Logo_Transparent.png?1696512688",
+    "symbol": "RGT",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0xf4c83080e80ae530d6f8180572cbbf1ac9d5d435": {
+    "assetId": "eip155:137/erc20:0xf4c83080e80ae530d6f8180572cbbf1ac9d5d435",
+    "chainId": "eip155:137",
+    "name": "BlockWallet on Polygon",
+    "precision": 18,
+    "color": "#D0D0D0",
+    "icon": "https://assets.coingecko.com/coins/images/14209/thumb/Group_121417608.png?1696513925",
+    "symbol": "BLANK",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0xf501dd45a1198c2e1b5aef5314a68b9006d842e0": {
+    "assetId": "eip155:137/erc20:0xf501dd45a1198c2e1b5aef5314a68b9006d842e0",
+    "chainId": "eip155:137",
+    "name": "mStable Governance  Meta on Polygon",
+    "precision": 18,
+    "color": "#040404",
+    "icon": "https://assets.coingecko.com/coins/images/11846/thumb/mStable.png?1696511717",
+    "symbol": "MTA",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0xf50d05a1402d0adafa880d36050736f9f6ee7dee": {
+    "assetId": "eip155:137/erc20:0xf50d05a1402d0adafa880d36050736f9f6ee7dee",
+    "chainId": "eip155:137",
+    "name": "Instadapp on Polygon",
+    "precision": 18,
+    "color": "#F1F9F4",
+    "icon": "https://assets.coingecko.com/coins/images/14688/thumb/30hFM0-n_400x400.jpg?1696514361",
+    "symbol": "INST",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0xf521d590fb1e0b432fd0e020cdbd6c6397d652c2": {
+    "assetId": "eip155:137/erc20:0xf521d590fb1e0b432fd0e020cdbd6c6397d652c2",
+    "chainId": "eip155:137",
+    "name": "Parachute on Polygon",
+    "precision": 18,
+    "color": "#FBC3AF",
+    "icon": "https://assets.coingecko.com/coins/images/7590/thumb/Parachute_Logo.png?1696507850",
+    "symbol": "PAR",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0xf549db6b1e0b79c8f2730e7b7c6f2edca2cebaa6": {
+    "assetId": "eip155:137/erc20:0xf549db6b1e0b79c8f2730e7b7c6f2edca2cebaa6",
+    "chainId": "eip155:137",
+    "name": "impactMarket on Polygon",
+    "precision": 18,
+    "color": "#A6C0FC",
+    "icon": "https://assets.coingecko.com/coins/images/21907/thumb/PACT_Token_Ticker_Blue_2x.png?1696521258",
+    "symbol": "PACT",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0xf59036caebea7dc4b86638dfa2e3c97da9fccd40": {
+    "assetId": "eip155:137/erc20:0xf59036caebea7dc4b86638dfa2e3c97da9fccd40",
+    "chainId": "eip155:137",
+    "name": "Aave v3 wstETH on Polygon",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/32890/thumb/WSTETH.png?1699776336",
+    "symbol": "AWSTETH",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0xf5b9b4a0534cf508ab9953c64c5310dfa0b303a1": {
+    "assetId": "eip155:137/erc20:0xf5b9b4a0534cf508ab9953c64c5310dfa0b303a1",
+    "chainId": "eip155:137",
+    "name": "MultiBTC on Polygon",
+    "precision": 6,
+    "color": "#E7E5F7",
+    "icon": "https://assets.coingecko.com/coins/images/29495/thumb/MultiBTC.png?1696528438",
+    "symbol": "MULTIBTC",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0xf5ea626334037a2cf0155d49ea6462fddc6eff19": {
+    "assetId": "eip155:137/erc20:0xf5ea626334037a2cf0155d49ea6462fddc6eff19",
+    "chainId": "eip155:137",
+    "name": "PolygonFarm Finance",
+    "precision": 18,
+    "color": "#8445E5",
+    "icon": "https://assets.coingecko.com/coins/images/17364/thumb/Polygon-Farm-Finance-Logo-200x200.png?1696516915",
+    "symbol": "SPADE",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0xf629712180bef6f4c569b704e03d0acbe276eb6d": {
+    "assetId": "eip155:137/erc20:0xf629712180bef6f4c569b704e03d0acbe276eb6d",
+    "chainId": "eip155:137",
+    "name": "Wrapped Statera on Polygon",
+    "precision": 18,
+    "color": "#05BAF0",
+    "icon": "https://assets.coingecko.com/coins/images/13599/thumb/wsta_logo.png?1696513350",
+    "symbol": "WSTA",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0xf695f9499d18584363aeed0eba4c381d350f81c3": {
+    "assetId": "eip155:137/erc20:0xf695f9499d18584363aeed0eba4c381d350f81c3",
+    "chainId": "eip155:137",
+    "name": "Reality VR",
+    "precision": 9,
+    "color": "#4299B4",
+    "icon": "https://assets.coingecko.com/coins/images/29827/thumb/1F8AA46F-4EBD-439E-9496-512AE24DE06D.png?1696528755",
+    "symbol": "RVR",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0xf6d0762c645e873e5884e69bbcb2f074e6067a70": {
+    "assetId": "eip155:137/erc20:0xf6d0762c645e873e5884e69bbcb2f074e6067a70",
+    "chainId": "eip155:137",
+    "name": "JEDSTAR",
+    "precision": 18,
+    "color": "#595A5B",
+    "icon": "https://assets.coingecko.com/coins/images/18509/thumb/jedstar_logo_coingecko.png?1696517991",
+    "symbol": "JED",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0xf6d5d14c5684fa5853a3be6d217cad19c6ab2164": {
+    "assetId": "eip155:137/erc20:0xf6d5d14c5684fa5853a3be6d217cad19c6ab2164",
+    "chainId": "eip155:137",
+    "name": "xMATIC",
+    "precision": 18,
+    "color": "#30244F",
+    "icon": "https://assets.coingecko.com/coins/images/28333/thumb/XMATIC.png?1696527339",
+    "symbol": "XMATIC",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0xf6f85b3f9fd581c2ee717c404f7684486f057f95": {
+    "assetId": "eip155:137/erc20:0xf6f85b3f9fd581c2ee717c404f7684486f057f95",
+    "chainId": "eip155:137",
+    "name": "Nord Finance on Polygon",
+    "precision": 18,
+    "color": "#E1F6F3",
+    "icon": "https://assets.coingecko.com/coins/images/13630/thumb/nord.jpg?1696513378",
+    "symbol": "NORD",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0xf796969fa47fb0748c80b8b153cbb895e88cbd54": {
+    "assetId": "eip155:137/erc20:0xf796969fa47fb0748c80b8b153cbb895e88cbd54",
+    "chainId": "eip155:137",
+    "name": "Ocavu Network",
+    "precision": 18,
+    "color": "#B799E9",
+    "icon": "https://assets.coingecko.com/coins/images/25781/thumb/ocavu.png?1696524868",
+    "symbol": "OCAVU",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0xf868939ee81f04f463010bc52eab91c0839ef08c": {
+    "assetId": "eip155:137/erc20:0xf868939ee81f04f463010bc52eab91c0839ef08c",
+    "chainId": "eip155:137",
+    "name": "Attack Wagon",
+    "precision": 18,
+    "color": "#F8E6D0",
+    "icon": "https://assets.coingecko.com/coins/images/21333/thumb/attack.PNG?1696520700",
+    "symbol": "ATK",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0xf88332547c680f755481bf489d890426248bb275": {
+    "assetId": "eip155:137/erc20:0xf88332547c680f755481bf489d890426248bb275",
+    "chainId": "eip155:137",
+    "name": "inSure DeFi on Polygon",
+    "precision": 18,
+    "color": "#E4E0E9",
+    "icon": "https://assets.coingecko.com/coins/images/10354/thumb/logo-grey-circle.png?1696510355",
+    "symbol": "SURE",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0xf8f9efc0db77d8881500bb06ff5d6abc3070e695": {
+    "assetId": "eip155:137/erc20:0xf8f9efc0db77d8881500bb06ff5d6abc3070e695",
+    "chainId": "eip155:137",
+    "name": "Synapse on Polygon",
+    "precision": 18,
+    "color": "#7A389C",
+    "icon": "https://assets.coingecko.com/coins/images/18024/thumb/synapse_social_icon.png?1696517540",
+    "symbol": "SYN",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0xf972daced7c6b03223710c11413036d17eb298f6": {
+    "assetId": "eip155:137/erc20:0xf972daced7c6b03223710c11413036d17eb298f6",
+    "chainId": "eip155:137",
+    "name": "Impermax on Polygon",
+    "precision": 18,
+    "color": "#29A29A",
+    "icon": "https://assets.coingecko.com/coins/images/27606/thumb/IqwOmX-c_400x400.jpeg?1696526637",
+    "symbol": "IBEX",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0xf9c1f70f9bf57fad5f63c6e1e25c2e895f04c0a6": {
+    "assetId": "eip155:137/erc20:0xf9c1f70f9bf57fad5f63c6e1e25c2e895f04c0a6",
+    "chainId": "eip155:137",
+    "name": "DeltaHub Community",
+    "precision": 18,
+    "color": "#04446C",
+    "icon": "https://assets.coingecko.com/coins/images/12656/thumb/DHC_Transparent_200x200.png?1696512463",
+    "symbol": "DHC",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0xf9cea445c2ac1668f50caa2c2924f93606a4a37d": {
+    "assetId": "eip155:137/erc20:0xf9cea445c2ac1668f50caa2c2924f93606a4a37d",
+    "chainId": "eip155:137",
+    "name": "Calvaria  DoE on Polygon",
+    "precision": 18,
+    "color": "#040404",
+    "icon": "https://assets.coingecko.com/coins/images/28817/thumb/icon200x200.png?1696527793",
+    "symbol": "RIA",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0xf9d3d8b25b95bcda979025b74fdfa7ac3f380f9f": {
+    "assetId": "eip155:137/erc20:0xf9d3d8b25b95bcda979025b74fdfa7ac3f380f9f",
+    "chainId": "eip155:137",
+    "name": "Cookies Protocol on Polygon",
+    "precision": 18,
+    "color": "#CBA45B",
+    "icon": "https://assets.coingecko.com/coins/images/28432/thumb/IMG_20221207_200805_897.jpg?1696527429",
+    "symbol": "CP",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0xfa3c05c2023918a4324fde7163591fe6bebd1692": {
+    "assetId": "eip155:137/erc20:0xfa3c05c2023918a4324fde7163591fe6bebd1692",
+    "chainId": "eip155:137",
+    "name": "Cresio",
+    "precision": 18,
+    "color": "#E9DEC9",
+    "icon": "https://assets.coingecko.com/coins/images/8032/thumb/logoXCRE.png?1696508254",
+    "symbol": "XCRE",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0xfa5d5dd2517ee9c1419534a16b132adde2e3d948": {
+    "assetId": "eip155:137/erc20:0xfa5d5dd2517ee9c1419534a16b132adde2e3d948",
+    "chainId": "eip155:137",
+    "name": "ULTRON on Polygon",
+    "precision": 18,
+    "color": "#E9E2F4",
+    "icon": "https://assets.coingecko.com/coins/images/26977/thumb/ULTRON-Profile-Pic.jpg?1696526031",
+    "symbol": "ULX",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0xfa68fb4628dff1028cfec22b4162fccd0d45efb6": {
+    "assetId": "eip155:137/erc20:0xfa68fb4628dff1028cfec22b4162fccd0d45efb6",
+    "chainId": "eip155:137",
+    "name": "Stader MaticX on Polygon",
+    "precision": 18,
+    "color": "#040413",
+    "icon": "https://assets.coingecko.com/coins/images/25383/thumb/maticx.png?1696524516",
+    "symbol": "MATICX",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0xfafa220145dfa5c3ec85b6fa8a75aee2451cde5e": {
+    "assetId": "eip155:137/erc20:0xfafa220145dfa5c3ec85b6fa8a75aee2451cde5e",
+    "chainId": "eip155:137",
+    "name": "Roobee on Polygon",
+    "precision": 18,
+    "color": "#94D424",
+    "icon": "https://assets.coingecko.com/coins/images/8791/thumb/Group_11.png?1696508946",
+    "symbol": "ROOBEE",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0xfb40b1efe90d4b786d2d9d9dc799b18bde92923b": {
+    "assetId": "eip155:137/erc20:0xfb40b1efe90d4b786d2d9d9dc799b18bde92923b",
+    "chainId": "eip155:137",
+    "name": "LIF3 LSHARE  OLD  on Polygon",
+    "precision": 18,
+    "color": "#B28E67",
+    "icon": "https://assets.coingecko.com/coins/images/26038/thumb/LSHARE.png?1696525119",
+    "symbol": "LSHARE",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0xfbd8a3b908e764dbcd51e27992464b4432a1132b": {
+    "assetId": "eip155:137/erc20:0xfbd8a3b908e764dbcd51e27992464b4432a1132b",
+    "chainId": "eip155:137",
+    "name": "Index Cooperative on Polygon",
+    "precision": 18,
+    "color": "#1D1D1D",
+    "icon": "https://assets.coingecko.com/coins/images/12729/thumb/index.png?1696512528",
+    "symbol": "INDEX",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0xfbe59ebf7a188045c87c4a65093ed1e50520408b": {
+    "assetId": "eip155:137/erc20:0xfbe59ebf7a188045c87c4a65093ed1e50520408b",
+    "chainId": "eip155:137",
+    "name": "Minnapad",
+    "precision": 18,
+    "color": "#0469FC",
+    "icon": "https://assets.coingecko.com/coins/images/31949/thumb/Minnapad-Logo_M_200x200.png?1696530755",
+    "symbol": "MINNA",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0xfc3559771aa5a0666420f2365cf66139fbf4b37f": {
+    "assetId": "eip155:137/erc20:0xfc3559771aa5a0666420f2365cf66139fbf4b37f",
+    "chainId": "eip155:137",
+    "name": "Stasis Network",
+    "precision": 18,
+    "color": "#251E1E",
+    "icon": "https://assets.coingecko.com/coins/images/30922/thumb/STS.png?1696529765",
+    "symbol": "STS",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0xfc40a4f89b410a1b855b5e205064a38fc29f5eb5": {
+    "assetId": "eip155:137/erc20:0xfc40a4f89b410a1b855b5e205064a38fc29f5eb5",
+    "chainId": "eip155:137",
+    "name": "rUSD on Polygon",
+    "precision": 18,
+    "color": "#193464",
+    "icon": "https://assets.coingecko.com/coins/images/16184/thumb/rUSD-Logo-200.png?1696515786",
+    "symbol": "RUSD",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0xfc77cc32e570baec16f69dded556a35811b5a6ce": {
+    "assetId": "eip155:137/erc20:0xfc77cc32e570baec16f69dded556a35811b5a6ce",
+    "chainId": "eip155:137",
+    "name": "Stackswap on Polygon",
+    "precision": 6,
+    "color": "#080808",
+    "icon": "https://assets.coingecko.com/coins/images/29727/thumb/22.png?1696528657",
+    "symbol": "STSW",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0xfca466f2fa8e667a517c9c6cfa99cf985be5d9b1": {
+    "assetId": "eip155:137/erc20:0xfca466f2fa8e667a517c9c6cfa99cf985be5d9b1",
+    "chainId": "eip155:137",
+    "name": "Saiyan PEPE",
+    "precision": 18,
+    "color": "#7852A0",
+    "icon": "https://assets.coingecko.com/coins/images/29994/thumb/spepe.png?1696528918",
+    "symbol": "SPEPE",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0xfcb54da3f4193435184f3f647467e12b50754575": {
+    "assetId": "eip155:137/erc20:0xfcb54da3f4193435184f3f647467e12b50754575",
+    "chainId": "eip155:137",
+    "name": "Smell",
+    "precision": 8,
+    "color": "#8390AE",
+    "icon": "https://assets.coingecko.com/coins/images/32191/thumb/SML.jpg?1696744491",
+    "symbol": "SML",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0xfcbb00df1d663eee58123946a30ab2138bf9eb2a": {
+    "assetId": "eip155:137/erc20:0xfcbb00df1d663eee58123946a30ab2138bf9eb2a",
+    "chainId": "eip155:137",
+    "name": "ClayStack Staked MATIC on Polygon",
+    "precision": 18,
+    "color": "#1C1422",
+    "icon": "https://assets.coingecko.com/coins/images/28352/thumb/csMatic.png?1696527356",
+    "symbol": "CSMATIC",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0xfd0cbddec28a93bb86b9db4a62258f5ef25fefde": {
+    "assetId": "eip155:137/erc20:0xfd0cbddec28a93bb86b9db4a62258f5ef25fefde",
+    "chainId": "eip155:137",
+    "name": "BITT on Polygon",
+    "precision": 18,
+    "color": "#F48C24",
+    "icon": "https://assets.coingecko.com/coins/images/13783/thumb/BITT_Logo_256pixels.png?1696513523",
+    "symbol": "BITT",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0xfd195a17e2a60d248a7148a919c5166ae907479a": {
+    "assetId": "eip155:137/erc20:0xfd195a17e2a60d248a7148a919c5166ae907479a",
+    "chainId": "eip155:137",
+    "name": "KOLNET",
+    "precision": 18,
+    "color": "#070626",
+    "icon": "https://assets.coingecko.com/coins/images/26064/thumb/Icon_color2.png?1696525149",
+    "symbol": "KOLNET",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0xfd290dab8ec58fb7e9c7ce6e36b9a5a1a90ec164": {
+    "assetId": "eip155:137/erc20:0xfd290dab8ec58fb7e9c7ce6e36b9a5a1a90ec164",
+    "chainId": "eip155:137",
+    "name": "Metalands",
+    "precision": 18,
+    "color": "#C8C8C8",
+    "icon": "https://assets.coingecko.com/coins/images/30609/thumb/pvp_token.png?1696529478",
+    "symbol": "PVP",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0xfd4959c06fbcc02250952daebf8e0fb38cf9fd8c": {
+    "assetId": "eip155:137/erc20:0xfd4959c06fbcc02250952daebf8e0fb38cf9fd8c",
+    "chainId": "eip155:137",
+    "name": "ZeroSwap on Polygon",
+    "precision": 18,
+    "color": "#0AA1C1",
+    "icon": "https://assets.coingecko.com/coins/images/12861/thumb/logo.?1696512650",
+    "symbol": "ZEE",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0xfdc26cda2d2440d0e83cd1dee8e8be48405806dc": {
+    "assetId": "eip155:137/erc20:0xfdc26cda2d2440d0e83cd1dee8e8be48405806dc",
+    "chainId": "eip155:137",
+    "name": "BTU Protocol on Polygon",
+    "precision": 18,
+    "color": "#9F82B3",
+    "icon": "https://assets.coingecko.com/coins/images/3697/thumb/btuprotocol.jpeg?1696504370",
+    "symbol": "BTU",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0xfe4546fefe124f30788c4cc1bb9aa6907a7987f9": {
+    "assetId": "eip155:137/erc20:0xfe4546fefe124f30788c4cc1bb9aa6907a7987f9",
+    "chainId": "eip155:137",
+    "name": "CelsiusX Wrapped ETH",
+    "precision": 18,
+    "color": "#F0E7EF",
+    "icon": "https://assets.coingecko.com/coins/images/23682/thumb/k6iYoed.png?1696522884",
+    "symbol": "CXETH",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0xfe457497a2a71bce1eb93ea9e6a685057dd93dee": {
+    "assetId": "eip155:137/erc20:0xfe457497a2a71bce1eb93ea9e6a685057dd93dee",
+    "chainId": "eip155:137",
+    "name": "BNSD Finance on Polygon",
+    "precision": 18,
+    "color": "#6A2BE2",
+    "icon": "https://assets.coingecko.com/coins/images/12368/thumb/bnsd.png?1696512193",
+    "symbol": "BNSD",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0xfe712251173a2cd5f5be2b46bb528328ea3565e1": {
+    "assetId": "eip155:137/erc20:0xfe712251173a2cd5f5be2b46bb528328ea3565e1",
+    "chainId": "eip155:137",
+    "name": "Metaverse Index on Polygon",
+    "precision": 18,
+    "color": "#B1BAE5",
+    "icon": "https://assets.coingecko.com/coins/images/14684/thumb/MVI_logo.png?1696514357",
+    "symbol": "MVI",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0xfed16c746cb5bfed009730f9e3e6a673006105c7": {
+    "assetId": "eip155:137/erc20:0xfed16c746cb5bfed009730f9e3e6a673006105c7",
+    "chainId": "eip155:137",
+    "name": "Digital Reserve Currency on Polygon",
+    "precision": 0,
+    "color": "#CDCDCD",
+    "icon": "https://assets.coingecko.com/coins/images/12802/thumb/DRC_Logo.jpg?1696512595",
+    "symbol": "DRC",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0xff22c94ffb6bb5d1df18beb5fd1dfe7583d3b214": {
+    "assetId": "eip155:137/erc20:0xff22c94ffb6bb5d1df18beb5fd1dfe7583d3b214",
+    "chainId": "eip155:137",
+    "name": "IPMB",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/32952/thumb/200_x_200.png?1699936302",
+    "symbol": "IPMB",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0xff2382bd52efacef02cc895bcbfc4618608aa56f": {
+    "assetId": "eip155:137/erc20:0xff2382bd52efacef02cc895bcbfc4618608aa56f",
+    "chainId": "eip155:137",
+    "name": "OneRare",
+    "precision": 18,
+    "color": "#090909",
+    "icon": "https://assets.coingecko.com/coins/images/19696/thumb/Thumbnail_-_500_px_-_Black.png?1696519123",
+    "symbol": "ORARE",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0xff76c0b48363a7c7307868a81548d340049b0023": {
+    "assetId": "eip155:137/erc20:0xff76c0b48363a7c7307868a81548d340049b0023",
+    "chainId": "eip155:137",
+    "name": "Derby Stars RUN",
+    "precision": 18,
+    "color": "#F47921",
+    "icon": "https://assets.coingecko.com/coins/images/31203/thumb/download.png?1696530030",
+    "symbol": "DSRUN",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0xffa188493c15dfaf2c206c97d8633377847b6a52": {
+    "assetId": "eip155:137/erc20:0xffa188493c15dfaf2c206c97d8633377847b6a52",
+    "chainId": "eip155:137",
+    "name": "Wefi Finance on Polygon",
+    "precision": 18,
+    "color": "#1C3CF4",
+    "icon": "https://assets.coingecko.com/coins/images/30540/thumb/wefi.png?1696529412",
+    "symbol": "WEFI",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0xffb89d7637cf4860884ed48b57ae5562bf64e10f": {
+    "assetId": "eip155:137/erc20:0xffb89d7637cf4860884ed48b57ae5562bf64e10f",
+    "chainId": "eip155:137",
+    "name": "Pika on Polygon",
+    "precision": 18,
+    "color": "#843C05",
+    "icon": "https://assets.coingecko.com/coins/images/14419/thumb/pika-logo-2022-nbg.png?1696514110",
+    "symbol": "PIKA",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/erc20:0xffc4b25557bb4327d437c3b3ead6b2b15fab391a": {
+    "assetId": "eip155:137/erc20:0xffc4b25557bb4327d437c3b3ead6b2b15fab391a",
+    "chainId": "eip155:137",
+    "name": "Duel Network",
+    "precision": 18,
+    "color": "#141414",
+    "icon": "https://assets.coingecko.com/coins/images/30210/thumb/duel.jpg?1696529120",
+    "symbol": "DUEL",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:137/slip44:60": {
+    "assetId": "eip155:137/slip44:60",
+    "chainId": "eip155:137",
+    "name": "Polygon",
+    "networkName": "Polygon",
+    "symbol": "MATIC",
+    "precision": 18,
+    "color": "#8f00ff",
+    "icon": "https://assets.coingecko.com/coins/images/4713/large/matic-token-icon.png?1624446912",
+    "explorer": "https://polygonscan.com/",
+    "explorerAddressLink": "https://polygonscan.com/address/",
+    "explorerTxLink": "https://polygonscan.com/tx/"
+  },
+  "eip155:42161/erc20:0x00e1724885473b63bce08a9f0a52f35b0979e35a": {
+    "assetId": "eip155:42161/erc20:0x00e1724885473b63bce08a9f0a52f35b0979e35a",
+    "chainId": "eip155:42161",
+    "name": "OATH on Arbitrum One",
+    "precision": 18,
+    "color": "#0E0E0E",
+    "icon": "https://assets.coingecko.com/coins/images/24075/thumb/OATH.png?1698051304",
+    "symbol": "OATH",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0x02150e97271fdc0d6e3a16d9094a0948266f07dd": {
+    "assetId": "eip155:42161/erc20:0x02150e97271fdc0d6e3a16d9094a0948266f07dd",
+    "chainId": "eip155:42161",
+    "name": "Hamachi Finance",
+    "precision": 18,
+    "color": "#D64567",
+    "icon": "https://assets.coingecko.com/coins/images/28783/thumb/icon.png?1696527762",
+    "symbol": "HAMI",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0x031d35296154279dc1984dcd93e392b1f946737b": {
+    "assetId": "eip155:42161/erc20:0x031d35296154279dc1984dcd93e392b1f946737b",
+    "chainId": "eip155:42161",
+    "name": "Cap on Arbitrum One",
+    "precision": 18,
+    "color": "#38C03C",
+    "icon": "https://assets.coingecko.com/coins/images/11775/thumb/cap.png?1696511654",
+    "symbol": "CAP",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0x033f193b3fceb22a440e89a2867e8fee181594d9": {
+    "assetId": "eip155:42161/erc20:0x033f193b3fceb22a440e89a2867e8fee181594d9",
+    "chainId": "eip155:42161",
+    "name": "Rodeo Finance",
+    "precision": 18,
+    "color": "#F49C0C",
+    "icon": "https://assets.coingecko.com/coins/images/30905/thumb/RDO_ticker_logo_-_color-01-01.png?1696529750",
+    "symbol": "RDO",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0x0341c0c0ec423328621788d4854119b97f44e391": {
+    "assetId": "eip155:42161/erc20:0x0341c0c0ec423328621788d4854119b97f44e391",
+    "chainId": "eip155:42161",
+    "name": "Silo Finance on Arbitrum One",
+    "precision": 18,
+    "color": "#B4B4B4",
+    "icon": "https://assets.coingecko.com/coins/images/21454/thumb/y0iYKZOv_400x400.png?1696520816",
+    "symbol": "SILO",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0x040d1edc9569d4bab2d15287dc5a4f10f56a56b8": {
+    "assetId": "eip155:42161/erc20:0x040d1edc9569d4bab2d15287dc5a4f10f56a56b8",
+    "chainId": "eip155:42161",
+    "name": "Balancer on Arbitrum One",
+    "precision": 18,
+    "color": "#040404",
+    "icon": "https://assets.coingecko.com/coins/images/11683/thumb/Balancer.png?1696511572",
+    "symbol": "BAL",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0x05d35769a222affd6185e20f3f3676abde56c25f": {
+    "assetId": "eip155:42161/erc20:0x05d35769a222affd6185e20f3f3676abde56c25f",
+    "chainId": "eip155:42161",
+    "name": "Unlimited Network Token",
+    "precision": 18,
+    "color": "#7F90EA",
+    "icon": "https://assets.coingecko.com/coins/images/30829/thumb/_UWU_new_logo.png?1696529682",
+    "symbol": "UWU",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0x077bc655c8d81b7de71c79318d0eb8f987e12820": {
+    "assetId": "eip155:42161/erc20:0x077bc655c8d81b7de71c79318d0eb8f987e12820",
+    "chainId": "eip155:42161",
+    "name": "Yuri",
+    "precision": 18,
+    "color": "#060606",
+    "icon": "https://assets.coingecko.com/coins/images/31032/thumb/Yuri_logo_200x200.jpg?1696529868",
+    "symbol": "YURI",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0x078f358208685046a11c85e8ad32895ded33a249": {
+    "assetId": "eip155:42161/erc20:0x078f358208685046a11c85e8ad32895ded33a249",
+    "chainId": "eip155:42161",
+    "name": "Aave v3 WBTC on Arbitrum One",
+    "precision": 8,
+    "color": "#E48A51",
+    "icon": "https://assets.coingecko.com/coins/images/32883/thumb/wbtc.png?1699719908",
+    "symbol": "AWBTC",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0x079504b86d38119f859c4194765029f692b7b7aa": {
+    "assetId": "eip155:42161/erc20:0x079504b86d38119f859c4194765029f692b7b7aa",
+    "chainId": "eip155:42161",
+    "name": "Lyra Finance on Arbitrum One",
+    "precision": 18,
+    "color": "#3BD299",
+    "icon": "https://assets.coingecko.com/coins/images/21490/thumb/Add-a-heading-26.png?1696520850",
+    "symbol": "LYRA",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0x07dd5beaffb65b8ff2e575d500bdf324a05295dc": {
+    "assetId": "eip155:42161/erc20:0x07dd5beaffb65b8ff2e575d500bdf324a05295dc",
+    "chainId": "eip155:42161",
+    "name": "ArbiPad on Arbitrum One",
+    "precision": 18,
+    "color": "#2871B1",
+    "icon": "https://assets.coingecko.com/coins/images/30275/thumb/ARBI_Logo.png?1696529181",
+    "symbol": "ARBI",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0x07e49d5de43dda6162fa28d24d5935c151875283": {
+    "assetId": "eip155:42161/erc20:0x07e49d5de43dda6162fa28d24d5935c151875283",
+    "chainId": "eip155:42161",
+    "name": "CVI on Arbitrum One",
+    "precision": 18,
+    "color": "#D6E6F2",
+    "icon": "https://assets.coingecko.com/coins/images/13875/thumb/GOVI.png?1696513619",
+    "symbol": "GOVI",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0x080f6aed32fc474dd5717105dba5ea57268f46eb": {
+    "assetId": "eip155:42161/erc20:0x080f6aed32fc474dd5717105dba5ea57268f46eb",
+    "chainId": "eip155:42161",
+    "name": "Synapse on Arbitrum One",
+    "precision": 18,
+    "color": "#7A389C",
+    "icon": "https://assets.coingecko.com/coins/images/18024/thumb/synapse_social_icon.png?1696517540",
+    "symbol": "SYN",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0x088cd8f5ef3652623c22d48b1605dcfe860cd704": {
+    "assetId": "eip155:42161/erc20:0x088cd8f5ef3652623c22d48b1605dcfe860cd704",
+    "chainId": "eip155:42161",
+    "name": "Vela Token",
+    "precision": 18,
+    "color": "#25B8FC",
+    "icon": "https://assets.coingecko.com/coins/images/28739/thumb/VELA_logo_-_no_background.png?1696527719",
+    "symbol": "VELA",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0x09090e22118b375f2c7b95420c04414e4bf68e1a": {
+    "assetId": "eip155:42161/erc20:0x09090e22118b375f2c7b95420c04414e4bf68e1a",
+    "chainId": "eip155:42161",
+    "name": "Beluga Protocol",
+    "precision": 18,
+    "color": "#3CC4DC",
+    "icon": "https://assets.coingecko.com/coins/images/30307/thumb/logo200-8.png?1696529210",
+    "symbol": "BELA",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0x09199d9a5f4448d0848e4395d065e1ad9c4a1f74": {
+    "assetId": "eip155:42161/erc20:0x09199d9a5f4448d0848e4395d065e1ad9c4a1f74",
+    "chainId": "eip155:42161",
+    "name": "Bonk on Arbitrum One",
+    "precision": 5,
+    "color": "#ED960F",
+    "icon": "https://assets.coingecko.com/coins/images/28600/thumb/bonk.jpg?1696527587",
+    "symbol": "BONK",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0x097bf766e427f5ccd306f21ba05632e0be849b0e": {
+    "assetId": "eip155:42161/erc20:0x097bf766e427f5ccd306f21ba05632e0be849b0e",
+    "chainId": "eip155:42161",
+    "name": "Stably USDS on Arbitrum One",
+    "precision": 6,
+    "color": "#ECF2FC",
+    "icon": "https://assets.coingecko.com/coins/images/7596/thumb/stably.png?1696507855",
+    "symbol": "USDS",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0x09e18590e8f76b6cf471b3cd75fe1a1a9d2b2c2b": {
+    "assetId": "eip155:42161/erc20:0x09e18590e8f76b6cf471b3cd75fe1a1a9d2b2c2b",
+    "chainId": "eip155:42161",
+    "name": "ArbDoge AI",
+    "precision": 6,
+    "color": "#D7EBEB",
+    "icon": "https://assets.coingecko.com/coins/images/29852/thumb/photo_2023-04-18_14-25-28.jpg?1696528778",
+    "symbol": "AIDOGE",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0x0a1694716de67c98f61942b2cab7df7fe659c87a": {
+    "assetId": "eip155:42161/erc20:0x0a1694716de67c98f61942b2cab7df7fe659c87a",
+    "chainId": "eip155:42161",
+    "name": "Crescentswap Moonlight",
+    "precision": 18,
+    "color": "#230433",
+    "icon": "https://assets.coingecko.com/coins/images/30687/thumb/Untitled_design_%282%29.png?1696529556",
+    "symbol": "MNLT",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0x0a3bb08b3a15a19b4de82f8acfc862606fb69a2d": {
+    "assetId": "eip155:42161/erc20:0x0a3bb08b3a15a19b4de82f8acfc862606fb69a2d",
+    "chainId": "eip155:42161",
+    "name": "iZUMi Bond USD on Arbitrum One",
+    "precision": 18,
+    "color": "#844CFC",
+    "icon": "https://assets.coingecko.com/coins/images/25388/thumb/iusd-logo-symbol-10k%E5%A4%A7%E5%B0%8F.png?1696524521",
+    "symbol": "IUSD",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0x0ae1bb2bc04308765a6b1215236cea8cfee8cab9": {
+    "assetId": "eip155:42161/erc20:0x0ae1bb2bc04308765a6b1215236cea8cfee8cab9",
+    "chainId": "eip155:42161",
+    "name": "TDEX Token on Arbitrum One",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/32725/thumb/20220929-180435.png?1699018453",
+    "symbol": "TT",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0x0ae38f7e10a43b5b2fb064b42a2f4514cba909ef": {
+    "assetId": "eip155:42161/erc20:0x0ae38f7e10a43b5b2fb064b42a2f4514cba909ef",
+    "chainId": "eip155:42161",
+    "name": "unshETH Ether on Arbitrum One",
+    "precision": 18,
+    "color": "#04D7F6",
+    "icon": "https://assets.coingecko.com/coins/images/30365/thumb/ush.png?1696529262",
+    "symbol": "UNSHETH",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0x0b5c6ac0e1082f2d81e829b8c2957886e6bb3994": {
+    "assetId": "eip155:42161/erc20:0x0b5c6ac0e1082f2d81e829b8c2957886e6bb3994",
+    "chainId": "eip155:42161",
+    "name": "Prism",
+    "precision": 18,
+    "color": "#50D1E0",
+    "icon": "https://assets.coingecko.com/coins/images/31081/thumb/download_%2818%29.png?1696529914",
+    "symbol": "PRISM",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0x0b63c61bba4a876a6eb8b5e596800f7649a9b71e": {
+    "assetId": "eip155:42161/erc20:0x0b63c61bba4a876a6eb8b5e596800f7649a9b71e",
+    "chainId": "eip155:42161",
+    "name": "Sector",
+    "precision": 18,
+    "color": "#E9E7E8",
+    "icon": "https://assets.coingecko.com/coins/images/29672/thumb/ZVLrbTWD_400x400.jpg?1696528607",
+    "symbol": "SECT",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0x0c880f6761f1af8d9aa9c466984b80dab9a8c9e8": {
+    "assetId": "eip155:42161/erc20:0x0c880f6761f1af8d9aa9c466984b80dab9a8c9e8",
+    "chainId": "eip155:42161",
+    "name": "Pendle on Arbitrum One",
+    "precision": 18,
+    "color": "#D4D4DC",
+    "icon": "https://assets.coingecko.com/coins/images/15069/thumb/Pendle_Logo_Normal-03.png?1696514728",
+    "symbol": "PENDLE",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0x0cbd6fadcf8096cc9a43d90b45f65826102e3ece": {
+    "assetId": "eip155:42161/erc20:0x0cbd6fadcf8096cc9a43d90b45f65826102e3ece",
+    "chainId": "eip155:42161",
+    "name": "CheckDot on Arbitrum One",
+    "precision": 18,
+    "color": "#3CEC94",
+    "icon": "https://assets.coingecko.com/coins/images/20370/thumb/token-200x200_%281%29.png?1696519781",
+    "symbol": "CDT",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0x0d111e482146fe9ac9ca3a65d92e65610bbc1ba6": {
+    "assetId": "eip155:42161/erc20:0x0d111e482146fe9ac9ca3a65d92e65610bbc1ba6",
+    "chainId": "eip155:42161",
+    "name": "plsSPA",
+    "precision": 18,
+    "color": "#040404",
+    "icon": "https://assets.coingecko.com/coins/images/30552/thumb/plsSPA.png?1696529423",
+    "symbol": "PLSSPA",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0x0d81e50bc677fa67341c44d7eaa9228dee64a4e1": {
+    "assetId": "eip155:42161/erc20:0x0d81e50bc677fa67341c44d7eaa9228dee64a4e1",
+    "chainId": "eip155:42161",
+    "name": "BarnBridge on Arbitrum One",
+    "precision": 18,
+    "color": "#F4F2EE",
+    "icon": "https://assets.coingecko.com/coins/images/12811/thumb/barnbridge.jpg?1696512604",
+    "symbol": "BOND",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0x0d8f04522c5792c7378e39c92ab348f315f4fc4f": {
+    "assetId": "eip155:42161/erc20:0x0d8f04522c5792c7378e39c92ab348f315f4fc4f",
+    "chainId": "eip155:42161",
+    "name": "AIENGLISH",
+    "precision": 18,
+    "color": "#D5C1CB",
+    "icon": "https://assets.coingecko.com/coins/images/30291/thumb/200.png?1696529196",
+    "symbol": "AIEN",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0x0f96d8c1277bd75a251238af952a7a99db1320e3": {
+    "assetId": "eip155:42161/erc20:0x0f96d8c1277bd75a251238af952a7a99db1320e3",
+    "chainId": "eip155:42161",
+    "name": "GMCash Share",
+    "precision": 18,
+    "color": "#324D49",
+    "icon": "https://assets.coingecko.com/coins/images/29730/thumb/logoABS.ac04548d_2.png?1696528660",
+    "symbol": "GSHARE",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0x10010078a54396f62c96df8532dc2b4847d47ed3": {
+    "assetId": "eip155:42161/erc20:0x10010078a54396f62c96df8532dc2b4847d47ed3",
+    "chainId": "eip155:42161",
+    "name": "Hundred Finance on Arbitrum One",
+    "precision": 18,
+    "color": "#8A8E90",
+    "icon": "https://assets.coingecko.com/coins/images/18445/thumb/hnd.PNG?1696517933",
+    "symbol": "HND",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0x10393c20975cf177a3513071bc110f7962cd67da": {
+    "assetId": "eip155:42161/erc20:0x10393c20975cf177a3513071bc110f7962cd67da",
+    "chainId": "eip155:42161",
+    "name": "Jones DAO",
+    "precision": 18,
+    "color": "#F1E7DD",
+    "icon": "https://assets.coingecko.com/coins/images/23290/thumb/3c8c2ed8-afb3-4b67-9937-5493acd88b50.jpg?1696522508",
+    "symbol": "JONES",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0x10663b695b8f75647bd3ff0ff609e16d35bbd1ec": {
+    "assetId": "eip155:42161/erc20:0x10663b695b8f75647bd3ff0ff609e16d35bbd1ec",
+    "chainId": "eip155:42161",
+    "name": "AmpliFi DAO on Arbitrum One",
+    "precision": 18,
+    "color": "#FC542C",
+    "icon": "https://assets.coingecko.com/coins/images/29137/thumb/original-icon-transparent.png?1696528098",
+    "symbol": "AGG",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0x115d8bf0a53e751f8a472f88d587944ec1c8ca6d": {
+    "assetId": "eip155:42161/erc20:0x115d8bf0a53e751f8a472f88d587944ec1c8ca6d",
+    "chainId": "eip155:42161",
+    "name": "pTokens BTC on Arbitrum One",
+    "precision": 18,
+    "color": "#F17069",
+    "icon": "https://assets.coingecko.com/coins/images/25861/thumb/wMTpRljt_400x400.png?1696524945",
+    "symbol": "PBTC",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0x118346c2bb9d24412ed58c53bf9bb6f61a20d7ec": {
+    "assetId": "eip155:42161/erc20:0x118346c2bb9d24412ed58c53bf9bb6f61a20d7ec",
+    "chainId": "eip155:42161",
+    "name": "Dinari PLD",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/32980/thumb/Frame_16189.png?1700091507",
+    "symbol": "PLDD",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0x11bbf12363dc8375b78d2719395d505f52a02f68": {
+    "assetId": "eip155:42161/erc20:0x11bbf12363dc8375b78d2719395d505f52a02f68",
+    "chainId": "eip155:42161",
+    "name": "Router Protocol on Arbitrum One",
+    "precision": 18,
+    "color": "#363555",
+    "icon": "https://assets.coingecko.com/coins/images/13709/thumb/route_token_200x200-19.png?1696513454",
+    "symbol": "ROUTE",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0x11bf4f05eb28b802ed3ab672594decb20ffe2313": {
+    "assetId": "eip155:42161/erc20:0x11bf4f05eb28b802ed3ab672594decb20ffe2313",
+    "chainId": "eip155:42161",
+    "name": "Aurory",
+    "precision": 9,
+    "color": "#E8BDE3",
+    "icon": "https://assets.coingecko.com/coins/images/19324/thumb/Ico_Blanc.png?1696518766",
+    "symbol": "AURY",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0x11cdb42b0eb46d95f990bedd4695a6e3fa034978": {
+    "assetId": "eip155:42161/erc20:0x11cdb42b0eb46d95f990bedd4695a6e3fa034978",
+    "chainId": "eip155:42161",
+    "name": "Curve DAO on Arbitrum One",
+    "precision": 18,
+    "color": "#26CFD5",
+    "icon": "https://assets.coingecko.com/coins/images/12124/thumb/Curve.png?1696511967",
+    "symbol": "CRV",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0x11f98c7e42a367dab4f200d2fdc460fb445ce9a8": {
+    "assetId": "eip155:42161/erc20:0x11f98c7e42a367dab4f200d2fdc460fb445ce9a8",
+    "chainId": "eip155:42161",
+    "name": "SpartaDEX",
+    "precision": 18,
+    "color": "#C76C4D",
+    "icon": "https://assets.coingecko.com/coins/images/30836/thumb/SpartaDex_200x200.jpg?1696529694",
+    "symbol": "SPARTA",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0x123389c2f0e9194d9ba98c21e63c375b67614108": {
+    "assetId": "eip155:42161/erc20:0x123389c2f0e9194d9ba98c21e63c375b67614108",
+    "chainId": "eip155:42161",
+    "name": "EthereumMax on Arbitrum One",
+    "precision": 18,
+    "color": "#D0CCBD",
+    "icon": "https://assets.coingecko.com/coins/images/15540/thumb/EMAX-Coin-Final2000x.png?1696515181",
+    "symbol": "EMAX",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0x12f7cf4f2e3f87678ec5207fc920c815e31524df": {
+    "assetId": "eip155:42161/erc20:0x12f7cf4f2e3f87678ec5207fc920c815e31524df",
+    "chainId": "eip155:42161",
+    "name": "Dotlab",
+    "precision": 18,
+    "color": "#CEA7DD",
+    "icon": "https://assets.coingecko.com/coins/images/29488/thumb/dotlab.jpeg?1696528432",
+    "symbol": "DTL",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0x13278cd824d33a7adb9f0a9a84aca7c0d2deebf7": {
+    "assetId": "eip155:42161/erc20:0x13278cd824d33a7adb9f0a9a84aca7c0d2deebf7",
+    "chainId": "eip155:42161",
+    "name": "Tarot on Arbitrum One",
+    "precision": 18,
+    "color": "#E5E5E5",
+    "icon": "https://assets.coingecko.com/coins/images/31800/thumb/TAROT.jpg?1696530615",
+    "symbol": "TAROT",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0x13461c85887e85fdc942ac94c4d2699995ad1960": {
+    "assetId": "eip155:42161/erc20:0x13461c85887e85fdc942ac94c4d2699995ad1960",
+    "chainId": "eip155:42161",
+    "name": "CRDS",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/33084/thumb/cradles_icon.png?1700601703",
+    "symbol": "CRDS",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0x13ad51ed4f1b7e9dc168d8a00cb3f4ddd85efa60": {
+    "assetId": "eip155:42161/erc20:0x13ad51ed4f1b7e9dc168d8a00cb3f4ddd85efa60",
+    "chainId": "eip155:42161",
+    "name": "Lido DAO on Arbitrum One",
+    "precision": 18,
+    "color": "#EBB29E",
+    "icon": "https://assets.coingecko.com/coins/images/13573/thumb/Lido_DAO.png?1696513326",
+    "symbol": "LDO",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0x1426cf37caa89628c4da2864e40cf75e6d66ac6b": {
+    "assetId": "eip155:42161/erc20:0x1426cf37caa89628c4da2864e40cf75e6d66ac6b",
+    "chainId": "eip155:42161",
+    "name": "Relay Chain on Arbitrum One",
+    "precision": 18,
+    "color": "#0CA4EC",
+    "icon": "https://assets.coingecko.com/coins/images/17816/thumb/relay-logo-200.png?1696517336",
+    "symbol": "RELAY",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0x14e8687af6c94c7c68590bacf0f1d1e338f2862b": {
+    "assetId": "eip155:42161/erc20:0x14e8687af6c94c7c68590bacf0f1d1e338f2862b",
+    "chainId": "eip155:42161",
+    "name": "Firepot Finance",
+    "precision": 18,
+    "color": "#249CDC",
+    "icon": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAIAAAACACAMAAAD04JH5AAADAFBMVEUtN0gmmdj///8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACSuWY2AAABAHRSTlP/////AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAf6K/dgAAQItJREFUeNoBgEB/vwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgEBAQEBAQEBAQEBAQEBAgICAgICAgICAgICAgICAgICAgICAAAAAAAAAAAAAAAAAAACAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgEBAQEBAQECAgICAgICAgICAgICAgICAgIAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQEBAQEBAQEBAgICAgICAgICAgICAgICAgICAgICAwAAAAAAAAAAAAAAAAACAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMBAQEBAQECAgICAgICAgICAgICAgICAgIDAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQEBAQEBAQEBAgICAgICAgICAgICAgICAgICAgICAwAAAAAAAAAAAAAAAAACAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMBAQEBAQECAgICAgICAgICAgICAgICAgIDAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQEBAQEBAQEBAgICAgICAgICAgICAgICAgICAgICAwAAAAAAAAAAAAAAAAACAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMBAQEBAQECAgICAgICAgICAgICAgICAgIDAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQEBAQEBAQEBAgICAgICAgICAgICAgICAgICAgICAwAAAAAAAAAAAAAAAAACAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMBAQEBAQECAgICAgICAgICAgICAgICAgIDAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQEBAQEBAQEBAgICAgICAgICAgICAgICAgICAgICAwAAAAAAAAAAAAAAAAACAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMBAQEBAQECAgICAgICAgICAgICAgICAgIDAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQEBAQEBAQEBAgICAgICAgICAgICAgICAgICAgICAwAAAAAAAAAAAAAAAAACAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMBAQEBAQECAgICAgICAgICAgICAgICAgIDAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAQMDAwMDAwMDAwMDAwMDAwMDAwMDAgICAgICAgAAAAAAAAAAAwMDAwMDAwMDAwMDAwICAgICAgIDAwMDAwMDAwMDAwMDAwMBAQEBAQEBAwMDAwMDAwMDAwMDAwICAgIDAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgIDAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAICAgIDAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgIDAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAICAgIDAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgIDAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAICAgIDAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgIDAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAICAgIDAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgIDAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAICAgIDAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAgICAgICAgMAAAAAAAAAAAAAAAAAAAAAAAAAAAICAgICAgIDAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAICAgIDAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAgICAgICAgMAAAAAAAAAAAAAAAAAAAAAAAAAAAICAgICAgIDAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAICAgIDAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAgICAgICAgMAAAAAAAAAAAAAAAAAAAAAAAAAAAICAgICAgIDAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAICAgIDAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAgICAgICAgMAAAAAAAAAAAAAAAAAAAAAAAAAAAICAgICAgIDAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAICAgIDAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAgICAgICAgMAAAAAAAAAAAAAAAAAAAAAAAAAAAICAgICAgIDAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAICAgIDAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAgICAgICAgMAAAAAAAAAAAAAAAAAAAAAAAAAAAICAgICAgIDAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAICAgIDAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAgICAgICAgMAAAAAAAAAAAAAAAAAAAAAAAAAAAICAgICAgIDAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAICAgIDAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAgICAgICAgMAAAAAAAAAAAAAAAAAAAAAAAAAAAICAgICAgIDAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAICAgIDAgICAgICAgICAgICAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAgICAgICAgMAAAAAAAAAAAAAAAAAAAAAAAAAAAICAgICAgIDAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAICAgIDAgICAgICAgICAgICAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAgICAgICAgMAAAAAAAAAAAAAAAAAAAAAAAAAAAICAgICAgIDAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAICAgIDAgICAgICAgICAgICAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAgICAgICAgMAAAAAAAAAAAAAAAAAAAAAAAAAAAICAgICAgIDAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAICAgIDAgICAgICAgICAgICAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAgICAgICAgMAAAAAAAAAAAAAAAAAAAAAAAAAAAICAgICAgIDAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAICAgIDAgICAgICAgICAgICAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAgICAgICAgMAAAAAAAAAAAAAAAAAAAAAAAAAAAICAgICAgIDAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAICAgIDAgICAgICAgICAgICAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAgICAgICAgMAAAAAAAAAAAAAAAAAAAAAAAAAAAICAgICAgIDAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAICAgIDAgICAgICAgICAgICAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAgICAgICAgMAAAAAAAAAAAAAAAAAAAAAAAAAAAICAgICAgIDAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAICAgIDAAMDAwMDAwMDAwMDAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAgICAgICAgMAAAAAAAAAAAAAAAAAAAAAAAAAAAICAgICAgIDAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAICAgIDAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAgICAgICAgMAAAAAAAAAAAAAAAAAAAAAAAAAAAICAgICAgIDAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAICAgIDAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAgICAgICAgMAAAAAAAAAAAAAAAAAAAAAAAAAAAICAgICAgIDAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAICAgIDAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAgICAgICAgMAAAAAAAAAAAAAAAAAAAAAAAAAAAICAgICAgIDAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAICAgIDAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAgICAgICAgMAAAAAAAAAAAAAAAAAAAAAAAAAAAICAgICAgIDAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAICAgIDAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAgICAgICAgMAAAAAAAAAAAAAAAAAAAAAAAAAAAICAgICAgIDAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAICAgIDAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgIDAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAICAgIDAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgIDAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAICAgIDAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgIDAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAICAgIDAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgIDAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAICAgIDAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgIDAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAICAgIDAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgIDAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAICAgIDAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgIDAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAICAgIDAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgIDAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAICAgIDAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQEBAwMDAwMDAgICAgICAgICAgICAgICAgICAgICAAMDAwMDAwMAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgIDAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAICAgIDAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQEBAQEBAQEBAgICAgICAgICAgICAgICAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgIDAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAICAgIDAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQEBAQEBAQEBAgICAgICAgICAgICAgICAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgIDAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAICAgIDAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQEBAQEBAQEBAgICAgICAgICAgICAgICAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgIDAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAICAgIDAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQEBAQEBAQEBAgICAgICAgICAgICAgICAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgIDAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAICAgIDAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQEBAQEBAQEBAgICAgICAgICAgICAgICAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgIDAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAICAgIDAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQEBAQEBAQEBAgICAgICAgICAgICAgICAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgIDAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAICAgIDAAAAAAAAAAAAAAEBAQMDAwMDAwMBAQEBAQEBAQEBAQEBAQMDAwMDAwMDAwMDAwMDAwMDAwMDAwAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEDAwMDAwMDAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAADAwMDAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH+3LZ0BuaWoAAAAAElFTkSuQmCC",
+    "symbol": "HOTT",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0x154388a4650d63acc823e06ef9e47c1eddd3cbb2": {
+    "assetId": "eip155:42161/erc20:0x154388a4650d63acc823e06ef9e47c1eddd3cbb2",
+    "chainId": "eip155:42161",
+    "name": "Seneca",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/32852/thumb/200x200.png?1699663676",
+    "symbol": "SEN",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0x155f0dd04424939368972f4e1838687d6a831151": {
+    "assetId": "eip155:42161/erc20:0x155f0dd04424939368972f4e1838687d6a831151",
+    "chainId": "eip155:42161",
+    "name": "ArbiDoge",
+    "precision": 18,
+    "color": "#337DCB",
+    "icon": "https://assets.coingecko.com/coins/images/18333/thumb/Screen-Shot-2021-09-04-at-11-59-16-AM.png?1696517824",
+    "symbol": "ADOGE",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0x15a808ed3846d25e88ae868de79f1bcb1ac382b5": {
+    "assetId": "eip155:42161/erc20:0x15a808ed3846d25e88ae868de79f1bcb1ac382b5",
+    "chainId": "eip155:42161",
+    "name": "Metavault DAO on Arbitrum One",
+    "precision": 9,
+    "color": "#C28020",
+    "icon": "https://assets.coingecko.com/coins/images/23899/thumb/MVD_Coin-simple.png?1696523099",
+    "symbol": "MVD",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0x15b2fb8f08e4ac1ce019eadae02ee92aedf06851": {
+    "assetId": "eip155:42161/erc20:0x15b2fb8f08e4ac1ce019eadae02ee92aedf06851",
+    "chainId": "eip155:42161",
+    "name": "Chronos Finance",
+    "precision": 18,
+    "color": "#7464F4",
+    "icon": "https://assets.coingecko.com/coins/images/29622/thumb/chronos_icono-01.png?1696528558",
+    "symbol": "CHR",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0x1605bbdab3b38d10fa23a7ed0d0e8f4fea5bff59": {
+    "assetId": "eip155:42161/erc20:0x1605bbdab3b38d10fa23a7ed0d0e8f4fea5bff59",
+    "chainId": "eip155:42161",
+    "name": "Plutus RDNT",
+    "precision": 18,
+    "color": "#06880C",
+    "icon": "https://assets.coingecko.com/coins/images/30635/thumb/plsRDNT.png?1696529508",
+    "symbol": "PLSRDNT",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0x1622bf67e6e5747b81866fe0b85178a93c7f86e3": {
+    "assetId": "eip155:42161/erc20:0x1622bf67e6e5747b81866fe0b85178a93c7f86e3",
+    "chainId": "eip155:42161",
+    "name": "Umami",
+    "precision": 9,
+    "color": "#D1D2D6",
+    "icon": "https://assets.coingecko.com/coins/images/21159/thumb/_UMAMI-200px.jpg?1696520536",
+    "symbol": "UMAMI",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0x1689a6e1f09658ff37d0bb131514e701045876da": {
+    "assetId": "eip155:42161/erc20:0x1689a6e1f09658ff37d0bb131514e701045876da",
+    "chainId": "eip155:42161",
+    "name": "ZooDAO on Arbitrum One",
+    "precision": 18,
+    "color": "#151326",
+    "icon": "https://assets.coingecko.com/coins/images/24305/thumb/Zt2BM_8D_400x400.jpg?1696523486",
+    "symbol": "ZOO",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0x1772d876f9df830693b8004322cb8885b77e47e5": {
+    "assetId": "eip155:42161/erc20:0x1772d876f9df830693b8004322cb8885b77e47e5",
+    "chainId": "eip155:42161",
+    "name": "AuradX",
+    "precision": 18,
+    "color": "#04B4E9",
+    "icon": "https://assets.coingecko.com/coins/images/29511/thumb/200_pix.png?1696528455",
+    "symbol": "DALLE2",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0x178412e79c25968a32e89b11f63b33f733770c2a": {
+    "assetId": "eip155:42161/erc20:0x178412e79c25968a32e89b11f63b33f733770c2a",
+    "chainId": "eip155:42161",
+    "name": "Frax Ether on Arbitrum One",
+    "precision": 18,
+    "color": "#B3B3B3",
+    "icon": "https://assets.coingecko.com/coins/images/28284/thumb/frxETH_icon.png?1696527284",
+    "symbol": "FRXETH",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0x17afc249db786fc300f2d26381fec5cf0c3913fb": {
+    "assetId": "eip155:42161/erc20:0x17afc249db786fc300f2d26381fec5cf0c3913fb",
+    "chainId": "eip155:42161",
+    "name": "Shiba Cartel",
+    "precision": 9,
+    "color": "#191919",
+    "icon": "https://assets.coingecko.com/coins/images/29512/thumb/Shiba_cartel.jpeg?1696528456",
+    "symbol": "PESOS",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0x17fc002b466eec40dae837fc4be5c67993ddbd6f": {
+    "assetId": "eip155:42161/erc20:0x17fc002b466eec40dae837fc4be5c67993ddbd6f",
+    "chainId": "eip155:42161",
+    "name": "Frax on Arbitrum One",
+    "precision": 18,
+    "color": "#0D0D0D",
+    "icon": "https://assets.coingecko.com/coins/images/13422/thumb/FRAX_icon.png?1696513182",
+    "symbol": "FRAX",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0x1824a51c106efc27d35a74efb56d9bf54ddb22d4": {
+    "assetId": "eip155:42161/erc20:0x1824a51c106efc27d35a74efb56d9bf54ddb22d4",
+    "chainId": "eip155:42161",
+    "name": "Perpy Finance",
+    "precision": 18,
+    "color": "#A954E6",
+    "icon": "https://assets.coingecko.com/coins/images/29525/thumb/perpy-icon-dark.png?1696528468",
+    "symbol": "PRY",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0x188fb5f5ae5bbe4154d5778f2bbb2fb985c94d25": {
+    "assetId": "eip155:42161/erc20:0x188fb5f5ae5bbe4154d5778f2bbb2fb985c94d25",
+    "chainId": "eip155:42161",
+    "name": "OpenBlox on Arbitrum One",
+    "precision": 18,
+    "color": "#070707",
+    "icon": "https://assets.coingecko.com/coins/images/26150/thumb/OBX_token-black_background_preview.png?1696525239",
+    "symbol": "OBX",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0x18c11fd286c5ec11c3b683caa813b77f5163a122": {
+    "assetId": "eip155:42161/erc20:0x18c11fd286c5ec11c3b683caa813b77f5163a122",
+    "chainId": "eip155:42161",
+    "name": "Gains Network on Arbitrum One",
+    "precision": 18,
+    "color": "#48F698",
+    "icon": "https://assets.coingecko.com/coins/images/19737/thumb/logo.png?1696519161",
+    "symbol": "GNS",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0x191c10aa4af7c30e871e70c95db0e4eb77237530": {
+    "assetId": "eip155:42161/erc20:0x191c10aa4af7c30e871e70c95db0e4eb77237530",
+    "chainId": "eip155:42161",
+    "name": "Aave v3 LINK on Arbitrum One",
+    "precision": 18,
+    "color": "#9E64A6",
+    "icon": "https://assets.coingecko.com/coins/images/32888/thumb/link.png?1699773900",
+    "symbol": "ALINK",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0x1922c36f3bc762ca300b4a46bb2102f84b1684ab": {
+    "assetId": "eip155:42161/erc20:0x1922c36f3bc762ca300b4a46bb2102f84b1684ab",
+    "chainId": "eip155:42161",
+    "name": "Compounded Marinated UMAMI",
+    "precision": 9,
+    "color": "#161623",
+    "icon": "https://assets.coingecko.com/coins/images/28433/thumb/Cqx8QjSL_400x400.jpeg?1696527429",
+    "symbol": "CMUMAMI",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0x1a5b0aaf478bf1fda7b934c76e7692d722982a6d": {
+    "assetId": "eip155:42161/erc20:0x1a5b0aaf478bf1fda7b934c76e7692d722982a6d",
+    "chainId": "eip155:42161",
+    "name": "Buffer Token",
+    "precision": 18,
+    "color": "#D6EDF5",
+    "icon": "https://assets.coingecko.com/coins/images/18540/thumb/Qk6pjeZ3_400x400.jpg?1696518020",
+    "symbol": "BFR",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0x1aae7de64d9ae1487e95858bbf98185f21e926fd": {
+    "assetId": "eip155:42161/erc20:0x1aae7de64d9ae1487e95858bbf98185f21e926fd",
+    "chainId": "eip155:42161",
+    "name": "AICORE",
+    "precision": 18,
+    "color": "#DCA424",
+    "icon": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAIAAAACACAMAAAD04JH5AAADAFBMVEUtN0jYpib///8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/8YGXAAABAHRSTlP/////AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAf6K/dgAAQItJREFUeNoBgEB/vwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAgICAgICAgICAgICAgICAgICAgEBAQEBAQEBAQEBAQEBAgICAgICAgICAgICAgICAgICAgICAAAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgICAgICAgICAgICAgICAQEBAQEBAQEBAQEBAQECAgICAgICAgICAgICAgICAgIAAgICAgICAgICAgICAgICAgICAgMBAQEBAQEBAQEBAQEBAgICAgICAgICAgICAgICAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAgICAgICAgICAgIDAgICAgICAgICAgICAgICAgICAgMBAQEBAQEBAQEBAQEBAgICAgICAgICAgICAgICAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAgICAgICAgICAgIDAgICAgICAgICAgICAgICAgICAgMBAQEBAQEBAQEBAQEBAgICAgICAgICAgICAgICAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAgICAgICAgICAgIDAgICAgICAgICAgICAgICAgICAgMBAQEBAQEBAQEBAQEBAgICAgICAgICAgICAgICAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAgICAgICAgICAgIDAgICAgICAgICAgICAgICAgICAgMBAQEBAQEBAQEBAQEBAgICAgICAgICAgICAgICAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAgICAgICAgICAgIDAgICAgICAgICAgICAgICAgICAgMBAQEBAQEBAQEBAQEBAgICAgICAgICAgICAgICAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAgICAgICAgICAgIDAgICAgIDAwMDAwMDAwMDAwMDAwMBAQEBAQECAgICAgICAQMDAwMDAwMDAwMDAwMDAwMDAwMDAgICAgICAgAAAAAAAAACAgICAgICAQMDAwMDAwMDAwMDAwMDAwMDAwMDAgICAgICAgEBAQEBAQECAgICAgICAwMDAwMDAwMDAwMDAgICAgIDAAAAAAEBAQEBAQEBAQEBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAgICAgIDAAAAAAEBAQEBAQEBAQEBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAgICAgIDAAAAAAEBAQEBAQEBAQEBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAgICAgIDAAAAAAEBAQEBAQEBAQEBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAgICAgIDAAAAAAEBAQEBAQEBAQEBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAgICAgIDAAAAAAEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAgICAgICAgMAAAAAAAACAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAgICAgIDAAAAAAEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAMDAwMDAwMAAAAAAAACAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAgICAgIDAAAAAAEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAgICAgIDAAAAAAEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAgICAgIDAAAAAAEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAgICAgIDAAAAAAEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAgICAgIDAAAAAAEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAgICAgIDAAAAAAEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAgICAgIDAAAAAAEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAgICAgICAgICAgIAAgICAgIDAAAAAAEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAgICAgICAgICAgIDAgICAgIDAAAAAAEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAgICAgICAgICAgIDAgICAgIDAAAAAAEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAgICAgICAgICAgIDAgICAgIDAAAAAAEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAgICAgICAgICAgIDAgICAgIDAAAAAAEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAgICAgICAgICAgIDAgICAgIDAAAAAAEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAgICAgICAgICAgIDAgICAgIDAAAAAAEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwMDAwMDAwICAgIDAgICAgIDAAAAAAEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAICAgIDAgICAgIDAAAAAAEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAICAgIDAgICAgIDAAAAAAEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAICAgIDAgICAgIDAAAAAAEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAICAgIDAgICAgIDAAAAAAEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAICAgIDAgICAgIDAAAAAAEBAQEBAQEBAQEBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAICAgIDAgICAgIDAAAAAAEBAQEBAQEBAQEBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAADAwMDAgICAgIDAAAAAAEBAQEBAQEBAQEBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAgICAgIDAAAAAAEBAQEBAQEBAQEBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAgICAgIDAAAAAAEBAQEBAQEBAQEBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAgICAgIDAAAAAAEBAQEBAQEBAQEBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAgICAgIDAAAAAAEBAQEBAQEBAQEBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAgICAgIDAAAAAAEBAQEBAQEBAQEBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAgICAgICAgICAgICAgICAgICAgEBAQEBAQEBAwMDAwMDAgICAgICAgICAgICAgICAgICAgICAAMDAwMDAwMAAAAAAAAAAwMDAwMDAgICAgICAgICAgICAgICAgICAgICAQMDAwMDAwMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAgICAgICAgICAgICAgICAgICAgMBAQEBAQEBAQEBAQEBAgICAgICAgICAgICAgICAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAgICAgICAgICAgICAgICAgICAgMBAQEBAQEBAQEBAQEBAgICAgICAgICAgICAgICAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAgICAgICAgICAgICAgICAgICAgMBAQEBAQEBAQEBAQEBAgICAgICAgICAgICAgICAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAgICAgICAgICAgICAgICAgICAgMBAQEBAQEBAQEBAQEBAgICAgICAgICAgICAgICAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAgICAgICAgICAgICAgICAgICAgMBAQEBAQEBAQEBAQEBAgICAgICAgICAgICAgICAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAgICAgICAgICAgICAgICAgICAgMBAQEBAQEBAQEBAQEBAgICAgICAgICAgICAgICAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAMDAwMDAwMDAwMDAwMDAwMDAwMBAQEBAQEBAQEBAQEBAQMDAwMDAwMDAwMDAwMDAwMDAwMDAwAAAAAAAAAAAAAAAAAAAAAAAAEBAQMDAwMDAwMDAwMDAwMDAwMDAwMDAwEBAQEBAQEBAQEBAQEBAwMDAwMDAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgRMD+ov98RAAAAAElFTkSuQmCC",
+    "symbol": "AICORE",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0x1b01514a2b3cdef16fd3c680a818a0ab97da8a09": {
+    "assetId": "eip155:42161/erc20:0x1b01514a2b3cdef16fd3c680a818a0ab97da8a09",
+    "chainId": "eip155:42161",
+    "name": "Frax Price Index on Arbitrum One",
+    "precision": 18,
+    "color": "#0E0E0E",
+    "icon": "https://assets.coingecko.com/coins/images/24945/thumb/FPI_icon.png?1696524100",
+    "symbol": "FPI",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0x1b8d516e2146d7a32aca0fcbf9482db85fd42c3a": {
+    "assetId": "eip155:42161/erc20:0x1b8d516e2146d7a32aca0fcbf9482db85fd42c3a",
+    "chainId": "eip155:42161",
+    "name": "AlphaScan",
+    "precision": 18,
+    "color": "#B8B8B8",
+    "icon": "https://assets.coingecko.com/coins/images/31180/thumb/AlphaScan_logo.jpg?1696530008",
+    "symbol": "ASCN",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0x1bd013bd089c2b6b2d30a0e0b545810a5844e761": {
+    "assetId": "eip155:42161/erc20:0x1bd013bd089c2b6b2d30a0e0b545810a5844e761",
+    "chainId": "eip155:42161",
+    "name": "OtterHome",
+    "precision": 16,
+    "color": "#42ABBF",
+    "icon": "https://assets.coingecko.com/coins/images/30740/thumb/LOGO.png?1696529610",
+    "symbol": "HOME",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0x1c43d05be7e5b54d506e3ddb6f0305e8a66cd04e": {
+    "assetId": "eip155:42161/erc20:0x1c43d05be7e5b54d506e3ddb6f0305e8a66cd04e",
+    "chainId": "eip155:42161",
+    "name": "ZTX",
+    "precision": 18,
+    "color": "#DCDCDC",
+    "icon": "https://assets.coingecko.com/coins/images/32340/thumb/CoinGecko_200_x_200.jpg?1697466589",
+    "symbol": "ZTX",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0x1d987200df3b744cfa9c14f713f5334cb4bc4d5d": {
+    "assetId": "eip155:42161/erc20:0x1d987200df3b744cfa9c14f713f5334cb4bc4d5d",
+    "chainId": "eip155:42161",
+    "name": "REKT",
+    "precision": 6,
+    "color": "#EAEAE9",
+    "icon": "https://assets.coingecko.com/coins/images/29954/thumb/New_Project_%288%29.png?1696528881",
+    "symbol": "REKT",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0x1debd73e752beaf79865fd6446b0c970eae7732f": {
+    "assetId": "eip155:42161/erc20:0x1debd73e752beaf79865fd6446b0c970eae7732f",
+    "chainId": "eip155:42161",
+    "name": "Coinbase Wrapped Staked ETH on Arbitrum One",
+    "precision": 18,
+    "color": "#0957FC",
+    "icon": "https://assets.coingecko.com/coins/images/27008/thumb/cbeth.png?1696526061",
+    "symbol": "CBETH",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0x1e3c6c53f9f60bf8aae0d7774c21fa6b1afddc57": {
+    "assetId": "eip155:42161/erc20:0x1e3c6c53f9f60bf8aae0d7774c21fa6b1afddc57",
+    "chainId": "eip155:42161",
+    "name": "xShrap on Arbitrum One",
+    "precision": 18,
+    "color": "#0474E2",
+    "icon": "https://assets.coingecko.com/coins/images/29346/thumb/xshrapnel.png?1696528295",
+    "symbol": "XSHRAP",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0x1eb747cace61eab366c98a18617b7e210d03818e": {
+    "assetId": "eip155:42161/erc20:0x1eb747cace61eab366c98a18617b7e210d03818e",
+    "chainId": "eip155:42161",
+    "name": "Hood AI",
+    "precision": 18,
+    "color": "#806CE6",
+    "icon": "https://assets.coingecko.com/coins/images/30981/thumb/HOOD_LOGO_200X200.jpg?1696529820",
+    "symbol": "HOOD",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0x1f52145666c862ed3e2f1da213d479e61b2892af": {
+    "assetId": "eip155:42161/erc20:0x1f52145666c862ed3e2f1da213d479e61b2892af",
+    "chainId": "eip155:42161",
+    "name": "Funny Coin",
+    "precision": 18,
+    "color": "#152B21",
+    "icon": "https://assets.coingecko.com/coins/images/30081/thumb/fuc.png?1696529005",
+    "symbol": "FUC",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0x1f6e4b5ffc94cca08cf6bb1479148d6329d4baf5": {
+    "assetId": "eip155:42161/erc20:0x1f6e4b5ffc94cca08cf6bb1479148d6329d4baf5",
+    "chainId": "eip155:42161",
+    "name": "Ether Wars",
+    "precision": 18,
+    "color": "#84CCDC",
+    "icon": "https://assets.coingecko.com/coins/images/30665/thumb/l_logo_blue.png?1696529535",
+    "symbol": "WAR",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0x20547341e58fb558637fa15379c92e11f7b7f710": {
+    "assetId": "eip155:42161/erc20:0x20547341e58fb558637fa15379c92e11f7b7f710",
+    "chainId": "eip155:42161",
+    "name": "Mozaic",
+    "precision": 18,
+    "color": "#D8D6D7",
+    "icon": "https://assets.coingecko.com/coins/images/30100/thumb/Main_Logo_1-200x200jpg.jpg?1696529024",
+    "symbol": "MOZ",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0x21e60ee73f17ac0a411ae5d690f908c3ed66fe12": {
+    "assetId": "eip155:42161/erc20:0x21e60ee73f17ac0a411ae5d690f908c3ed66fe12",
+    "chainId": "eip155:42161",
+    "name": "Deri Protocol on Arbitrum One",
+    "precision": 18,
+    "color": "#5B7890",
+    "icon": "https://assets.coingecko.com/coins/images/13931/thumb/200vs200.jpg?1696513670",
+    "symbol": "DERI",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0x2297aebd383787a160dd0d9f71508148769342e3": {
+    "assetId": "eip155:42161/erc20:0x2297aebd383787a160dd0d9f71508148769342e3",
+    "chainId": "eip155:42161",
+    "name": "Bitcoin Avalanche Bridged  BTC b  on Arbitrum One",
+    "precision": 8,
+    "color": "#F4941B",
+    "icon": "https://assets.coingecko.com/coins/images/26115/thumb/btcb.png?1696525205",
+    "symbol": "BTCB",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0x22ab6bc52cad84aae84bd5781258677a6e0cfab0": {
+    "assetId": "eip155:42161/erc20:0x22ab6bc52cad84aae84bd5781258677a6e0cfab0",
+    "chainId": "eip155:42161",
+    "name": "ELSD Coin",
+    "precision": 18,
+    "color": "#2404E4",
+    "icon": "https://assets.coingecko.com/coins/images/30746/thumb/Icon-200.png?1696529616",
+    "symbol": "ELSD",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0x232baf8cfc14520140c3686fbab53fa596a50552": {
+    "assetId": "eip155:42161/erc20:0x232baf8cfc14520140c3686fbab53fa596a50552",
+    "chainId": "eip155:42161",
+    "name": "Cruize Finance",
+    "precision": 18,
+    "color": "#222848",
+    "icon": "https://assets.coingecko.com/coins/images/26181/thumb/_KjiKgiG_400x400.jpeg?1696525268",
+    "symbol": "CRUIZE",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0x23ee2343b892b1bb63503a4fabc840e0e2c6810f": {
+    "assetId": "eip155:42161/erc20:0x23ee2343b892b1bb63503a4fabc840e0e2c6810f",
+    "chainId": "eip155:42161",
+    "name": "Axelar on Arbitrum One",
+    "precision": 6,
+    "color": "#141414",
+    "icon": "https://assets.coingecko.com/coins/images/27277/thumb/V-65_xQ1_400x400.jpeg?1696526329",
+    "symbol": "AXL",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0x244ae62439c1ef3187f244d8604ac2c391ef2b53": {
+    "assetId": "eip155:42161/erc20:0x244ae62439c1ef3187f244d8604ac2c391ef2b53",
+    "chainId": "eip155:42161",
+    "name": "Modular Wallet",
+    "precision": 18,
+    "color": "#CFCFE6",
+    "icon": "https://assets.coingecko.com/coins/images/29267/thumb/Captura_de_Pantalla_2023-03-01_a_la%28s%29_14.22.57.png?1696528220",
+    "symbol": "MOD",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0x24ef78c7092d255ed14a0281ac1800c359af3afe": {
+    "assetId": "eip155:42161/erc20:0x24ef78c7092d255ed14a0281ac1800c359af3afe",
+    "chainId": "eip155:42161",
+    "name": "Rabbit Wallet on Arbitrum One",
+    "precision": 18,
+    "color": "#FC98BC",
+    "icon": "https://assets.coingecko.com/coins/images/29433/thumb/200x200.png?1696528381",
+    "symbol": "RAB",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0x25d887ce7a35172c62febfd67a1856f20faebb00": {
+    "assetId": "eip155:42161/erc20:0x25d887ce7a35172c62febfd67a1856f20faebb00",
+    "chainId": "eip155:42161",
+    "name": "Pepe on Arbitrum One",
+    "precision": 18,
+    "color": "#4B8E42",
+    "icon": "https://assets.coingecko.com/coins/images/29850/thumb/pepe-token.jpeg?1696528776",
+    "symbol": "PEPE",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0x27d8de4c30ffde34e982482ae504fc7f23061f61": {
+    "assetId": "eip155:42161/erc20:0x27d8de4c30ffde34e982482ae504fc7f23061f61",
+    "chainId": "eip155:42161",
+    "name": "My MetaTrader",
+    "precision": 18,
+    "color": "#2424A0",
+    "icon": "https://assets.coingecko.com/coins/images/29161/thumb/MMT_logo_Vert.png?1696528120",
+    "symbol": "MMT",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0x289ba1701c2f088cf0faf8b3705246331cb8a839": {
+    "assetId": "eip155:42161/erc20:0x289ba1701c2f088cf0faf8b3705246331cb8a839",
+    "chainId": "eip155:42161",
+    "name": "Livepeer on Arbitrum One",
+    "precision": 18,
+    "color": "#04D97A",
+    "icon": "https://assets.coingecko.com/coins/images/7137/thumb/logo-circle-green.png?1696507437",
+    "symbol": "LPT",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0x296a0b8847bd4ed9af71a9ef238fa5be0778b611": {
+    "assetId": "eip155:42161/erc20:0x296a0b8847bd4ed9af71a9ef238fa5be0778b611",
+    "chainId": "eip155:42161",
+    "name": "Atlas Aggregator",
+    "precision": 18,
+    "color": "#F8D024",
+    "icon": "https://assets.coingecko.com/coins/images/29570/thumb/1024.png?1696528510",
+    "symbol": "ATA",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0x299142a6370e1912156e53fbd4f25d7ba49ddcc5": {
+    "assetId": "eip155:42161/erc20:0x299142a6370e1912156e53fbd4f25d7ba49ddcc5",
+    "chainId": "eip155:42161",
+    "name": "AI Meta Club",
+    "precision": 18,
+    "color": "#050505",
+    "icon": "https://assets.coingecko.com/coins/images/31919/thumb/aimeta.jpg?1696530728",
+    "symbol": "AMC",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0x29c1ea5ed7af53094b1a79ef60d20641987c867e": {
+    "assetId": "eip155:42161/erc20:0x29c1ea5ed7af53094b1a79ef60d20641987c867e",
+    "chainId": "eip155:42161",
+    "name": "Acid",
+    "precision": 9,
+    "color": "#5D2C55",
+    "icon": "https://assets.coingecko.com/coins/images/29418/thumb/acid_200_200.png?1696528367",
+    "symbol": "ACID",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0x2a35c341f4dcf2d18e0fb38e0df50e8a47af1368": {
+    "assetId": "eip155:42161/erc20:0x2a35c341f4dcf2d18e0fb38e0df50e8a47af1368",
+    "chainId": "eip155:42161",
+    "name": "ArbitrumPad",
+    "precision": 18,
+    "color": "#1B222D",
+    "icon": "https://assets.coingecko.com/coins/images/29629/thumb/xconvert.com.png?1696528567",
+    "symbol": "ARBPAD",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0x2ac2b254bc18cd4999f64773a966e4f4869c34ee": {
+    "assetId": "eip155:42161/erc20:0x2ac2b254bc18cd4999f64773a966e4f4869c34ee",
+    "chainId": "eip155:42161",
+    "name": "Penpie on Arbitrum One",
+    "precision": 18,
+    "color": "#2F8294",
+    "icon": "https://assets.coingecko.com/coins/images/30760/thumb/PNP_Token.png?1696529629",
+    "symbol": "PNP",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0x2b089381f53525451fe5115f23e9d2cc92d7ff1d": {
+    "assetId": "eip155:42161/erc20:0x2b089381f53525451fe5115f23e9d2cc92d7ff1d",
+    "chainId": "eip155:42161",
+    "name": "Digital Reserve Currency on Arbitrum One",
+    "precision": 0,
+    "color": "#CDCDCD",
+    "icon": "https://assets.coingecko.com/coins/images/12802/thumb/DRC_Logo.jpg?1696512595",
+    "symbol": "DRC",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0x2c093f7d7db41057a2ddd3cb1ad8b4e9c3dffbec": {
+    "assetId": "eip155:42161/erc20:0x2c093f7d7db41057a2ddd3cb1ad8b4e9c3dffbec",
+    "chainId": "eip155:42161",
+    "name": "USDEX ",
+    "precision": 18,
+    "color": "#1E2D47",
+    "icon": "https://assets.coingecko.com/coins/images/30670/thumb/USDEX_-icon-200x200.png?1696529540",
+    "symbol": "USDEX+",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0x2c110867ca90e43d372c1c2e92990b00ea32818b": {
+    "assetId": "eip155:42161/erc20:0x2c110867ca90e43d372c1c2e92990b00ea32818b",
+    "chainId": "eip155:42161",
+    "name": "Stabilize",
+    "precision": 18,
+    "color": "#040404",
+    "icon": "https://assets.coingecko.com/coins/images/12753/thumb/icon.png?1696512551",
+    "symbol": "STBZ",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0x2c7513f299778a84797f293503db1a73a15fd48d": {
+    "assetId": "eip155:42161/erc20:0x2c7513f299778a84797f293503db1a73a15fd48d",
+    "chainId": "eip155:42161",
+    "name": "OpenbetAI",
+    "precision": 18,
+    "color": "#FCF4F5",
+    "icon": "https://assets.coingecko.com/coins/images/29774/thumb/openbetlogo200x200.png?1696528705",
+    "symbol": "OPENBET",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0x2c852d3334188be136bfc540ef2bb8c37b590bad": {
+    "assetId": "eip155:42161/erc20:0x2c852d3334188be136bfc540ef2bb8c37b590bad",
+    "chainId": "eip155:42161",
+    "name": "MagicLand",
+    "precision": 18,
+    "color": "#57B4DC",
+    "icon": "https://assets.coingecko.com/coins/images/18844/thumb/logo_-_2021-10-07T141625.399.png?1696518305",
+    "symbol": "MAGIC",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0x2cab3abfc1670d1a452df502e216a66883cdf079": {
+    "assetId": "eip155:42161/erc20:0x2cab3abfc1670d1a452df502e216a66883cdf079",
+    "chainId": "eip155:42161",
+    "name": "Layer2DAO on Arbitrum One",
+    "precision": 18,
+    "color": "#39E0F5",
+    "icon": "https://assets.coingecko.com/coins/images/23699/thumb/Khp7Y4Sn.png?1696522900",
+    "symbol": "L2DAO",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0x2e516ba5bf3b7ee47fb99b09eadb60bde80a82e0": {
+    "assetId": "eip155:42161/erc20:0x2e516ba5bf3b7ee47fb99b09eadb60bde80a82e0",
+    "chainId": "eip155:42161",
+    "name": "aEGGS",
+    "precision": 18,
+    "color": "#DAC68E",
+    "icon": "https://assets.coingecko.com/coins/images/29520/thumb/aeggs.png?1696528463",
+    "symbol": "AEGGS",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0x2e80259c9071b6176205ff5f5eb6f7ec8361b93f": {
+    "assetId": "eip155:42161/erc20:0x2e80259c9071b6176205ff5f5eb6f7ec8361b93f",
+    "chainId": "eip155:42161",
+    "name": "HashDAO Token",
+    "precision": 18,
+    "color": "#C4E4EC",
+    "icon": "https://assets.coingecko.com/coins/images/29735/thumb/200.png?1696528665",
+    "symbol": "HASH",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0x2f11eeee0bf21e7661a22dbbbb9068f4ad191b86": {
+    "assetId": "eip155:42161/erc20:0x2f11eeee0bf21e7661a22dbbbb9068f4ad191b86",
+    "chainId": "eip155:42161",
+    "name": "Backed NIU Technologies on Arbitrum One",
+    "precision": 18,
+    "color": "#EC8898",
+    "icon": "https://assets.coingecko.com/coins/images/31869/thumb/b-NIU-200x200.png?1696530681",
+    "symbol": "BNIU",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0x2f27118e3d2332afb7d165140cf1bb127ea6975d": {
+    "assetId": "eip155:42161/erc20:0x2f27118e3d2332afb7d165140cf1bb127ea6975d",
+    "chainId": "eip155:42161",
+    "name": "Gridex",
+    "precision": 18,
+    "color": "#DCE7FC",
+    "icon": "https://assets.coingecko.com/coins/images/29182/thumb/gridex-token.png?1696528140",
+    "symbol": "GDX",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0x2f2a2543b76a4166549f7aab2e75bef0aefc5b0f": {
+    "assetId": "eip155:42161/erc20:0x2f2a2543b76a4166549f7aab2e75bef0aefc5b0f",
+    "chainId": "eip155:42161",
+    "name": "Wrapped Bitcoin on Arbitrum One",
+    "precision": 8,
+    "color": "#ECE8E6",
+    "icon": "https://assets.coingecko.com/coins/images/7598/thumb/wrapped_bitcoin_wbtc.png?1696507857",
+    "symbol": "WBTC",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0x2fac624899a844e0628bfdcc70efcd25f6e90b95": {
+    "assetId": "eip155:42161/erc20:0x2fac624899a844e0628bfdcc70efcd25f6e90b95",
+    "chainId": "eip155:42161",
+    "name": "Youwho on Arbitrum One",
+    "precision": 18,
+    "color": "#06CC94",
+    "icon": "https://assets.coingecko.com/coins/images/25353/thumb/youwho_200.png?1696524487",
+    "symbol": "YOU",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0x3006e4cc90440c7d011c20f36c841a269ae6601a": {
+    "assetId": "eip155:42161/erc20:0x3006e4cc90440c7d011c20f36c841a269ae6601a",
+    "chainId": "eip155:42161",
+    "name": "Nuclear Waste Water",
+    "precision": 18,
+    "color": "#C38F40",
+    "icon": "https://assets.coingecko.com/coins/images/31544/thumb/IMG_20230830_084557.jpg?1696530357",
+    "symbol": "NCWW",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0x306634bd3a7982afdb42dec1c6b15176cd9e02e0": {
+    "assetId": "eip155:42161/erc20:0x306634bd3a7982afdb42dec1c6b15176cd9e02e0",
+    "chainId": "eip155:42161",
+    "name": "CEX Index",
+    "precision": 18,
+    "color": "#994299",
+    "icon": "https://assets.coingecko.com/coins/images/32492/thumb/CEX.jpg?1698293422",
+    "symbol": "CEX",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0x3082cc23568ea640225c2467653db90e9250aaa0": {
+    "assetId": "eip155:42161/erc20:0x3082cc23568ea640225c2467653db90e9250aaa0",
+    "chainId": "eip155:42161",
+    "name": "Radiant Capital on Arbitrum One",
+    "precision": 18,
+    "color": "#512CEC",
+    "icon": "https://assets.coingecko.com/coins/images/26536/thumb/Radiant-Logo-200x200.png?1696525610",
+    "symbol": "RDNT",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0x30dcba0405004cf124045793e1933c798af9e66a": {
+    "assetId": "eip155:42161/erc20:0x30dcba0405004cf124045793e1933c798af9e66a",
+    "chainId": "eip155:42161",
+    "name": "Yieldification on Arbitrum One",
+    "precision": 18,
+    "color": "#F0A124",
+    "icon": "https://assets.coingecko.com/coins/images/26699/thumb/logo.png?1696525772",
+    "symbol": "YDF",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0x319e222de462ac959baf2aec848697aec2bbd770": {
+    "assetId": "eip155:42161/erc20:0x319e222de462ac959baf2aec848697aec2bbd770",
+    "chainId": "eip155:42161",
+    "name": "OreoSwap",
+    "precision": 18,
+    "color": "#443B41",
+    "icon": "https://assets.coingecko.com/coins/images/28582/thumb/oreoswapx.png?1696527570",
+    "symbol": "OREO",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0x319f865b287fcc10b30d8ce6144e8b6d1b476999": {
+    "assetId": "eip155:42161/erc20:0x319f865b287fcc10b30d8ce6144e8b6d1b476999",
+    "chainId": "eip155:42161",
+    "name": "Cartesi on Arbitrum One",
+    "precision": 18,
+    "color": "#04F4FB",
+    "icon": "https://assets.coingecko.com/coins/images/11038/thumb/Cartesi_Logo.png?1696510982",
+    "symbol": "CTSI",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0x31c91d8fb96bff40955dd2dbc909b36e8b104dde": {
+    "assetId": "eip155:42161/erc20:0x31c91d8fb96bff40955dd2dbc909b36e8b104dde",
+    "chainId": "eip155:42161",
+    "name": "Poison Finance",
+    "precision": 18,
+    "color": "#128F28",
+    "icon": "https://assets.coingecko.com/coins/images/28630/thumb/poisonlogo160x160.png?1696527614",
+    "symbol": "POION",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0x322f15d4bedaa20c178fb75b2628663d2da19736": {
+    "assetId": "eip155:42161/erc20:0x322f15d4bedaa20c178fb75b2628663d2da19736",
+    "chainId": "eip155:42161",
+    "name": "Monopoly Layer2 DUO",
+    "precision": 18,
+    "color": "#D15E84",
+    "icon": "https://assets.coingecko.com/coins/images/29843/thumb/DUO_ticker_200x200.png?1696528770",
+    "symbol": "DUO",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0x323665443cef804a3b5206103304bd4872ea4253": {
+    "assetId": "eip155:42161/erc20:0x323665443cef804a3b5206103304bd4872ea4253",
+    "chainId": "eip155:42161",
+    "name": "Verified USD on Arbitrum One",
+    "precision": 6,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/32948/thumb/usdv_%281%29.png?1699933314",
+    "symbol": "USDV",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0x326c33fd1113c1f29b35b4407f3d6312a8518431": {
+    "assetId": "eip155:42161/erc20:0x326c33fd1113c1f29b35b4407f3d6312a8518431",
+    "chainId": "eip155:42161",
+    "name": "Strips Finance on Arbitrum One",
+    "precision": 18,
+    "color": "#2A8ECD",
+    "icon": "https://assets.coingecko.com/coins/images/18327/thumb/Logo-Strips-200-x-200px---without-words.png?1696517818",
+    "symbol": "STRP",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0x32e4d98d3010ac12d75019c484caa78665b03986": {
+    "assetId": "eip155:42161/erc20:0x32e4d98d3010ac12d75019c484caa78665b03986",
+    "chainId": "eip155:42161",
+    "name": "GBOT",
+    "precision": 18,
+    "color": "#B3E0EB",
+    "icon": "https://assets.coingecko.com/coins/images/31429/thumb/fW3tA1ZL_400x400.jpg?1696530244",
+    "symbol": "GBOT",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0x32eb7902d4134bf98a28b963d26de779af92a212": {
+    "assetId": "eip155:42161/erc20:0x32eb7902d4134bf98a28b963d26de779af92a212",
+    "chainId": "eip155:42161",
+    "name": "Dopex Rebate on Arbitrum One",
+    "precision": 18,
+    "color": "#062FFC",
+    "icon": "https://assets.coingecko.com/coins/images/16659/thumb/rDPX_200x200_Coingecko.png?1696516221",
+    "symbol": "RDPX",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0x3404149e9ee6f17fb41db1ce593ee48fbdcd9506": {
+    "assetId": "eip155:42161/erc20:0x3404149e9ee6f17fb41db1ce593ee48fbdcd9506",
+    "chainId": "eip155:42161",
+    "name": "Hydranet",
+    "precision": 18,
+    "color": "#141A2F",
+    "icon": "https://assets.coingecko.com/coins/images/25177/thumb/HDXdarkblueInv.png?1696524322",
+    "symbol": "HDN",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0x3405e88af759992937b84e58f2fe691ef0eea320": {
+    "assetId": "eip155:42161/erc20:0x3405e88af759992937b84e58f2fe691ef0eea320",
+    "chainId": "eip155:42161",
+    "name": "Frax Price Index Share on Arbitrum One",
+    "precision": 18,
+    "color": "#C9C9C9",
+    "icon": "https://assets.coingecko.com/coins/images/24944/thumb/FPIS_icon.png?1696524099",
+    "symbol": "FPIS",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0x34772c4d12f288368aa35ae7bc527a6b2b3e8906": {
+    "assetId": "eip155:42161/erc20:0x34772c4d12f288368aa35ae7bc527a6b2b3e8906",
+    "chainId": "eip155:42161",
+    "name": "Monopoly Layer 3 POLY",
+    "precision": 18,
+    "color": "#E3ECF4",
+    "icon": "https://assets.coingecko.com/coins/images/30758/thumb/ZkdFe8ym_400x400.jpg?1696529627",
+    "symbol": "POLY",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0x3509f19581afedeff07c53592bc0ca84e4855475": {
+    "assetId": "eip155:42161/erc20:0x3509f19581afedeff07c53592bc0ca84e4855475",
+    "chainId": "eip155:42161",
+    "name": "xDollar Stablecoin on Arbitrum One",
+    "precision": 18,
+    "color": "#AF5FA5",
+    "icon": "https://assets.coingecko.com/coins/images/16291/thumb/xUSD-web-transparent.png?1696515890",
+    "symbol": "XUSD",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0x352f4bf396a7353a0877f99e99757e5d294df374": {
+    "assetId": "eip155:42161/erc20:0x352f4bf396a7353a0877f99e99757e5d294df374",
+    "chainId": "eip155:42161",
+    "name": "Sundae the Dog",
+    "precision": 18,
+    "color": "#EDDED2",
+    "icon": "https://assets.coingecko.com/coins/images/32010/thumb/sundae.jpg?1696530808",
+    "symbol": "SUNDAE",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0x354a6da3fcde098f8389cad84b0182725c6c91de": {
+    "assetId": "eip155:42161/erc20:0x354a6da3fcde098f8389cad84b0182725c6c91de",
+    "chainId": "eip155:42161",
+    "name": "Compound on Arbitrum One",
+    "precision": 18,
+    "color": "#040B0C",
+    "icon": "https://assets.coingecko.com/coins/images/10775/thumb/COMP.png?1696510737",
+    "symbol": "COMP",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0x36d37b6cbca364cf1d843eff8c2f6824491bcf81": {
+    "assetId": "eip155:42161/erc20:0x36d37b6cbca364cf1d843eff8c2f6824491bcf81",
+    "chainId": "eip155:42161",
+    "name": "Dinari TSLA",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/32536/thumb/token-icon.png?1698469155",
+    "symbol": "TSLAD",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0x371c7ec6d8039ff7933a2aa28eb827ffe1f52f07": {
+    "assetId": "eip155:42161/erc20:0x371c7ec6d8039ff7933a2aa28eb827ffe1f52f07",
+    "chainId": "eip155:42161",
+    "name": "JOE on Arbitrum One",
+    "precision": 18,
+    "color": "#C16A64",
+    "icon": "https://assets.coingecko.com/coins/images/17569/thumb/traderjoe.png?1696517104",
+    "symbol": "JOE",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0x37596f20adef5cc9618c8b6ddfa9dcb6329cb0fd": {
+    "assetId": "eip155:42161/erc20:0x37596f20adef5cc9618c8b6ddfa9dcb6329cb0fd",
+    "chainId": "eip155:42161",
+    "name": "Starfish Finance on Arbitrum One",
+    "precision": 18,
+    "color": "#289AEC",
+    "icon": "https://assets.coingecko.com/coins/images/27533/thumb/SEAN_Token_icon.png?1696526570",
+    "symbol": "SEAN",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0x377c6e37633e390aef9afb4f5e0b16689351eed4": {
+    "assetId": "eip155:42161/erc20:0x377c6e37633e390aef9afb4f5e0b16689351eed4",
+    "chainId": "eip155:42161",
+    "name": "ZYX on Arbitrum One",
+    "precision": 18,
+    "color": "#FCCC04",
+    "icon": "https://assets.coingecko.com/coins/images/11964/thumb/zyx.png?1696511823",
+    "symbol": "ZYX",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0x3789be915951e0f0a676588c99e7357d3fdb586b": {
+    "assetId": "eip155:42161/erc20:0x3789be915951e0f0a676588c99e7357d3fdb586b",
+    "chainId": "eip155:42161",
+    "name": "Party Dice",
+    "precision": 18,
+    "color": "#1E2125",
+    "icon": "https://assets.coingecko.com/coins/images/29778/thumb/cgdice.png?1696528708",
+    "symbol": "DICE",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0x38d693ce1df5aadf7bc62595a37d667ad57922e5": {
+    "assetId": "eip155:42161/erc20:0x38d693ce1df5aadf7bc62595a37d667ad57922e5",
+    "chainId": "eip155:42161",
+    "name": "Aave v3 FRAX on Arbitrum One",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/32904/thumb/FRAX.png?1699802848",
+    "symbol": "AFRAX",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0x39a49bc5017fc668299cd32e734c9269acc35295": {
+    "assetId": "eip155:42161/erc20:0x39a49bc5017fc668299cd32e734c9269acc35295",
+    "chainId": "eip155:42161",
+    "name": "Phonon DAO on Arbitrum One",
+    "precision": 18,
+    "color": "#44CAC9",
+    "icon": "https://assets.coingecko.com/coins/images/22308/thumb/ezgif-2-e7fb84364d.png?1696521653",
+    "symbol": "PHONON",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0x3a18dcc9745edcd1ef33ecb93b0b6eba5671e7ca": {
+    "assetId": "eip155:42161/erc20:0x3a18dcc9745edcd1ef33ecb93b0b6eba5671e7ca",
+    "chainId": "eip155:42161",
+    "name": "Kujira on Arbitrum One",
+    "precision": 6,
+    "color": "#A13334",
+    "icon": "https://assets.coingecko.com/coins/images/20685/thumb/kuji-200x200.png?1696520085",
+    "symbol": "KUJI",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0x3a33473d7990a605a88ac72a78ad4efc40a54adb": {
+    "assetId": "eip155:42161/erc20:0x3a33473d7990a605a88ac72a78ad4efc40a54adb",
+    "chainId": "eip155:42161",
+    "name": "Tigris",
+    "precision": 18,
+    "color": "#3A31D0",
+    "icon": "https://assets.coingecko.com/coins/images/30641/thumb/logo.png?1696529513",
+    "symbol": "TIG",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0x3a74a9032f731d504f10e02d7247d23b939ea4f6": {
+    "assetId": "eip155:42161/erc20:0x3a74a9032f731d504f10e02d7247d23b939ea4f6",
+    "chainId": "eip155:42161",
+    "name": "CEX AI",
+    "precision": 18,
+    "color": "#290B21",
+    "icon": "https://assets.coingecko.com/coins/images/29231/thumb/200x200_black.png?1696528188",
+    "symbol": "CEX-AI",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0x3a8b787f78d775aecfeea15706d4221b40f345ab": {
+    "assetId": "eip155:42161/erc20:0x3a8b787f78d775aecfeea15706d4221b40f345ab",
+    "chainId": "eip155:42161",
+    "name": "Celer Network on Arbitrum One",
+    "precision": 18,
+    "color": "#E0E0E0",
+    "icon": "https://assets.coingecko.com/coins/images/4379/thumb/Celr.png?1696504978",
+    "symbol": "CELR",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0x3ad63b3c0ea6d7a093ff98fde040baddc389ecdc": {
+    "assetId": "eip155:42161/erc20:0x3ad63b3c0ea6d7a093ff98fde040baddc389ecdc",
+    "chainId": "eip155:42161",
+    "name": "Dinari NFLX",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/32425/thumb/token-icon.png?1698119029",
+    "symbol": "NFLXD",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0x3b475f6f2f41853706afc9fa6a6b8c5df1a2724c": {
+    "assetId": "eip155:42161/erc20:0x3b475f6f2f41853706afc9fa6a6b8c5df1a2724c",
+    "chainId": "eip155:42161",
+    "name": "Zyberswap",
+    "precision": 18,
+    "color": "#141415",
+    "icon": "https://assets.coingecko.com/coins/images/28943/thumb/logo_with_bg.png?1696527917",
+    "symbol": "ZYB",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0x3b60ff35d3f7f62d636b067dd0dc0dfdad670e4e": {
+    "assetId": "eip155:42161/erc20:0x3b60ff35d3f7f62d636b067dd0dc0dfdad670e4e",
+    "chainId": "eip155:42161",
+    "name": "Milady Meme Coin on Arbitrum One",
+    "precision": 18,
+    "color": "#795143",
+    "icon": "https://assets.coingecko.com/coins/images/30194/thumb/logo.png?1696529109",
+    "symbol": "LADYS",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0x3b6564b5da73a41d3a66e6558a98fd0e9e1e77ad": {
+    "assetId": "eip155:42161/erc20:0x3b6564b5da73a41d3a66e6558a98fd0e9e1e77ad",
+    "chainId": "eip155:42161",
+    "name": "Unitus on Arbitrum One",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/33178/thumb/IMG_0051.jpeg?1700924333",
+    "symbol": "UTS",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0x3bd2dfd03bc7c3011ed7fb8c4d0949b382726cee": {
+    "assetId": "eip155:42161/erc20:0x3bd2dfd03bc7c3011ed7fb8c4d0949b382726cee",
+    "chainId": "eip155:42161",
+    "name": "Roobee on Arbitrum One",
+    "precision": 18,
+    "color": "#94D424",
+    "icon": "https://assets.coingecko.com/coins/images/8791/thumb/Group_11.png?1696508946",
+    "symbol": "ROOBEE",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0x3c9f23db4ddc5655f7be636358d319a3de1ff0c4": {
+    "assetId": "eip155:42161/erc20:0x3c9f23db4ddc5655f7be636358d319a3de1ff0c4",
+    "chainId": "eip155:42161",
+    "name": "Dinari DIS",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/32538/thumb/token-icon.png?1698469167",
+    "symbol": "DISD",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0x3d9907f9a368ad0a51be60f7da3b97cf940982d8": {
+    "assetId": "eip155:42161/erc20:0x3d9907f9a368ad0a51be60f7da3b97cf940982d8",
+    "chainId": "eip155:42161",
+    "name": "Camelot Token",
+    "precision": 18,
+    "color": "#231716",
+    "icon": "https://assets.coingecko.com/coins/images/28416/thumb/vj5DIMhP_400x400.jpeg?1696527414",
+    "symbol": "GRAIL",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0x3e6648c5a70a150a88bce65f4ad4d506fe15d2af": {
+    "assetId": "eip155:42161/erc20:0x3e6648c5a70a150a88bce65f4ad4d506fe15d2af",
+    "chainId": "eip155:42161",
+    "name": "Spell on Arbitrum One",
+    "precision": 18,
+    "color": "#261E4C",
+    "icon": "https://assets.coingecko.com/coins/images/15861/thumb/abracadabra-3.png?1696515477",
+    "symbol": "SPELL",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0x3e6b3021dab44debf93091030dbfcbdf52464afe": {
+    "assetId": "eip155:42161/erc20:0x3e6b3021dab44debf93091030dbfcbdf52464afe",
+    "chainId": "eip155:42161",
+    "name": "ArbiTen",
+    "precision": 18,
+    "color": "#1A1804",
+    "icon": "https://assets.coingecko.com/coins/images/29799/thumb/arbiten_logo_200.png?1696528728",
+    "symbol": "ARBITEN",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0x3f56e0c36d275367b8c502090edf38289b3dea0d": {
+    "assetId": "eip155:42161/erc20:0x3f56e0c36d275367b8c502090edf38289b3dea0d",
+    "chainId": "eip155:42161",
+    "name": "MAI on Arbitrum One",
+    "precision": 18,
+    "color": "#F1C5C5",
+    "icon": "https://assets.coingecko.com/coins/images/15264/thumb/mimatic-red.png?1696514916",
+    "symbol": "MIMATIC",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0x40301951af3f80b8c1744ca77e55111dd3c1dba1": {
+    "assetId": "eip155:42161/erc20:0x40301951af3f80b8c1744ca77e55111dd3c1dba1",
+    "chainId": "eip155:42161",
+    "name": "The Ennead",
+    "precision": 18,
+    "color": "#35270D",
+    "icon": "https://assets.coingecko.com/coins/images/29748/thumb/Ennead.png?1696528680",
+    "symbol": "NEADRAM",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0x417a1afd44250314bffb11ff68e989775e990ab6": {
+    "assetId": "eip155:42161/erc20:0x417a1afd44250314bffb11ff68e989775e990ab6",
+    "chainId": "eip155:42161",
+    "name": "Volta Protocol",
+    "precision": 18,
+    "color": "#0C1419",
+    "icon": "https://assets.coingecko.com/coins/images/29130/thumb/real_VoltaLogo.png?1696528091",
+    "symbol": "VOLTA",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0x42972edecd94bdd19a622a6a419bdded2de56e08": {
+    "assetId": "eip155:42161/erc20:0x42972edecd94bdd19a622a6a419bdded2de56e08",
+    "chainId": "eip155:42161",
+    "name": "Wonderly Finance",
+    "precision": 18,
+    "color": "#040405",
+    "icon": "https://assets.coingecko.com/coins/images/28973/thumb/afx.png?1696527946",
+    "symbol": "AFX",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0x4305c4bc521b052f17d389c2fe9d37cabeb70d54": {
+    "assetId": "eip155:42161/erc20:0x4305c4bc521b052f17d389c2fe9d37cabeb70d54",
+    "chainId": "eip155:42161",
+    "name": "Overlay Protocol",
+    "precision": 18,
+    "color": "#111111",
+    "icon": "https://assets.coingecko.com/coins/images/28507/thumb/OVL-black-white-bkgr.png?1696527500",
+    "symbol": "OVL",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0x431402e8b9de9aa016c743880e04e517074d8cec": {
+    "assetId": "eip155:42161/erc20:0x431402e8b9de9aa016c743880e04e517074d8cec",
+    "chainId": "eip155:42161",
+    "name": "Hegic on Arbitrum One",
+    "precision": 18,
+    "color": "#242424",
+    "icon": "https://assets.coingecko.com/coins/images/12454/thumb/new.png?1696512274",
+    "symbol": "HEGIC",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0x43ab8f7d2a8dd4102ccea6b438f6d747b1b9f034": {
+    "assetId": "eip155:42161/erc20:0x43ab8f7d2a8dd4102ccea6b438f6d747b1b9f034",
+    "chainId": "eip155:42161",
+    "name": "Savvy",
+    "precision": 18,
+    "color": "#E1D4FC",
+    "icon": "https://assets.coingecko.com/coins/images/31253/thumb/SAVVY.png?1696530077",
+    "symbol": "SVY",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0x43c25f828390de5a3648864eb485cc523e039e67": {
+    "assetId": "eip155:42161/erc20:0x43c25f828390de5a3648864eb485cc523e039e67",
+    "chainId": "eip155:42161",
+    "name": "Hello Pets on Arbitrum One",
+    "precision": 18,
+    "color": "#EFEFF0",
+    "icon": "https://assets.coingecko.com/coins/images/14354/thumb/hello_pets.jpg?1696514040",
+    "symbol": "PET",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0x4406509b532b111bd39b5b579561001cbf0d7acf": {
+    "assetId": "eip155:42161/erc20:0x4406509b532b111bd39b5b579561001cbf0d7acf",
+    "chainId": "eip155:42161",
+    "name": "Antspace",
+    "precision": 9,
+    "color": "#543638",
+    "icon": "https://assets.coingecko.com/coins/images/30464/thumb/fb0d911c2ac181aed2bc06dc9862ab3.png?1696529351",
+    "symbol": "ANT",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0x4425742f1ec8d98779690b5a3a6276db85ddc01a": {
+    "assetId": "eip155:42161/erc20:0x4425742f1ec8d98779690b5a3a6276db85ddc01a",
+    "chainId": "eip155:42161",
+    "name": "The Doge NFT on Arbitrum One",
+    "precision": 18,
+    "color": "#D0B882",
+    "icon": "https://assets.coingecko.com/coins/images/18111/thumb/Doge.png?1696517615",
+    "symbol": "DOG",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0x4568ca00299819998501914690d6010ae48a59ba": {
+    "assetId": "eip155:42161/erc20:0x4568ca00299819998501914690d6010ae48a59ba",
+    "chainId": "eip155:42161",
+    "name": "Army of Fortune Metaverse",
+    "precision": 0,
+    "color": "#EDAC34",
+    "icon": "https://assets.coingecko.com/coins/images/32577/thumb/UI_Icon_Coin_Token_AFC_200x200.png?1698558434",
+    "symbol": "AFC",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0x458a2df1a5c74c5dc9ed6e01dd1178e6d353243b": {
+    "assetId": "eip155:42161/erc20:0x458a2df1a5c74c5dc9ed6e01dd1178e6d353243b",
+    "chainId": "eip155:42161",
+    "name": "Adv3nture xyz Gemstone",
+    "precision": 18,
+    "color": "#ACDC24",
+    "icon": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAIAAAACACAMAAAD04JH5AAADAFBMVEUtN0is2Cb///8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAg93usAAABAHRSTlP/////AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAf6K/dgAAQItJREFUeNoBgEB/vwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgICAgICAgICAgICAgICAQEBAQEBAQEBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgEBAQEBAQECAgICAgICAQEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAAAAAAAAAEBAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAAAAAAAAAEBAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAAAAAAAAAEBAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAAAAAAAAAEBAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAAAAAAAAAEBAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAQMDAwMDAwMDAwMDAwMDAwMDAwMDAgICAgICAgEBAQEBAQECAgICAgICAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAACAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAMDAwMDAwMAAAAAAAACAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAgICAgICAgEBAQEBAQECAgICAgICAgICAgICAgMAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAACAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAgICAgICAgMBAQEBAQECAgICAgICAgICAgICAgMAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAACAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAgICAgICAgMBAQEBAQECAgICAgICAgICAgICAgMAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAACAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAgICAgICAgMBAQEBAQECAgICAgICAgICAgICAgMAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAACAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAgICAgICAgMBAQEBAQECAgICAgICAgICAgICAgMAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAACAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAgICAgICAgMBAQEBAQECAgICAgICAgICAgICAgMAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAACAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAgICAgICAgMBAQEBAQECAgICAgICAgICAgICAgMAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAgICAgICAgAAAAAAAAACAgICAgICAgICAgICAgICAgICAgICAgICAgICAAAAAAAAAAAAAAAAAAACAgICAgICAwMDAwMDAwICAgICAgIBAwMDAwMDAgICAgICAgMAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAgICAgICAgMAAAAAAAACAgICAgICAgICAgICAgICAgICAgICAgICAgICAwAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQICAgICAgIDAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAgICAgICAgMAAAAAAAACAgICAgICAgICAgICAgICAgICAgICAgICAgICAwAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQICAgICAgIDAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAgICAgICAgMAAAAAAAACAgICAgICAgICAgICAgICAgICAgICAgICAgICAwAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQICAgICAgIDAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAgICAgICAgMAAAAAAAACAgICAgICAgICAgICAgICAgICAgICAgICAgICAwAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQICAgICAgIDAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAgICAgICAgMAAAAAAAACAgICAgICAgICAgICAgICAgICAgICAgICAgICAwAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQICAgICAgIDAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAgICAgICAgMAAAAAAAACAgICAgICAgICAgICAgICAgICAgICAgICAgICAwAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQICAgICAgIDAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAwMDAwMDAgICAgICAgMAAAAAAAACAgICAgICAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEDAwMDAwMDAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAACAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAACAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAACAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAACAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAACAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAAAAwMDAwMDAgICAgICAgICAgICAgICAgICAgICAQMDAwMDAwMBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgEBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAAAAAAAAAEBAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAAAAAAAAAEBAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAAAAAAAAAEBAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAAAAAAAAAEBAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAAAAAAAAAEBAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAAAAAAAAAEBAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAAAAAAAAAEBAQMDAwMDAwMDAwMDAwMDAwMDAwMDAwEBAQEBAQEBAQEBAQEBAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMBAQEBAQEBAwMDAwMDAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAMDAwMDAwMAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH7RMfK0eSDaAAAAAElFTkSuQmCC",
+    "symbol": "GEM",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0x45d780cfe839b8a8f292c9e26aa5d1805bc536dc": {
+    "assetId": "eip155:42161/erc20:0x45d780cfe839b8a8f292c9e26aa5d1805bc536dc",
+    "chainId": "eip155:42161",
+    "name": "Zoci on Arbitrum One",
+    "precision": 18,
+    "color": "#FC7434",
+    "icon": "https://assets.coingecko.com/coins/images/31809/thumb/200x.png?1696530624",
+    "symbol": "ZOCI",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0x463913d3a3d3d291667d53b8325c598eb88d3b0e": {
+    "assetId": "eip155:42161/erc20:0x463913d3a3d3d291667d53b8325c598eb88d3b0e",
+    "chainId": "eip155:42161",
+    "name": "SolidLizard",
+    "precision": 18,
+    "color": "#43203C",
+    "icon": "https://assets.coingecko.com/coins/images/28968/thumb/sliz-logo.png?1696527941",
+    "symbol": "SLIZ",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0x46b979440ac257151ee5a5bc9597b76386907fa1": {
+    "assetId": "eip155:42161/erc20:0x46b979440ac257151ee5a5bc9597b76386907fa1",
+    "chainId": "eip155:42161",
+    "name": "Dinari COIN",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/32983/thumb/Frame_16189.png?1700091568",
+    "symbol": "COIND",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0x46d0ce7de6247b0a95f67b43b589b4041bae7fbe": {
+    "assetId": "eip155:42161/erc20:0x46d0ce7de6247b0a95f67b43b589b4041bae7fbe",
+    "chainId": "eip155:42161",
+    "name": "Loopring on Arbitrum One",
+    "precision": 18,
+    "color": "#1C64FC",
+    "icon": "https://assets.coingecko.com/coins/images/913/thumb/LRC.png?1696502034",
+    "symbol": "LRC",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0x488cc08935458403a0458e45e20c0159c8ab2c92": {
+    "assetId": "eip155:42161/erc20:0x488cc08935458403a0458e45e20c0159c8ab2c92",
+    "chainId": "eip155:42161",
+    "name": "Futureswap on Arbitrum One",
+    "precision": 18,
+    "color": "#6173EE",
+    "icon": "https://assets.coingecko.com/coins/images/14520/thumb/futureswap_logo.png?1696514206",
+    "symbol": "FST",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0x493070ef5280e7a275a106a30b0414dbdb21febd": {
+    "assetId": "eip155:42161/erc20:0x493070ef5280e7a275a106a30b0414dbdb21febd",
+    "chainId": "eip155:42161",
+    "name": "AI Supreme",
+    "precision": 9,
+    "color": "#E0C8E6",
+    "icon": "https://assets.coingecko.com/coins/images/30900/thumb/200.png?1696529746",
+    "symbol": "AISP",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0x4945970efeec98d393b4b979b9be265a3ae28a8b": {
+    "assetId": "eip155:42161/erc20:0x4945970efeec98d393b4b979b9be265a3ae28a8b",
+    "chainId": "eip155:42161",
+    "name": "GMD on Arbitrum One",
+    "precision": 18,
+    "color": "#3D8BE4",
+    "icon": "https://assets.coingecko.com/coins/images/28088/thumb/gmd.png?1696527098",
+    "symbol": "GMD",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0x498c620c7c91c6eba2e3cd5485383f41613b7eb6": {
+    "assetId": "eip155:42161/erc20:0x498c620c7c91c6eba2e3cd5485383f41613b7eb6",
+    "chainId": "eip155:42161",
+    "name": "Alongside Crypto Market Index on Arbitrum One",
+    "precision": 18,
+    "color": "#EEEEEE",
+    "icon": "https://assets.coingecko.com/coins/images/28496/thumb/22999.png?1696527488",
+    "symbol": "AMKT",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0x4c4b907bd5c38d14a084aac4f511a9b46f7ec429": {
+    "assetId": "eip155:42161/erc20:0x4c4b907bd5c38d14a084aac4f511a9b46f7ec429",
+    "chainId": "eip155:42161",
+    "name": "RB Share",
+    "precision": 18,
+    "color": "#61E8C6",
+    "icon": "https://assets.coingecko.com/coins/images/29660/thumb/Share_token.png?1696528595",
+    "symbol": "RBX",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0x4c70d32295de15fdf302d3bcbb7fc2631ace1c91": {
+    "assetId": "eip155:42161/erc20:0x4c70d32295de15fdf302d3bcbb7fc2631ace1c91",
+    "chainId": "eip155:42161",
+    "name": "LSDoge",
+    "precision": 9,
+    "color": "#BFF556",
+    "icon": "https://assets.coingecko.com/coins/images/29999/thumb/LSDoge_200_200.png?1696528924",
+    "symbol": "LSDOGE",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0x4cfa50b7ce747e2d61724fcac57f24b748ff2b2a": {
+    "assetId": "eip155:42161/erc20:0x4cfa50b7ce747e2d61724fcac57f24b748ff2b2a",
+    "chainId": "eip155:42161",
+    "name": "Fluid USDC on Arbitrum One",
+    "precision": 6,
+    "color": "#4976B8",
+    "icon": "https://assets.coingecko.com/coins/images/28471/thumb/fUSDC-200x200.png?1696527465",
+    "symbol": "FUSDC",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0x4d010dbe0c6cdc0571bba026d6dfabbf40c9af28": {
+    "assetId": "eip155:42161/erc20:0x4d010dbe0c6cdc0571bba026d6dfabbf40c9af28",
+    "chainId": "eip155:42161",
+    "name": "GemDrop",
+    "precision": 18,
+    "color": "#9455ED",
+    "icon": "https://assets.coingecko.com/coins/images/32533/thumb/logogemdrop.png?1698461472",
+    "symbol": "GEM",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0x4d15a3a2286d883af0aa1b3f21367843fac63e07": {
+    "assetId": "eip155:42161/erc20:0x4d15a3a2286d883af0aa1b3f21367843fac63e07",
+    "chainId": "eip155:42161",
+    "name": "Bridged TrueUSD on Arbitrum One",
+    "precision": 18,
+    "color": "#1F5AE7",
+    "icon": "https://assets.coingecko.com/coins/images/30837/thumb/tusd.jpeg?1696529695",
+    "symbol": "TUSD",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0x4dad357726b41bb8932764340ee9108cc5ad33a0": {
+    "assetId": "eip155:42161/erc20:0x4dad357726b41bb8932764340ee9108cc5ad33a0",
+    "chainId": "eip155:42161",
+    "name": "NitroShiba",
+    "precision": 18,
+    "color": "#333F52",
+    "icon": "https://assets.coingecko.com/coins/images/27288/thumb/nishib_logo.png?1696526340",
+    "symbol": "NISHIB",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0x4dafffddea93ddf1e0e7b61e844331455053ce5c": {
+    "assetId": "eip155:42161/erc20:0x4dafffddea93ddf1e0e7b61e844331455053ce5c",
+    "chainId": "eip155:42161",
+    "name": "Dinari NVDA",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/32401/thumb/token-icon.png?1698055556",
+    "symbol": "NVDAD",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0x4e05d153305bc472e220ec3f7a7894b38f74741f": {
+    "assetId": "eip155:42161/erc20:0x4e05d153305bc472e220ec3f7a7894b38f74741f",
+    "chainId": "eip155:42161",
+    "name": "Smart Aliens",
+    "precision": 18,
+    "color": "#1930B2",
+    "icon": "https://assets.coingecko.com/coins/images/30710/thumb/SAS200x200.png?1699220256",
+    "symbol": "SAS",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0x4e352cf164e64adcbad318c3a1e222e9eba4ce42": {
+    "assetId": "eip155:42161/erc20:0x4e352cf164e64adcbad318c3a1e222e9eba4ce42",
+    "chainId": "eip155:42161",
+    "name": "MUX Protocol on Arbitrum One",
+    "precision": 18,
+    "color": "#6ACFD8",
+    "icon": "https://assets.coingecko.com/coins/images/11796/thumb/mux.jpg?1696511672",
+    "symbol": "MCB",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0x4e914bbdcde0f455a8ac9d59d3bf739c46287ed2": {
+    "assetId": "eip155:42161/erc20:0x4e914bbdcde0f455a8ac9d59d3bf739c46287ed2",
+    "chainId": "eip155:42161",
+    "name": "Bridged Sommelier  Axelar ",
+    "precision": 6,
+    "color": "#24DC5C",
+    "icon": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAIAAAACACAMAAAD04JH5AAADAFBMVEUtN0gm2F3///8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoeUEbAAABAHRSTlP/////AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAf6K/dgAAQItJREFUeNoBgEB/vwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgICAgICAgICAgICAgICAQEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgICAgICAgICAgICAgICAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgICAgICAgICAgICAgICAwAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgICAgICAgICAgICAgICAwAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgICAgICAgICAgICAgICAwAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgICAgICAgICAgICAgICAwAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgICAgICAgICAgICAgICAwAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgICAgICAgICAgICAgICAwAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAAMDAwMDAwMDAwMDAwMDAwMDAwMDAgICAgICAgEBAQEBAQECAgICAgICAQMDAwMDAwMDAwMDAwMDAwMDAwMDAgICAgICAgAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAACAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAgICAgICAgMAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAACAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAMDAwMDAwMAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAACAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAACAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAACAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAACAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAACAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAACAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAwMDAwMDAgICAgICAgICAgICAgICAgICAgICAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgICAgICAgICAgICAgICAgICAgICAwAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgICAgICAgICAgICAgICAgICAgICAwAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgICAgICAgICAgICAgICAgICAgICAwAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgICAgICAgICAgICAgICAgICAgICAwAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgICAgICAgICAgICAgICAgICAgICAwAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgICAgICAgICAgICAgICAgICAgICAwAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMDAwMDAwMDAwMDAwMDAwMDAwMDAgICAgICAgAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgICAgICAgMAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgICAgICAgMAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgICAgICAgMAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgICAgICAgMAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgICAgICAgMAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAAAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgEBAQEBAQEBAwMDAwMDAgICAgICAgICAgICAgICAgICAgICAQMDAwMDAwMBAQEBAQEBAwMDAwMDAgICAgICAgICAgICAgICAgICAgICAAMDAwMDAwMAAAAAAAAAAAACAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMBAQEBAQEBAQEBAQAAAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgICAgICAgICAgICAgICAwAAAAAAAAAAAAAAAAAAAAACAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMBAQEBAQEBAQEBAQAAAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgICAgICAgICAgICAgICAwAAAAAAAAAAAAAAAAAAAAACAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMBAQEBAQEBAQEBAQAAAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgICAgICAgICAgICAgICAwAAAAAAAAAAAAAAAAAAAAACAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMBAQEBAQEBAQEBAQAAAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgICAgICAgICAgICAgICAwAAAAAAAAAAAAAAAAAAAAACAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMBAQEBAQEBAQEBAQAAAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgICAgICAgICAgICAgICAwAAAAAAAAAAAAAAAAAAAAACAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMBAQEBAQEBAQEBAQAAAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgICAgICAgICAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMBAQEBAQEBAQEBAQAAAAMDAwMDAwMDAwMDAwMDAwMDAwMDAwEBAQEBAQEBAQEBAQEBAQEBAQEBAQMDAwMDAwMDAwMDAwMDAwMDAwMDAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP8/Lw595ovbAAAAAElFTkSuQmCC",
+    "symbol": "AXLSOMM",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0x500756c7d239aee30f52c7e52af4f4f008d1a98f": {
+    "assetId": "eip155:42161/erc20:0x500756c7d239aee30f52c7e52af4f4f008d1a98f",
+    "chainId": "eip155:42161",
+    "name": "Petroleum OIL",
+    "precision": 18,
+    "color": "#4C645F",
+    "icon": "https://assets.coingecko.com/coins/images/28350/thumb/OIL_200.png?1696527354",
+    "symbol": "OIL",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0x509fd25ee2ac7833a017f17ee8a6fb4aaf947876": {
+    "assetId": "eip155:42161/erc20:0x509fd25ee2ac7833a017f17ee8a6fb4aaf947876",
+    "chainId": "eip155:42161",
+    "name": "Magpie WOM on Arbitrum One",
+    "precision": 18,
+    "color": "#847564",
+    "icon": "https://assets.coingecko.com/coins/images/29924/thumb/mWOM.png?1696528852",
+    "symbol": "MWOM",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0x50aa7a13b28eea97dc6c3f5e8aaa7fe512e7306d": {
+    "assetId": "eip155:42161/erc20:0x50aa7a13b28eea97dc6c3f5e8aaa7fe512e7306d",
+    "chainId": "eip155:42161",
+    "name": "XBlue Finance",
+    "precision": 18,
+    "color": "#4E6898",
+    "icon": "https://assets.coingecko.com/coins/images/29375/thumb/photo_2023-03-04_15-07-08.png?1696528322",
+    "symbol": "XB",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0x50e401255275dc405a99d3281f396cca681eea9d": {
+    "assetId": "eip155:42161/erc20:0x50e401255275dc405a99d3281f396cca681eea9d",
+    "chainId": "eip155:42161",
+    "name": "Kortana",
+    "precision": 18,
+    "color": "#08274E",
+    "icon": "https://assets.coingecko.com/coins/images/30966/thumb/Logo_Kortana_Redondo-4_%281%29.png?1696529806",
+    "symbol": "KORA",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0x51318b7d00db7acc4026c88c3952b66278b6a67f": {
+    "assetId": "eip155:42161/erc20:0x51318b7d00db7acc4026c88c3952b66278b6a67f",
+    "chainId": "eip155:42161",
+    "name": "PlutusDAO",
+    "precision": 18,
+    "color": "#508230",
+    "icon": "https://assets.coingecko.com/coins/images/25326/thumb/M6nUndNU_400x400.jpg?1696524461",
+    "symbol": "PLS",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0x513c7e3a9c69ca3e22550ef58ac1c0088e918fff": {
+    "assetId": "eip155:42161/erc20:0x513c7e3a9c69ca3e22550ef58ac1c0088e918fff",
+    "chainId": "eip155:42161",
+    "name": "Aave v3 wstETH on Arbitrum One",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/32890/thumb/WSTETH.png?1699776336",
+    "symbol": "AWSTETH",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0x519062155b0591627c8a0c0958110a8c5639dca6": {
+    "assetId": "eip155:42161/erc20:0x519062155b0591627c8a0c0958110a8c5639dca6",
+    "chainId": "eip155:42161",
+    "name": "Dinari META",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/32394/thumb/token-icon.png?1698053183",
+    "symbol": "METAD",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0x5190f06eacefa2c552dc6bd5e763b81c73293293": {
+    "assetId": "eip155:42161/erc20:0x5190f06eacefa2c552dc6bd5e763b81c73293293",
+    "chainId": "eip155:42161",
+    "name": "Wombex on Arbitrum One",
+    "precision": 18,
+    "color": "#342C1D",
+    "icon": "https://assets.coingecko.com/coins/images/27844/thumb/WMX_logo.png?1696526863",
+    "symbol": "WMX",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0x51a80238b5738725128d3a3e06ab41c1d4c05c74": {
+    "assetId": "eip155:42161/erc20:0x51a80238b5738725128d3a3e06ab41c1d4c05c74",
+    "chainId": "eip155:42161",
+    "name": "unshETHing Token on Arbitrum One",
+    "precision": 18,
+    "color": "#04C6FA",
+    "icon": "https://assets.coingecko.com/coins/images/29337/thumb/unsheth_large_logo.png?1696528287",
+    "symbol": "USH",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0x51b902f19a56f0c8e409a34a215ad2673edf3284": {
+    "assetId": "eip155:42161/erc20:0x51b902f19a56f0c8e409a34a215ad2673edf3284",
+    "chainId": "eip155:42161",
+    "name": "NFTEarth on Arbitrum One",
+    "precision": 18,
+    "color": "#E1FBED",
+    "icon": "https://assets.coingecko.com/coins/images/29116/thumb/20230223_224134.jpg?1696528078",
+    "symbol": "NFTE",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0x51f9f9ff6cb2266d68c04ec289c7aba81378a383": {
+    "assetId": "eip155:42161/erc20:0x51f9f9ff6cb2266d68c04ec289c7aba81378a383",
+    "chainId": "eip155:42161",
+    "name": "iGameS",
+    "precision": 18,
+    "color": "#B38B38",
+    "icon": "https://assets.coingecko.com/coins/images/31416/thumb/igs_logo.png?1696530231",
+    "symbol": "IGS",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0x51fc0f6660482ea73330e414efd7808811a57fa2": {
+    "assetId": "eip155:42161/erc20:0x51fc0f6660482ea73330e414efd7808811a57fa2",
+    "chainId": "eip155:42161",
+    "name": "Premia on Arbitrum One",
+    "precision": 18,
+    "color": "#5494FC",
+    "icon": "https://assets.coingecko.com/coins/images/13962/thumb/apple-touch-icon.png?1696513698",
+    "symbol": "PREMIA",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0x5326e71ff593ecc2cf7acae5fe57582d6e74cff1": {
+    "assetId": "eip155:42161/erc20:0x5326e71ff593ecc2cf7acae5fe57582d6e74cff1",
+    "chainId": "eip155:42161",
+    "name": "plvGLP",
+    "precision": 18,
+    "color": "#07950C",
+    "icon": "https://assets.coingecko.com/coins/images/30554/thumb/plvGLP.png?1696529425",
+    "symbol": "PLVGLP",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0x53691596d1bce8cea565b84d4915e69e03d9c99d": {
+    "assetId": "eip155:42161/erc20:0x53691596d1bce8cea565b84d4915e69e03d9c99d",
+    "chainId": "eip155:42161",
+    "name": "Across Protocol on Arbitrum One",
+    "precision": 18,
+    "color": "#6BF9D9",
+    "icon": "https://assets.coingecko.com/coins/images/28161/thumb/across-200x200.png?1696527165",
+    "symbol": "ACX",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0x539bde0d7dbd336b79148aa742883198bbf60342": {
+    "assetId": "eip155:42161/erc20:0x539bde0d7dbd336b79148aa742883198bbf60342",
+    "chainId": "eip155:42161",
+    "name": "Magic on Arbitrum One",
+    "precision": 18,
+    "color": "#F8D5D0",
+    "icon": "https://assets.coingecko.com/coins/images/18623/thumb/magic.png?1696518095",
+    "symbol": "MAGIC",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0x53bcf6698c911b2a7409a740eacddb901fc2a2c6": {
+    "assetId": "eip155:42161/erc20:0x53bcf6698c911b2a7409a740eacddb901fc2a2c6",
+    "chainId": "eip155:42161",
+    "name": "Kabosu  Arbitrum ",
+    "precision": 18,
+    "color": "#CCBC92",
+    "icon": "https://assets.coingecko.com/coins/images/30320/thumb/IMG_20230510_204814_554_copy_200x200.jpg?1696529222",
+    "symbol": "KABOSU",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0x5429706887fcb58a595677b73e9b0441c25d993d": {
+    "assetId": "eip155:42161/erc20:0x5429706887fcb58a595677b73e9b0441c25d993d",
+    "chainId": "eip155:42161",
+    "name": "UniDex on Arbitrum One",
+    "precision": 18,
+    "color": "#E7EBF7",
+    "icon": "https://assets.coingecko.com/coins/images/13178/thumb/unidx.png?1696512961",
+    "symbol": "UNIDX",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0x54355cc6913b26a15cca1f820cf17d362fa65db5": {
+    "assetId": "eip155:42161/erc20:0x54355cc6913b26a15cca1f820cf17d362fa65db5",
+    "chainId": "eip155:42161",
+    "name": "SolidLizard synthetic USD",
+    "precision": 6,
+    "color": "#1E2239",
+    "icon": "https://assets.coingecko.com/coins/images/29900/thumb/slzUSDC2.png?1696528829",
+    "symbol": "SLZUSDC",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0x5441695f4445e40900b4c4b0fb3ed2b9e51601a6": {
+    "assetId": "eip155:42161/erc20:0x5441695f4445e40900b4c4b0fb3ed2b9e51601a6",
+    "chainId": "eip155:42161",
+    "name": "ARTH on Arbitrum One",
+    "precision": 18,
+    "color": "#241C1A",
+    "icon": "https://assets.coingecko.com/coins/images/16876/thumb/Ik5dhOq.png?1696516444",
+    "symbol": "ARTH",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0x55678cd083fcdc2947a0df635c93c838c89454a3": {
+    "assetId": "eip155:42161/erc20:0x55678cd083fcdc2947a0df635c93c838c89454a3",
+    "chainId": "eip155:42161",
+    "name": "Tokenlon on Arbitrum One",
+    "precision": 18,
+    "color": "#2C2C49",
+    "icon": "https://assets.coingecko.com/coins/images/13454/thumb/lon_logo.png?1696513217",
+    "symbol": "LON",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0x5575552988a3a80504bbaeb1311674fcfd40ad4b": {
+    "assetId": "eip155:42161/erc20:0x5575552988a3a80504bbaeb1311674fcfd40ad4b",
+    "chainId": "eip155:42161",
+    "name": "Sperax on Arbitrum One",
+    "precision": 18,
+    "color": "#1B1E20",
+    "icon": "https://assets.coingecko.com/coins/images/12232/thumb/sperax_logo.jpg?1696512065",
+    "symbol": "SPA",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0x55ff62567f09906a85183b866df84bf599a4bf70": {
+    "assetId": "eip155:42161/erc20:0x55ff62567f09906a85183b866df84bf599a4bf70",
+    "chainId": "eip155:42161",
+    "name": "Kromatika on Arbitrum One",
+    "precision": 18,
+    "color": "#B0C9F9",
+    "icon": "https://assets.coingecko.com/coins/images/20541/thumb/KROM_Transparent.png?1696519948",
+    "symbol": "KROM",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0x560363bda52bc6a44ca6c8c9b4a5fadbda32fa60": {
+    "assetId": "eip155:42161/erc20:0x560363bda52bc6a44ca6c8c9b4a5fadbda32fa60",
+    "chainId": "eip155:42161",
+    "name": "Seedify fund on Arbitrum One",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/14614/thumb/Favicon_Icon.png?1696514292",
+    "symbol": "SFUND",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0x56659245931cb6920e39c189d2a0e7dd0da2d57b": {
+    "assetId": "eip155:42161/erc20:0x56659245931cb6920e39c189d2a0e7dd0da2d57b",
+    "chainId": "eip155:42161",
+    "name": "Impermax on Arbitrum One",
+    "precision": 18,
+    "color": "#29A29A",
+    "icon": "https://assets.coingecko.com/coins/images/27606/thumb/IqwOmX-c_400x400.jpeg?1696526637",
+    "symbol": "IBEX",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0x56b251d4b493ee3956e3f899d36b7290902d2326": {
+    "assetId": "eip155:42161/erc20:0x56b251d4b493ee3956e3f899d36b7290902d2326",
+    "chainId": "eip155:42161",
+    "name": "MMFinance  Arbitrum ",
+    "precision": 18,
+    "color": "#E1BC92",
+    "icon": "https://assets.coingecko.com/coins/images/29729/thumb/MMF_Arb_org.png?1696528659",
+    "symbol": "MMF",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0x580e933d90091b9ce380740e3a4a39c67eb85b4c": {
+    "assetId": "eip155:42161/erc20:0x580e933d90091b9ce380740e3a4a39c67eb85b4c",
+    "chainId": "eip155:42161",
+    "name": "GameSwift on Arbitrum One",
+    "precision": 18,
+    "color": "#1D252A",
+    "icon": "https://assets.coingecko.com/coins/images/30949/thumb/GameSwift_Token.png?1696529788",
+    "symbol": "GSWIFT",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0x589d35656641d6ab57a545f08cf473ecd9b6d5f7": {
+    "assetId": "eip155:42161/erc20:0x589d35656641d6ab57a545f08cf473ecd9b6d5f7",
+    "chainId": "eip155:42161",
+    "name": "GYEN on Arbitrum One",
+    "precision": 6,
+    "color": "#C4D7EC",
+    "icon": "https://assets.coingecko.com/coins/images/14191/thumb/icon_gyen_200_200.png?1696513909",
+    "symbol": "GYEN",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0x58b9cb810a68a7f3e1e4f8cb45d1b9b3c79705e8": {
+    "assetId": "eip155:42161/erc20:0x58b9cb810a68a7f3e1e4f8cb45d1b9b3c79705e8",
+    "chainId": "eip155:42161",
+    "name": "Connext on Arbitrum One",
+    "precision": 18,
+    "color": "#09070B",
+    "icon": "https://assets.coingecko.com/coins/images/31293/thumb/connext.png?1696530113",
+    "symbol": "NEXT",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0x58e50e24d5160def294b6b6410d12c597054b79e": {
+    "assetId": "eip155:42161/erc20:0x58e50e24d5160def294b6b6410d12c597054b79e",
+    "chainId": "eip155:42161",
+    "name": "Fuzz Finance",
+    "precision": 18,
+    "color": "#4E748C",
+    "icon": "https://assets.coingecko.com/coins/images/18395/thumb/Fuzz-200x200.png?1696517886",
+    "symbol": "FUZZ",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0x5979d7b546e38e414f7e9822514be443a4800529": {
+    "assetId": "eip155:42161/erc20:0x5979d7b546e38e414f7e9822514be443a4800529",
+    "chainId": "eip155:42161",
+    "name": "Wrapped stETH on Arbitrum One",
+    "precision": 18,
+    "color": "#04A4FC",
+    "icon": "https://assets.coingecko.com/coins/images/18834/thumb/wstETH.png?1696518295",
+    "symbol": "WSTETH",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0x59a729658e9245b0cf1f8cb9fb37945d2b06ea27": {
+    "assetId": "eip155:42161/erc20:0x59a729658e9245b0cf1f8cb9fb37945d2b06ea27",
+    "chainId": "eip155:42161",
+    "name": "GenomesDAO on Arbitrum One",
+    "precision": 18,
+    "color": "#E8DFF0",
+    "icon": "https://assets.coingecko.com/coins/images/20807/thumb/1637683704200x200.png?1696520200",
+    "symbol": "GENE",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0x59d9356e565ab3a36dd77763fc0d87feaf85508c": {
+    "assetId": "eip155:42161/erc20:0x59d9356e565ab3a36dd77763fc0d87feaf85508c",
+    "chainId": "eip155:42161",
+    "name": "Mountain Protocol USD on Arbitrum One",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/31719/thumb/usdm.png?1696530540",
+    "symbol": "USDM",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0x5b6424769823e82a1829b0a8bcaf501bffd90d25": {
+    "assetId": "eip155:42161/erc20:0x5b6424769823e82a1829b0a8bcaf501bffd90d25",
+    "chainId": "eip155:42161",
+    "name": "Dinari PYPL",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/32426/thumb/token-icon.png?1698119995",
+    "symbol": "PYPLD",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0x5db7b150c5f38c5f5db11dcbdb885028fcc51d68": {
+    "assetId": "eip155:42161/erc20:0x5db7b150c5f38c5f5db11dcbdb885028fcc51d68",
+    "chainId": "eip155:42161",
+    "name": "Sterling Finance",
+    "precision": 18,
+    "color": "#868590",
+    "icon": "https://assets.coingecko.com/coins/images/29167/thumb/FullLogo_Transparent_NoBuffer.png?1696528125",
+    "symbol": "STR",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0x5f006745a9a192a7cd1236089f704f9b35d3b9cd": {
+    "assetId": "eip155:42161/erc20:0x5f006745a9a192a7cd1236089f704f9b35d3b9cd",
+    "chainId": "eip155:42161",
+    "name": "Arable Protocol on Arbitrum One",
+    "precision": 18,
+    "color": "#BFC8C0",
+    "icon": "https://assets.coingecko.com/coins/images/23659/thumb/acre_token-02.png?1696522862",
+    "symbol": "ACRE",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0x5f320aae9b786a9f329a39e41a74e88e14783067": {
+    "assetId": "eip155:42161/erc20:0x5f320aae9b786a9f329a39e41a74e88e14783067",
+    "chainId": "eip155:42161",
+    "name": "PEPEX",
+    "precision": 18,
+    "color": "#24CD5E",
+    "icon": "https://assets.coingecko.com/coins/images/30028/thumb/COIN.png?1696528951",
+    "symbol": "PEPEX",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0x5fd71280b6385157b291b9962f22153fc9e79000": {
+    "assetId": "eip155:42161/erc20:0x5fd71280b6385157b291b9962f22153fc9e79000",
+    "chainId": "eip155:42161",
+    "name": "Garbi Protocol",
+    "precision": 18,
+    "color": "#040404",
+    "icon": "https://assets.coingecko.com/coins/images/29142/thumb/garbi.png?1696528102",
+    "symbol": "GRB",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0x602eb0d99a5e3e76d1510372c4d2020e12eaea8a": {
+    "assetId": "eip155:42161/erc20:0x602eb0d99a5e3e76d1510372c4d2020e12eaea8a",
+    "chainId": "eip155:42161",
+    "name": "TridentDAO",
+    "precision": 9,
+    "color": "#162015",
+    "icon": "https://assets.coingecko.com/coins/images/28955/thumb/trident.jpg?1696527928",
+    "symbol": "PSI",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0x617b76412bd9f3f80fe87d1533dc7017defa8ad1": {
+    "assetId": "eip155:42161/erc20:0x617b76412bd9f3f80fe87d1533dc7017defa8ad1",
+    "chainId": "eip155:42161",
+    "name": "XRender",
+    "precision": 18,
+    "color": "#7B5AE3",
+    "icon": "https://assets.coingecko.com/coins/images/32364/thumb/image_2023-10-14_16-00-43.png?1698029814",
+    "symbol": "XRAI",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0x61a1ff55c5216b636a294a07d77c6f4df10d3b56": {
+    "assetId": "eip155:42161/erc20:0x61a1ff55c5216b636a294a07d77c6f4df10d3b56",
+    "chainId": "eip155:42161",
+    "name": "ApeX on Arbitrum One",
+    "precision": 18,
+    "color": "#CFA012",
+    "icon": "https://assets.coingecko.com/coins/images/25266/thumb/CxpMECpk_400x400_%281%29.png?1696524406",
+    "symbol": "APEX",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0x625e7708f30ca75bfd92586e17077590c60eb4cd": {
+    "assetId": "eip155:42161/erc20:0x625e7708f30ca75bfd92586e17077590c60eb4cd",
+    "chainId": "eip155:42161",
+    "name": "Aave v3 USDC e",
+    "precision": 6,
+    "color": "#AFACD6",
+    "icon": "https://assets.coingecko.com/coins/images/32911/thumb/usdc.png?1699824302",
+    "symbol": "AUSDCE",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0x62cffe9917790edd44fbc36a76cb8e4920bd1268": {
+    "assetId": "eip155:42161/erc20:0x62cffe9917790edd44fbc36a76cb8e4920bd1268",
+    "chainId": "eip155:42161",
+    "name": "Twister Finance",
+    "precision": 18,
+    "color": "#0C1616",
+    "icon": "https://assets.coingecko.com/coins/images/30330/thumb/unnamed.jpg?1696529231",
+    "symbol": "TWST",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0x635d0e13f98e107cf6c5cdfbf52c19843f87e76a": {
+    "assetId": "eip155:42161/erc20:0x635d0e13f98e107cf6c5cdfbf52c19843f87e76a",
+    "chainId": "eip155:42161",
+    "name": "Dominator Domains",
+    "precision": 18,
+    "color": "#1C2533",
+    "icon": "https://assets.coingecko.com/coins/images/29731/thumb/IMG_20230406_230429_102.jpg?1696528661",
+    "symbol": "DOMDOM",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0x640278bada847b7ce71bb22f20517a009a049640": {
+    "assetId": "eip155:42161/erc20:0x640278bada847b7ce71bb22f20517a009a049640",
+    "chainId": "eip155:42161",
+    "name": "GoSleep NGT on Arbitrum One",
+    "precision": 18,
+    "color": "#F8D5A1",
+    "icon": "https://assets.coingecko.com/coins/images/29826/thumb/NGT200_200.png?1696528754",
+    "symbol": "NGT",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0x641441c631e2f909700d2f41fd87f0aa6a6b4edb": {
+    "assetId": "eip155:42161/erc20:0x641441c631e2f909700d2f41fd87f0aa6a6b4edb",
+    "chainId": "eip155:42161",
+    "name": "dForce USD on Arbitrum One",
+    "precision": 18,
+    "color": "#FC9C04",
+    "icon": "https://assets.coingecko.com/coins/images/17422/thumb/usx_32.png?1696516969",
+    "symbol": "USX",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0x64343594ab9b56e99087bfa6f2335db24c2d1f17": {
+    "assetId": "eip155:42161/erc20:0x64343594ab9b56e99087bfa6f2335db24c2d1f17",
+    "chainId": "eip155:42161",
+    "name": "Vesta Stable",
+    "precision": 18,
+    "color": "#1C2839",
+    "icon": "https://assets.coingecko.com/coins/images/23621/thumb/vesta.png?1696522826",
+    "symbol": "VST",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0x643b34980e635719c15a2d4ce69571a258f940e9": {
+    "assetId": "eip155:42161/erc20:0x643b34980e635719c15a2d4ce69571a258f940e9",
+    "chainId": "eip155:42161",
+    "name": "The Standard EURO on Arbitrum One",
+    "precision": 18,
+    "color": "#EECA27",
+    "icon": "https://assets.coingecko.com/coins/images/32231/thumb/EUROs-coingecko.png?1696936278",
+    "symbol": "EUROS",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0x6533afac2e7bccb20dca161449a13a32d391fb00": {
+    "assetId": "eip155:42161/erc20:0x6533afac2e7bccb20dca161449a13a32d391fb00",
+    "chainId": "eip155:42161",
+    "name": "Aave v3 ARB",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/32912/thumb/arbitrum.png?1699824441",
+    "symbol": "AARB",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0x654c908305021b2eaf881cee774ece1d2bcac5fc": {
+    "assetId": "eip155:42161/erc20:0x654c908305021b2eaf881cee774ece1d2bcac5fc",
+    "chainId": "eip155:42161",
+    "name": "GMCash",
+    "precision": 18,
+    "color": "#1FA6D7",
+    "icon": "https://assets.coingecko.com/coins/images/29722/thumb/Token.png?1696528653",
+    "symbol": "GMC",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0x655a6beebf2361a19549a99486ff65f709bd2646": {
+    "assetId": "eip155:42161/erc20:0x655a6beebf2361a19549a99486ff65f709bd2646",
+    "chainId": "eip155:42161",
+    "name": "LilAI",
+    "precision": 18,
+    "color": "#BCBCBC",
+    "icon": "https://assets.coingecko.com/coins/images/30621/thumb/LogoLilai_CoinGecko.png?1696529495",
+    "symbol": "LILAI",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0x65c936f008bc34fe819bce9fa5afd9dc2d49977f": {
+    "assetId": "eip155:42161/erc20:0x65c936f008bc34fe819bce9fa5afd9dc2d49977f",
+    "chainId": "eip155:42161",
+    "name": "Y2K",
+    "precision": 18,
+    "color": "#F0E53A",
+    "icon": "https://assets.coingecko.com/coins/images/28542/thumb/l7jRo-5-_400x400.jpg?1696527534",
+    "symbol": "Y2K",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0x6609be1547166d1c4605f3a243fdcff467e600c3": {
+    "assetId": "eip155:42161/erc20:0x6609be1547166d1c4605f3a243fdcff467e600c3",
+    "chainId": "eip155:42161",
+    "name": "Neutra Finance",
+    "precision": 18,
+    "color": "#A0EFE4",
+    "icon": "https://assets.coingecko.com/coins/images/28813/thumb/NEU_Token_logo.png?1696527789",
+    "symbol": "NEU",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0x6688b00f0c23a4a546beaae51a7c90c439895d48": {
+    "assetId": "eip155:42161/erc20:0x6688b00f0c23a4a546beaae51a7c90c439895d48",
+    "chainId": "eip155:42161",
+    "name": "Tarot V1 on Arbitrum One",
+    "precision": 18,
+    "color": "#1C1C1C",
+    "icon": "https://assets.coingecko.com/coins/images/17881/thumb/tarot-200px.png?1696517403",
+    "symbol": "TAROT",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0x6694340fc020c5e6b96567843da2df01b2ce1eb6": {
+    "assetId": "eip155:42161/erc20:0x6694340fc020c5e6b96567843da2df01b2ce1eb6",
+    "chainId": "eip155:42161",
+    "name": "Stargate Finance on Arbitrum One",
+    "precision": 18,
+    "color": "#8C8C8C",
+    "icon": "https://assets.coingecko.com/coins/images/24413/thumb/STG_LOGO.png?1696523595",
+    "symbol": "STG",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0x6740acb82ac5c63a7ad2397ee1faed7c788f5f8c": {
+    "assetId": "eip155:42161/erc20:0x6740acb82ac5c63a7ad2397ee1faed7c788f5f8c",
+    "chainId": "eip155:42161",
+    "name": "AlienFi",
+    "precision": 18,
+    "color": "#0B140F",
+    "icon": "https://assets.coingecko.com/coins/images/29175/thumb/alien.png?1696528133",
+    "symbol": "ALIEN",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0x67bad479f77488f0f427584e267e66086a7da43a": {
+    "assetId": "eip155:42161/erc20:0x67bad479f77488f0f427584e267e66086a7da43a",
+    "chainId": "eip155:42161",
+    "name": "Dinari ARM",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/32982/thumb/Frame_16189.png?1700091554",
+    "symbol": "ARMD",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0x67c31056358b8977ea95a3a899dd380d4bced706": {
+    "assetId": "eip155:42161/erc20:0x67c31056358b8977ea95a3a899dd380d4bced706",
+    "chainId": "eip155:42161",
+    "name": "ETHforestAI",
+    "precision": 18,
+    "color": "#CA8866",
+    "icon": "https://assets.coingecko.com/coins/images/29515/thumb/ethfai_logo.png?1696528459",
+    "symbol": "ETHFAI",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0x680447595e8b7b3aa1b43beb9f6098c79ac2ab3f": {
+    "assetId": "eip155:42161/erc20:0x680447595e8b7b3aa1b43beb9f6098c79ac2ab3f",
+    "chainId": "eip155:42161",
+    "name": "USDD on Arbitrum One",
+    "precision": 18,
+    "color": "#3D7564",
+    "icon": "https://assets.coingecko.com/coins/images/25380/thumb/UUSD.jpg?1696524513",
+    "symbol": "USDD",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0x68ead55c258d6fa5e46d67fc90f53211eab885be": {
+    "assetId": "eip155:42161/erc20:0x68ead55c258d6fa5e46d67fc90f53211eab885be",
+    "chainId": "eip155:42161",
+    "name": "Popcorn on Arbitrum One",
+    "precision": 18,
+    "color": "#FCE45C",
+    "icon": "https://assets.coingecko.com/coins/images/21438/thumb/pop-1_200_x_200.png?1696520801",
+    "symbol": "POP",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0x69eb4fa4a2fbd498c257c57ea8b7655a2559a581": {
+    "assetId": "eip155:42161/erc20:0x69eb4fa4a2fbd498c257c57ea8b7655a2559a581",
+    "chainId": "eip155:42161",
+    "name": "DODO on Arbitrum One",
+    "precision": 18,
+    "color": "#413E04",
+    "icon": "https://assets.coingecko.com/coins/images/12651/thumb/dodo_logo.png?1696512458",
+    "symbol": "DODO",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0x6a7661795c374c0bfc635934efaddff3a7ee23b6": {
+    "assetId": "eip155:42161/erc20:0x6a7661795c374c0bfc635934efaddff3a7ee23b6",
+    "chainId": "eip155:42161",
+    "name": "DOLA on Arbitrum One",
+    "precision": 18,
+    "color": "#151D54",
+    "icon": "https://assets.coingecko.com/coins/images/14287/thumb/dola.png?1696513984",
+    "symbol": "DOLA",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0x6aa395f06986ea4efe0a4630c7865c1eb08d5e7e": {
+    "assetId": "eip155:42161/erc20:0x6aa395f06986ea4efe0a4630c7865c1eb08d5e7e",
+    "chainId": "eip155:42161",
+    "name": "Jarvis Reward on Arbitrum One",
+    "precision": 18,
+    "color": "#54FC74",
+    "icon": "https://assets.coingecko.com/coins/images/10390/thumb/cfeii0y.png?1696510389",
+    "symbol": "JRT",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0x6ab707aca953edaefbc4fd23ba73294241490620": {
+    "assetId": "eip155:42161/erc20:0x6ab707aca953edaefbc4fd23ba73294241490620",
+    "chainId": "eip155:42161",
+    "name": "Aave v3 USDT on Arbitrum One",
+    "precision": 6,
+    "color": "#51AC9D",
+    "icon": "https://assets.coingecko.com/coins/images/32884/thumb/USDT.PNG?1699768611",
+    "symbol": "AUSDT",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0x6b021b3f68491974be6d4009fee61a4e3c708fd6": {
+    "assetId": "eip155:42161/erc20:0x6b021b3f68491974be6d4009fee61a4e3c708fd6",
+    "chainId": "eip155:42161",
+    "name": "Fuse on Arbitrum One",
+    "precision": 18,
+    "color": "#141B14",
+    "icon": "https://assets.coingecko.com/coins/images/10347/thumb/fuse.png?1696510348",
+    "symbol": "FUSE",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0x6bb7a17acc227fd1f6781d1eedeae01b42047ee0": {
+    "assetId": "eip155:42161/erc20:0x6bb7a17acc227fd1f6781d1eedeae01b42047ee0",
+    "chainId": "eip155:42161",
+    "name": "LEXER Markets",
+    "precision": 18,
+    "color": "#D8DCE4",
+    "icon": "https://assets.coingecko.com/coins/images/29888/thumb/LEX.png?1696528812",
+    "symbol": "LEX",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0x6bcc14b02cd624ebe1a8a665cb6d4067aa097230": {
+    "assetId": "eip155:42161/erc20:0x6bcc14b02cd624ebe1a8a665cb6d4067aa097230",
+    "chainId": "eip155:42161",
+    "name": "Foxify",
+    "precision": 18,
+    "color": "#72615A",
+    "icon": "https://assets.coingecko.com/coins/images/32354/thumb/Foxify_200x200.png?1697475371",
+    "symbol": "FOX",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0x6c2c06790b3e3e3c38e12ee22f8183b37a13ee55": {
+    "assetId": "eip155:42161/erc20:0x6c2c06790b3e3e3c38e12ee22f8183b37a13ee55",
+    "chainId": "eip155:42161",
+    "name": "Dopex on Arbitrum One",
+    "precision": 18,
+    "color": "#040405",
+    "icon": "https://assets.coingecko.com/coins/images/16652/thumb/DPX_%281%29.png?1696516213",
+    "symbol": "DPX",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0x6c84a8f1c29108f47a79964b5fe888d4f4d0de40": {
+    "assetId": "eip155:42161/erc20:0x6c84a8f1c29108f47a79964b5fe888d4f4d0de40",
+    "chainId": "eip155:42161",
+    "name": "tBTC on Arbitrum One",
+    "precision": 18,
+    "color": "#A9A9AA",
+    "icon": "https://assets.coingecko.com/coins/images/11224/thumb/0x18084fba666a33d37592fa2633fd49a74dd93a88.png?1696511155",
+    "symbol": "TBTC",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0x6cc5b1fb8c2fd7af1d2858f916f274b8faac82e1": {
+    "assetId": "eip155:42161/erc20:0x6cc5b1fb8c2fd7af1d2858f916f274b8faac82e1",
+    "chainId": "eip155:42161",
+    "name": "Ojamu on Arbitrum One",
+    "precision": 18,
+    "color": "#E40C7C",
+    "icon": "https://assets.coingecko.com/coins/images/18947/thumb/ojamu-icon-PNK.png?1696518402",
+    "symbol": "OJA",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0x6d038130b9b379a373b1d33a29d5904ed1bb9026": {
+    "assetId": "eip155:42161/erc20:0x6d038130b9b379a373b1d33a29d5904ed1bb9026",
+    "chainId": "eip155:42161",
+    "name": "Quick Intel",
+    "precision": 18,
+    "color": "#2A4049",
+    "icon": "https://assets.coingecko.com/coins/images/29605/thumb/IMG_6589D0616DF1-1.jpeg?1696528542",
+    "symbol": "QUICKI",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0x6d80113e533a2c0fe82eabd35f1875dcea89ea97": {
+    "assetId": "eip155:42161/erc20:0x6d80113e533a2c0fe82eabd35f1875dcea89ea97",
+    "chainId": "eip155:42161",
+    "name": "Aave v3 EURS",
+    "precision": 2,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/32913/thumb/eurs.png?1699824583",
+    "symbol": "AEURS",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0x6d9d8b50a0cccdf510f681a85472626c26377876": {
+    "assetId": "eip155:42161/erc20:0x6d9d8b50a0cccdf510f681a85472626c26377876",
+    "chainId": "eip155:42161",
+    "name": "Quantum Chaos",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/32973/thumb/QUANTUM_CHAOS.jpg?1700068286",
+    "symbol": "CHAOS",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0x6dd963c510c2d2f09d5eddb48ede45fed063eb36": {
+    "assetId": "eip155:42161/erc20:0x6dd963c510c2d2f09d5eddb48ede45fed063eb36",
+    "chainId": "eip155:42161",
+    "name": "FactorDAO",
+    "precision": 18,
+    "color": "#3094C4",
+    "icon": "https://assets.coingecko.com/coins/images/29018/thumb/FactorLogo.png?1696527989",
+    "symbol": "FCTR",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0x6e4cc0ab2b4d2edafa6723cfa1582229f1dd1be1": {
+    "assetId": "eip155:42161/erc20:0x6e4cc0ab2b4d2edafa6723cfa1582229f1dd1be1",
+    "chainId": "eip155:42161",
+    "name": "ZUSD on Arbitrum One",
+    "precision": 6,
+    "color": "#D42B25",
+    "icon": "https://assets.coingecko.com/coins/images/14192/thumb/icon_zusd_200_200.png?1696513910",
+    "symbol": "ZUSD",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0x6e7118b82fb9608342c288a90eeb5e614aaee2e9": {
+    "assetId": "eip155:42161/erc20:0x6e7118b82fb9608342c288a90eeb5e614aaee2e9",
+    "chainId": "eip155:42161",
+    "name": "Edgeware on Arbitrum One",
+    "precision": 18,
+    "color": "#FC3C84",
+    "icon": "https://assets.coingecko.com/coins/images/8452/thumb/logo-edgeware.png?1696508638",
+    "symbol": "EDG",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0x6f5401c53e2769c858665621d22ddbf53d8d27c5": {
+    "assetId": "eip155:42161/erc20:0x6f5401c53e2769c858665621d22ddbf53d8d27c5",
+    "chainId": "eip155:42161",
+    "name": "Connect Financial on Arbitrum One",
+    "precision": 18,
+    "color": "#060606",
+    "icon": "https://assets.coingecko.com/coins/images/13592/thumb/cf-logo-iconic-black.png?1696513344",
+    "symbol": "CNFI",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0x6fc2680d8ad8e8312191441b4eca9eff8d06b45a": {
+    "assetId": "eip155:42161/erc20:0x6fc2680d8ad8e8312191441b4eca9eff8d06b45a",
+    "chainId": "eip155:42161",
+    "name": "Artichoke",
+    "precision": 18,
+    "color": "#1AA45B",
+    "icon": "https://assets.coingecko.com/coins/images/30354/thumb/Choke_icon_-_Small.png?1696529254",
+    "symbol": "CHOKE",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0x6fd58f5a2f3468e35feb098b5f59f04157002407": {
+    "assetId": "eip155:42161/erc20:0x6fd58f5a2f3468e35feb098b5f59f04157002407",
+    "chainId": "eip155:42161",
+    "name": "POGAI",
+    "precision": 18,
+    "color": "#D9D9D9",
+    "icon": "https://assets.coingecko.com/coins/images/30116/thumb/pogai.jpeg?1696529039",
+    "symbol": "POGAI",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0x6fe14d3cc2f7bddffba5cdb3bbe7467dd81ea101": {
+    "assetId": "eip155:42161/erc20:0x6fe14d3cc2f7bddffba5cdb3bbe7467dd81ea101",
+    "chainId": "eip155:42161",
+    "name": "COTI on Arbitrum One",
+    "precision": 18,
+    "color": "#2A7EC4",
+    "icon": "https://assets.coingecko.com/coins/images/2962/thumb/Coti.png?1696503705",
+    "symbol": "COTI",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0x700e4edb5c7d8f53ccb0cf212b81a121728e1d5b": {
+    "assetId": "eip155:42161/erc20:0x700e4edb5c7d8f53ccb0cf212b81a121728e1d5b",
+    "chainId": "eip155:42161",
+    "name": "LOPO",
+    "precision": 9,
+    "color": "#F7797E",
+    "icon": "https://assets.coingecko.com/coins/images/29250/thumb/IMG_20230220_222454_192.png?1696528205",
+    "symbol": "LOPO",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0x71eeba415a523f5c952cc2f06361d5443545ad28": {
+    "assetId": "eip155:42161/erc20:0x71eeba415a523f5c952cc2f06361d5443545ad28",
+    "chainId": "eip155:42161",
+    "name": "XDAO on Arbitrum One",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/27363/thumb/token_2.png?1696526408",
+    "symbol": "XDAO",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0x7241bc8035b65865156ddb5edef3eb32874a3af6": {
+    "assetId": "eip155:42161/erc20:0x7241bc8035b65865156ddb5edef3eb32874a3af6",
+    "chainId": "eip155:42161",
+    "name": "Jones GLP",
+    "precision": 18,
+    "color": "#5A4524",
+    "icon": "https://assets.coingecko.com/coins/images/28892/thumb/hatGLP.png?1696527868",
+    "symbol": "JGLP",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0x724dc807b04555b71ed48a6896b6f41593b8c637": {
+    "assetId": "eip155:42161/erc20:0x724dc807b04555b71ed48a6896b6f41593b8c637",
+    "chainId": "eip155:42161",
+    "name": "Aave v3 USDC on Arbitrum One",
+    "precision": 6,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/32847/thumb/usdc_%281%29.png?1699619355",
+    "symbol": "AUSDC",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0x739e93844adabfd58b00b2bed540d1661d9af682": {
+    "assetId": "eip155:42161/erc20:0x739e93844adabfd58b00b2bed540d1661d9af682",
+    "chainId": "eip155:42161",
+    "name": "NoriGO  on Arbitrum One",
+    "precision": 18,
+    "color": "#EFE3BD",
+    "icon": "https://assets.coingecko.com/coins/images/29300/thumb/go-token-medium.png?1696528252",
+    "symbol": "GO",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0x73ed68b834e44096eb4bea6edead038c945722f1": {
+    "assetId": "eip155:42161/erc20:0x73ed68b834e44096eb4bea6edead038c945722f1",
+    "chainId": "eip155:42161",
+    "name": "Sharky Swap",
+    "precision": 18,
+    "color": "#042C4C",
+    "icon": "https://assets.coingecko.com/coins/images/29152/thumb/SharkySwapPNG.png?1696528111",
+    "symbol": "SHARKY",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0x743b077b103d91109082a7a48e19ffc1093137a5": {
+    "assetId": "eip155:42161/erc20:0x743b077b103d91109082a7a48e19ffc1093137a5",
+    "chainId": "eip155:42161",
+    "name": "CharacterAI",
+    "precision": 18,
+    "color": "#F4A025",
+    "icon": "https://assets.coingecko.com/coins/images/29473/thumb/Ai200px.png?1696528418",
+    "symbol": "CHAI",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0x74ccbe53f77b08632ce0cb91d3a545bf6b8e0979": {
+    "assetId": "eip155:42161/erc20:0x74ccbe53f77b08632ce0cb91d3a545bf6b8e0979",
+    "chainId": "eip155:42161",
+    "name": "Fantom Bomb on Arbitrum One",
+    "precision": 18,
+    "color": "#303E4C",
+    "icon": "https://assets.coingecko.com/coins/images/24109/thumb/logo-blue.png?1696523301",
+    "symbol": "BOMB",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0x753d224bcf9aafacd81558c32341416df61d3dac": {
+    "assetId": "eip155:42161/erc20:0x753d224bcf9aafacd81558c32341416df61d3dac",
+    "chainId": "eip155:42161",
+    "name": "Perpetual Protocol on Arbitrum One",
+    "precision": 18,
+    "color": "#3BEAAA",
+    "icon": "https://assets.coingecko.com/coins/images/12381/thumb/60d18e06844a844ad75901a9_mark_only_03.png?1696512205",
+    "symbol": "PERP",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0x75c9bc761d88f70156daf83aa010e84680baf131": {
+    "assetId": "eip155:42161/erc20:0x75c9bc761d88f70156daf83aa010e84680baf131",
+    "chainId": "eip155:42161",
+    "name": "Saddle Finance on Arbitrum One",
+    "precision": 18,
+    "color": "#5E69A3",
+    "icon": "https://assets.coingecko.com/coins/images/20476/thumb/SDL_token.png?1696519884",
+    "symbol": "SDL",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0x7698ac5d15bb3ba7185adcbff32a80ebd9d0709b": {
+    "assetId": "eip155:42161/erc20:0x7698ac5d15bb3ba7185adcbff32a80ebd9d0709b",
+    "chainId": "eip155:42161",
+    "name": "GNOME on Arbitrum One",
+    "precision": 18,
+    "color": "#7AA7EE",
+    "icon": "https://assets.coingecko.com/coins/images/20885/thumb/gnome.png?1696520278",
+    "symbol": "GNOME",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0x76ce14237110c865f431e18f91fc1b225fb6fe99": {
+    "assetId": "eip155:42161/erc20:0x76ce14237110c865f431e18f91fc1b225fb6fe99",
+    "chainId": "eip155:42161",
+    "name": "TraderDAO Proof Of Trade",
+    "precision": 6,
+    "color": "#2E3130",
+    "icon": "https://assets.coingecko.com/coins/images/30493/thumb/TraderDAO-POT-Coin_%282%29.png?1696529380",
+    "symbol": "POT",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0x771146816a0c7d74daf652252d646ab0bff7c21a": {
+    "assetId": "eip155:42161/erc20:0x771146816a0c7d74daf652252d646ab0bff7c21a",
+    "chainId": "eip155:42161",
+    "name": "Wheat",
+    "precision": 18,
+    "color": "#4A3F35",
+    "icon": "https://assets.coingecko.com/coins/images/29190/thumb/LBdDnLA__400x400.jpg?1696528149",
+    "symbol": "WHEAT",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0x772598e9e62155d7fdfe65fdf01eb5a53a8465be": {
+    "assetId": "eip155:42161/erc20:0x772598e9e62155d7fdfe65fdf01eb5a53a8465be",
+    "chainId": "eip155:42161",
+    "name": "Empyreal",
+    "precision": 18,
+    "color": "#7C58A3",
+    "icon": "https://assets.coingecko.com/coins/images/31374/thumb/emplogotransparent_%281%29.png?1696530191",
+    "symbol": "EMP",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0x77308f8b63a99b24b262d930e0218ed2f49f8475": {
+    "assetId": "eip155:42161/erc20:0x77308f8b63a99b24b262d930e0218ed2f49f8475",
+    "chainId": "eip155:42161",
+    "name": "Dinari MSFT",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/32427/thumb/token-icon.png?1698120021",
+    "symbol": "MSFTD",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0x7985de01b26c1efaba8bf4a9971a32dff8661bfb": {
+    "assetId": "eip155:42161/erc20:0x7985de01b26c1efaba8bf4a9971a32dff8661bfb",
+    "chainId": "eip155:42161",
+    "name": "BananaCoin",
+    "precision": 18,
+    "color": "#A59584",
+    "icon": "https://assets.coingecko.com/coins/images/30422/thumb/IMG_20230516_112154_145.jpg?1696529310",
+    "symbol": "BANANA",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0x7a2c1b8e26c48a5b73816b7ec826fd4053f5f34b": {
+    "assetId": "eip155:42161/erc20:0x7a2c1b8e26c48a5b73816b7ec826fd4053f5f34b",
+    "chainId": "eip155:42161",
+    "name": "GoSleep ZZZ on Arbitrum One",
+    "precision": 18,
+    "color": "#C5ADF5",
+    "icon": "https://assets.coingecko.com/coins/images/29901/thumb/ZZZ200_200.png?1696528830",
+    "symbol": "ZZZ",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0x7a5d193fe4ed9098f7eadc99797087c96b002907": {
+    "assetId": "eip155:42161/erc20:0x7a5d193fe4ed9098f7eadc99797087c96b002907",
+    "chainId": "eip155:42161",
+    "name": "Plutus ARB",
+    "precision": 18,
+    "color": "#040404",
+    "icon": "https://assets.coingecko.com/coins/images/30636/thumb/plsARB.png?1696529509",
+    "symbol": "PLSARB",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0x7ac168c81f4f3820fa3f22603ce5864d6ab3c547": {
+    "assetId": "eip155:42161/erc20:0x7ac168c81f4f3820fa3f22603ce5864d6ab3c547",
+    "chainId": "eip155:42161",
+    "name": "Staked ACME on Arbitrum One",
+    "precision": 8,
+    "color": "#E5C9F0",
+    "icon": "https://assets.coingecko.com/coins/images/29756/thumb/stacme-avatar.jpg?1696528688",
+    "symbol": "STACME",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0x7b5eb3940021ec0e8e463d5dbb4b7b09a89ddf96": {
+    "assetId": "eip155:42161/erc20:0x7b5eb3940021ec0e8e463d5dbb4b7b09a89ddf96",
+    "chainId": "eip155:42161",
+    "name": "Wombat Exchange on Arbitrum One",
+    "precision": 18,
+    "color": "#EDCE56",
+    "icon": "https://assets.coingecko.com/coins/images/26946/thumb/Wombat_Token.png?1696526001",
+    "symbol": "WOM",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0x7ba4a00d54a07461d9db2aef539e91409943adc9": {
+    "assetId": "eip155:42161/erc20:0x7ba4a00d54a07461d9db2aef539e91409943adc9",
+    "chainId": "eip155:42161",
+    "name": "Stake DAO on Arbitrum One",
+    "precision": 18,
+    "color": "#070707",
+    "icon": "https://assets.coingecko.com/coins/images/13724/thumb/stakedao_logo.jpg?1696513468",
+    "symbol": "SDT",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0x7c8a1a80fdd00c9cccd6ebd573e9ecb49bfa2a59": {
+    "assetId": "eip155:42161/erc20:0x7c8a1a80fdd00c9cccd6ebd573e9ecb49bfa2a59",
+    "chainId": "eip155:42161",
+    "name": "AI CODE",
+    "precision": 18,
+    "color": "#277FA8",
+    "icon": "https://assets.coingecko.com/coins/images/30057/thumb/AICODE.png?1696528979",
+    "symbol": "AICODE",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0x7ca0b5ca80291b1feb2d45702ffe56a7a53e7a97": {
+    "assetId": "eip155:42161/erc20:0x7ca0b5ca80291b1feb2d45702ffe56a7a53e7a97",
+    "chainId": "eip155:42161",
+    "name": "Radiate Protocol",
+    "precision": 18,
+    "color": "#4E2CEC",
+    "icon": "https://assets.coingecko.com/coins/images/30925/thumb/RDAT_transparent_noglow.png?1696529768",
+    "symbol": "RADT",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0x7cb16cb78ea464ad35c8a50abf95dff3c9e09d5d": {
+    "assetId": "eip155:42161/erc20:0x7cb16cb78ea464ad35c8a50abf95dff3c9e09d5d",
+    "chainId": "eip155:42161",
+    "name": "0xBitcoin on Arbitrum One",
+    "precision": 8,
+    "color": "#FC7D05",
+    "icon": "https://assets.coingecko.com/coins/images/4454/thumb/0xbtc.png?1696505045",
+    "symbol": "0XBTC",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0x7ce746b45eabd0c4321538dec1b849c79a9a8476": {
+    "assetId": "eip155:42161/erc20:0x7ce746b45eabd0c4321538dec1b849c79a9a8476",
+    "chainId": "eip155:42161",
+    "name": "DSLA Protocol on Arbitrum One",
+    "precision": 18,
+    "color": "#C7C5C5",
+    "icon": "https://assets.coingecko.com/coins/images/6694/thumb/dsla_logo-squared_200x200.png?1696507035",
+    "symbol": "DSLA",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0x7d05d38e6109a3aeeebf0a570eb8f6856cb4b55e": {
+    "assetId": "eip155:42161/erc20:0x7d05d38e6109a3aeeebf0a570eb8f6856cb4b55e",
+    "chainId": "eip155:42161",
+    "name": "MintMe com Coin on Arbitrum One",
+    "precision": 18,
+    "color": "#D4B404",
+    "icon": "https://assets.coingecko.com/coins/images/5127/thumb/MINTME_logo.png?1696505647",
+    "symbol": "MINTME",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0x7d86f1eaff29f076576b2ff09ce3bcc7533fd2c5": {
+    "assetId": "eip155:42161/erc20:0x7d86f1eaff29f076576b2ff09ce3bcc7533fd2c5",
+    "chainId": "eip155:42161",
+    "name": "Risitas on Arbitrum One",
+    "precision": 18,
+    "color": "#D68F46",
+    "icon": "https://assets.coingecko.com/coins/images/30333/thumb/200x200.png?1696529234",
+    "symbol": "RISITA",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0x7da25bc4cfaed3f29414c6779676e53b19a356f5": {
+    "assetId": "eip155:42161/erc20:0x7da25bc4cfaed3f29414c6779676e53b19a356f5",
+    "chainId": "eip155:42161",
+    "name": "Kokomo Finance on Arbitrum One",
+    "precision": 18,
+    "color": "#2E2E3E",
+    "icon": "https://assets.coingecko.com/coins/images/29572/thumb/Logo_%282%29.png?1696528512",
+    "symbol": "KOKO",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0x7dd747d63b094971e6638313a6a2685e80c7fb2e": {
+    "assetId": "eip155:42161/erc20:0x7dd747d63b094971e6638313a6a2685e80c7fb2e",
+    "chainId": "eip155:42161",
+    "name": "STFX on Arbitrum One",
+    "precision": 18,
+    "color": "#04D871",
+    "icon": "https://assets.coingecko.com/coins/images/28631/thumb/stfx.png?1696527615",
+    "symbol": "STFX",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0x7ddf25cb4861590578f1fb85fcf1c5afd00a01de": {
+    "assetId": "eip155:42161/erc20:0x7ddf25cb4861590578f1fb85fcf1c5afd00a01de",
+    "chainId": "eip155:42161",
+    "name": "PEPER",
+    "precision": 18,
+    "color": "#E3EEE2",
+    "icon": "https://assets.coingecko.com/coins/images/30603/thumb/peper_logo.jpg?1696529473",
+    "symbol": "PEPER",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0x7e325091e5525d3ea4d54a1488ecca8d1df732f3": {
+    "assetId": "eip155:42161/erc20:0x7e325091e5525d3ea4d54a1488ecca8d1df732f3",
+    "chainId": "eip155:42161",
+    "name": "Pacman Native Token",
+    "precision": 18,
+    "color": "#DC24AC",
+    "icon": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAIAAAACACAMAAAD04JH5AAADAFBMVEUtN0jYJq7///8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACrqAe7AAABAHRSTlP/////AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAf6K/dgAAQItJREFUeNoBgEB/vwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAgICAgICAgICAgICAgICAgICAgICAQEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgICAgICAgICAgICAgICAQEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgICAgICAgICAgICAgICAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgICAgICAgICAgICAgICAwAAAAAAAAAAAAAAAAAAAAACAgICAgICAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgICAgICAgICAgICAgICAwAAAAAAAAAAAAAAAAAAAAACAgICAgICAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgICAgICAgICAgICAgICAwAAAAAAAAAAAAAAAAAAAAACAgICAgICAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgICAgICAgICAgICAgICAwAAAAAAAAAAAAAAAAAAAAACAgICAgICAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgICAgICAgICAgICAgICAwAAAAAAAAAAAAAAAAAAAAACAgICAgICAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgICAgICAgICAgICAgICAwAAAAAAAAAAAAAAAAAAAAACAgICAgICAwMDAwMDAwMDAwMDAwMDAwMDAwMDAgICAgICAgEBAQEBAQECAgICAgICAAMDAwMDAwMDAwMDAwMDAwMDAwMDAgICAgICAgEBAQEBAQECAgICAgICAQMDAwMDAwMDAwMDAwMDAwMDAwMDAgICAgICAgAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAACAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAgICAgICAgMAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAACAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAgICAgICAgMAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAMDAwMDAwMAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAACAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAgICAgICAgMAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAACAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAgICAgICAgMAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAACAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAgICAgICAgMAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAACAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAgICAgICAgMAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAACAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAgICAgICAgMAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAACAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAgICAgICAgMAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAgICAgICAgICAgICAgICAgICAgICAAMDAwMDAwMAAAAAAAACAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAgICAgICAgICAgICAgICAgICAgICAwAAAAAAAAAAAAAAAAACAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAgICAgICAgICAgICAgICAgICAgICAwAAAAAAAAAAAAAAAAACAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAgICAgICAgICAgICAgICAgICAgICAwAAAAAAAAAAAAAAAAACAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAgICAgICAgICAgICAgICAgICAgICAwAAAAAAAAAAAAAAAAACAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAgICAgICAgICAgICAgICAgICAgICAwAAAAAAAAAAAAAAAAACAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAgICAgICAgICAgICAgICAgICAgICAwAAAAAAAAAAAAAAAAACAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwAAAAAAAAAAAAAAAAACAgICAgICAwMDAwMDAwMDAwMDAwMDAwMDAwMDAgICAgICAgMAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAACAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAgICAgICAgMAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAACAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAgICAgICAgMAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAACAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAgICAgICAgMAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAACAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAgICAgICAgMAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAACAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAgICAgICAgMAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQEBAwMDAwMDAgICAgICAgICAgICAgICAgICAgICAAMDAwMDAwMAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQEBAQEBAQEBAgICAgICAgICAgICAgICAgICAgICAwAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQEBAQEBAQEBAgICAgICAgICAgICAgICAgICAgICAwAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQEBAQEBAQEBAgICAgICAgICAgICAgICAgICAgICAwAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQEBAQEBAQEBAgICAgICAgICAgICAgICAgICAgICAwAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQEBAQEBAQEBAgICAgICAgICAgICAgICAgICAgICAwAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQEBAQEBAQEBAgICAgICAgICAgICAgICAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAwMDAwMDAwEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAwMDAwMDAwAAAAAAAAAAAAAAAAAAAAAAAAEBAQMDAwMDAwMBAQEBAQEBAQEBAQEBAQMDAwMDAwMDAwMDAwMDAwMDAwMDAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABRJL+SyU9aGAAAAAElFTkSuQmCC",
+    "symbol": "PAC",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0x7f4638a58c0615037decc86f1dae60e55fe92874": {
+    "assetId": "eip155:42161/erc20:0x7f4638a58c0615037decc86f1dae60e55fe92874",
+    "chainId": "eip155:42161",
+    "name": "RigoBlock on Arbitrum One",
+    "precision": 18,
+    "color": "#F1BC40",
+    "icon": "https://assets.coingecko.com/coins/images/1532/thumb/Symbol-RigoblockRGB.png?1696502572",
+    "symbol": "GRG",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0x7f465507f058e17ad21623927a120ac05ca32741": {
+    "assetId": "eip155:42161/erc20:0x7f465507f058e17ad21623927a120ac05ca32741",
+    "chainId": "eip155:42161",
+    "name": "Arcadeum",
+    "precision": 18,
+    "color": "#413E3B",
+    "icon": "https://assets.coingecko.com/coins/images/29044/thumb/arc.png?1696528012",
+    "symbol": "ARC",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0x7f5373ae26c3e8ffc4c77b7255df7ec1a9af52a6": {
+    "assetId": "eip155:42161/erc20:0x7f5373ae26c3e8ffc4c77b7255df7ec1a9af52a6",
+    "chainId": "eip155:42161",
+    "name": "Bridged Tether  Axelar  on Arbitrum One",
+    "precision": 6,
+    "color": "#54AC94",
+    "icon": "https://assets.coingecko.com/coins/images/31002/thumb/uusdt_D_3x.png?1696529840",
+    "symbol": "AXLUSDT",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0x7f90122bf0700f9e7e1f688fe926940e8839f353": {
+    "assetId": "eip155:42161/erc20:0x7f90122bf0700f9e7e1f688fe926940e8839f353",
+    "chainId": "eip155:42161",
+    "name": "Curve fi USDC USDT",
+    "precision": 18,
+    "color": "#41C4C9",
+    "icon": "https://assets.coingecko.com/coins/images/28365/thumb/curve2.png?1696527368",
+    "symbol": "2CRV",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0x8038f3c971414fd1fc220ba727f2d4a0fc98cb65": {
+    "assetId": "eip155:42161/erc20:0x8038f3c971414fd1fc220ba727f2d4a0fc98cb65",
+    "chainId": "eip155:42161",
+    "name": "dHEDGE DAO on Arbitrum One",
+    "precision": 18,
+    "color": "#0C0C0C",
+    "icon": "https://assets.coingecko.com/coins/images/12508/thumb/dht.png?1696512323",
+    "symbol": "DHT",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0x8096ad3107715747361acefe685943bfb427c722": {
+    "assetId": "eip155:42161/erc20:0x8096ad3107715747361acefe685943bfb427c722",
+    "chainId": "eip155:42161",
+    "name": "Crypto Volatility on Arbitrum One",
+    "precision": 18,
+    "color": "#B7DAED",
+    "icon": "https://assets.coingecko.com/coins/images/24008/thumb/govi-dao.03ef3083.png?1696523202",
+    "symbol": "CVI",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0x80bb30d62a16e1f2084deae84dc293531c3ac3a1": {
+    "assetId": "eip155:42161/erc20:0x80bb30d62a16e1f2084deae84dc293531c3ac3a1",
+    "chainId": "eip155:42161",
+    "name": "Granary on Arbitrum One",
+    "precision": 18,
+    "color": "#EDD894",
+    "icon": "https://assets.coingecko.com/coins/images/29740/thumb/Grain.png?1696528670",
+    "symbol": "GRAIN",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0x80dd74145b8bb10cef01bf914f796bd8b54d7809": {
+    "assetId": "eip155:42161/erc20:0x80dd74145b8bb10cef01bf914f796bd8b54d7809",
+    "chainId": "eip155:42161",
+    "name": "Hepton",
+    "precision": 18,
+    "color": "#D9D9D9",
+    "icon": "https://assets.coingecko.com/coins/images/30274/thumb/HTECoingecko.png?1696529180",
+    "symbol": "HTE",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0x810cf1757b51963102e0b4fe9fdfcdf749dea98a": {
+    "assetId": "eip155:42161/erc20:0x810cf1757b51963102e0b4fe9fdfcdf749dea98a",
+    "chainId": "eip155:42161",
+    "name": "Sanctum Coin",
+    "precision": 18,
+    "color": "#A6A4AE",
+    "icon": "https://assets.coingecko.com/coins/images/30135/thumb/image_%289%29.png?1696529056",
+    "symbol": "SANCTA",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0x816e21c33fa5f8440ebcdf6e01d39314541bea72": {
+    "assetId": "eip155:42161/erc20:0x816e21c33fa5f8440ebcdf6e01d39314541bea72",
+    "chainId": "eip155:42161",
+    "name": "LiquidDriver on Arbitrum One",
+    "precision": 18,
+    "color": "#0C103F",
+    "icon": "https://assets.coingecko.com/coins/images/15782/thumb/LQDR_Glowing_Icon.png?1696515405",
+    "symbol": "LQDR",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0x81de4945807bb31425362f8f7109c18e3dc4f8f0": {
+    "assetId": "eip155:42161/erc20:0x81de4945807bb31425362f8f7109c18e3dc4f8f0",
+    "chainId": "eip155:42161",
+    "name": "Bolide on Arbitrum One",
+    "precision": 18,
+    "color": "#184A38",
+    "icon": "https://assets.coingecko.com/coins/images/25548/thumb/bld_logo.png?1696524681",
+    "symbol": "BLID",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0x8240affe697cde618ad05c3c8963f5bfe152650b": {
+    "assetId": "eip155:42161/erc20:0x8240affe697cde618ad05c3c8963f5bfe152650b",
+    "chainId": "eip155:42161",
+    "name": "Dinari AMZN",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/32529/thumb/token-icon.png?1698460876",
+    "symbol": "AMZND",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0x82af49447d8a07e3bd95bd0d56f35241523fbab1": {
+    "assetId": "eip155:42161/erc20:0x82af49447d8a07e3bd95bd0d56f35241523fbab1",
+    "chainId": "eip155:42161",
+    "name": "WETH on Arbitrum One",
+    "precision": 18,
+    "color": "#393838",
+    "icon": "https://assets.coingecko.com/coins/images/2518/thumb/weth.png?1696503332",
+    "symbol": "WETH",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0x82e3a8f066a6989666b031d916c43672085b1582": {
+    "assetId": "eip155:42161/erc20:0x82e3a8f066a6989666b031d916c43672085b1582",
+    "chainId": "eip155:42161",
+    "name": "yearn finance on Arbitrum One",
+    "precision": 18,
+    "color": "#0C54EC",
+    "icon": "https://assets.coingecko.com/coins/images/11849/thumb/yearn.jpg?1696511720",
+    "symbol": "YFI",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0x82e64f49ed5ec1bc6e43dad4fc8af9bb3a2312ee": {
+    "assetId": "eip155:42161/erc20:0x82e64f49ed5ec1bc6e43dad4fc8af9bb3a2312ee",
+    "chainId": "eip155:42161",
+    "name": "Aave v3 DAI on Arbitrum One",
+    "precision": 18,
+    "color": "#FCBF41",
+    "icon": "https://assets.coingecko.com/coins/images/32886/thumb/dai.png?1699769446",
+    "symbol": "ADAI",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0x83d6c8c06ac276465e4c92e7ac8c23740f435140": {
+    "assetId": "eip155:42161/erc20:0x83d6c8c06ac276465e4c92e7ac8c23740f435140",
+    "chainId": "eip155:42161",
+    "name": "HMX on Arbitrum One",
+    "precision": 18,
+    "color": "#F7DC94",
+    "icon": "https://assets.coingecko.com/coins/images/31206/thumb/HMXlogo_CG.png?1696530033",
+    "symbol": "HMX",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0x842216e0aa2ae608699f7b1063f26ce6b30c5311": {
+    "assetId": "eip155:42161/erc20:0x842216e0aa2ae608699f7b1063f26ce6b30c5311",
+    "chainId": "eip155:42161",
+    "name": "UrDEX Finance",
+    "precision": 18,
+    "color": "#040709",
+    "icon": "https://assets.coingecko.com/coins/images/29970/thumb/UrDEXLogo.png?1696528896",
+    "symbol": "URD",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0x847db21ef9de627c23d3dff470af6599b1a30d3f": {
+    "assetId": "eip155:42161/erc20:0x847db21ef9de627c23d3dff470af6599b1a30d3f",
+    "chainId": "eip155:42161",
+    "name": "Black Rabbit AI",
+    "precision": 18,
+    "color": "#16150E",
+    "icon": "https://assets.coingecko.com/coins/images/28966/thumb/200x200.png?1696527939",
+    "symbol": "BRAIN",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0x848e0ba28b637e8490d88bae51fa99c87116409b": {
+    "assetId": "eip155:42161/erc20:0x848e0ba28b637e8490d88bae51fa99c87116409b",
+    "chainId": "eip155:42161",
+    "name": "Agave on Arbitrum One",
+    "precision": 18,
+    "color": "#36CAA0",
+    "icon": "https://assets.coingecko.com/coins/images/14146/thumb/agve.png?1696513865",
+    "symbol": "AGVE",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0x85667409a723684fe1e57dd1abde8d88c2f54214": {
+    "assetId": "eip155:42161/erc20:0x85667409a723684fe1e57dd1abde8d88c2f54214",
+    "chainId": "eip155:42161",
+    "name": "MagicGLP",
+    "precision": 18,
+    "color": "#08142E",
+    "icon": "https://assets.coingecko.com/coins/images/29071/thumb/Token-mGLP.png?1696528037",
+    "symbol": "MAGICGLP",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0x8616e8ea83f048ab9a5ec513c9412dd2993bce3f": {
+    "assetId": "eip155:42161/erc20:0x8616e8ea83f048ab9a5ec513c9412dd2993bce3f",
+    "chainId": "eip155:42161",
+    "name": "handleUSD on Arbitrum One",
+    "precision": 18,
+    "color": "#313660",
+    "icon": "https://assets.coingecko.com/coins/images/26954/thumb/fxUSDlogo.png?1696526009",
+    "symbol": "FXUSD",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0x8626264b6a1b4e920905efd381002aba52ea0eea": {
+    "assetId": "eip155:42161/erc20:0x8626264b6a1b4e920905efd381002aba52ea0eea",
+    "chainId": "eip155:42161",
+    "name": "BlackHat Coin on Arbitrum One",
+    "precision": 8,
+    "color": "#C2C2C3",
+    "icon": "https://assets.coingecko.com/coins/images/15987/thumb/logo_light.png?1696515600",
+    "symbol": "BLKC",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0x872bad41cfc8ba731f811fea8b2d0b9fd6369585": {
+    "assetId": "eip155:42161/erc20:0x872bad41cfc8ba731f811fea8b2d0b9fd6369585",
+    "chainId": "eip155:42161",
+    "name": "BattleFly",
+    "precision": 18,
+    "color": "#B842EB",
+    "icon": "https://assets.coingecko.com/coins/images/28828/thumb/GFLY_LOGO.png?1696527804",
+    "symbol": "GFLY",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0x87aaffdf26c6885f6010219208d5b161ec7609c0": {
+    "assetId": "eip155:42161/erc20:0x87aaffdf26c6885f6010219208d5b161ec7609c0",
+    "chainId": "eip155:42161",
+    "name": "Equation",
+    "precision": 18,
+    "color": "#C1E805",
+    "icon": "https://assets.coingecko.com/coins/images/32592/thumb/equation_logo.png?1699220377",
+    "symbol": "EQU",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0x8888888888f004100c0353d657be6300587a6ccd": {
+    "assetId": "eip155:42161/erc20:0x8888888888f004100c0353d657be6300587a6ccd",
+    "chainId": "eip155:42161",
+    "name": "ACryptoS on Arbitrum One",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/32721/thumb/ACS.jpg?1699009686",
+    "symbol": "ACS",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0x8929e9dbd2785e3ba16175e596cdd61520fee0d1": {
+    "assetId": "eip155:42161/erc20:0x8929e9dbd2785e3ba16175e596cdd61520fee0d1",
+    "chainId": "eip155:42161",
+    "name": "Altitude on Arbitrum One",
+    "precision": 18,
+    "color": "#436CFC",
+    "icon": "https://assets.coingecko.com/coins/images/30114/thumb/logo.png?1696529036",
+    "symbol": "ALTD",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0x8933fedd98cbb482e27c41e1bd7216a4e42ebd39": {
+    "assetId": "eip155:42161/erc20:0x8933fedd98cbb482e27c41e1bd7216a4e42ebd39",
+    "chainId": "eip155:42161",
+    "name": "PegasusBot",
+    "precision": 18,
+    "color": "#122169",
+    "icon": "https://assets.coingecko.com/coins/images/31306/thumb/baneer8.png?1696530125",
+    "symbol": "PGS",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0x894a3abb764a0ef5da69c62336ac3c15b88bf106": {
+    "assetId": "eip155:42161/erc20:0x894a3abb764a0ef5da69c62336ac3c15b88bf106",
+    "chainId": "eip155:42161",
+    "name": "Chunks",
+    "precision": 18,
+    "color": "#DE7C69",
+    "icon": "https://assets.coingecko.com/coins/images/30163/thumb/Chunks_Logo_v2_200x200.png?1696529083",
+    "symbol": "CHUNKS",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0x8a66794e1aaebc7018a7b75f61f384e30ae3b159": {
+    "assetId": "eip155:42161/erc20:0x8a66794e1aaebc7018a7b75f61f384e30ae3b159",
+    "chainId": "eip155:42161",
+    "name": "BlueSale",
+    "precision": 18,
+    "color": "#101C50",
+    "icon": "https://assets.coingecko.com/coins/images/30300/thumb/logo_BLS_200_bg.png?1696529204",
+    "symbol": "BLS",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0x8b0e6f19ee57089f7649a455d89d7bc6314d04e8": {
+    "assetId": "eip155:42161/erc20:0x8b0e6f19ee57089f7649a455d89d7bc6314d04e8",
+    "chainId": "eip155:42161",
+    "name": "Dream Machine Token on Arbitrum One",
+    "precision": 18,
+    "color": "#C4BBCD",
+    "icon": "https://assets.coingecko.com/coins/images/30505/thumb/dmt.png?1696529391",
+    "symbol": "DMT",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0x8b5e4c9a188b1a187f2d1e80b1c2fb17fa2922e1": {
+    "assetId": "eip155:42161/erc20:0x8b5e4c9a188b1a187f2d1e80b1c2fb17fa2922e1",
+    "chainId": "eip155:42161",
+    "name": "GoldenBoys",
+    "precision": 18,
+    "color": "#242B56",
+    "icon": "https://assets.coingecko.com/coins/images/31353/thumb/goldenboys.png?1696530170",
+    "symbol": "GOLD",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0x8d9ba570d6cb60c7e3e0f31343efe75ab8e65fb1": {
+    "assetId": "eip155:42161/erc20:0x8d9ba570d6cb60c7e3e0f31343efe75ab8e65fb1",
+    "chainId": "eip155:42161",
+    "name": "Governance OHM on Arbitrum One",
+    "precision": 18,
+    "color": "#859CA3",
+    "icon": "https://assets.coingecko.com/coins/images/21129/thumb/token_wsOHM_logo.png?1696520508",
+    "symbol": "GOHM",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0x8e50d11a54cff859b202b7fe5225353be0646410": {
+    "assetId": "eip155:42161/erc20:0x8e50d11a54cff859b202b7fe5225353be0646410",
+    "chainId": "eip155:42161",
+    "name": "Dinari GOOGL",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/32428/thumb/token-icon.png?1698120046",
+    "symbol": "GOOGLD",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0x8eb270e296023e9d92081fdf967ddd7878724424": {
+    "assetId": "eip155:42161/erc20:0x8eb270e296023e9d92081fdf967ddd7878724424",
+    "chainId": "eip155:42161",
+    "name": "Aave v3 rETH on Arbitrum One",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/32885/thumb/reth.png?1699768947",
+    "symbol": "ARETH",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0x8ebb85d53e6955e557b7c53acde1d42fd68561ec": {
+    "assetId": "eip155:42161/erc20:0x8ebb85d53e6955e557b7c53acde1d42fd68561ec",
+    "chainId": "eip155:42161",
+    "name": "LionDEX",
+    "precision": 18,
+    "color": "#D2D4D7",
+    "icon": "https://assets.coingecko.com/coins/images/29685/thumb/Lion_Token.png?1696528619",
+    "symbol": "LION",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0x8ec1877698acf262fe8ad8a295ad94d6ea258988": {
+    "assetId": "eip155:42161/erc20:0x8ec1877698acf262fe8ad8a295ad94d6ea258988",
+    "chainId": "eip155:42161",
+    "name": "Davos Protocol on Arbitrum One",
+    "precision": 18,
+    "color": "#FAD8E0",
+    "icon": "https://assets.coingecko.com/coins/images/28775/thumb/dusd_logo_200x200.png?1696527754",
+    "symbol": "DUSD",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0x8ffdf2de812095b1d19cb146e4c004587c0a0692": {
+    "assetId": "eip155:42161/erc20:0x8ffdf2de812095b1d19cb146e4c004587c0a0692",
+    "chainId": "eip155:42161",
+    "name": "Aave v3 LUSD on Arbitrum One",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/32894/thumb/LUSD.png?1699789893",
+    "symbol": "ALUSD",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0x912ce59144191c1204e64559fe8253a0e49e6548": {
+    "assetId": "eip155:42161/erc20:0x912ce59144191c1204e64559fe8253a0e49e6548",
+    "chainId": "eip155:42161",
+    "name": "Arbitrum on Arbitrum One",
+    "precision": 18,
+    "color": "#D9E1EA",
+    "icon": "https://assets.coingecko.com/coins/images/16547/thumb/photo_2023-03-29_21.47.00.jpeg?1696516109",
+    "symbol": "ARB",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0x935a33e05ecbd424c1691623c99e501ae22400e6": {
+    "assetId": "eip155:42161/erc20:0x935a33e05ecbd424c1691623c99e501ae22400e6",
+    "chainId": "eip155:42161",
+    "name": "Liquidify",
+    "precision": 18,
+    "color": "#38A0CC",
+    "icon": "https://assets.coingecko.com/coins/images/29882/thumb/F25AB89F-C960-41A3-8093-06B3EAE88997.jpeg?1696528807",
+    "symbol": "LIQUID",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0x93b346b6bc2548da6a1e7d98e9a421b42541425b": {
+    "assetId": "eip155:42161/erc20:0x93b346b6bc2548da6a1e7d98e9a421b42541425b",
+    "chainId": "eip155:42161",
+    "name": "Liquity USD on Arbitrum One",
+    "precision": 18,
+    "color": "#30B5EC",
+    "icon": "https://assets.coingecko.com/coins/images/14666/thumb/Group_3.png?1696514341",
+    "symbol": "LUSD",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0x93c157932e5649e794df8999714af8690226a1c9": {
+    "assetId": "eip155:42161/erc20:0x93c157932e5649e794df8999714af8690226a1c9",
+    "chainId": "eip155:42161",
+    "name": "Dragon Arena",
+    "precision": 18,
+    "color": "#4D475E",
+    "icon": "https://assets.coingecko.com/coins/images/30156/thumb/da.jpeg?1696529076",
+    "symbol": "DRA",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0x93c15cd7de26f07265f0272e0b831c5d7fab174f": {
+    "assetId": "eip155:42161/erc20:0x93c15cd7de26f07265f0272e0b831c5d7fab174f",
+    "chainId": "eip155:42161",
+    "name": "Liquid Finance",
+    "precision": 18,
+    "color": "#81ABEC",
+    "icon": "https://assets.coingecko.com/coins/images/27056/thumb/liqd.png?1696526107",
+    "symbol": "LIQD",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0x93d504070ab0eede5449c89c5ea0f5e34d8103f8": {
+    "assetId": "eip155:42161/erc20:0x93d504070ab0eede5449c89c5ea0f5e34d8103f8",
+    "chainId": "eip155:42161",
+    "name": "Archi Token",
+    "precision": 18,
+    "color": "#14283A",
+    "icon": "https://assets.coingecko.com/coins/images/30823/thumb/ARCHILOGO.png?1696529677",
+    "symbol": "ARCHI",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0x94025780a1ab58868d9b2dbbb775f44b32e8e6e5": {
+    "assetId": "eip155:42161/erc20:0x94025780a1ab58868d9b2dbbb775f44b32e8e6e5",
+    "chainId": "eip155:42161",
+    "name": "BetSwirl on Arbitrum One",
+    "precision": 18,
+    "color": "#476DEF",
+    "icon": "https://assets.coingecko.com/coins/images/26618/thumb/icon_200.png?1696525691",
+    "symbol": "BETS",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0x9483ab65847a447e36d21af1cab8c87e9712ff93": {
+    "assetId": "eip155:42161/erc20:0x9483ab65847a447e36d21af1cab8c87e9712ff93",
+    "chainId": "eip155:42161",
+    "name": "Wrapped USDR on Arbitrum One",
+    "precision": 9,
+    "color": "#F29499",
+    "icon": "https://assets.coingecko.com/coins/images/28800/thumb/wUSDRlogo.png?1696527777",
+    "symbol": "WUSDR",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0x95146881b86b3ee99e63705ec87afe29fcc044d9": {
+    "assetId": "eip155:42161/erc20:0x95146881b86b3ee99e63705ec87afe29fcc044d9",
+    "chainId": "eip155:42161",
+    "name": "Vertex Protocol",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/27927/thumb/vrtx.png?1696526947",
+    "symbol": "VRTX",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0x954ac1c73e16c77198e83c088ade88f6223f3d44": {
+    "assetId": "eip155:42161/erc20:0x954ac1c73e16c77198e83c088ade88f6223f3d44",
+    "chainId": "eip155:42161",
+    "name": "LeverageInu",
+    "precision": 18,
+    "color": "#1B1E2E",
+    "icon": "https://assets.coingecko.com/coins/images/28147/thumb/IMG_20221107_091938_841.png?1696527152",
+    "symbol": "LEVI",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0x9578a9937dff45b4e29e49120ab83cb806f1aa4f": {
+    "assetId": "eip155:42161/erc20:0x9578a9937dff45b4e29e49120ab83cb806f1aa4f",
+    "chainId": "eip155:42161",
+    "name": "AITom",
+    "precision": 18,
+    "color": "#E2C64E",
+    "icon": "https://assets.coingecko.com/coins/images/32013/thumb/aitom.png?1696530811",
+    "symbol": "AITOM",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0x95ab45875cffdba1e5f451b950bc2e42c0053f39": {
+    "assetId": "eip155:42161/erc20:0x95ab45875cffdba1e5f451b950bc2e42c0053f39",
+    "chainId": "eip155:42161",
+    "name": "Staked Frax Ether on Arbitrum One",
+    "precision": 18,
+    "color": "#B4B4B4",
+    "icon": "https://assets.coingecko.com/coins/images/28285/thumb/sfrxETH_icon.png?1696527285",
+    "symbol": "SFRXETH",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0x9623063377ad1b27544c965ccd7342f7ea7e88c7": {
+    "assetId": "eip155:42161/erc20:0x9623063377ad1b27544c965ccd7342f7ea7e88c7",
+    "chainId": "eip155:42161",
+    "name": "The Graph on Arbitrum One",
+    "precision": 18,
+    "color": "#433DAA",
+    "icon": "https://assets.coingecko.com/coins/images/13397/thumb/Graph_Token.png?1696513159",
+    "symbol": "GRT",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0x965772e0e9c84b6f359c8597c891108dcf1c5b1a": {
+    "assetId": "eip155:42161/erc20:0x965772e0e9c84b6f359c8597c891108dcf1c5b1a",
+    "chainId": "eip155:42161",
+    "name": "Pickle Finance on Arbitrum One",
+    "precision": 18,
+    "color": "#49BF4B",
+    "icon": "https://assets.coingecko.com/coins/images/12435/thumb/0M4W6Yr6_400x400.jpg?1696512255",
+    "symbol": "PICKLE",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0x965d00aa7abc62ca10132e641d08593435ac811d": {
+    "assetId": "eip155:42161/erc20:0x965d00aa7abc62ca10132e641d08593435ac811d",
+    "chainId": "eip155:42161",
+    "name": "KAP Games on Arbitrum One",
+    "precision": 18,
+    "color": "#CDE404",
+    "icon": "https://assets.coingecko.com/coins/images/27682/thumb/KAP_Logo.png?1696526710",
+    "symbol": "KAP",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0x965f298e4ade51c0b0bb24e3369deb6c7d5b3951": {
+    "assetId": "eip155:42161/erc20:0x965f298e4ade51c0b0bb24e3369deb6c7d5b3951",
+    "chainId": "eip155:42161",
+    "name": "AutoDCA",
+    "precision": 18,
+    "color": "#DDEBE6",
+    "icon": "https://assets.coingecko.com/coins/images/29915/thumb/E3se3dx4_400x400.jpg?1696528843",
+    "symbol": "DCA",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0x982239d38af50b0168da33346d85fb12929c4c07": {
+    "assetId": "eip155:42161/erc20:0x982239d38af50b0168da33346d85fb12929c4c07",
+    "chainId": "eip155:42161",
+    "name": "Arbitrove Governance Token",
+    "precision": 18,
+    "color": "#1C1C1C",
+    "icon": "https://assets.coingecko.com/coins/images/29017/thumb/trove.png?1696527988",
+    "symbol": "TROVE",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0x986a3db4317177b4f84b05127e9e39a7abd7187a": {
+    "assetId": "eip155:42161/erc20:0x986a3db4317177b4f84b05127e9e39a7abd7187a",
+    "chainId": "eip155:42161",
+    "name": "CatKing",
+    "precision": 18,
+    "color": "#F6BF25",
+    "icon": "https://assets.coingecko.com/coins/images/29373/thumb/64060a800f39c27aa37e242d_256_photo_2023-02-06_18.56.14_Y.png?1696528320",
+    "symbol": "CKING",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0x9925130735a30cae869230a9f19eedbaa71a2c02": {
+    "assetId": "eip155:42161/erc20:0x9925130735a30cae869230a9f19eedbaa71a2c02",
+    "chainId": "eip155:42161",
+    "name": "Horny Hyenas",
+    "precision": 18,
+    "color": "#6C504B",
+    "icon": "https://assets.coingecko.com/coins/images/28979/thumb/horny.png?1696527952",
+    "symbol": "HORNY",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0x99f40b01ba9c469193b360f72740e416b17ac332": {
+    "assetId": "eip155:42161/erc20:0x99f40b01ba9c469193b360f72740e416b17ac332",
+    "chainId": "eip155:42161",
+    "name": "MATH on Arbitrum One",
+    "precision": 18,
+    "color": "#BEBEBE",
+    "icon": "https://assets.coingecko.com/coins/images/11335/thumb/2020-05-19-token-200.png?1696511257",
+    "symbol": "MATH",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0x9b06f3c5de42d4623d7a2bd940ec735103c68a76": {
+    "assetId": "eip155:42161/erc20:0x9b06f3c5de42d4623d7a2bd940ec735103c68a76",
+    "chainId": "eip155:42161",
+    "name": "Volta Club on Arbitrum One",
+    "precision": 18,
+    "color": "#350604",
+    "icon": "https://assets.coingecko.com/coins/images/31602/thumb/volta-200x200.png?1696530418",
+    "symbol": "VOLTA",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0x9b3fa2a7c3eb36d048a5d38d81e7fafc6bc47b25": {
+    "assetId": "eip155:42161/erc20:0x9b3fa2a7c3eb36d048a5d38d81e7fafc6bc47b25",
+    "chainId": "eip155:42161",
+    "name": "Aluna on Arbitrum One",
+    "precision": 18,
+    "color": "#C7AEE2",
+    "icon": "https://assets.coingecko.com/coins/images/14379/thumb/uaLoLU8c_400x400_%281%29.png?1696514071",
+    "symbol": "ALN",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0x9c46e1b70d447b770dbfc8d450543a431af6df3a": {
+    "assetId": "eip155:42161/erc20:0x9c46e1b70d447b770dbfc8d450543a431af6df3a",
+    "chainId": "eip155:42161",
+    "name": "Dinari USFR",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/32402/thumb/token-icon.png?1698055558",
+    "symbol": "USFRD",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0x9c8ef67c9168587134e1f29a71405dc753500a45": {
+    "assetId": "eip155:42161/erc20:0x9c8ef67c9168587134e1f29a71405dc753500a45",
+    "chainId": "eip155:42161",
+    "name": "Legends Token",
+    "precision": 18,
+    "color": "#1F2E44",
+    "icon": "https://assets.coingecko.com/coins/images/30079/thumb/004_%281%29.png?1696529003",
+    "symbol": "LG",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0x9cfb13e6c11054ac9fcb92ba89644f30775436e4": {
+    "assetId": "eip155:42161/erc20:0x9cfb13e6c11054ac9fcb92ba89644f30775436e4",
+    "chainId": "eip155:42161",
+    "name": "Bridged Wrapped stETH  Axelar  on Arbitrum One",
+    "precision": 18,
+    "color": "#EAEEF9",
+    "icon": "https://assets.coingecko.com/coins/images/32223/thumb/steth-wei_D_3x.png?1696926841",
+    "symbol": "AXL-WSTETH",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0x9d2f299715d94d8a7e6f5eaa8e654e8c74a988a7": {
+    "assetId": "eip155:42161/erc20:0x9d2f299715d94d8a7e6f5eaa8e654e8c74a988a7",
+    "chainId": "eip155:42161",
+    "name": "Frax Share on Arbitrum One",
+    "precision": 18,
+    "color": "#CACACA",
+    "icon": "https://assets.coingecko.com/coins/images/13423/thumb/Frax_Shares_icon.png?1696513183",
+    "symbol": "FXS",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0x9da913f4dca9b210a232d588113047685a4ed4b1": {
+    "assetId": "eip155:42161/erc20:0x9da913f4dca9b210a232d588113047685a4ed4b1",
+    "chainId": "eip155:42161",
+    "name": "Dinari BRK A",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/32979/thumb/Frame_16189.png?1700091475",
+    "symbol": "BRKAD",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0x9db8a10c7fe60d84397860b3af2e686d4f90c2b7": {
+    "assetId": "eip155:42161/erc20:0x9db8a10c7fe60d84397860b3af2e686d4f90c2b7",
+    "chainId": "eip155:42161",
+    "name": "ArbiSwap",
+    "precision": 18,
+    "color": "#C4AF77",
+    "icon": "https://assets.coingecko.com/coins/images/29195/thumb/arbiswap_token.png?1696528154",
+    "symbol": "ARBI",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0x9dca587dc65ac0a043828b0acd946d71eb8d46c1": {
+    "assetId": "eip155:42161/erc20:0x9dca587dc65ac0a043828b0acd946d71eb8d46c1",
+    "chainId": "eip155:42161",
+    "name": "iFARM on Arbitrum One",
+    "precision": 18,
+    "color": "#5D3826",
+    "icon": "https://assets.coingecko.com/coins/images/14472/thumb/ifarm.png?1696514159",
+    "symbol": "IFARM",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0x9e523234d36973f9e38642886197d023c88e307e": {
+    "assetId": "eip155:42161/erc20:0x9e523234d36973f9e38642886197d023c88e307e",
+    "chainId": "eip155:42161",
+    "name": "Darwinia Network on Arbitrum One",
+    "precision": 18,
+    "color": "#9EA3B1",
+    "icon": "https://assets.coingecko.com/coins/images/9443/thumb/RING.png?1696509535",
+    "symbol": "RING",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0x9e724698051da34994f281bd81c3e7372d1960ae": {
+    "assetId": "eip155:42161/erc20:0x9e724698051da34994f281bd81c3e7372d1960ae",
+    "chainId": "eip155:42161",
+    "name": "Ascension Protocol",
+    "precision": 18,
+    "color": "#F2770C",
+    "icon": "https://assets.coingecko.com/coins/images/16019/thumb/icon200.png?1696515630",
+    "symbol": "ASCEND",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0x9e758b8a98a42d612b3d38b66a22074dc03d7370": {
+    "assetId": "eip155:42161/erc20:0x9e758b8a98a42d612b3d38b66a22074dc03d7370",
+    "chainId": "eip155:42161",
+    "name": "Symbiosis on Arbitrum One",
+    "precision": 18,
+    "color": "#070B06",
+    "icon": "https://assets.coingecko.com/coins/images/20805/thumb/SymbiosisFinance_logo-150x150.jpeg?1696520198",
+    "symbol": "SIS",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0x9eb6299e4bb6669e42cb295a254c8492f67ae2c6": {
+    "assetId": "eip155:42161/erc20:0x9eb6299e4bb6669e42cb295a254c8492f67ae2c6",
+    "chainId": "eip155:42161",
+    "name": "The Bet",
+    "precision": 18,
+    "color": "#D94849",
+    "icon": "https://assets.coingecko.com/coins/images/29545/thumb/200.png?1696528486",
+    "symbol": "BET",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0x9ed7e4b1bff939ad473da5e7a218c771d1569456": {
+    "assetId": "eip155:42161/erc20:0x9ed7e4b1bff939ad473da5e7a218c771d1569456",
+    "chainId": "eip155:42161",
+    "name": "Reunit Wallet on Arbitrum One",
+    "precision": 6,
+    "color": "#0E0A0E",
+    "icon": "https://assets.coingecko.com/coins/images/29492/thumb/reunit_200.png?1696528436",
+    "symbol": "REUNI",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0x9f6abbf0ba6b5bfa27f4deb6597cc6ec20573fda": {
+    "assetId": "eip155:42161/erc20:0x9f6abbf0ba6b5bfa27f4deb6597cc6ec20573fda",
+    "chainId": "eip155:42161",
+    "name": "Ferrum Network on Arbitrum One",
+    "precision": 18,
+    "color": "#DAD5C6",
+    "icon": "https://assets.coingecko.com/coins/images/8251/thumb/FRM.png?1696508455",
+    "symbol": "FRM",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0x9fb9a33956351cf4fa040f65a13b835a3c8764e3": {
+    "assetId": "eip155:42161/erc20:0x9fb9a33956351cf4fa040f65a13b835a3c8764e3",
+    "chainId": "eip155:42161",
+    "name": "Multichain on Arbitrum One",
+    "precision": 18,
+    "color": "#D6D2FA",
+    "icon": "https://assets.coingecko.com/coins/images/22087/thumb/1_Wyot-SDGZuxbjdkaOeT2-A.png?1696521430",
+    "symbol": "MULTI",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0xa0b862f60edef4452f25b4160f177db44deb6cf1": {
+    "assetId": "eip155:42161/erc20:0xa0b862f60edef4452f25b4160f177db44deb6cf1",
+    "chainId": "eip155:42161",
+    "name": "Gnosis on Arbitrum One",
+    "precision": 18,
+    "color": "#BCBFC5",
+    "icon": "https://assets.coingecko.com/coins/images/662/thumb/logo_square_simple_300px.png?1696501854",
+    "symbol": "GNO",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0xa0df47432d9d88bcc040e9ee66ddc7e17a882715": {
+    "assetId": "eip155:42161/erc20:0xa0df47432d9d88bcc040e9ee66ddc7e17a882715",
+    "chainId": "eip155:42161",
+    "name": "Ripae pETH",
+    "precision": 18,
+    "color": "#DCDCDD",
+    "icon": "https://assets.coingecko.com/coins/images/29121/thumb/pETH.png?1696528083",
+    "symbol": "PETH",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0xa15907f3e7fdd0a83ec56f4ac543cb10f4d783eb": {
+    "assetId": "eip155:42161/erc20:0xa15907f3e7fdd0a83ec56f4ac543cb10f4d783eb",
+    "chainId": "eip155:42161",
+    "name": "Kewl",
+    "precision": 18,
+    "color": "#24FC94",
+    "icon": "https://assets.coingecko.com/coins/images/30534/thumb/Group_599.png?1696529407",
+    "symbol": "KEWL",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0xa23e44aea714fbbc08ef28340d78067b9a8cad73": {
+    "assetId": "eip155:42161/erc20:0xa23e44aea714fbbc08ef28340d78067b9a8cad73",
+    "chainId": "eip155:42161",
+    "name": "Lybra on Arbitrum One",
+    "precision": 18,
+    "color": "#C79DB1",
+    "icon": "https://assets.coingecko.com/coins/images/29958/thumb/New_LBR_V2.png?1696528884",
+    "symbol": "LBR",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0xa2f9ecf83a48b86265ff5fd36cdbaaa1f349916c": {
+    "assetId": "eip155:42161/erc20:0xa2f9ecf83a48b86265ff5fd36cdbaaa1f349916c",
+    "chainId": "eip155:42161",
+    "name": "Goons of Balatroon on Arbitrum One",
+    "precision": 18,
+    "color": "#BA9A94",
+    "icon": "https://assets.coingecko.com/coins/images/27104/thumb/q1_hZykF_400x400.jpeg?1696526153",
+    "symbol": "GOB",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0xa334884bf6b0a066d553d19e507315e839409e62": {
+    "assetId": "eip155:42161/erc20:0xa334884bf6b0a066d553d19e507315e839409e62",
+    "chainId": "eip155:42161",
+    "name": "Ethos Reserve Note on Arbitrum One",
+    "precision": 18,
+    "color": "#0C0C0C",
+    "icon": "https://assets.coingecko.com/coins/images/29744/thumb/ERN200x200.png?1696528676",
+    "symbol": "ERN",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0xa3d1a8deb97b111454b294e2324efad13a9d8396": {
+    "assetId": "eip155:42161/erc20:0xa3d1a8deb97b111454b294e2324efad13a9d8396",
+    "chainId": "eip155:42161",
+    "name": "Overnight Finance on Arbitrum One",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/31970/thumb/OVN.png?1696959174",
+    "symbol": "OVN",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0xa4914b824ef261d4ed0ccecec29500862d57c0a1": {
+    "assetId": "eip155:42161/erc20:0xa4914b824ef261d4ed0ccecec29500862d57c0a1",
+    "chainId": "eip155:42161",
+    "name": "DFX Finance on Arbitrum One",
+    "precision": 18,
+    "color": "#09D5F4",
+    "icon": "https://assets.coingecko.com/coins/images/14091/thumb/DFX.png?1696513813",
+    "symbol": "DFX",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0xa58663faef461761e44066ea26c1fcddf2927b80": {
+    "assetId": "eip155:42161/erc20:0xa58663faef461761e44066ea26c1fcddf2927b80",
+    "chainId": "eip155:42161",
+    "name": "Kommunitas on Arbitrum One",
+    "precision": 8,
+    "color": "#DFEFF3",
+    "icon": "https://assets.coingecko.com/coins/images/17483/thumb/1_f1S3h57YLT1e1cl8g7RJpw_2x.jpeg?1696517024",
+    "symbol": "KOM",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0xa6099b214e8d069911702bc92ef274f63c476c5a": {
+    "assetId": "eip155:42161/erc20:0xa6099b214e8d069911702bc92ef274f63c476c5a",
+    "chainId": "eip155:42161",
+    "name": "Zenland on Arbitrum One",
+    "precision": 18,
+    "color": "#5FA7FC",
+    "icon": "https://assets.coingecko.com/coins/images/29477/thumb/tokenicon200px.png?1696528421",
+    "symbol": "ZENF",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0xa61f74247455a40b01b0559ff6274441fafa22a3": {
+    "assetId": "eip155:42161/erc20:0xa61f74247455a40b01b0559ff6274441fafa22a3",
+    "chainId": "eip155:42161",
+    "name": "Magpie on Arbitrum One",
+    "precision": 18,
+    "color": "#98C2F1",
+    "icon": "https://assets.coingecko.com/coins/images/27972/thumb/MagpieLogo.png?1696526991",
+    "symbol": "MGP",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0xa684cd057951541187f288294a1e1c2646aa2d24": {
+    "assetId": "eip155:42161/erc20:0xa684cd057951541187f288294a1e1c2646aa2d24",
+    "chainId": "eip155:42161",
+    "name": "Vesta Finance",
+    "precision": 18,
+    "color": "#F5F5EE",
+    "icon": "https://assets.coingecko.com/coins/images/23306/thumb/vesta-finance.png?1696522523",
+    "symbol": "VSTA",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0xa68ec98d7ca870cf1dd0b00ebbb7c4bf60a8e74d": {
+    "assetId": "eip155:42161/erc20:0xa68ec98d7ca870cf1dd0b00ebbb7c4bf60a8e74d",
+    "chainId": "eip155:42161",
+    "name": "Biconomy on Arbitrum One",
+    "precision": 18,
+    "color": "#FADAC8",
+    "icon": "https://assets.coingecko.com/coins/images/21061/thumb/biconomy_logo.jpg?1696520444",
+    "symbol": "BICO",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0xa72159fc390f0e3c6d415e658264c7c4051e9b87": {
+    "assetId": "eip155:42161/erc20:0xa72159fc390f0e3c6d415e658264c7c4051e9b87",
+    "chainId": "eip155:42161",
+    "name": "Tracer DAO on Arbitrum One",
+    "precision": 18,
+    "color": "#C4C4EC",
+    "icon": "https://assets.coingecko.com/coins/images/18271/thumb/tracer_logo.png?1696517765",
+    "symbol": "TCR",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0xa7aa2921618e3d63da433829d448b58c9445a4c3": {
+    "assetId": "eip155:42161/erc20:0xa7aa2921618e3d63da433829d448b58c9445a4c3",
+    "chainId": "eip155:42161",
+    "name": "Rhino fi on Arbitrum One",
+    "precision": 18,
+    "color": "#F1E6E4",
+    "icon": "https://assets.coingecko.com/coins/images/16414/thumb/rhinologo.png?1697736807",
+    "symbol": "DVF",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0xa970af1a584579b618be4d69ad6f73459d112f95": {
+    "assetId": "eip155:42161/erc20:0xa970af1a584579b618be4d69ad6f73459d112f95",
+    "chainId": "eip155:42161",
+    "name": "sUSD on Arbitrum One",
+    "precision": 18,
+    "color": "#D3D2D8",
+    "icon": "https://assets.coingecko.com/coins/images/5013/thumb/sUSD.png?1696505546",
+    "symbol": "SUSD",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0xaa54e84a3e6e5a80288d2c2f8e36ea5ca3a3ca30": {
+    "assetId": "eip155:42161/erc20:0xaa54e84a3e6e5a80288d2c2f8e36ea5ca3a3ca30",
+    "chainId": "eip155:42161",
+    "name": "Sharbi on Arbitrum One",
+    "precision": 9,
+    "color": "#DED3C3",
+    "icon": "https://assets.coingecko.com/coins/images/29075/thumb/WhatsApp_Image_2023-01-25_at_12.08.22_PM-removebg-1.png?1696528041",
+    "symbol": "SHARBI",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0xaaa62d9584cbe8e4d68a43ec91bff4ff1fadb202": {
+    "assetId": "eip155:42161/erc20:0xaaa62d9584cbe8e4d68a43ec91bff4ff1fadb202",
+    "chainId": "eip155:42161",
+    "name": "AntiMatter on Arbitrum One",
+    "precision": 18,
+    "color": "#040404",
+    "icon": "https://assets.coingecko.com/coins/images/14112/thumb/antimatter_icon.png?1696513833",
+    "symbol": "MATTER",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0xaaa6c1e32c55a7bfa8066a6fae9b42650f262418": {
+    "assetId": "eip155:42161/erc20:0xaaa6c1e32c55a7bfa8066a6fae9b42650f262418",
+    "chainId": "eip155:42161",
+    "name": "Ramses Exchange",
+    "precision": 18,
+    "color": "#1D1D1D",
+    "icon": "https://assets.coingecko.com/coins/images/29420/thumb/RAMSES.png?1700027864",
+    "symbol": "RAM",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0xaae0c3856e665ff9b3e2872b6d75939d810b7e40": {
+    "assetId": "eip155:42161/erc20:0xaae0c3856e665ff9b3e2872b6d75939d810b7e40",
+    "chainId": "eip155:42161",
+    "name": "YieldFarming Index",
+    "precision": 18,
+    "color": "#2F223C",
+    "icon": "https://assets.coingecko.com/coins/images/29399/thumb/l1v2_transparent.png?1696528349",
+    "symbol": "YFX",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0xab10645297d5b2b124523b5181df2e8815190aeb": {
+    "assetId": "eip155:42161/erc20:0xab10645297d5b2b124523b5181df2e8815190aeb",
+    "chainId": "eip155:42161",
+    "name": "Forge",
+    "precision": 18,
+    "color": "#FADAC9",
+    "icon": "https://assets.coingecko.com/coins/images/29768/thumb/logo_200x200.png?1696528699",
+    "symbol": "FORGE",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0xab9ec601b82a22fbf2b030ac0dd7c1c34f52fa04": {
+    "assetId": "eip155:42161/erc20:0xab9ec601b82a22fbf2b030ac0dd7c1c34f52fa04",
+    "chainId": "eip155:42161",
+    "name": "1minBET",
+    "precision": 18,
+    "color": "#482D3D",
+    "icon": "https://assets.coingecko.com/coins/images/29606/thumb/CGK.png?1696528542",
+    "symbol": "1MB",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0xabd587f2607542723b17f14d00d99b987c29b074": {
+    "assetId": "eip155:42161/erc20:0xabd587f2607542723b17f14d00d99b987c29b074",
+    "chainId": "eip155:42161",
+    "name": "SmarDex on Arbitrum One",
+    "precision": 18,
+    "color": "#04F7AF",
+    "icon": "https://assets.coingecko.com/coins/images/29470/thumb/SDEX_logo_transparent_outside_240x240.png?1696930070",
+    "symbol": "SDEX",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0xadd5620057336f868eae78a451c503ae7b576bad": {
+    "assetId": "eip155:42161/erc20:0xadd5620057336f868eae78a451c503ae7b576bad",
+    "chainId": "eip155:42161",
+    "name": "noiseGPT on Arbitrum One",
+    "precision": 18,
+    "color": "#4547AE",
+    "icon": "https://assets.coingecko.com/coins/images/29908/thumb/noisegpt.png?1696528837",
+    "symbol": "NOISEGPT",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0xadf5dd3e51bf28ab4f07e684ecf5d00691818790": {
+    "assetId": "eip155:42161/erc20:0xadf5dd3e51bf28ab4f07e684ecf5d00691818790",
+    "chainId": "eip155:42161",
+    "name": "ICHI on Arbitrum One",
+    "precision": 18,
+    "color": "#0D68E2",
+    "icon": "https://assets.coingecko.com/coins/images/13119/thumb/ICHI_%28Round%29.jpg?1696512907",
+    "symbol": "ICHI",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0xae48b7c8e096896e32d53f10d0bf89f82ec7b987": {
+    "assetId": "eip155:42161/erc20:0xae48b7c8e096896e32d53f10d0bf89f82ec7b987",
+    "chainId": "eip155:42161",
+    "name": "Fractal Protocol Vault on Arbitrum One",
+    "precision": 6,
+    "color": "#EDF6F8",
+    "icon": "https://assets.coingecko.com/coins/images/30946/thumb/fractal.jpeg?1696529785",
+    "symbol": "USDF",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0xae6aab43c4f3e0cea4ab83752c278f8debaba689": {
+    "assetId": "eip155:42161/erc20:0xae6aab43c4f3e0cea4ab83752c278f8debaba689",
+    "chainId": "eip155:42161",
+    "name": "dForce on Arbitrum One",
+    "precision": 18,
+    "color": "#0E0718",
+    "icon": "https://assets.coingecko.com/coins/images/9709/thumb/xlGxxIjI_400x400.jpg?1696509776",
+    "symbol": "DF",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0xaeaeed23478c3a4b798e4ed40d8b7f41366ae861": {
+    "assetId": "eip155:42161/erc20:0xaeaeed23478c3a4b798e4ed40d8b7f41366ae861",
+    "chainId": "eip155:42161",
+    "name": "Ankr Network on Arbitrum One",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/4324/thumb/U85xTl2.png?1696504928",
+    "symbol": "ANKR",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0xaf20f5f19698f1d19351028cd7103b63d30de7d7": {
+    "assetId": "eip155:42161/erc20:0xaf20f5f19698f1d19351028cd7103b63d30de7d7",
+    "chainId": "eip155:42161",
+    "name": "Wagmi on Arbitrum One",
+    "precision": 18,
+    "color": "#CEB484",
+    "icon": "https://assets.coingecko.com/coins/images/31887/thumb/wagmi_token_logo.png?1696530698",
+    "symbol": "WAGMI",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0xaf5db6e1cc585ca312e8c8f7c499033590cf5c98": {
+    "assetId": "eip155:42161/erc20:0xaf5db6e1cc585ca312e8c8f7c499033590cf5c98",
+    "chainId": "eip155:42161",
+    "name": "Arken Finance on Arbitrum One",
+    "precision": 18,
+    "color": "#FC8035",
+    "icon": "https://assets.coingecko.com/coins/images/26137/thumb/arken.png?1696525225",
+    "symbol": "ARKEN",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0xaf88d065e77c8cc2239327c5edb3a432268e5831": {
+    "assetId": "eip155:42161/erc20:0xaf88d065e77c8cc2239327c5edb3a432268e5831",
+    "chainId": "eip155:42161",
+    "name": "USDC on Arbitrum One",
+    "precision": 6,
+    "color": "#2E7ACD",
+    "icon": "https://assets.coingecko.com/coins/images/6319/thumb/usdc.png?1696506694",
+    "symbol": "USDC",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0xafa5676a6ef790f08290dd4a45e0ec2a5cc5cdab": {
+    "assetId": "eip155:42161/erc20:0xafa5676a6ef790f08290dd4a45e0ec2a5cc5cdab",
+    "chainId": "eip155:42161",
+    "name": "Cat   Mouse",
+    "precision": 0,
+    "color": "#C9C8C8",
+    "icon": "https://assets.coingecko.com/coins/images/29947/thumb/favicon200.png?1696528874",
+    "symbol": "CATMOUSE",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0xafccb724e3aec1657fc9514e3e53a0e71e80622d": {
+    "assetId": "eip155:42161/erc20:0xafccb724e3aec1657fc9514e3e53a0e71e80622d",
+    "chainId": "eip155:42161",
+    "name": "Vaultka",
+    "precision": 18,
+    "color": "#2C5FA4",
+    "icon": "https://assets.coingecko.com/coins/images/32408/thumb/VKA_logo_PNG.png?1698057073",
+    "symbol": "VKA",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0xafdefd913286a1cec75aca503938c6bba01a5445": {
+    "assetId": "eip155:42161/erc20:0xafdefd913286a1cec75aca503938c6bba01a5445",
+    "chainId": "eip155:42161",
+    "name": "JPG NFT Index on Arbitrum One",
+    "precision": 18,
+    "color": "#12EBDC",
+    "icon": "https://assets.coingecko.com/coins/images/25071/thumb/JPG-token-logo-01.png?1696524219",
+    "symbol": "JPG",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0xb0b195aefa3650a6908f15cdac7d92f8a5791b0b": {
+    "assetId": "eip155:42161/erc20:0xb0b195aefa3650a6908f15cdac7d92f8a5791b0b",
+    "chainId": "eip155:42161",
+    "name": "BOB on Arbitrum One",
+    "precision": 18,
+    "color": "#A265FC",
+    "icon": "https://assets.coingecko.com/coins/images/27266/thumb/Bob-logo.png?1696526318",
+    "symbol": "BOB",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0xb0ecc6ac0073c063dcfc026ccdc9039cae2998e1": {
+    "assetId": "eip155:42161/erc20:0xb0ecc6ac0073c063dcfc026ccdc9039cae2998e1",
+    "chainId": "eip155:42161",
+    "name": "A3S",
+    "precision": 18,
+    "color": "#041415",
+    "icon": "https://assets.coingecko.com/coins/images/32133/thumb/A3S.jpg?1696588511",
+    "symbol": "AA",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0xb1070c40d5b3d10e1f1c8876c3d2ff5ffed4b3ac": {
+    "assetId": "eip155:42161/erc20:0xb1070c40d5b3d10e1f1c8876c3d2ff5ffed4b3ac",
+    "chainId": "eip155:42161",
+    "name": "FengLvZiV2",
+    "precision": 18,
+    "color": "#384448",
+    "icon": "https://assets.coingecko.com/coins/images/30324/thumb/logo.png?1696529225",
+    "symbol": "FENGLVZIV2",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0xb1084db8d3c05cebd5fa9335df95ee4b8a0edc30": {
+    "assetId": "eip155:42161/erc20:0xb1084db8d3c05cebd5fa9335df95ee4b8a0edc30",
+    "chainId": "eip155:42161",
+    "name": "Overnight fi USDT  on Arbitrum One",
+    "precision": 6,
+    "color": "#B3DED0",
+    "icon": "https://assets.coingecko.com/coins/images/30168/thumb/USDT_.png?1696529088",
+    "symbol": "USDT+",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0xb1947d7596840d0a14d30cca91be69ddc24ab75d": {
+    "assetId": "eip155:42161/erc20:0xb1947d7596840d0a14d30cca91be69ddc24ab75d",
+    "chainId": "eip155:42161",
+    "name": "Arbitrum Ecosystem Index",
+    "precision": 18,
+    "color": "#060606",
+    "icon": "https://assets.coingecko.com/coins/images/32042/thumb/Frame_2881_%281%29.png?1696530839",
+    "symbol": "ARBI",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0xb1bc21f748ae2be95674876710bc6d78235480e0": {
+    "assetId": "eip155:42161/erc20:0xb1bc21f748ae2be95674876710bc6d78235480e0",
+    "chainId": "eip155:42161",
+    "name": "Hord on Arbitrum One",
+    "precision": 18,
+    "color": "#4C34BE",
+    "icon": "https://assets.coingecko.com/coins/images/14972/thumb/HORD_logo_mark_%28purple%29.png?1696514632",
+    "symbol": "HORD",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0xb21be1caf592a5dc1e75e418704d1b6d50b0d083": {
+    "assetId": "eip155:42161/erc20:0xb21be1caf592a5dc1e75e418704d1b6d50b0d083",
+    "chainId": "eip155:42161",
+    "name": "MIND Games CORTEX",
+    "precision": 18,
+    "color": "#BD8431",
+    "icon": "https://assets.coingecko.com/coins/images/29446/thumb/CRX200x200.png?1696528393",
+    "symbol": "CRX",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0xb2498cde54810424a24fdd23579164265a0c14c5": {
+    "assetId": "eip155:42161/erc20:0xb2498cde54810424a24fdd23579164265a0c14c5",
+    "chainId": "eip155:42161",
+    "name": "Taikula Coin",
+    "precision": 6,
+    "color": "#765620",
+    "icon": "https://assets.coingecko.com/coins/images/30265/thumb/8MV4Pr9j_400x400.png?1696529173",
+    "symbol": "TAIKULA",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0xb25ea095997f5bbaa6cea962c4fbf3bfc3c09776": {
+    "assetId": "eip155:42161/erc20:0xb25ea095997f5bbaa6cea962c4fbf3bfc3c09776",
+    "chainId": "eip155:42161",
+    "name": "Promethios on Arbitrum One",
+    "precision": 9,
+    "color": "#BC6220",
+    "icon": "https://assets.coingecko.com/coins/images/30750/thumb/Fire_Logo.png?1696529619",
+    "symbol": "FIRE",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0xb2d948be3a74ecce80378d4093e6cd7f4dc1cf9c": {
+    "assetId": "eip155:42161/erc20:0xb2d948be3a74ecce80378d4093e6cd7f4dc1cf9c",
+    "chainId": "eip155:42161",
+    "name": "Alt Markets",
+    "precision": 6,
+    "color": "#151515",
+    "icon": "https://assets.coingecko.com/coins/images/29025/thumb/logo-200.png?1696527995",
+    "symbol": "AMX",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0xb2dcbd5258a22385240e4ac13fc6726b66f0de96": {
+    "assetId": "eip155:42161/erc20:0xb2dcbd5258a22385240e4ac13fc6726b66f0de96",
+    "chainId": "eip155:42161",
+    "name": "ZenithSwap",
+    "precision": 18,
+    "color": "#6C64DC",
+    "icon": "https://assets.coingecko.com/coins/images/29658/thumb/zenithswaplogo.png?1696528593",
+    "symbol": "ZSP",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0xb3180df05e46f9fcdd589a2023470a9007df01ca": {
+    "assetId": "eip155:42161/erc20:0xb3180df05e46f9fcdd589a2023470a9007df01ca",
+    "chainId": "eip155:42161",
+    "name": "Chibi Finance",
+    "precision": 18,
+    "color": "#E2DEDD",
+    "icon": "https://assets.coingecko.com/coins/images/30818/thumb/chibi_no_bg.jpg?1696529674",
+    "symbol": "CHIBI",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0xb49b6a3fd1f4bb510ef776de7a88a9e65904478a": {
+    "assetId": "eip155:42161/erc20:0xb49b6a3fd1f4bb510ef776de7a88a9e65904478a",
+    "chainId": "eip155:42161",
+    "name": "Arbitrove ALP",
+    "precision": 18,
+    "color": "#2D5999",
+    "icon": "https://assets.coingecko.com/coins/images/30769/thumb/alp.jpg?1696529637",
+    "symbol": "ALP",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0xb4b07b60455a2f38cba98a8f3dd161f7ca396a9c": {
+    "assetId": "eip155:42161/erc20:0xb4b07b60455a2f38cba98a8f3dd161f7ca396a9c",
+    "chainId": "eip155:42161",
+    "name": "Onchain Trade Protocol",
+    "precision": 18,
+    "color": "#242C3C",
+    "icon": "https://assets.coingecko.com/coins/images/29133/thumb/OTCMC.png?1696528094",
+    "symbol": "OT",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0xb4bbfe92702730ef7f1d28e4b9e42381182f48a5": {
+    "assetId": "eip155:42161/erc20:0xb4bbfe92702730ef7f1d28e4b9e42381182f48a5",
+    "chainId": "eip155:42161",
+    "name": "Hold VIP",
+    "precision": 18,
+    "color": "#368C51",
+    "icon": "https://assets.coingecko.com/coins/images/30129/thumb/RteOSWQ__400x400.jpg?1696529050",
+    "symbol": "HOLD",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0xb4e3eeec43ebc04f28d31f2c021d15e9f56f0e54": {
+    "assetId": "eip155:42161/erc20:0xb4e3eeec43ebc04f28d31f2c021d15e9f56f0e54",
+    "chainId": "eip155:42161",
+    "name": "MAW",
+    "precision": 18,
+    "color": "#F6D1C7",
+    "icon": "https://assets.coingecko.com/coins/images/31152/thumb/MAW._LOGO.png?1696529980",
+    "symbol": "MAW",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0xb5a628803ee72d82098d4bcaf29a42e63531b441": {
+    "assetId": "eip155:42161/erc20:0xb5a628803ee72d82098d4bcaf29a42e63531b441",
+    "chainId": "eip155:42161",
+    "name": "Unstoppable DeFi",
+    "precision": 18,
+    "color": "#0659E0",
+    "icon": "https://assets.coingecko.com/coins/images/29819/thumb/und.png?1696528747",
+    "symbol": "UND",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0xb5b5b428e4de365f809ced8271d202449e5c2f72": {
+    "assetId": "eip155:42161/erc20:0xb5b5b428e4de365f809ced8271d202449e5c2f72",
+    "chainId": "eip155:42161",
+    "name": "BRUH",
+    "precision": 6,
+    "color": "#3A285B",
+    "icon": "https://assets.coingecko.com/coins/images/32227/thumb/BRUH.jpg?1696931468",
+    "symbol": "BRUH",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0xb64e280e9d1b5dbec4accedb2257a87b400db149": {
+    "assetId": "eip155:42161/erc20:0xb64e280e9d1b5dbec4accedb2257a87b400db149",
+    "chainId": "eip155:42161",
+    "name": "Level on Arbitrum One",
+    "precision": 18,
+    "color": "#FCB415",
+    "icon": "https://assets.coingecko.com/coins/images/28628/thumb/Token.png?1696527613",
+    "symbol": "LVL",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0xb688ba096b7bb75d7841e47163cd12d18b36a5bf": {
+    "assetId": "eip155:42161/erc20:0xb688ba096b7bb75d7841e47163cd12d18b36a5bf",
+    "chainId": "eip155:42161",
+    "name": "mPendle on Arbitrum One",
+    "precision": 18,
+    "color": "#456895",
+    "icon": "https://assets.coingecko.com/coins/images/31918/thumb/mPendle.png?1696530726",
+    "symbol": "MPENDLE",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0xb766039cc6db368759c1e56b79affe831d0cc507": {
+    "assetId": "eip155:42161/erc20:0xb766039cc6db368759c1e56b79affe831d0cc507",
+    "chainId": "eip155:42161",
+    "name": "Rocket Pool on Arbitrum One",
+    "precision": 18,
+    "color": "#FCA063",
+    "icon": "https://assets.coingecko.com/coins/images/2090/thumb/rocket_pool_%28RPL%29.png?1696503058",
+    "symbol": "RPL",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0xb827710314a05bcbee9180e11c2abe5823289422": {
+    "assetId": "eip155:42161/erc20:0xb827710314a05bcbee9180e11c2abe5823289422",
+    "chainId": "eip155:42161",
+    "name": "Abachi on Arbitrum One",
+    "precision": 18,
+    "color": "#E4B7BC",
+    "icon": "https://assets.coingecko.com/coins/images/31225/thumb/Abachi.png?1696530051",
+    "symbol": "ABI",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0xb829b68f57cc546da7e5806a929e53be32a4625d": {
+    "assetId": "eip155:42161/erc20:0xb829b68f57cc546da7e5806a929e53be32a4625d",
+    "chainId": "eip155:42161",
+    "name": "Axelar Wrapped Ether on Arbitrum One",
+    "precision": 18,
+    "color": "#37353D",
+    "icon": "https://assets.coingecko.com/coins/images/28171/thumb/weth-wei_D_3x.png?1696527174",
+    "symbol": "AXLETH",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0xb965029343d55189c25a7f3e0c9394dc0f5d41b1": {
+    "assetId": "eip155:42161/erc20:0xb965029343d55189c25a7f3e0c9394dc0f5d41b1",
+    "chainId": "eip155:42161",
+    "name": "Indexed Finance on Arbitrum One",
+    "precision": 18,
+    "color": "#040404",
+    "icon": "https://assets.coingecko.com/coins/images/13546/thumb/indexed-light.74bb5471.png?1696513306",
+    "symbol": "NDX",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0xb98058640970d8aa7bbce3b067b2d63c14143786": {
+    "assetId": "eip155:42161/erc20:0xb98058640970d8aa7bbce3b067b2d63c14143786",
+    "chainId": "eip155:42161",
+    "name": "Baby Arbitrum",
+    "precision": 18,
+    "color": "#9ABCC4",
+    "icon": "https://assets.coingecko.com/coins/images/29671/thumb/BabyArbitrum200x200.png?1696528606",
+    "symbol": "BARB",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0xb9af4762c039d63e30039f1712dfab77026408c7": {
+    "assetId": "eip155:42161/erc20:0xb9af4762c039d63e30039f1712dfab77026408c7",
+    "chainId": "eip155:42161",
+    "name": "BullBear AI",
+    "precision": 18,
+    "color": "#4F2531",
+    "icon": "https://assets.coingecko.com/coins/images/30096/thumb/ICON_200.png?1696529020",
+    "symbol": "AIBB",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0xbad58ed9b5f26a002ea250d7a60dc6729a4a2403": {
+    "assetId": "eip155:42161/erc20:0xbad58ed9b5f26a002ea250d7a60dc6729a4a2403",
+    "chainId": "eip155:42161",
+    "name": "Paribus on Arbitrum One",
+    "precision": 18,
+    "color": "#CCD6FA",
+    "icon": "https://assets.coingecko.com/coins/images/18410/thumb/paribus.PNG?1696517900",
+    "symbol": "PBX",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0xbbea044f9e7c0520195e49ad1e561572e7e1b948": {
+    "assetId": "eip155:42161/erc20:0xbbea044f9e7c0520195e49ad1e561572e7e1b948",
+    "chainId": "eip155:42161",
+    "name": "Mizar",
+    "precision": 18,
+    "color": "#4682A5",
+    "icon": "https://assets.coingecko.com/coins/images/23272/thumb/V1DTptkT_400x400.jpg?1696522492",
+    "symbol": "MZR",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0xbc011a12da28e8f0f528d9ee5e7039e22f91cf18": {
+    "assetId": "eip155:42161/erc20:0xbc011a12da28e8f0f528d9ee5e7039e22f91cf18",
+    "chainId": "eip155:42161",
+    "name": "Swell Ethereum on Arbitrum One",
+    "precision": 18,
+    "color": "#394AAF",
+    "icon": "https://assets.coingecko.com/coins/images/30326/thumb/_lB7zEtS_400x400.jpg?1696529227",
+    "symbol": "SWETH",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0xbcc9c1763d54427bdf5efb6e9eb9494e5a1fbabf": {
+    "assetId": "eip155:42161/erc20:0xbcc9c1763d54427bdf5efb6e9eb9494e5a1fbabf",
+    "chainId": "eip155:42161",
+    "name": "Honor World Token",
+    "precision": 18,
+    "color": "#9FC7FC",
+    "icon": "https://assets.coingecko.com/coins/images/28559/thumb/hwt.png?1696527549",
+    "symbol": "HWT",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0xbcf339df10d78f2b44aa760ead0f715a7a7d7269": {
+    "assetId": "eip155:42161/erc20:0xbcf339df10d78f2b44aa760ead0f715a7a7d7269",
+    "chainId": "eip155:42161",
+    "name": "Guardian GUARD on Arbitrum One",
+    "precision": 18,
+    "color": "#456198",
+    "icon": "https://assets.coingecko.com/coins/images/17995/thumb/LS_wolfDen_logo.0025_Light_200x200.png?1696517512",
+    "symbol": "GUARD",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0xbfa641051ba0a0ad1b0acf549a89536a0d76472e": {
+    "assetId": "eip155:42161/erc20:0xbfa641051ba0a0ad1b0acf549a89536a0d76472e",
+    "chainId": "eip155:42161",
+    "name": "Badger on Arbitrum One",
+    "precision": 18,
+    "color": "#E8A434",
+    "icon": "https://assets.coingecko.com/coins/images/13287/thumb/badger_dao_logo.jpg?1696513059",
+    "symbol": "BADGER",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0xbfbcfe8873fe28dfa25f1099282b088d52bbad9c": {
+    "assetId": "eip155:42161/erc20:0xbfbcfe8873fe28dfa25f1099282b088d52bbad9c",
+    "chainId": "eip155:42161",
+    "name": "Equilibria Finance on Arbitrum One",
+    "precision": 18,
+    "color": "#060A08",
+    "icon": "https://assets.coingecko.com/coins/images/30645/thumb/QLLK8pmR_400x400.jpg?1696529516",
+    "symbol": "EQB",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0xc136e6b376a9946b156db1ed3a34b08afdaed76d": {
+    "assetId": "eip155:42161/erc20:0xc136e6b376a9946b156db1ed3a34b08afdaed76d",
+    "chainId": "eip155:42161",
+    "name": "CreDA",
+    "precision": 18,
+    "color": "#414A97",
+    "icon": "https://assets.coingecko.com/coins/images/22551/thumb/gZ4EgSXD_400x400.jpg?1696521871",
+    "symbol": "CREDA",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0xc16ce97d04de6c5e0391e308dbc17a397183067b": {
+    "assetId": "eip155:42161/erc20:0xc16ce97d04de6c5e0391e308dbc17a397183067b",
+    "chainId": "eip155:42161",
+    "name": "GMLP",
+    "precision": 18,
+    "color": "#DC8C24",
+    "icon": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAIAAAACACAMAAAD04JH5AAADAFBMVEUtN0jYiyb///8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADLBNJiAAABAHRSTlP/////AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAf6K/dgAAQItJREFUeNoBgEB/vwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAgICAgICAgICAgICAQEBAQEBAQEBAQEBAQECAgICAgICAQEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgAAAAAAAAACAgICAgICAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAgICAgICAgICAgIAAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAgICAgICAgICAgIDAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAgICAgICAgICAgIDAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAgICAgICAgICAgIDAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAgICAgICAgICAgIDAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAgICAgICAgICAgIDAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAgICAgICAgICAgIDAAMDAwMDAwMDAwMDAgICAgICAgEBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAwMDAwMDAwMDAwMDAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAgICAgICAgMAAAAAAAACAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQMDAwMDAwMBAQEBAQECAgICAgICAgICAgICAgAAAAAAAAACAgICAgICAgICAgICAgMAAAAAAAACAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQECAgICAgICAgICAgICAgMAAAAAAAACAgICAgICAgICAgICAgMAAAAAAAACAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQECAgICAgICAgICAgICAgMAAAAAAAACAgICAgICAgICAgICAgMAAAAAAAACAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQECAgICAgICAgICAgICAgMAAAAAAAACAgICAgICAgICAgICAgMAAAAAAAACAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQECAgICAgICAgICAgICAgMAAAAAAAACAgICAgICAgICAgICAgMAAAAAAAACAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQECAgICAgICAgICAgICAgMAAAAAAAACAgICAgICAgICAgICAgMAAAAAAAACAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQECAgICAgICAgICAgICAgMAAAAAAAACAgICAgICAgICAgICAgMAAAAAAAACAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAACAgICAgICAgICAgICAgEBAQEBAQECAgICAgICAwMDAwMDAwICAgICAgIAAwMDAwMDAgICAgICAgMAAAAAAAACAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQECAgICAgICAgICAgICAgICAgIAAAAAAAACAgICAgICAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAICAgICAgIDAAAAAAAAAgICAgICAgMAAAAAAAACAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQECAgICAgICAgICAgICAgICAgIDAAAAAAACAgICAgICAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAICAgICAgIDAAAAAAAAAgICAgICAgMAAAAAAAACAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQECAgICAgICAgICAgICAgICAgIDAAAAAAACAgICAgICAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAICAgICAgIDAAAAAAAAAgICAgICAgMAAAAAAAACAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQECAgICAgICAgICAgICAgICAgIDAAAAAAACAgICAgICAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAICAgICAgIDAAAAAAAAAgICAgICAgMAAAAAAAACAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQECAgICAgICAgICAgICAgICAgIDAAAAAAACAgICAgICAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAICAgICAgIDAAAAAAAAAgICAgICAgMAAAAAAAACAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQECAgICAgICAgICAgICAgICAgIDAAAAAAACAgICAgICAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAICAgICAgIDAAAAAAAAAgICAgICAgMAAAAAAAACAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQECAgICAgICAgICAgICAgICAgIDAAAAAAAAAwMDAwMDAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAADAwMDAwMDAAAAAAAAAgICAgICAgMAAAAAAAACAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQECAgICAgICAwMDAwMDAwMDAwMDAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAgICAgICAgMAAAAAAAACAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAgICAgICAgMAAAAAAAACAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAgICAgICAgMAAAAAAAACAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAgICAgICAgMAAAAAAAACAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAgICAgICAgMAAAAAAAACAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAgICAgICAgICAgICAQMDAwMDAwMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAACAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAACAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAACAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAACAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAACAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAACAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAACAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAMDAwMDAwMDAwMDAwEBAQEBAQEBAQEBAQEBAwMDAwMDAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAMDAwMDAwMAAAAAAAAAAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMBAQEBAQEBAwMDAwMDAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIc7MJBglFzuAAAAAElFTkSuQmCC",
+    "symbol": "GMLP",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0xc19669a405067927865b40ea045a2baabbbe57f5": {
+    "assetId": "eip155:42161/erc20:0xc19669a405067927865b40ea045a2baabbbe57f5",
+    "chainId": "eip155:42161",
+    "name": "Star on Arbitrum One",
+    "precision": 18,
+    "color": "#C454FC",
+    "icon": "https://assets.coingecko.com/coins/images/31277/thumb/STAR.png?1696530101",
+    "symbol": "STAR",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0xc3ae0333f0f34aa734d5493276223d95b8f9cb37": {
+    "assetId": "eip155:42161/erc20:0xc3ae0333f0f34aa734d5493276223d95b8f9cb37",
+    "chainId": "eip155:42161",
+    "name": "DXdao on Arbitrum One",
+    "precision": 18,
+    "color": "#C4CEFC",
+    "icon": "https://assets.coingecko.com/coins/images/11148/thumb/dxdao.png?1696511083",
+    "symbol": "DXD",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0xc4663f169aafb1d4506ce189d63810e24a8b63ea": {
+    "assetId": "eip155:42161/erc20:0xc4663f169aafb1d4506ce189d63810e24a8b63ea",
+    "chainId": "eip155:42161",
+    "name": "Turismo AI",
+    "precision": 18,
+    "color": "#B012F0",
+    "icon": "https://assets.coingecko.com/coins/images/29396/thumb/turai.png?1696528346",
+    "symbol": "TURAI",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0xc47d9753f3b32aa9548a7c3f30b6aec3b2d2798c": {
+    "assetId": "eip155:42161/erc20:0xc47d9753f3b32aa9548a7c3f30b6aec3b2d2798c",
+    "chainId": "eip155:42161",
+    "name": "Tender fi",
+    "precision": 18,
+    "color": "#14F394",
+    "icon": "https://assets.coingecko.com/coins/images/28659/thumb/tenderlogo.png?1696527644",
+    "symbol": "TND",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0xc4be0798e5b5b1c15eda36d9b2d8c1a60717fa92": {
+    "assetId": "eip155:42161/erc20:0xc4be0798e5b5b1c15eda36d9b2d8c1a60717fa92",
+    "chainId": "eip155:42161",
+    "name": "Adventurer Gold on Arbitrum One",
+    "precision": 18,
+    "color": "#192125",
+    "icon": "https://assets.coingecko.com/coins/images/28427/thumb/anon-npc-pixel.png?1696527424",
+    "symbol": "GOLD",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0xc5102fe9359fd9a28f877a67e36b0f050d81a3cc": {
+    "assetId": "eip155:42161/erc20:0xc5102fe9359fd9a28f877a67e36b0f050d81a3cc",
+    "chainId": "eip155:42161",
+    "name": "Hop Protocol on Arbitrum One",
+    "precision": 18,
+    "color": "#D267CC",
+    "icon": "https://assets.coingecko.com/coins/images/25445/thumb/hop.png?1696524577",
+    "symbol": "HOP",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0xc559afe7449a778a130fcf8193c7111625481bfe": {
+    "assetId": "eip155:42161/erc20:0xc559afe7449a778a130fcf8193c7111625481bfe",
+    "chainId": "eip155:42161",
+    "name": "Ankaa Exchange",
+    "precision": 18,
+    "color": "#050505",
+    "icon": "https://assets.coingecko.com/coins/images/30230/thumb/logo.png?1696529140",
+    "symbol": "ANKAA",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0xc56dc613c8ef3c57314171d73eaefe87aa469186": {
+    "assetId": "eip155:42161/erc20:0xc56dc613c8ef3c57314171d73eaefe87aa469186",
+    "chainId": "eip155:42161",
+    "name": "TLSD Coin",
+    "precision": 18,
+    "color": "#2404E4",
+    "icon": "https://assets.coingecko.com/coins/images/30748/thumb/Icon-200.png?1696529617",
+    "symbol": "TLSD",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0xc614d40998dc18e51d4070756c9112c0dc8374e1": {
+    "assetId": "eip155:42161/erc20:0xc614d40998dc18e51d4070756c9112c0dc8374e1",
+    "chainId": "eip155:42161",
+    "name": "CryptoZOON ARB",
+    "precision": 18,
+    "color": "#361504",
+    "icon": "https://assets.coingecko.com/coins/images/30886/thumb/2023-07-01_17.38.30.jpg?1696529733",
+    "symbol": "ZOON",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0xc628534100180582e43271448098cb2c185795bd": {
+    "assetId": "eip155:42161/erc20:0xc628534100180582e43271448098cb2c185795bd",
+    "chainId": "eip155:42161",
+    "name": "Flashstake on Arbitrum One",
+    "precision": 18,
+    "color": "#070808",
+    "icon": "https://assets.coingecko.com/coins/images/13533/thumb/FLASH.png?1696513294",
+    "symbol": "FLASH",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0xc701f86e6d242b97d3035f6c2cecaf8e7087e898": {
+    "assetId": "eip155:42161/erc20:0xc701f86e6d242b97d3035f6c2cecaf8e7087e898",
+    "chainId": "eip155:42161",
+    "name": "RunBlox on Arbitrum One",
+    "precision": 18,
+    "color": "#040404",
+    "icon": "https://assets.coingecko.com/coins/images/26156/thumb/img_v2_37fc1523-649d-45bc-a75f-387f9de1bfch.png?1696525244",
+    "symbol": "RUX",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0xc72633f995e98ac3bb8a89e6a9c4af335c3d6e44": {
+    "assetId": "eip155:42161/erc20:0xc72633f995e98ac3bb8a89e6a9c4af335c3d6e44",
+    "chainId": "eip155:42161",
+    "name": "Omnisea on Arbitrum One",
+    "precision": 18,
+    "color": "#F26286",
+    "icon": "https://assets.coingecko.com/coins/images/26475/thumb/293837892_407994084681555_3167689470652146992_n.png?1696525547",
+    "symbol": "OSEA",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0xc74fe4c715510ec2f8c61d70d397b32043f55abe": {
+    "assetId": "eip155:42161/erc20:0xc74fe4c715510ec2f8c61d70d397b32043f55abe",
+    "chainId": "eip155:42161",
+    "name": "Mycelium on Arbitrum One",
+    "precision": 18,
+    "color": "#D5DDD5",
+    "icon": "https://assets.coingecko.com/coins/images/26874/thumb/MYC_Token.png?1696525933",
+    "symbol": "MYC",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0xc7d91ec2b29cd22c45c15760abc189c4e78e8036": {
+    "assetId": "eip155:42161/erc20:0xc7d91ec2b29cd22c45c15760abc189c4e78e8036",
+    "chainId": "eip155:42161",
+    "name": "Uramaki",
+    "precision": 9,
+    "color": "#0D0D0D",
+    "icon": "https://assets.coingecko.com/coins/images/28909/thumb/Maki_Logo.png?1696527885",
+    "symbol": "MAKI",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0xc8a1c0d8255bc2eb5f6236e119e3428fd0c33a74": {
+    "assetId": "eip155:42161/erc20:0xc8a1c0d8255bc2eb5f6236e119e3428fd0c33a74",
+    "chainId": "eip155:42161",
+    "name": "ArbiTen 10SHARE",
+    "precision": 18,
+    "color": "#E3C504",
+    "icon": "https://assets.coingecko.com/coins/images/29798/thumb/arbiten-s-200.png?1696528727",
+    "symbol": "10SHARE",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0xc8ccbd97b96834b976c995a67bf46e5754e2c48e": {
+    "assetId": "eip155:42161/erc20:0xc8ccbd97b96834b976c995a67bf46e5754e2c48e",
+    "chainId": "eip155:42161",
+    "name": "Parallax",
+    "precision": 18,
+    "color": "#F20499",
+    "icon": "https://assets.coingecko.com/coins/images/31536/thumb/Parallax_round_logo_-_transparent_bg.png?1696530345",
+    "symbol": "PLX",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0xc9c4fd7579133701fa2769b6955e7e56bb386db1": {
+    "assetId": "eip155:42161/erc20:0xc9c4fd7579133701fa2769b6955e7e56bb386db1",
+    "chainId": "eip155:42161",
+    "name": "Bridge Oracle on Arbitrum One",
+    "precision": 18,
+    "color": "#7A6B34",
+    "icon": "https://assets.coingecko.com/coins/images/12512/thumb/brg.png?1696512327",
+    "symbol": "BRG",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0xcaa38bcc8fb3077975bbe217acfaa449e6596a84": {
+    "assetId": "eip155:42161/erc20:0xcaa38bcc8fb3077975bbe217acfaa449e6596a84",
+    "chainId": "eip155:42161",
+    "name": "DAO Maker on Arbitrum One",
+    "precision": 18,
+    "color": "#44A8FC",
+    "icon": "https://assets.coingecko.com/coins/images/13915/thumb/4.png?1696513656",
+    "symbol": "DAO",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0xcafcd85d8ca7ad1e1c6f82f651fa15e33aefd07b": {
+    "assetId": "eip155:42161/erc20:0xcafcd85d8ca7ad1e1c6f82f651fa15e33aefd07b",
+    "chainId": "eip155:42161",
+    "name": "WOO Network on Arbitrum One",
+    "precision": 18,
+    "color": "#B5B5B5",
+    "icon": "https://assets.coingecko.com/coins/images/12921/thumb/WOO_Logos_2023_Profile_Pic_WOO.png?1696512709",
+    "symbol": "WOO",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0xcb24b141ecaaad0d2c255d6f99d6f4790546a75c": {
+    "assetId": "eip155:42161/erc20:0xcb24b141ecaaad0d2c255d6f99d6f4790546a75c",
+    "chainId": "eip155:42161",
+    "name": "Exponential Capital",
+    "precision": 18,
+    "color": "#B2326D",
+    "icon": "https://assets.coingecko.com/coins/images/29646/thumb/expo_capital.jpg?1696528582",
+    "symbol": "EXPO",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0xcb6460d56825ddc12229c7a7d94b6b26a9f9c867": {
+    "assetId": "eip155:42161/erc20:0xcb6460d56825ddc12229c7a7d94b6b26a9f9c867",
+    "chainId": "eip155:42161",
+    "name": "DefiTankLand",
+    "precision": 18,
+    "color": "#4A2E21",
+    "icon": "https://assets.coingecko.com/coins/images/29136/thumb/tank_%282%29.png?1696528097",
+    "symbol": "DFTL",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0xcbe94d75ec713b7ead84f55620dc3174beeb1cfe": {
+    "assetId": "eip155:42161/erc20:0xcbe94d75ec713b7ead84f55620dc3174beeb1cfe",
+    "chainId": "eip155:42161",
+    "name": "FORE Protocol on Arbitrum One",
+    "precision": 18,
+    "color": "#040404",
+    "icon": "https://assets.coingecko.com/coins/images/31001/thumb/EXCHANGE_LOGO_FORE.png?1696529839",
+    "symbol": "FORE",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0xccd05a0fcfc1380e9da27862adb2198e58e0d66f": {
+    "assetId": "eip155:42161/erc20:0xccd05a0fcfc1380e9da27862adb2198e58e0d66f",
+    "chainId": "eip155:42161",
+    "name": "ANIMA",
+    "precision": 18,
+    "color": "#FAB304",
+    "icon": "https://assets.coingecko.com/coins/images/30377/thumb/anima_logo_yellow.png?1696529271",
+    "symbol": "ANIMA",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0xccd3891c1452b7cb0e4632774b9365dc4ee24f20": {
+    "assetId": "eip155:42161/erc20:0xccd3891c1452b7cb0e4632774b9365dc4ee24f20",
+    "chainId": "eip155:42161",
+    "name": "El Dorado Exchange  Arb ",
+    "precision": 18,
+    "color": "#C8A946",
+    "icon": "https://assets.coingecko.com/coins/images/29386/thumb/Z6eU0fpI_400x400.jpg?1696528332",
+    "symbol": "EDE",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0xce0b3f1258189da17bbd8c7e0509f5f7e001a998": {
+    "assetId": "eip155:42161/erc20:0xce0b3f1258189da17bbd8c7e0509f5f7e001a998",
+    "chainId": "eip155:42161",
+    "name": "Moon Pepe",
+    "precision": 6,
+    "color": "#38442B",
+    "icon": "https://assets.coingecko.com/coins/images/29891/thumb/Moonpepe_Logo_1x%28200x200%29.png?1696528815",
+    "symbol": "MPEPE",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0xce38e140fc3982a6bcebc37b040913ef2cd6c5a7": {
+    "assetId": "eip155:42161/erc20:0xce38e140fc3982a6bcebc37b040913ef2cd6c5a7",
+    "chainId": "eip155:42161",
+    "name": "Dinari AAPL",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/32393/thumb/token-icon.png?1698053181",
+    "symbol": "AAPLD",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0xce3a75572bc375476438206f6f29f46f8466ecc2": {
+    "assetId": "eip155:42161/erc20:0xce3a75572bc375476438206f6f29f46f8466ecc2",
+    "chainId": "eip155:42161",
+    "name": "XLSD Coin",
+    "precision": 18,
+    "color": "#2404E4",
+    "icon": "https://assets.coingecko.com/coins/images/30747/thumb/Icon-200.png?1696529616",
+    "symbol": "XLSD",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0xcf985aba4647a432e60efceeb8054bbd64244305": {
+    "assetId": "eip155:42161/erc20:0xcf985aba4647a432e60efceeb8054bbd64244305",
+    "chainId": "eip155:42161",
+    "name": "EUROe Stablecoin on Arbitrum One",
+    "precision": 6,
+    "color": "#DCE1E1",
+    "icon": "https://assets.coingecko.com/coins/images/28913/thumb/euroe-200x200-round.png?1696527889",
+    "symbol": "EUROE",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0xd1c533a00548dd9c1e7b0f8ea834f65383b116de": {
+    "assetId": "eip155:42161/erc20:0xd1c533a00548dd9c1e7b0f8ea834f65383b116de",
+    "chainId": "eip155:42161",
+    "name": "MetaPocket",
+    "precision": 18,
+    "color": "#702EAE",
+    "icon": "https://assets.coingecko.com/coins/images/31163/thumb/android-chrome-192x192.png?1696529992",
+    "symbol": "MPCKT",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0xd2568accd10a4c98e87c44e9920360031ad89fcb": {
+    "assetId": "eip155:42161/erc20:0xd2568accd10a4c98e87c44e9920360031ad89fcb",
+    "chainId": "eip155:42161",
+    "name": "3xcalibur Ecosystem Token",
+    "precision": 18,
+    "color": "#29374B",
+    "icon": "https://assets.coingecko.com/coins/images/28134/thumb/XCAL_Logo.png?1696527141",
+    "symbol": "XCAL",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0xd26b0c6ef8581e921ae41c66e508c62a581b709d": {
+    "assetId": "eip155:42161/erc20:0xd26b0c6ef8581e921ae41c66e508c62a581b709d",
+    "chainId": "eip155:42161",
+    "name": "Sexone",
+    "precision": 18,
+    "color": "#040404",
+    "icon": "https://assets.coingecko.com/coins/images/32135/thumb/IMG_20231004_163306_491.jpg?1696589011",
+    "symbol": "SEX",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0xd29f8a9e76ef42ba9f749583ed07cae7bfaec389": {
+    "assetId": "eip155:42161/erc20:0xd29f8a9e76ef42ba9f749583ed07cae7bfaec389",
+    "chainId": "eip155:42161",
+    "name": "opxSliz",
+    "precision": 18,
+    "color": "#C8CCD0",
+    "icon": "https://assets.coingecko.com/coins/images/29291/thumb/62833FE7-F28E-4D33-886E-9E4F8D72EEB7.png?1696528243",
+    "symbol": "OPXVESLIZ",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0xd2eb76feff5fbd549ca078908fb5efce7533a09d": {
+    "assetId": "eip155:42161/erc20:0xd2eb76feff5fbd549ca078908fb5efce7533a09d",
+    "chainId": "eip155:42161",
+    "name": "TronAI",
+    "precision": 9,
+    "color": "#1E2833",
+    "icon": "https://assets.coingecko.com/coins/images/29117/thumb/100.png?1696528079",
+    "symbol": "TAI",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0xd2f8b81cfff297c70e5d58ac58762dd5d213ea20": {
+    "assetId": "eip155:42161/erc20:0xd2f8b81cfff297c70e5d58ac58762dd5d213ea20",
+    "chainId": "eip155:42161",
+    "name": "artGPT",
+    "precision": 18,
+    "color": "#1F8687",
+    "icon": "https://assets.coingecko.com/coins/images/29111/thumb/IMG_20230217_063445_776.png?1696528073",
+    "symbol": "AGPT",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0xd3188e0df68559c0b63361f6160c57ad88b239d8": {
+    "assetId": "eip155:42161/erc20:0xd3188e0df68559c0b63361f6160c57ad88b239d8",
+    "chainId": "eip155:42161",
+    "name": "Astra DAO",
+    "precision": 17,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/32870/thumb/ASTRADAO.jpg?1699673097",
+    "symbol": "ASTRADAO",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0xd3934a2e428e31ffc14b1f69b0bec79db3e0c614": {
+    "assetId": "eip155:42161/erc20:0xd3934a2e428e31ffc14b1f69b0bec79db3e0c614",
+    "chainId": "eip155:42161",
+    "name": "Concentric fi",
+    "precision": 18,
+    "color": "#DEE5F3",
+    "icon": "https://assets.coingecko.com/coins/images/31713/thumb/cone.png?1696530535",
+    "symbol": "CONE",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0xd3ac016b1b8c80eeadde4d186a9138c9324e4189": {
+    "assetId": "eip155:42161/erc20:0xd3ac016b1b8c80eeadde4d186a9138c9324e4189",
+    "chainId": "eip155:42161",
+    "name": "Okcash on Arbitrum One",
+    "precision": 18,
+    "color": "#0C1C34",
+    "icon": "https://assets.coingecko.com/coins/images/274/thumb/ok-logo-200px.png?1696501624",
+    "symbol": "OK",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0xd3f1da62cafb7e7bc6531ff1cef6f414291f03d3": {
+    "assetId": "eip155:42161/erc20:0xd3f1da62cafb7e7bc6531ff1cef6f414291f03d3",
+    "chainId": "eip155:42161",
+    "name": "Doubloon",
+    "precision": 18,
+    "color": "#065DEC",
+    "icon": "https://assets.coingecko.com/coins/images/23660/thumb/galleon-sky.png?1696522863",
+    "symbol": "DBL",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0xd45e486a90ebb84e9336d371a35dcb021424b96c": {
+    "assetId": "eip155:42161/erc20:0xd45e486a90ebb84e9336d371a35dcb021424b96c",
+    "chainId": "eip155:42161",
+    "name": "Superpower Squad on Arbitrum One",
+    "precision": 18,
+    "color": "#D58439",
+    "icon": "https://assets.coingecko.com/coins/images/28466/thumb/SQUAD200X200.png?1696527460",
+    "symbol": "SQUAD",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0xd4939d69b31fbe981ed6904a3af43ee1dc777aab": {
+    "assetId": "eip155:42161/erc20:0xd4939d69b31fbe981ed6904a3af43ee1dc777aab",
+    "chainId": "eip155:42161",
+    "name": "Ethereum   Overnight ",
+    "precision": 18,
+    "color": "#2C95E1",
+    "icon": "https://assets.coingecko.com/coins/images/32326/thumb/ETH__200x200.png?1700298095",
+    "symbol": "ETH+",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0xd4d42f0b6def4ce0383636770ef773390d85c61a": {
+    "assetId": "eip155:42161/erc20:0xd4d42f0b6def4ce0383636770ef773390d85c61a",
+    "chainId": "eip155:42161",
+    "name": "Sushi on Arbitrum One",
+    "precision": 18,
+    "color": "#161129",
+    "icon": "https://assets.coingecko.com/coins/images/12271/thumb/512x512_Logo_no_chop.png?1696512101",
+    "symbol": "SUSHI",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0xd56734d7f9979dd94fae3d67c7e928234e71cd4c": {
+    "assetId": "eip155:42161/erc20:0xd56734d7f9979dd94fae3d67c7e928234e71cd4c",
+    "chainId": "eip155:42161",
+    "name": "Bridged TIA  Hyperlane ",
+    "precision": 6,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/33199/thumb/tia.n.png?1701047832",
+    "symbol": "TIAN",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0xd58d345fd9c82262e087d2d0607624b410d88242": {
+    "assetId": "eip155:42161/erc20:0xd58d345fd9c82262e087d2d0607624b410d88242",
+    "chainId": "eip155:42161",
+    "name": "Tellor Tributes on Arbitrum One",
+    "precision": 18,
+    "color": "#44DA9C",
+    "icon": "https://assets.coingecko.com/coins/images/9644/thumb/Blk_icon_current.png?1696509713",
+    "symbol": "TRB",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0xd5954c3084a1ccd70b4da011e67760b8e78aee84": {
+    "assetId": "eip155:42161/erc20:0xd5954c3084a1ccd70b4da011e67760b8e78aee84",
+    "chainId": "eip155:42161",
+    "name": "Arbidex",
+    "precision": 18,
+    "color": "#1A8989",
+    "icon": "https://assets.coingecko.com/coins/images/29506/thumb/tokenlogo.png?1696528451",
+    "symbol": "ARX",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0xd5da32ad4c7510457c0e46fa4332f75f6c4c4dc0": {
+    "assetId": "eip155:42161/erc20:0xd5da32ad4c7510457c0e46fa4332f75f6c4c4dc0",
+    "chainId": "eip155:42161",
+    "name": "AutoEarn Token",
+    "precision": 18,
+    "color": "#091308",
+    "icon": "https://assets.coingecko.com/coins/images/30938/thumb/ATE_logo.jpg?1696529777",
+    "symbol": "ATE",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0xd67a097dce9d4474737e6871684ae3c05460f571": {
+    "assetId": "eip155:42161/erc20:0xd67a097dce9d4474737e6871684ae3c05460f571",
+    "chainId": "eip155:42161",
+    "name": "GND Protocol",
+    "precision": 18,
+    "color": "#A1E4E4",
+    "icon": "https://assets.coingecko.com/coins/images/30043/thumb/image-removebg-preview_%281%29.png?1696528965",
+    "symbol": "GND",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0xd6e7c8af05d2d06a76811d44917613bdd258b995": {
+    "assetId": "eip155:42161/erc20:0xd6e7c8af05d2d06a76811d44917613bdd258b995",
+    "chainId": "eip155:42161",
+    "name": "Brr Protocol",
+    "precision": 18,
+    "color": "#1D1D1D",
+    "icon": "https://assets.coingecko.com/coins/images/29558/thumb/BRR_Protocol.png?1696528498",
+    "symbol": "BRR",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0xd74f5255d557944cf7dd0e45ff521520002d5748": {
+    "assetId": "eip155:42161/erc20:0xd74f5255d557944cf7dd0e45ff521520002d5748",
+    "chainId": "eip155:42161",
+    "name": "Sperax USD",
+    "precision": 18,
+    "color": "#141C24",
+    "icon": "https://assets.coingecko.com/coins/images/21973/thumb/USDs_logo_1000X1000.png?1696521321",
+    "symbol": "USDS",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0xd77b108d4f6cefaa0cae9506a934e825becca46e": {
+    "assetId": "eip155:42161/erc20:0xd77b108d4f6cefaa0cae9506a934e825becca46e",
+    "chainId": "eip155:42161",
+    "name": "WINR Protocol",
+    "precision": 18,
+    "color": "#FBE217",
+    "icon": "https://assets.coingecko.com/coins/images/29340/thumb/WINR.png?1696528290",
+    "symbol": "WINR",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0xd7a892f28dedc74e6b7b33f93be08abfc394a360": {
+    "assetId": "eip155:42161/erc20:0xd7a892f28dedc74e6b7b33f93be08abfc394a360",
+    "chainId": "eip155:42161",
+    "name": "Crypto Index Pool",
+    "precision": 18,
+    "color": "#5139B0",
+    "icon": "https://assets.coingecko.com/coins/images/32504/thumb/photo_6176746894382970935_y_%281%29.jpg?1698313185",
+    "symbol": "CIP",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0xd8f728adb72a46ae2c92234ae8870d04907786c5": {
+    "assetId": "eip155:42161/erc20:0xd8f728adb72a46ae2c92234ae8870d04907786c5",
+    "chainId": "eip155:42161",
+    "name": "Dinari AMD",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/32981/thumb/Frame_16189.png?1700091539",
+    "symbol": "AMDD",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0xd978f8489e1245568704407a479a71fcce2afe8f": {
+    "assetId": "eip155:42161/erc20:0xd978f8489e1245568704407a479a71fcce2afe8f",
+    "chainId": "eip155:42161",
+    "name": "ApeSwap on Arbitrum One",
+    "precision": 18,
+    "color": "#FCF4E3",
+    "icon": "https://assets.coingecko.com/coins/images/14870/thumb/banana.png?1696514534",
+    "symbol": "BANANA",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0xda064d44871ba31dae33a65b3e23b37e44e9168a": {
+    "assetId": "eip155:42161/erc20:0xda064d44871ba31dae33a65b3e23b37e44e9168a",
+    "chainId": "eip155:42161",
+    "name": "DexFi Governance",
+    "precision": 18,
+    "color": "#C6CCCF",
+    "icon": "https://assets.coingecko.com/coins/images/30671/thumb/gDEX-icon-200x200.png?1696529541",
+    "symbol": "GDEX",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0xda0a57b710768ae17941a9fa33f8b720c8bd9ddd": {
+    "assetId": "eip155:42161/erc20:0xda0a57b710768ae17941a9fa33f8b720c8bd9ddd",
+    "chainId": "eip155:42161",
+    "name": "Marlin on Arbitrum One",
+    "precision": 18,
+    "color": "#D4ECF4",
+    "icon": "https://assets.coingecko.com/coins/images/8903/thumb/POND_200x200.png?1696509053",
+    "symbol": "POND",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0xda10009cbd5d07dd0cecc66161fc93d7c9000da1": {
+    "assetId": "eip155:42161/erc20:0xda10009cbd5d07dd0cecc66161fc93d7c9000da1",
+    "chainId": "eip155:42161",
+    "name": "Dai on Arbitrum One",
+    "precision": 18,
+    "color": "#FCBD3C",
+    "icon": "https://assets.coingecko.com/coins/images/9956/thumb/Badge_Dai.png?1696509996",
+    "symbol": "DAI",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0xdb0c6fc9e01cd95eb1d3bbae6689962de489cd7b": {
+    "assetId": "eip155:42161/erc20:0xdb0c6fc9e01cd95eb1d3bbae6689962de489cd7b",
+    "chainId": "eip155:42161",
+    "name": "Dsquared finance",
+    "precision": 18,
+    "color": "#38AA87",
+    "icon": "https://assets.coingecko.com/coins/images/29016/thumb/dsquared.finance.jpg?1696527987",
+    "symbol": "DSQ",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0xdb298285fe4c5410b05390ca80e8fbe9de1f259b": {
+    "assetId": "eip155:42161/erc20:0xdb298285fe4c5410b05390ca80e8fbe9de1f259b",
+    "chainId": "eip155:42161",
+    "name": "handle fi on Arbitrum One",
+    "precision": 18,
+    "color": "#2D353D",
+    "icon": "https://assets.coingecko.com/coins/images/18533/thumb/handle.fiFOREXLogoDark200x200.png?1696518013",
+    "symbol": "FOREX",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0xdc8184ba488e949815d4aafb35b3c56ad03b4179": {
+    "assetId": "eip155:42161/erc20:0xdc8184ba488e949815d4aafb35b3c56ad03b4179",
+    "chainId": "eip155:42161",
+    "name": "Roseon",
+    "precision": 18,
+    "color": "#F48CA5",
+    "icon": "https://assets.coingecko.com/coins/images/29698/thumb/roseon.png?1696528631",
+    "symbol": "ROSX",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0xdce765f021410b3266aa0053c93cb4535f1e12e0": {
+    "assetId": "eip155:42161/erc20:0xdce765f021410b3266aa0053c93cb4535f1e12e0",
+    "chainId": "eip155:42161",
+    "name": "peg eUSD on Arbitrum One",
+    "precision": 18,
+    "color": "#CEF2DE",
+    "icon": "https://assets.coingecko.com/coins/images/31521/thumb/peUSD_200x200.png?1696530331",
+    "symbol": "PEUSD",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0xdd8e557c8804d326c72074e987de02a23ae6ef84": {
+    "assetId": "eip155:42161/erc20:0xdd8e557c8804d326c72074e987de02a23ae6ef84",
+    "chainId": "eip155:42161",
+    "name": "Arbinu",
+    "precision": 18,
+    "color": "#6ABCE4",
+    "icon": "https://assets.coingecko.com/coins/images/28812/thumb/Arbinu_Coingecko_50px.png?1696527789",
+    "symbol": "ARBINU",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0xde31e75182276738b0c025daa8f80020a4f2fbfe": {
+    "assetId": "eip155:42161/erc20:0xde31e75182276738b0c025daa8f80020a4f2fbfe",
+    "chainId": "eip155:42161",
+    "name": "Honey Pot BeeKeepers",
+    "precision": 18,
+    "color": "#D2CFCF",
+    "icon": "https://assets.coingecko.com/coins/images/18380/thumb/ac6fTCfDQDIV.jpg?1696517872",
+    "symbol": "HONEY",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0xde70aed3d14d39b4955147efcf272334bdb75ab5": {
+    "assetId": "eip155:42161/erc20:0xde70aed3d14d39b4955147efcf272334bdb75ab5",
+    "chainId": "eip155:42161",
+    "name": "YachtingVerse",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/32858/thumb/aMmNwBTH_400x400.jpg?1699666370",
+    "symbol": "YACHT",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0xde903e2712288a1da82942dddf2c20529565ac30": {
+    "assetId": "eip155:42161/erc20:0xde903e2712288a1da82942dddf2c20529565ac30",
+    "chainId": "eip155:42161",
+    "name": "Swapr on Arbitrum One",
+    "precision": 18,
+    "color": "#0E0D12",
+    "icon": "https://assets.coingecko.com/coins/images/18740/thumb/swapr.jpg?1696518206",
+    "symbol": "SWPR",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0xe018c227bc84e44c96391d3067fab5a9a46b7e62": {
+    "assetId": "eip155:42161/erc20:0xe018c227bc84e44c96391d3067fab5a9a46b7e62",
+    "chainId": "eip155:42161",
+    "name": "Chromium Dollar",
+    "precision": 18,
+    "color": "#040404",
+    "icon": "https://assets.coingecko.com/coins/images/28310/thumb/Chromium.png?1696527315",
+    "symbol": "CR",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0xe05a08226c49b636acf99c40da8dc6af83ce5bb3": {
+    "assetId": "eip155:42161/erc20:0xe05a08226c49b636acf99c40da8dc6af83ce5bb3",
+    "chainId": "eip155:42161",
+    "name": "Ankr Staked ETH on Arbitrum One",
+    "precision": 18,
+    "color": "#FBEA1C",
+    "icon": "https://assets.coingecko.com/coins/images/13403/thumb/aETHc.png?1696513165",
+    "symbol": "ANKRETH",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0xe20b9e246db5a0d21bf9209e4858bc9a3ff7a034": {
+    "assetId": "eip155:42161/erc20:0xe20b9e246db5a0d21bf9209e4858bc9a3ff7a034",
+    "chainId": "eip155:42161",
+    "name": "Wrapped Banano on Arbitrum One",
+    "precision": 18,
+    "color": "#373739",
+    "icon": "https://assets.coingecko.com/coins/images/32617/thumb/WBAN.jpg?1698749253",
+    "symbol": "WBAN",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0xe2105bea3819d3131b5b2306d44eb3271bfcfe0e": {
+    "assetId": "eip155:42161/erc20:0xe2105bea3819d3131b5b2306d44eb3271bfcfe0e",
+    "chainId": "eip155:42161",
+    "name": "Fief on Arbitrum One",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/23710/thumb/61f837d2703b649ab0213d45_Black_logo_-_no_background-p-500.png?1696522910",
+    "symbol": "FIEF",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0xe2db86ce824cf3dcc0c31a073de294239fdde060": {
+    "assetId": "eip155:42161/erc20:0xe2db86ce824cf3dcc0c31a073de294239fdde060",
+    "chainId": "eip155:42161",
+    "name": "OMO Exchange",
+    "precision": 18,
+    "color": "#2D364D",
+    "icon": "https://assets.coingecko.com/coins/images/29270/thumb/omo.png?1696528223",
+    "symbol": "OMO",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0xe4dddfe67e7164b0fe14e218d80dc4c08edc01cb": {
+    "assetId": "eip155:42161/erc20:0xe4dddfe67e7164b0fe14e218d80dc4c08edc01cb",
+    "chainId": "eip155:42161",
+    "name": "Kyber Network Crystal on Arbitrum One",
+    "precision": 18,
+    "color": "#CFF1EF",
+    "icon": "https://assets.coingecko.com/coins/images/14899/thumb/RwdVsGcw_400x400.jpg?1696514562",
+    "symbol": "KNC",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0xe50fa9b3c56ffb159cb0fca61f5c9d750e8128c8": {
+    "assetId": "eip155:42161/erc20:0xe50fa9b3c56ffb159cb0fca61f5c9d750e8128c8",
+    "chainId": "eip155:42161",
+    "name": "Aave v3 WETH on Arbitrum One",
+    "precision": 18,
+    "color": "#C5B9CB",
+    "icon": "https://assets.coingecko.com/coins/images/32882/thumb/WETH_%281%29.png?1699716492",
+    "symbol": "AWETH",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0xe5b8c3381c0a2544883cff9ddaf1e48d9dea9e49": {
+    "assetId": "eip155:42161/erc20:0xe5b8c3381c0a2544883cff9ddaf1e48d9dea9e49",
+    "chainId": "eip155:42161",
+    "name": "Bathtub Protocol",
+    "precision": 18,
+    "color": "#D910FC",
+    "icon": "https://assets.coingecko.com/coins/images/30634/thumb/logo-notext-transparent.png?1696529507",
+    "symbol": "BATH",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0xe6045890b20945d00e6f3c01878265c03c5435d3": {
+    "assetId": "eip155:42161/erc20:0xe6045890b20945d00e6f3c01878265c03c5435d3",
+    "chainId": "eip155:42161",
+    "name": "Impossible Finance Launchpad on Arbitrum One",
+    "precision": 18,
+    "color": "#0C0C25",
+    "icon": "https://assets.coingecko.com/coins/images/17803/thumb/IDIA.png?1696517325",
+    "symbol": "IDIA",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0xe66998533a1992ece9ea99cdf47686f4fc8458e0": {
+    "assetId": "eip155:42161/erc20:0xe66998533a1992ece9ea99cdf47686f4fc8458e0",
+    "chainId": "eip155:42161",
+    "name": "Jones USDC",
+    "precision": 18,
+    "color": "#C9AF8D",
+    "icon": "https://assets.coingecko.com/coins/images/28893/thumb/jUSDC.png?1696527869",
+    "symbol": "JUSDC",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0xe6be2f5ab2ad4b8b146e3008f81832cf7b279f43": {
+    "assetId": "eip155:42161/erc20:0xe6be2f5ab2ad4b8b146e3008f81832cf7b279f43",
+    "chainId": "eip155:42161",
+    "name": "ToxicGarden finance SEED",
+    "precision": 18,
+    "color": "#0A3423",
+    "icon": "https://assets.coingecko.com/coins/images/30736/thumb/SEED200x200.png?1696529606",
+    "symbol": "SEED",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0xe7f6c3c1f0018e4c08acc52965e5cbff99e34a44": {
+    "assetId": "eip155:42161/erc20:0xe7f6c3c1f0018e4c08acc52965e5cbff99e34a44",
+    "chainId": "eip155:42161",
+    "name": "plsJONES",
+    "precision": 18,
+    "color": "#1E8E0C",
+    "icon": "https://assets.coingecko.com/coins/images/30553/thumb/plsJONES.png?1696529424",
+    "symbol": "PLSJONES",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0xe80772eaf6e2e18b651f160bc9158b2a5cafca65": {
+    "assetId": "eip155:42161/erc20:0xe80772eaf6e2e18b651f160bc9158b2a5cafca65",
+    "chainId": "eip155:42161",
+    "name": "Overnight fi USD  on Arbitrum One",
+    "precision": 6,
+    "color": "#BFC5D3",
+    "icon": "https://assets.coingecko.com/coins/images/25757/thumb/USD__logo.png?1696524843",
+    "symbol": "USD+",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0xe85b662fe97e8562f4099d8a1d5a92d4b453bf30": {
+    "assetId": "eip155:42161/erc20:0xe85b662fe97e8562f4099d8a1d5a92d4b453bf30",
+    "chainId": "eip155:42161",
+    "name": "Thales on Arbitrum One",
+    "precision": 18,
+    "color": "#11136F",
+    "icon": "https://assets.coingecko.com/coins/images/18388/thumb/CLVZJN_C_400x400.png?1696517879",
+    "symbol": "THALES",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0xe9a5af50874c0ef2748b5db70104b5ccb5557f6d": {
+    "assetId": "eip155:42161/erc20:0xe9a5af50874c0ef2748b5db70104b5ccb5557f6d",
+    "chainId": "eip155:42161",
+    "name": "GMBL COMPUTER CHiP",
+    "precision": 18,
+    "color": "#48DF18",
+    "icon": "https://assets.coingecko.com/coins/images/31659/thumb/GMBL.png?1696530474",
+    "symbol": "GMBL",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0xea1e79d4a0d347edcadd78d98a7da65d15e8cba1": {
+    "assetId": "eip155:42161/erc20:0xea1e79d4a0d347edcadd78d98a7da65d15e8cba1",
+    "chainId": "eip155:42161",
+    "name": "RocketVerse",
+    "precision": 18,
+    "color": "#F0F1E6",
+    "icon": "https://assets.coingecko.com/coins/images/30004/thumb/RVK.jpg?1696528929",
+    "symbol": "RKV",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0xea986d33ef8a20a96120ecc44dbdd49830192043": {
+    "assetId": "eip155:42161/erc20:0xea986d33ef8a20a96120ecc44dbdd49830192043",
+    "chainId": "eip155:42161",
+    "name": "Auctus on Arbitrum One",
+    "precision": 18,
+    "color": "#040404",
+    "icon": "https://assets.coingecko.com/coins/images/2165/thumb/Auc_Discord_Avatar1.png?1696503126",
+    "symbol": "AUC",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0xeb3c4d71c31d291e47641cd09ea8e8f5696b6b4c": {
+    "assetId": "eip155:42161/erc20:0xeb3c4d71c31d291e47641cd09ea8e8f5696b6b4c",
+    "chainId": "eip155:42161",
+    "name": "DopeWarz",
+    "precision": 18,
+    "color": "#4E181A",
+    "icon": "https://assets.coingecko.com/coins/images/21215/thumb/1s6XP8k.png?1696520589",
+    "symbol": "DWZ",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0xeb466342c4d449bc9f53a865d5cb90586f405215": {
+    "assetId": "eip155:42161/erc20:0xeb466342c4d449bc9f53a865d5cb90586f405215",
+    "chainId": "eip155:42161",
+    "name": "Bridged USD Coin  Axelar  on Arbitrum One",
+    "precision": 6,
+    "color": "#D4E0F0",
+    "icon": "https://assets.coingecko.com/coins/images/26476/thumb/uausdc_D_3x.png?1696525548",
+    "symbol": "AXLUSDC",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0xeb4d25db65dcef52380c99ba7e1344c820ecb1fc": {
+    "assetId": "eip155:42161/erc20:0xeb4d25db65dcef52380c99ba7e1344c820ecb1fc",
+    "chainId": "eip155:42161",
+    "name": "X World Games on Arbitrum One",
+    "precision": 18,
+    "color": "#C7A5B0",
+    "icon": "https://assets.coingecko.com/coins/images/17847/thumb/200_200_%281%29_%281%29.png?1696790226",
+    "symbol": "XWG",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0xeb8e93a0c7504bffd8a8ffa56cd754c63aaebfe8": {
+    "assetId": "eip155:42161/erc20:0xeb8e93a0c7504bffd8a8ffa56cd754c63aaebfe8",
+    "chainId": "eip155:42161",
+    "name": "Overnight fi DAI  on Arbitrum One",
+    "precision": 18,
+    "color": "#FCB72F",
+    "icon": "https://assets.coingecko.com/coins/images/29634/thumb/DAI_.png?1696528571",
+    "symbol": "DAI+",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0xebf1f92d4384118bfb91b4496660a95931c92861": {
+    "assetId": "eip155:42161/erc20:0xebf1f92d4384118bfb91b4496660a95931c92861",
+    "chainId": "eip155:42161",
+    "name": "Aladdin cvxCRV on Arbitrum One",
+    "precision": 18,
+    "color": "#080A1D",
+    "icon": "https://assets.coingecko.com/coins/images/25395/thumb/Sv06cFHS_400x400.jpg?1696524527",
+    "symbol": "ACRV",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0xec13336bbd50790a00cdc0feddf11287eaf92529": {
+    "assetId": "eip155:42161/erc20:0xec13336bbd50790a00cdc0feddf11287eaf92529",
+    "chainId": "eip155:42161",
+    "name": "gmUSD",
+    "precision": 18,
+    "color": "#ECFCF4",
+    "icon": "https://assets.coingecko.com/coins/images/30345/thumb/Logo.jpg?1696529245",
+    "symbol": "GMUSD",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0xec70dcb4a1efa46b8f2d97c310c9c4790ba5ffa8": {
+    "assetId": "eip155:42161/erc20:0xec70dcb4a1efa46b8f2d97c310c9c4790ba5ffa8",
+    "chainId": "eip155:42161",
+    "name": "Rocket Pool ETH on Arbitrum One",
+    "precision": 18,
+    "color": "#FCA584",
+    "icon": "https://assets.coingecko.com/coins/images/20764/thumb/reth.png?1696520159",
+    "symbol": "RETH",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0xeca14f81085e5b8d1c9d32dcb596681574723561": {
+    "assetId": "eip155:42161/erc20:0xeca14f81085e5b8d1c9d32dcb596681574723561",
+    "chainId": "eip155:42161",
+    "name": "Spool on Arbitrum One",
+    "precision": 18,
+    "color": "#0C0C0C",
+    "icon": "https://assets.coingecko.com/coins/images/21532/thumb/spool.png?1696520891",
+    "symbol": "SPOOL",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0xeca66820ed807c096e1bd7a1a091cd3d3152cc79": {
+    "assetId": "eip155:42161/erc20:0xeca66820ed807c096e1bd7a1a091cd3d3152cc79",
+    "chainId": "eip155:42161",
+    "name": "Ghast",
+    "precision": 18,
+    "color": "#D26636",
+    "icon": "https://assets.coingecko.com/coins/images/30497/thumb/gha.png?1696529383",
+    "symbol": "GHA",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0xecf2adaff1de8a512f6e8bfe67a2c836edb25da3": {
+    "assetId": "eip155:42161/erc20:0xecf2adaff1de8a512f6e8bfe67a2c836edb25da3",
+    "chainId": "eip155:42161",
+    "name": "Wonderful Memories on Arbitrum One",
+    "precision": 18,
+    "color": "#3E5CB4",
+    "icon": "https://assets.coingecko.com/coins/images/22392/thumb/wMEMO.png?1696521735",
+    "symbol": "WMEMO",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0xed3fb761414da74b74f33e5c5a1f78104b188dfc": {
+    "assetId": "eip155:42161/erc20:0xed3fb761414da74b74f33e5c5a1f78104b188dfc",
+    "chainId": "eip155:42161",
+    "name": "ArbiNYAN",
+    "precision": 18,
+    "color": "#564343",
+    "icon": "https://assets.coingecko.com/coins/images/18309/thumb/Qmf8DSV4RbSuVRLJvmj4WwEMjwtYcCd53EFXPPjkEwzx4B.png?1696517801",
+    "symbol": "NYAN",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0xedd6ca8a4202d4a36611e2fff109648c4863ae19": {
+    "assetId": "eip155:42161/erc20:0xedd6ca8a4202d4a36611e2fff109648c4863ae19",
+    "chainId": "eip155:42161",
+    "name": "MahaDAO on Arbitrum One",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/13404/thumb/MAHA_Token.png?1696513166",
+    "symbol": "MAHA",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0xee0b14e8fc86691cf6ee42b9954985b4cf968534": {
+    "assetId": "eip155:42161/erc20:0xee0b14e8fc86691cf6ee42b9954985b4cf968534",
+    "chainId": "eip155:42161",
+    "name": "ZenPandaCoin",
+    "precision": 18,
+    "color": "#9A262B",
+    "icon": "https://assets.coingecko.com/coins/images/30269/thumb/panda.png?1696529176",
+    "symbol": "ZPC",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0xee9801669c6138e84bd50deb500827b776777d28": {
+    "assetId": "eip155:42161/erc20:0xee9801669c6138e84bd50deb500827b776777d28",
+    "chainId": "eip155:42161",
+    "name": "O3 Swap on Arbitrum One",
+    "precision": 18,
+    "color": "#D7F0E8",
+    "icon": "https://assets.coingecko.com/coins/images/15460/thumb/o3.png?1696515107",
+    "symbol": "O3",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0xee9857de0e55d4a54d36a5a5a73a15e57435fdca": {
+    "assetId": "eip155:42161/erc20:0xee9857de0e55d4a54d36a5a5a73a15e57435fdca",
+    "chainId": "eip155:42161",
+    "name": "AsgardX",
+    "precision": 18,
+    "color": "#0B0805",
+    "icon": "https://assets.coingecko.com/coins/images/29157/thumb/IMG_20230222_053621_351.jpg?1696528116",
+    "symbol": "ODIN",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0xeeac5e75216571773c0064b3b591a86253791db6": {
+    "assetId": "eip155:42161/erc20:0xeeac5e75216571773c0064b3b591a86253791db6",
+    "chainId": "eip155:42161",
+    "name": "ELLERIUM",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/28153/thumb/elm.png?1696527158",
+    "symbol": "ELM",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0xeee18334c414a47fb886a7317e1885b2bfb8c2a6": {
+    "assetId": "eip155:42161/erc20:0xeee18334c414a47fb886a7317e1885b2bfb8c2a6",
+    "chainId": "eip155:42161",
+    "name": "Savvy BTC",
+    "precision": 18,
+    "color": "#F09933",
+    "icon": "https://assets.coingecko.com/coins/images/31004/thumb/logo_%287%29.png?1696529841",
+    "symbol": "SVBTC",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0xef00278d7eadf3b2c05267a2f185e468ad7eab7d": {
+    "assetId": "eip155:42161/erc20:0xef00278d7eadf3b2c05267a2f185e468ad7eab7d",
+    "chainId": "eip155:42161",
+    "name": "PepePAD on Arbitrum One",
+    "precision": 18,
+    "color": "#597D3F",
+    "icon": "https://assets.coingecko.com/coins/images/30321/thumb/logo200.png?1696529222",
+    "symbol": "PEPE",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0xef261714f7e5ba6b86f4780eb6e3bf26b10729cf": {
+    "assetId": "eip155:42161/erc20:0xef261714f7e5ba6b86f4780eb6e3bf26b10729cf",
+    "chainId": "eip155:42161",
+    "name": "White Lotus",
+    "precision": 18,
+    "color": "#D4D4D4",
+    "icon": "https://assets.coingecko.com/coins/images/30206/thumb/logo2.png?1696529116",
+    "symbol": "LOTUS",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0xef888bca6ab6b1d26dbec977c455388ecd794794": {
+    "assetId": "eip155:42161/erc20:0xef888bca6ab6b1d26dbec977c455388ecd794794",
+    "chainId": "eip155:42161",
+    "name": "Rari Governance on Arbitrum One",
+    "precision": 18,
+    "color": "#151515",
+    "icon": "https://assets.coingecko.com/coins/images/12900/thumb/Rari_Logo_Transparent.png?1696512688",
+    "symbol": "RGT",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0xf061956612b3dc79fd285d3d51bc128f2ea87740": {
+    "assetId": "eip155:42161/erc20:0xf061956612b3dc79fd285d3d51bc128f2ea87740",
+    "chainId": "eip155:42161",
+    "name": "YfDAI finance on Arbitrum One",
+    "precision": 18,
+    "color": "#98CAF6",
+    "icon": "https://assets.coingecko.com/coins/images/12385/thumb/1619048513068.png?1696512208",
+    "symbol": "YF-DAI",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0xf0a5717ec0883ee56438932b0fe4a20822735fba": {
+    "assetId": "eip155:42161/erc20:0xf0a5717ec0883ee56438932b0fe4a20822735fba",
+    "chainId": "eip155:42161",
+    "name": "xToken on Arbitrum One",
+    "precision": 18,
+    "color": "#B0B0CD",
+    "icon": "https://assets.coingecko.com/coins/images/14089/thumb/xtk.png?1696513811",
+    "symbol": "XTK",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0xf0cb2dc0db5e6c66b9a70ac27b06b878da017028": {
+    "assetId": "eip155:42161/erc20:0xf0cb2dc0db5e6c66b9a70ac27b06b878da017028",
+    "chainId": "eip155:42161",
+    "name": "Olympus on Arbitrum One",
+    "precision": 9,
+    "color": "#738C94",
+    "icon": "https://assets.coingecko.com/coins/images/14483/thumb/token_OHM_%281%29.png?1696514169",
+    "symbol": "OHM",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0xf0dfad1817b5ba73726b02ab34dd4b4b00bcd392": {
+    "assetId": "eip155:42161/erc20:0xf0dfad1817b5ba73726b02ab34dd4b4b00bcd392",
+    "chainId": "eip155:42161",
+    "name": "Minato on Arbitrum One",
+    "precision": 18,
+    "color": "#C42434",
+    "icon": "https://assets.coingecko.com/coins/images/24622/thumb/MNTO_200x200.png?1696523794",
+    "symbol": "MNTO",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0xf1264873436a0771e440e2b28072fafcc5eebd01": {
+    "assetId": "eip155:42161/erc20:0xf1264873436a0771e440e2b28072fafcc5eebd01",
+    "chainId": "eip155:42161",
+    "name": "Kenshi on Arbitrum One",
+    "precision": 18,
+    "color": "#1562F6",
+    "icon": "https://assets.coingecko.com/coins/images/30759/thumb/kenshi.jpg?1696529628",
+    "symbol": "KNS",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0xf16585365bfe050eff7c926f22df87f46da2cafe": {
+    "assetId": "eip155:42161/erc20:0xf16585365bfe050eff7c926f22df87f46da2cafe",
+    "chainId": "eip155:42161",
+    "name": "Adv3nture xyz Gold",
+    "precision": 18,
+    "color": "#C958F2",
+    "icon": "https://assets.coingecko.com/coins/images/29126/thumb/gold.png?1696528087",
+    "symbol": "GOLD",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0xf19547f9ed24aa66b03c3a552d181ae334fbb8db": {
+    "assetId": "eip155:42161/erc20:0xf19547f9ed24aa66b03c3a552d181ae334fbb8db",
+    "chainId": "eip155:42161",
+    "name": "Lodestar",
+    "precision": 18,
+    "color": "#141823",
+    "icon": "https://assets.coingecko.com/coins/images/28218/thumb/Lodestar_PFP_350x350px.jpg?1696527220",
+    "symbol": "LODE",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0xf1a82bfa7fceb8b8741e7e04a6b8efd348ca6393": {
+    "assetId": "eip155:42161/erc20:0xf1a82bfa7fceb8b8741e7e04a6b8efd348ca6393",
+    "chainId": "eip155:42161",
+    "name": "ArbShib",
+    "precision": 6,
+    "color": "#5C7598",
+    "icon": "https://assets.coingecko.com/coins/images/29945/thumb/200200.jpg?1696528872",
+    "symbol": "AISHIB",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0xf1f18f765f118c3598cc54dcac1d0e12066263fe": {
+    "assetId": "eip155:42161/erc20:0xf1f18f765f118c3598cc54dcac1d0e12066263fe",
+    "chainId": "eip155:42161",
+    "name": "Dinari PFE",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/32537/thumb/token-icon.png?1698469161",
+    "symbol": "PFED",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0xf202ab403cd7e90197ec0f010ee897e283037706": {
+    "assetId": "eip155:42161/erc20:0xf202ab403cd7e90197ec0f010ee897e283037706",
+    "chainId": "eip155:42161",
+    "name": "Savvy USD",
+    "precision": 18,
+    "color": "#B9A8FA",
+    "icon": "https://assets.coingecko.com/coins/images/31006/thumb/logo_%289%29.png?1696529843",
+    "symbol": "SVUSD",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0xf236ea74b515ef96a9898f5a4ed4aa591f253ce1": {
+    "assetId": "eip155:42161/erc20:0xf236ea74b515ef96a9898f5a4ed4aa591f253ce1",
+    "chainId": "eip155:42161",
+    "name": "Plutus DPX",
+    "precision": 18,
+    "color": "#040404",
+    "icon": "https://assets.coingecko.com/coins/images/29652/thumb/plsDPX.png?1696528588",
+    "symbol": "PLSDPX",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0xf29fdf6b7bdffb025d7e6dfdf344992d2d16e249": {
+    "assetId": "eip155:42161/erc20:0xf29fdf6b7bdffb025d7e6dfdf344992d2d16e249",
+    "chainId": "eip155:42161",
+    "name": "Genius X",
+    "precision": 6,
+    "color": "#FC6A5A",
+    "icon": "https://assets.coingecko.com/coins/images/30904/thumb/GX_short_logo.png?1696529749",
+    "symbol": "GENSX",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0xf329e36c7bf6e5e86ce2150875a84ce77f477375": {
+    "assetId": "eip155:42161/erc20:0xf329e36c7bf6e5e86ce2150875a84ce77f477375",
+    "chainId": "eip155:42161",
+    "name": "Aave v3 AAVE on Arbitrum One",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/32887/thumb/aave.png?1699773604",
+    "symbol": "AAAVE",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0xf3c091ed43de9c270593445163a41a876a0bb3dd": {
+    "assetId": "eip155:42161/erc20:0xf3c091ed43de9c270593445163a41a876a0bb3dd",
+    "chainId": "eip155:42161",
+    "name": "Orbs on Arbitrum One",
+    "precision": 18,
+    "color": "#6E809F",
+    "icon": "https://assets.coingecko.com/coins/images/4630/thumb/Orbs.jpg?1696505200",
+    "symbol": "ORBS",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0xf40f19cafaaa25bf9b52134646c6e325e76e0e93": {
+    "assetId": "eip155:42161/erc20:0xf40f19cafaaa25bf9b52134646c6e325e76e0e93",
+    "chainId": "eip155:42161",
+    "name": "GLSD Coin",
+    "precision": 18,
+    "color": "#2404E4",
+    "icon": "https://assets.coingecko.com/coins/images/30875/thumb/Icon-200.png?1696529723",
+    "symbol": "GLSD",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0xf4bd09b048248876e39fcf2e0cdf1aee1240a9d2": {
+    "assetId": "eip155:42161/erc20:0xf4bd09b048248876e39fcf2e0cdf1aee1240a9d2",
+    "chainId": "eip155:42161",
+    "name": "Dinari SPY",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/32403/thumb/token-icon.png?1698055561",
+    "symbol": "SPYD",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0xf4d48ce3ee1ac3651998971541badbb9a14d7234": {
+    "assetId": "eip155:42161/erc20:0xf4d48ce3ee1ac3651998971541badbb9a14d7234",
+    "chainId": "eip155:42161",
+    "name": "Cream on Arbitrum One",
+    "precision": 18,
+    "color": "#6CE4DC",
+    "icon": "https://assets.coingecko.com/coins/images/11976/thumb/Cream.png?1696511834",
+    "symbol": "CREAM",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0xf50874f8246776ca4b89eef471e718f70f38458f": {
+    "assetId": "eip155:42161/erc20:0xf50874f8246776ca4b89eef471e718f70f38458f",
+    "chainId": "eip155:42161",
+    "name": "Arbswap",
+    "precision": 18,
+    "color": "#5295D8",
+    "icon": "https://assets.coingecko.com/coins/images/30565/thumb/Arb-Logo_Circle_DARK_LOGO_ONLY.png?1696529436",
+    "symbol": "ARBS",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0xf5a27e55c748bcddbfea5477cb9ae924f0f7fd2e": {
+    "assetId": "eip155:42161/erc20:0xf5a27e55c748bcddbfea5477cb9ae924f0f7fd2e",
+    "chainId": "eip155:42161",
+    "name": "The Standard Token",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/20598/thumb/TheStandard-logo_variation-01.png?1696520005",
+    "symbol": "TST",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0xf763fa322dc58dee588252fafee5f448e863b633": {
+    "assetId": "eip155:42161/erc20:0xf763fa322dc58dee588252fafee5f448e863b633",
+    "chainId": "eip155:42161",
+    "name": "Carbon Protocol on Arbitrum One",
+    "precision": 8,
+    "color": "#3E8DAC",
+    "icon": "https://assets.coingecko.com/coins/images/3645/thumb/SWTH_Symbol_Origin.png?1696504327",
+    "symbol": "SWTH",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0xf7693c6fd9a7172d537fa75d133d309501cbd657": {
+    "assetId": "eip155:42161/erc20:0xf7693c6fd9a7172d537fa75d133d309501cbd657",
+    "chainId": "eip155:42161",
+    "name": "Web3 No Value",
+    "precision": 18,
+    "color": "#CD628E",
+    "icon": "https://assets.coingecko.com/coins/images/32083/thumb/w3n-logo-comp200x200.png?1696530881",
+    "symbol": "W3N",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0xf7728582002ef82908c8242cf552e969ba863ffa": {
+    "assetId": "eip155:42161/erc20:0xf7728582002ef82908c8242cf552e969ba863ffa",
+    "chainId": "eip155:42161",
+    "name": "Savvy ETH",
+    "precision": 18,
+    "color": "#F4F0FC",
+    "icon": "https://assets.coingecko.com/coins/images/31005/thumb/logo_%288%29.png?1696529842",
+    "symbol": "SVETH",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0xf7a0dd3317535ec4f4d29adf9d620b3d8d5d5069": {
+    "assetId": "eip155:42161/erc20:0xf7a0dd3317535ec4f4d29adf9d620b3d8d5d5069",
+    "chainId": "eip155:42161",
+    "name": "Staked Ethos Reserve Note on Arbitrum One",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/31522/thumb/stERN.png?1696530332",
+    "symbol": "STERN",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0xf80d589b3dbe130c270a69f1a69d050f268786df": {
+    "assetId": "eip155:42161/erc20:0xf80d589b3dbe130c270a69f1a69d050f268786df",
+    "chainId": "eip155:42161",
+    "name": "Datamine FLUX on Arbitrum One",
+    "precision": 18,
+    "color": "#262A3A",
+    "icon": "https://assets.coingecko.com/coins/images/11756/thumb/fluxres.png?1696511637",
+    "symbol": "FLUX",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0xf97f4df75117a78c1a5a0dbb814af92458539fb4": {
+    "assetId": "eip155:42161/erc20:0xf97f4df75117a78c1a5a0dbb814af92458539fb4",
+    "chainId": "eip155:42161",
+    "name": "Chainlink on Arbitrum One",
+    "precision": 18,
+    "color": "#2C5CDC",
+    "icon": "https://assets.coingecko.com/coins/images/877/thumb/chainlink-new-logo.png?1696502009",
+    "symbol": "LINK",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0xf9df075716b2d9b95616341dc6bc64c85e56645c": {
+    "assetId": "eip155:42161/erc20:0xf9df075716b2d9b95616341dc6bc64c85e56645c",
+    "chainId": "eip155:42161",
+    "name": "Mayfair",
+    "precision": 18,
+    "color": "#615E5A",
+    "icon": "https://assets.coingecko.com/coins/images/30548/thumb/a1VkJI0r_400x400.jpg?1696529420",
+    "symbol": "MAY",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0xfa296fca3c7dba4a92a42ec0b5e2138da3b29050": {
+    "assetId": "eip155:42161/erc20:0xfa296fca3c7dba4a92a42ec0b5e2138da3b29050",
+    "chainId": "eip155:42161",
+    "name": "AiShiba",
+    "precision": 6,
+    "color": "#39302E",
+    "icon": "https://assets.coingecko.com/coins/images/29898/thumb/Fotor_AI%EF%BC%882%EF%BC%89.png?1696528822",
+    "symbol": "SHIBAI",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0xfa5ed56a203466cbbc2430a43c66b9d8723528e7": {
+    "assetId": "eip155:42161/erc20:0xfa5ed56a203466cbbc2430a43c66b9d8723528e7",
+    "chainId": "eip155:42161",
+    "name": "agEUR on Arbitrum One",
+    "precision": 18,
+    "color": "#C0B99D",
+    "icon": "https://assets.coingecko.com/coins/images/19479/thumb/agEUR.png?1696518915",
+    "symbol": "AGEUR",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0xfa7f8980b0f1e64a2062791cc3b0871572f1f7f0": {
+    "assetId": "eip155:42161/erc20:0xfa7f8980b0f1e64a2062791cc3b0871572f1f7f0",
+    "chainId": "eip155:42161",
+    "name": "Uniswap on Arbitrum One",
+    "precision": 18,
+    "color": "#C53C78",
+    "icon": "https://assets.coingecko.com/coins/images/12504/thumb/uni.jpg?1696512319",
+    "symbol": "UNI",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0xfac38532829fdd744373fdcd4708ab90fa0c4078": {
+    "assetId": "eip155:42161/erc20:0xfac38532829fdd744373fdcd4708ab90fa0c4078",
+    "chainId": "eip155:42161",
+    "name": "tLPT",
+    "precision": 18,
+    "color": "#C4C4C4",
+    "icon": "https://assets.coingecko.com/coins/images/26972/thumb/tenderLPT.png?1696526026",
+    "symbol": "TLPT",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0xfb17d52f77db6e32b5a082ed4307fcfb0a86beee": {
+    "assetId": "eip155:42161/erc20:0xfb17d52f77db6e32b5a082ed4307fcfb0a86beee",
+    "chainId": "eip155:42161",
+    "name": "Pizon",
+    "precision": 18,
+    "color": "#7F7F7F",
+    "icon": "https://assets.coingecko.com/coins/images/30120/thumb/pizon.jpeg?1696529042",
+    "symbol": "PZT",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0xfb1f65955e168e0ef500b170eed4a4efeb99ae32": {
+    "assetId": "eip155:42161/erc20:0xfb1f65955e168e0ef500b170eed4a4efeb99ae32",
+    "chainId": "eip155:42161",
+    "name": "LiquiCats",
+    "precision": 18,
+    "color": "#CE1C8D",
+    "icon": "https://assets.coingecko.com/coins/images/28810/thumb/AdZJegQB_400x400.jpg?1696527787",
+    "symbol": "MEOW",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0xfb9e5d956d889d91a82737b9bfcdac1dce3e1449": {
+    "assetId": "eip155:42161/erc20:0xfb9e5d956d889d91a82737b9bfcdac1dce3e1449",
+    "chainId": "eip155:42161",
+    "name": "Liquity on Arbitrum One",
+    "precision": 18,
+    "color": "#32B5EA",
+    "icon": "https://assets.coingecko.com/coins/images/14665/thumb/200-lqty-icon.png?1696514340",
+    "symbol": "LQTY",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0xfb9fbcb328317123f5275cda30b6589d5841216b": {
+    "assetId": "eip155:42161/erc20:0xfb9fbcb328317123f5275cda30b6589d5841216b",
+    "chainId": "eip155:42161",
+    "name": "Antfarm Token on Arbitrum One",
+    "precision": 18,
+    "color": "#848484",
+    "icon": "https://assets.coingecko.com/coins/images/28821/thumb/ATF.png?1696527797",
+    "symbol": "ATF",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0xfb9fed8cb962548a11fe7f6f282949061395c7f5": {
+    "assetId": "eip155:42161/erc20:0xfb9fed8cb962548a11fe7f6f282949061395c7f5",
+    "chainId": "eip155:42161",
+    "name": "Nuon",
+    "precision": 18,
+    "color": "#ECF2F3",
+    "icon": "https://assets.coingecko.com/coins/images/29739/thumb/Nuon_image.jpg?1696528669",
+    "symbol": "NUON",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0xfbbb21d8e7a461f06e5e27efd69703acb5c732a8": {
+    "assetId": "eip155:42161/erc20:0xfbbb21d8e7a461f06e5e27efd69703acb5c732a8",
+    "chainId": "eip155:42161",
+    "name": "Kunji Finance",
+    "precision": 18,
+    "color": "#2454A4",
+    "icon": "https://assets.coingecko.com/coins/images/31651/thumb/logo_mark_Main_%283%29.png?1696530466",
+    "symbol": "KNJ",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0xfc0c4114ccba4a91d05bdab4a8480cbec46654dd": {
+    "assetId": "eip155:42161/erc20:0xfc0c4114ccba4a91d05bdab4a8480cbec46654dd",
+    "chainId": "eip155:42161",
+    "name": "RB Finance",
+    "precision": 18,
+    "color": "#62AEE2",
+    "icon": "https://assets.coingecko.com/coins/images/29623/thumb/Main_token.png?1696528559",
+    "symbol": "RB",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0xfc5a1a6eb076a2c7ad06ed22c90d7e710e35ad0a": {
+    "assetId": "eip155:42161/erc20:0xfc5a1a6eb076a2c7ad06ed22c90d7e710e35ad0a",
+    "chainId": "eip155:42161",
+    "name": "GMX on Arbitrum One",
+    "precision": 18,
+    "color": "#491EEC",
+    "icon": "https://assets.coingecko.com/coins/images/18323/thumb/arbit.png?1696517814",
+    "symbol": "GMX",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0xfc77b86f3ade71793e1eec1e7944db074922856e": {
+    "assetId": "eip155:42161/erc20:0xfc77b86f3ade71793e1eec1e7944db074922856e",
+    "chainId": "eip155:42161",
+    "name": "Mugen Finance",
+    "precision": 18,
+    "color": "#040404",
+    "icon": "https://assets.coingecko.com/coins/images/27340/thumb/Group_2915.jpg?1696526387",
+    "symbol": "MGN",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0xfd086bc7cd5c481dcc9c85ebe478a1c0b69fcbb9": {
+    "assetId": "eip155:42161/erc20:0xfd086bc7cd5c481dcc9c85ebe478a1c0b69fcbb9",
+    "chainId": "eip155:42161",
+    "name": "Tether on Arbitrum One",
+    "precision": 6,
+    "color": "#049494",
+    "icon": "https://assets.coingecko.com/coins/images/325/thumb/Tether.png?1696501661",
+    "symbol": "USDT",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0xfdad8edc724277e975f4955d288c6eb5b20a3146": {
+    "assetId": "eip155:42161/erc20:0xfdad8edc724277e975f4955d288c6eb5b20a3146",
+    "chainId": "eip155:42161",
+    "name": "Nulswap on Arbitrum One",
+    "precision": 8,
+    "color": "#C6F8E1",
+    "icon": "https://assets.coingecko.com/coins/images/30099/thumb/nswap-circ_%283%29.png?1696529023",
+    "symbol": "NSWAP",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0xfea7a6a0b346362bf88a9e4a88416b77a57d6c2a": {
+    "assetId": "eip155:42161/erc20:0xfea7a6a0b346362bf88a9e4a88416b77a57d6c2a",
+    "chainId": "eip155:42161",
+    "name": "Magic Internet Money on Arbitrum One",
+    "precision": 18,
+    "color": "#5958FC",
+    "icon": "https://assets.coingecko.com/coins/images/16786/thumb/mimlogopng.png?1696516358",
+    "symbol": "MIM",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0xff970a61a04b1ca14834a43f5de4533ebddb5cc8": {
+    "assetId": "eip155:42161/erc20:0xff970a61a04b1ca14834a43f5de4533ebddb5cc8",
+    "chainId": "eip155:42161",
+    "name": "Bridged USDC  Arbitrum ",
+    "precision": 6,
+    "color": "#2B77CC",
+    "icon": "https://assets.coingecko.com/coins/images/30691/thumb/usdc.png?1696529560",
+    "symbol": "USDCE",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/erc20:0xffa188493c15dfaf2c206c97d8633377847b6a52": {
+    "assetId": "eip155:42161/erc20:0xffa188493c15dfaf2c206c97d8633377847b6a52",
+    "chainId": "eip155:42161",
+    "name": "Wefi Finance on Arbitrum One",
+    "precision": 18,
+    "color": "#1C3CF4",
+    "icon": "https://assets.coingecko.com/coins/images/30540/thumb/wefi.png?1696529412",
+    "symbol": "WEFI",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42161/slip44:60": {
+    "assetId": "eip155:42161/slip44:60",
+    "chainId": "eip155:42161",
+    "name": "Ethereum on Arbitrum One",
+    "networkName": "Arbitrum One",
+    "symbol": "ETH",
+    "precision": 18,
+    "color": "#5C6BC0",
+    "networkColor": "#213147",
+    "icon": "https://assets.coincap.io/assets/icons/256/eth.png",
+    "networkIcon": "https://assets.coingecko.com/coins/images/16547/large/photo_2023-03-29_21.47.00.jpeg?1680097630",
+    "explorer": "https://arbiscan.io",
+    "explorerAddressLink": "https://arbiscan.io/address/",
+    "explorerTxLink": "https://arbiscan.io/tx/"
+  },
+  "eip155:42170/erc20:0x0057ac2d777797d31cd3f8f13bf5e927571d6ad0": {
+    "assetId": "eip155:42170/erc20:0x0057ac2d777797d31cd3f8f13bf5e927571d6ad0",
+    "chainId": "eip155:42170",
+    "name": "r CryptoCurrency Moons",
+    "precision": 18,
+    "color": "#100E09",
+    "icon": "https://assets.coingecko.com/coins/images/11222/thumb/Moons.png?1696511153",
+    "symbol": "MOON",
+    "explorer": "https://nova.arbiscan.io",
+    "explorerAddressLink": "https://nova.arbiscan.io/address/",
+    "explorerTxLink": "https://nova.arbiscan.io/tx/"
+  },
+  "eip155:42170/erc20:0x223fb0ceb2c6e5310264efe38151d7d083db91f1": {
+    "assetId": "eip155:42170/erc20:0x223fb0ceb2c6e5310264efe38151d7d083db91f1",
+    "chainId": "eip155:42170",
+    "name": "Superpower Squad on Arbitrum Nova",
+    "precision": 18,
+    "color": "#D58439",
+    "icon": "https://assets.coingecko.com/coins/images/28466/thumb/SQUAD200X200.png?1696527460",
+    "symbol": "SQUAD",
+    "explorer": "https://nova.arbiscan.io",
+    "explorerAddressLink": "https://nova.arbiscan.io/address/",
+    "explorerTxLink": "https://nova.arbiscan.io/tx/"
+  },
+  "eip155:42170/erc20:0x4b2576bc44310d6dfb4cfcf2630f25190fc60803": {
+    "assetId": "eip155:42170/erc20:0x4b2576bc44310d6dfb4cfcf2630f25190fc60803",
+    "chainId": "eip155:42170",
+    "name": "MoonsDust",
+    "precision": 18,
+    "color": "#471D15",
+    "icon": "https://assets.coingecko.com/coins/images/22050/thumb/moondlogo.png?1696521394",
+    "symbol": "MOOND",
+    "explorer": "https://nova.arbiscan.io",
+    "explorerAddressLink": "https://nova.arbiscan.io/address/",
+    "explorerTxLink": "https://nova.arbiscan.io/tx/"
+  },
+  "eip155:42170/erc20:0x6ab6d61428fde76768d7b45d8bfeec19c6ef91a8": {
+    "assetId": "eip155:42170/erc20:0x6ab6d61428fde76768d7b45d8bfeec19c6ef91a8",
+    "chainId": "eip155:42170",
+    "name": "DPS Rum",
+    "precision": 18,
+    "color": "#B99C4E",
+    "icon": "https://assets.coingecko.com/coins/images/29753/thumb/rum.png?1696528685",
+    "symbol": "RUM",
+    "explorer": "https://nova.arbiscan.io",
+    "explorerAddressLink": "https://nova.arbiscan.io/address/",
+    "explorerTxLink": "https://nova.arbiscan.io/tx/"
+  },
+  "eip155:42170/erc20:0x6dcb98f460457fe4952e12779ba852f82ecc62c1": {
+    "assetId": "eip155:42170/erc20:0x6dcb98f460457fe4952e12779ba852f82ecc62c1",
+    "chainId": "eip155:42170",
+    "name": "r FortNiteBR Bricks",
+    "precision": 18,
+    "color": "#080404",
+    "icon": "https://assets.coingecko.com/coins/images/11223/thumb/Brick.png?1696511154",
+    "symbol": "BRICK",
+    "explorer": "https://nova.arbiscan.io",
+    "explorerAddressLink": "https://nova.arbiscan.io/address/",
+    "explorerTxLink": "https://nova.arbiscan.io/tx/"
+  },
+  "eip155:42170/erc20:0x722e8bdd2ce80a4422e880164f2079488e115365": {
+    "assetId": "eip155:42170/erc20:0x722e8bdd2ce80a4422e880164f2079488e115365",
+    "chainId": "eip155:42170",
+    "name": "WETH on Arbitrum Nova",
+    "precision": 18,
+    "color": "#393838",
+    "icon": "https://assets.coingecko.com/coins/images/2518/thumb/weth.png?1696503332",
+    "symbol": "WETH",
+    "explorer": "https://nova.arbiscan.io",
+    "explorerAddressLink": "https://nova.arbiscan.io/address/",
+    "explorerTxLink": "https://nova.arbiscan.io/tx/"
+  },
+  "eip155:42170/erc20:0x80a16016cc4a2e6a2caca8a4a498b1699ff0f844": {
+    "assetId": "eip155:42170/erc20:0x80a16016cc4a2e6a2caca8a4a498b1699ff0f844",
+    "chainId": "eip155:42170",
+    "name": "DPS TreasureMaps",
+    "precision": 18,
+    "color": "#CCA56C",
+    "icon": "https://assets.coingecko.com/coins/images/29754/thumb/tmap.png?1696528686",
+    "symbol": "TMAP",
+    "explorer": "https://nova.arbiscan.io",
+    "explorerAddressLink": "https://nova.arbiscan.io/address/",
+    "explorerTxLink": "https://nova.arbiscan.io/tx/"
+  },
+  "eip155:42170/erc20:0x90aec282ed4cdcaab0934519de08b56f1f2ab4d7": {
+    "assetId": "eip155:42170/erc20:0x90aec282ed4cdcaab0934519de08b56f1f2ab4d7",
+    "chainId": "eip155:42170",
+    "name": "NFTEarth on Arbitrum Nova",
+    "precision": 18,
+    "color": "#E1FBED",
+    "icon": "https://assets.coingecko.com/coins/images/29116/thumb/20230223_224134.jpg?1696528078",
+    "symbol": "NFTE",
+    "explorer": "https://nova.arbiscan.io",
+    "explorerAddressLink": "https://nova.arbiscan.io/address/",
+    "explorerTxLink": "https://nova.arbiscan.io/tx/"
+  },
+  "eip155:42170/erc20:0xda10009cbd5d07dd0cecc66161fc93d7c9000da1": {
+    "assetId": "eip155:42170/erc20:0xda10009cbd5d07dd0cecc66161fc93d7c9000da1",
+    "chainId": "eip155:42170",
+    "name": "Dai on Arbitrum Nova",
+    "precision": 18,
+    "color": "#FCBD3C",
+    "icon": "https://assets.coingecko.com/coins/images/9956/thumb/Badge_Dai.png?1696509996",
+    "symbol": "DAI",
+    "explorer": "https://nova.arbiscan.io",
+    "explorerAddressLink": "https://nova.arbiscan.io/address/",
+    "explorerTxLink": "https://nova.arbiscan.io/tx/"
+  },
+  "eip155:42170/erc20:0xefaeee334f0fd1712f9a8cc375f427d9cdd40d73": {
+    "assetId": "eip155:42170/erc20:0xefaeee334f0fd1712f9a8cc375f427d9cdd40d73",
+    "chainId": "eip155:42170",
+    "name": "DPS Doubloon",
+    "precision": 18,
+    "color": "#070707",
+    "icon": "https://assets.coingecko.com/coins/images/29755/thumb/doubloon.jpg?1696528687",
+    "symbol": "DBL",
+    "explorer": "https://nova.arbiscan.io",
+    "explorerAddressLink": "https://nova.arbiscan.io/address/",
+    "explorerTxLink": "https://nova.arbiscan.io/tx/"
+  },
+  "eip155:42170/erc20:0xf823c3cd3cebe0a1fa952ba88dc9eef8e0bf46ad": {
+    "assetId": "eip155:42170/erc20:0xf823c3cd3cebe0a1fa952ba88dc9eef8e0bf46ad",
+    "chainId": "eip155:42170",
+    "name": "Arbitrum on Arbitrum Nova",
+    "precision": 18,
+    "color": "#D9E1EA",
+    "icon": "https://assets.coingecko.com/coins/images/16547/thumb/photo_2023-03-29_21.47.00.jpeg?1696516109",
+    "symbol": "ARB",
+    "explorer": "https://nova.arbiscan.io",
+    "explorerAddressLink": "https://nova.arbiscan.io/address/",
+    "explorerTxLink": "https://nova.arbiscan.io/tx/"
+  },
+  "eip155:42170/slip44:60": {
+    "assetId": "eip155:42170/slip44:60",
+    "chainId": "eip155:42170",
+    "name": "Ethereum on Arbitrum Nova",
+    "networkName": "Arbitrum Nova",
+    "symbol": "ETH",
+    "precision": 18,
+    "color": "#5C6BC0",
+    "networkColor": "#E67408",
+    "icon": "https://assets.coincap.io/assets/icons/256/eth.png",
+    "networkIcon": "https://assets.coingecko.com/asset_platforms/images/93/large/AN_logomark.png?1695026131",
+    "explorer": "https://nova.arbiscan.io",
+    "explorerAddressLink": "https://nova.arbiscan.io/address/",
+    "explorerTxLink": "https://nova.arbiscan.io/tx/"
+  },
+  "eip155:43114/erc20:0x008e26068b3eb40b443d3ea88c1ff99b789c10f7": {
+    "assetId": "eip155:43114/erc20:0x008e26068b3eb40b443d3ea88c1ff99b789c10f7",
+    "chainId": "eip155:43114",
+    "name": "0 exchange on Avalanche",
+    "precision": 18,
+    "color": "#181F2D",
+    "icon": "https://assets.coingecko.com/coins/images/13706/thumb/0.exchange_%28logo%29.jpg?1696513452",
+    "symbol": "ZERO",
+    "explorer": "https://snowtrace.dev",
+    "explorerAddressLink": "https://snowtrace.dev/address/",
+    "explorerTxLink": "https://snowtrace.dev/tx/"
+  },
+  "eip155:43114/erc20:0x00ee200df31b869a321b10400da10b561f3ee60d": {
+    "assetId": "eip155:43114/erc20:0x00ee200df31b869a321b10400da10b561f3ee60d",
+    "chainId": "eip155:43114",
+    "name": "Arable Protocol on Avalanche",
+    "precision": 18,
+    "color": "#BFC8C0",
+    "icon": "https://assets.coingecko.com/coins/images/23659/thumb/acre_token-02.png?1696522862",
+    "symbol": "ACRE",
+    "explorer": "https://snowtrace.dev",
+    "explorerAddressLink": "https://snowtrace.dev/address/",
+    "explorerTxLink": "https://snowtrace.dev/tx/"
+  },
+  "eip155:43114/erc20:0x01c2086facfd7aa38f69a6bd8c91bef3bb5adfca": {
+    "assetId": "eip155:43114/erc20:0x01c2086facfd7aa38f69a6bd8c91bef3bb5adfca",
+    "chainId": "eip155:43114",
+    "name": "YAY Network on Avalanche",
+    "precision": 18,
+    "color": "#40AC37",
+    "icon": "https://assets.coingecko.com/coins/images/18251/thumb/Av_%281%29.png?1696517746",
+    "symbol": "YAY",
+    "explorer": "https://snowtrace.dev",
+    "explorerAddressLink": "https://snowtrace.dev/address/",
+    "explorerTxLink": "https://snowtrace.dev/tx/"
+  },
+  "eip155:43114/erc20:0x027dbca046ca156de9622cd1e2d907d375e53aa7": {
+    "assetId": "eip155:43114/erc20:0x027dbca046ca156de9622cd1e2d907d375e53aa7",
+    "chainId": "eip155:43114",
+    "name": "Ampleforth on Avalanche",
+    "precision": 9,
+    "color": "#D0D0D0",
+    "icon": "https://assets.coingecko.com/coins/images/4708/thumb/Ampleforth.png?1696505273",
+    "symbol": "AMPL",
+    "explorer": "https://snowtrace.dev",
+    "explorerAddressLink": "https://snowtrace.dev/address/",
+    "explorerTxLink": "https://snowtrace.dev/tx/"
+  },
+  "eip155:43114/erc20:0x02bfd11499847003de5f0f5aa081c43854d48815": {
+    "assetId": "eip155:43114/erc20:0x02bfd11499847003de5f0f5aa081c43854d48815",
+    "chainId": "eip155:43114",
+    "name": "RadioShack on Avalanche",
+    "precision": 18,
+    "color": "#F5E7E0",
+    "icon": "https://assets.coingecko.com/coins/images/25307/thumb/ZVoPiysPJq6dPIZm_Se-6vjmsBepwhHlTQfdYZRILbHyVVTRUYCO-wmJJ4zT10HXCGv1j-ZyWr2u2sBaVlap5Y-ILqeXZuIquWdBDxxG0E0qDpgH7omLqYdgWWLSM_TUK9d1PiiYdu6bERdCDaucgFjlqwmhVQK4uV4jyUiXzchVUnu8Qt6SnxlNxz88G0mQ_tfiwkFv_vKqtgb1CcPycVZVz9.jpg?1696524444",
+    "symbol": "RADIO",
+    "explorer": "https://snowtrace.dev",
+    "explorerAddressLink": "https://snowtrace.dev/address/",
+    "explorerTxLink": "https://snowtrace.dev/tx/"
+  },
+  "eip155:43114/erc20:0x03e8d118a1864c7dc53bf91e007ab7d91f5a06fa": {
+    "assetId": "eip155:43114/erc20:0x03e8d118a1864c7dc53bf91e007ab7d91f5a06fa",
+    "chainId": "eip155:43114",
+    "name": "Domani Protocol on Avalanche",
+    "precision": 18,
+    "color": "#7BD55E",
+    "icon": "https://assets.coingecko.com/coins/images/12634/thumb/0qgT0aMu_400x400.jpg?1696512442",
+    "symbol": "DEXTF",
+    "explorer": "https://snowtrace.dev",
+    "explorerAddressLink": "https://snowtrace.dev/address/",
+    "explorerTxLink": "https://snowtrace.dev/tx/"
+  },
+  "eip155:43114/erc20:0x056d114ff1e01de3bca30f0efa3655df42880e5b": {
+    "assetId": "eip155:43114/erc20:0x056d114ff1e01de3bca30f0efa3655df42880e5b",
+    "chainId": "eip155:43114",
+    "name": "Kyte One on Avalanche",
+    "precision": 18,
+    "color": "#B8B1B6",
+    "icon": "https://assets.coingecko.com/coins/images/25225/thumb/3l4OKCIt_400x400.png?1696524367",
+    "symbol": "KTE",
+    "explorer": "https://snowtrace.dev",
+    "explorerAddressLink": "https://snowtrace.dev/address/",
+    "explorerTxLink": "https://snowtrace.dev/tx/"
+  },
+  "eip155:43114/erc20:0x060556209e507d30f2167a101bfc6d256ed2f3e1": {
+    "assetId": "eip155:43114/erc20:0x060556209e507d30f2167a101bfc6d256ed2f3e1",
+    "chainId": "eip155:43114",
+    "name": "xPTP",
+    "precision": 18,
+    "color": "#E1E1FA",
+    "icon": "https://assets.coingecko.com/coins/images/24965/thumb/xptp.png?1696524119",
+    "symbol": "XPTP",
+    "explorer": "https://snowtrace.dev",
+    "explorerAddressLink": "https://snowtrace.dev/address/",
+    "explorerTxLink": "https://snowtrace.dev/tx/"
+  },
+  "eip155:43114/erc20:0x078f358208685046a11c85e8ad32895ded33a249": {
+    "assetId": "eip155:43114/erc20:0x078f358208685046a11c85e8ad32895ded33a249",
+    "chainId": "eip155:43114",
+    "name": "Aave v3 WBTC on Avalanche",
+    "precision": 8,
+    "color": "#E48A51",
+    "icon": "https://assets.coingecko.com/coins/images/32883/thumb/wbtc.png?1699719908",
+    "symbol": "AWBTC",
+    "explorer": "https://snowtrace.dev",
+    "explorerAddressLink": "https://snowtrace.dev/address/",
+    "explorerTxLink": "https://snowtrace.dev/tx/"
+  },
+  "eip155:43114/erc20:0x089d3daf549f99553c2182db24bc4336a4f0c824": {
+    "assetId": "eip155:43114/erc20:0x089d3daf549f99553c2182db24bc4336a4f0c824",
+    "chainId": "eip155:43114",
+    "name": "Impermax on Avalanche",
+    "precision": 18,
+    "color": "#29A29A",
+    "icon": "https://assets.coingecko.com/coins/images/27606/thumb/IqwOmX-c_400x400.jpeg?1696526637",
+    "symbol": "IBEX",
+    "explorer": "https://snowtrace.dev",
+    "explorerAddressLink": "https://snowtrace.dev/address/",
+    "explorerTxLink": "https://snowtrace.dev/tx/"
+  },
+  "eip155:43114/erc20:0x08d58f06ddfa9b99ae651f68232014be3914c5cd": {
+    "assetId": "eip155:43114/erc20:0x08d58f06ddfa9b99ae651f68232014be3914c5cd",
+    "chainId": "eip155:43114",
+    "name": "Ethos Reserve Note on Avalanche",
+    "precision": 18,
+    "color": "#0C0C0C",
+    "icon": "https://assets.coingecko.com/coins/images/29744/thumb/ERN200x200.png?1696528676",
+    "symbol": "ERN",
+    "explorer": "https://snowtrace.dev",
+    "explorerAddressLink": "https://snowtrace.dev/address/",
+    "explorerTxLink": "https://snowtrace.dev/tx/"
+  },
+  "eip155:43114/erc20:0x09211dc67f9fe98fb7bbb91be0ef05f4a12fa2b2": {
+    "assetId": "eip155:43114/erc20:0x09211dc67f9fe98fb7bbb91be0ef05f4a12fa2b2",
+    "chainId": "eip155:43114",
+    "name": "Space Token BSC on Avalanche",
+    "precision": 18,
+    "color": "#EC476A",
+    "icon": "https://assets.coingecko.com/coins/images/20676/thumb/jYw3kgsY_400x400.png?1696520076",
+    "symbol": "SPACE",
+    "explorer": "https://snowtrace.dev",
+    "explorerAddressLink": "https://snowtrace.dev/address/",
+    "explorerTxLink": "https://snowtrace.dev/tx/"
+  },
+  "eip155:43114/erc20:0x093783055f9047c2bff99c4e414501f8a147bc69": {
+    "assetId": "eip155:43114/erc20:0x093783055f9047c2bff99c4e414501f8a147bc69",
+    "chainId": "eip155:43114",
+    "name": "Dexalot",
+    "precision": 18,
+    "color": "#F1046A",
+    "icon": "https://assets.coingecko.com/coins/images/24188/thumb/logo_200x200.png?1696523376",
+    "symbol": "ALOT",
+    "explorer": "https://snowtrace.dev",
+    "explorerAddressLink": "https://snowtrace.dev/address/",
+    "explorerTxLink": "https://snowtrace.dev/tx/"
+  },
+  "eip155:43114/erc20:0x0cbd6fadcf8096cc9a43d90b45f65826102e3ece": {
+    "assetId": "eip155:43114/erc20:0x0cbd6fadcf8096cc9a43d90b45f65826102e3ece",
+    "chainId": "eip155:43114",
+    "name": "CheckDot on Avalanche",
+    "precision": 18,
+    "color": "#3CEC94",
+    "icon": "https://assets.coingecko.com/coins/images/20370/thumb/token-200x200_%281%29.png?1696519781",
+    "symbol": "CDT",
+    "explorer": "https://snowtrace.dev",
+    "explorerAddressLink": "https://snowtrace.dev/address/",
+    "explorerTxLink": "https://snowtrace.dev/tx/"
+  },
+  "eip155:43114/erc20:0x0da67235dd5787d67955420c84ca1cecd4e5bb3b": {
+    "assetId": "eip155:43114/erc20:0x0da67235dd5787d67955420c84ca1cecd4e5bb3b",
+    "chainId": "eip155:43114",
+    "name": "Wonderful Memories on Avalanche",
+    "precision": 18,
+    "color": "#5089CC",
+    "icon": "https://assets.coingecko.com/coins/images/22392/thumb/wMEMO.png?1696521735",
+    "symbol": "WMEMO",
+    "explorer": "https://snowtrace.dev",
+    "explorerAddressLink": "https://snowtrace.dev/address/",
+    "explorerTxLink": "https://snowtrace.dev/tx/"
+  },
+  "eip155:43114/erc20:0x0f577433bf59560ef2a79c124e9ff99fca258948": {
+    "assetId": "eip155:43114/erc20:0x0f577433bf59560ef2a79c124e9ff99fca258948",
+    "chainId": "eip155:43114",
+    "name": "Moremoney USD",
+    "precision": 18,
+    "color": "#4494C4",
+    "icon": "https://assets.coingecko.com/coins/images/24237/thumb/money.png?1696523422",
+    "symbol": "MONEY",
+    "explorer": "https://snowtrace.dev",
+    "explorerAddressLink": "https://snowtrace.dev/address/",
+    "explorerTxLink": "https://snowtrace.dev/tx/"
+  },
+  "eip155:43114/erc20:0x100cc3a819dd3e8573fd2e46d1e66ee866068f30": {
+    "assetId": "eip155:43114/erc20:0x100cc3a819dd3e8573fd2e46d1e66ee866068f30",
+    "chainId": "eip155:43114",
+    "name": "Dragon Crypto Aurum",
+    "precision": 18,
+    "color": "#B08D22",
+    "icon": "https://assets.coingecko.com/coins/images/20226/thumb/7f7e57.jpeg?1696519635",
+    "symbol": "DCAU",
+    "explorer": "https://snowtrace.dev",
+    "explorerAddressLink": "https://snowtrace.dev/address/",
+    "explorerTxLink": "https://snowtrace.dev/tx/"
+  },
+  "eip155:43114/erc20:0x107d2b7c619202d994a4d044c762dd6f8e0c5326": {
+    "assetId": "eip155:43114/erc20:0x107d2b7c619202d994a4d044c762dd6f8e0c5326",
+    "chainId": "eip155:43114",
+    "name": "Flair Dex",
+    "precision": 18,
+    "color": "#111004",
+    "icon": "https://assets.coingecko.com/coins/images/29949/thumb/Frame_481586.png?1696528875",
+    "symbol": "FLDX",
+    "explorer": "https://snowtrace.dev",
+    "explorerAddressLink": "https://snowtrace.dev/address/",
+    "explorerTxLink": "https://snowtrace.dev/tx/"
+  },
+  "eip155:43114/erc20:0x111111111111ed1d73f860f57b2798b683f2d325": {
+    "assetId": "eip155:43114/erc20:0x111111111111ed1d73f860f57b2798b683f2d325",
+    "chainId": "eip155:43114",
+    "name": "YUSD Stablecoin",
+    "precision": 18,
+    "color": "#DCEDF8",
+    "icon": "https://assets.coingecko.com/coins/images/25024/thumb/1_oJ0F2Zf6CuAhLP0zOboo6w.png?1696524176",
+    "symbol": "YUSD",
+    "explorer": "https://snowtrace.dev",
+    "explorerAddressLink": "https://snowtrace.dev/address/",
+    "explorerTxLink": "https://snowtrace.dev/tx/"
+  },
+  "eip155:43114/erc20:0x11d6dd25c1695764e64f439e32cc7746f3945543": {
+    "assetId": "eip155:43114/erc20:0x11d6dd25c1695764e64f439e32cc7746f3945543",
+    "chainId": "eip155:43114",
+    "name": "Soul Swap",
+    "precision": 18,
+    "color": "#9768E0",
+    "icon": "https://assets.coingecko.com/coins/images/18581/thumb/soul.jpg?1696518058",
+    "symbol": "SOUL",
+    "explorer": "https://snowtrace.dev",
+    "explorerAddressLink": "https://snowtrace.dev/address/",
+    "explorerTxLink": "https://snowtrace.dev/tx/"
+  },
+  "eip155:43114/erc20:0x12d8ce035c5de3ce39b1fdd4c1d5a745eaba3b8c": {
+    "assetId": "eip155:43114/erc20:0x12d8ce035c5de3ce39b1fdd4c1d5a745eaba3b8c",
+    "chainId": "eip155:43114",
+    "name": "Ankr Staked ETH on Avalanche",
+    "precision": 18,
+    "color": "#FBEA1C",
+    "icon": "https://assets.coingecko.com/coins/images/13403/thumb/aETHc.png?1696513165",
+    "symbol": "ANKRETH",
+    "explorer": "https://snowtrace.dev",
+    "explorerAddressLink": "https://snowtrace.dev/address/",
+    "explorerTxLink": "https://snowtrace.dev/tx/"
+  },
+  "eip155:43114/erc20:0x130966628846bfd36ff31a822705796e8cb8c18d": {
+    "assetId": "eip155:43114/erc20:0x130966628846bfd36ff31a822705796e8cb8c18d",
+    "chainId": "eip155:43114",
+    "name": "Magic Internet Money on Avalanche",
+    "precision": 18,
+    "color": "#5958FC",
+    "icon": "https://assets.coingecko.com/coins/images/16786/thumb/mimlogopng.png?1696516358",
+    "symbol": "MIM",
+    "explorer": "https://snowtrace.dev",
+    "explorerAddressLink": "https://snowtrace.dev/address/",
+    "explorerTxLink": "https://snowtrace.dev/tx/"
+  },
+  "eip155:43114/erc20:0x1337bedc9d22ecbe766df105c9623922a27963ec": {
+    "assetId": "eip155:43114/erc20:0x1337bedc9d22ecbe766df105c9623922a27963ec",
+    "chainId": "eip155:43114",
+    "name": "LP 3pool Curve on Avalanche",
+    "precision": 18,
+    "color": "#18E87A",
+    "icon": "https://assets.coingecko.com/coins/images/12972/thumb/3pool_128.png?1696512759",
+    "symbol": "3CRV",
+    "explorer": "https://snowtrace.dev",
+    "explorerAddressLink": "https://snowtrace.dev/address/",
+    "explorerTxLink": "https://snowtrace.dev/tx/"
+  },
+  "eip155:43114/erc20:0x14eb40fb7900185c01adc6a5b8ac506d8a600e3c": {
+    "assetId": "eip155:43114/erc20:0x14eb40fb7900185c01adc6a5b8ac506d8a600e3c",
+    "chainId": "eip155:43114",
+    "name": "Token Teknoloji A    EURO on Avalanche",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/32816/thumb/eurot.png?1699579428",
+    "symbol": "EUROT",
+    "explorer": "https://snowtrace.dev",
+    "explorerAddressLink": "https://snowtrace.dev/address/",
+    "explorerTxLink": "https://snowtrace.dev/tx/"
+  },
+  "eip155:43114/erc20:0x152b9d0fdc40c096757f570a51e494bd4b943e50": {
+    "assetId": "eip155:43114/erc20:0x152b9d0fdc40c096757f570a51e494bd4b943e50",
+    "chainId": "eip155:43114",
+    "name": "Bitcoin Avalanche Bridged  BTC b  on Avalanche",
+    "precision": 8,
+    "color": "#F4941B",
+    "icon": "https://assets.coingecko.com/coins/images/26115/thumb/btcb.png?1696525205",
+    "symbol": "BTCB",
+    "explorer": "https://snowtrace.dev",
+    "explorerAddressLink": "https://snowtrace.dev/address/",
+    "explorerTxLink": "https://snowtrace.dev/tx/"
+  },
+  "eip155:43114/erc20:0x18706c65b12595edb43643214eacdb4f618dd166": {
+    "assetId": "eip155:43114/erc20:0x18706c65b12595edb43643214eacdb4f618dd166",
+    "chainId": "eip155:43114",
+    "name": "BayMax Finance",
+    "precision": 18,
+    "color": "#D82C3E",
+    "icon": "https://assets.coingecko.com/coins/images/28757/thumb/BayMax_Logo.jpg?1696527736",
+    "symbol": "BAY",
+    "explorer": "https://snowtrace.dev",
+    "explorerAddressLink": "https://snowtrace.dev/address/",
+    "explorerTxLink": "https://snowtrace.dev/tx/"
+  },
+  "eip155:43114/erc20:0x191c10aa4af7c30e871e70c95db0e4eb77237530": {
+    "assetId": "eip155:43114/erc20:0x191c10aa4af7c30e871e70c95db0e4eb77237530",
+    "chainId": "eip155:43114",
+    "name": "Aave v3 LINK on Avalanche",
+    "precision": 18,
+    "color": "#9E64A6",
+    "icon": "https://assets.coingecko.com/coins/images/32888/thumb/link.png?1699773900",
+    "symbol": "ALINK",
+    "explorer": "https://snowtrace.dev",
+    "explorerAddressLink": "https://snowtrace.dev/address/",
+    "explorerTxLink": "https://snowtrace.dev/tx/"
+  },
+  "eip155:43114/erc20:0x1a3264f2e7b1cfc6220ec9348d33ccf02af7aaa4": {
+    "assetId": "eip155:43114/erc20:0x1a3264f2e7b1cfc6220ec9348d33ccf02af7aaa4",
+    "chainId": "eip155:43114",
+    "name": "Dypius on Avalanche",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/33016/thumb/RS-zDhFE_400x400.jpg?1700157370",
+    "symbol": "DYP",
+    "explorer": "https://snowtrace.dev",
+    "explorerAddressLink": "https://snowtrace.dev/address/",
+    "explorerTxLink": "https://snowtrace.dev/tx/"
+  },
+  "eip155:43114/erc20:0x1affbc17938a25d245e1b7ec6f2fc949df8e9760": {
+    "assetId": "eip155:43114/erc20:0x1affbc17938a25d245e1b7ec6f2fc949df8e9760",
+    "chainId": "eip155:43114",
+    "name": "Paper on Avalanche",
+    "precision": 18,
+    "color": "#04C754",
+    "icon": "https://assets.coingecko.com/coins/images/23510/thumb/v3PAPERLogo-01.png?1696522719",
+    "symbol": "PAPER",
+    "explorer": "https://snowtrace.dev",
+    "explorerAddressLink": "https://snowtrace.dev/address/",
+    "explorerTxLink": "https://snowtrace.dev/tx/"
+  },
+  "eip155:43114/erc20:0x1b88d7ad51626044ec62ef9803ea264da4442f32": {
+    "assetId": "eip155:43114/erc20:0x1b88d7ad51626044ec62ef9803ea264da4442f32",
+    "chainId": "eip155:43114",
+    "name": "ZooKeeper",
+    "precision": 18,
+    "color": "#04948C",
+    "icon": "https://assets.coingecko.com/coins/images/18028/thumb/1mPofbU.png?1696517543",
+    "symbol": "ZOO",
+    "explorer": "https://snowtrace.dev",
+    "explorerAddressLink": "https://snowtrace.dev/address/",
+    "explorerTxLink": "https://snowtrace.dev/tx/"
+  },
+  "eip155:43114/erc20:0x1c1cdf8928824dac36d84b3486d598b9799ba6c0": {
+    "assetId": "eip155:43114/erc20:0x1c1cdf8928824dac36d84b3486d598b9799ba6c0",
+    "chainId": "eip155:43114",
+    "name": "aBASED",
+    "precision": 18,
+    "color": "#E6E2DE",
+    "icon": "https://assets.coingecko.com/coins/images/29528/thumb/based.png?1696528470",
+    "symbol": "ABASED",
+    "explorer": "https://snowtrace.dev",
+    "explorerAddressLink": "https://snowtrace.dev/address/",
+    "explorerTxLink": "https://snowtrace.dev/tx/"
+  },
+  "eip155:43114/erc20:0x1c20e891bab6b1727d14da358fae2984ed9b59eb": {
+    "assetId": "eip155:43114/erc20:0x1c20e891bab6b1727d14da358fae2984ed9b59eb",
+    "chainId": "eip155:43114",
+    "name": "TrueUSD on Avalanche",
+    "precision": 18,
+    "color": "#1C5BFC",
+    "icon": "https://assets.coingecko.com/coins/images/3449/thumb/tusd.png?1696504140",
+    "symbol": "TUSD",
+    "explorer": "https://snowtrace.dev",
+    "explorerAddressLink": "https://snowtrace.dev/address/",
+    "explorerTxLink": "https://snowtrace.dev/tx/"
+  },
+  "eip155:43114/erc20:0x1db749847c4abb991d8b6032102383e6bfd9b1c7": {
+    "assetId": "eip155:43114/erc20:0x1db749847c4abb991d8b6032102383e6bfd9b1c7",
+    "chainId": "eip155:43114",
+    "name": "Dogeon",
+    "precision": 18,
+    "color": "#B58960",
+    "icon": "https://assets.coingecko.com/coins/images/22647/thumb/0CHCbFtm_400x400.jpg?1696521960",
+    "symbol": "DON",
+    "explorer": "https://snowtrace.dev",
+    "explorerAddressLink": "https://snowtrace.dev/address/",
+    "explorerTxLink": "https://snowtrace.dev/tx/"
+  },
+  "eip155:43114/erc20:0x1e2c4fb7ede391d116e6b41cd0608260e8801d59": {
+    "assetId": "eip155:43114/erc20:0x1e2c4fb7ede391d116e6b41cd0608260e8801d59",
+    "chainId": "eip155:43114",
+    "name": "Backed CSPX Core S P 500 on Avalanche",
+    "precision": 18,
+    "color": "#CCCCD2",
+    "icon": "https://assets.coingecko.com/coins/images/31891/thumb/b-CSPX-200x200.png?1696530702",
+    "symbol": "BCSPX",
+    "explorer": "https://snowtrace.dev",
+    "explorerAddressLink": "https://snowtrace.dev/address/",
+    "explorerTxLink": "https://snowtrace.dev/tx/"
+  },
+  "eip155:43114/erc20:0x1e3c6c53f9f60bf8aae0d7774c21fa6b1afddc57": {
+    "assetId": "eip155:43114/erc20:0x1e3c6c53f9f60bf8aae0d7774c21fa6b1afddc57",
+    "chainId": "eip155:43114",
+    "name": "xShrap on Avalanche",
+    "precision": 18,
+    "color": "#0474E2",
+    "icon": "https://assets.coingecko.com/coins/images/29346/thumb/xshrapnel.png?1696528295",
+    "symbol": "XSHRAP",
+    "explorer": "https://snowtrace.dev",
+    "explorerAddressLink": "https://snowtrace.dev/address/",
+    "explorerTxLink": "https://snowtrace.dev/tx/"
+  },
+  "eip155:43114/erc20:0x1ecd47ff4d9598f89721a2866bfeb99505a413ed": {
+    "assetId": "eip155:43114/erc20:0x1ecd47ff4d9598f89721a2866bfeb99505a413ed",
+    "chainId": "eip155:43114",
+    "name": "AVME",
+    "precision": 18,
+    "color": "#D66982",
+    "icon": "https://assets.coingecko.com/coins/images/17184/thumb/avme_logo.png?1696516742",
+    "symbol": "AVME",
+    "explorer": "https://snowtrace.dev",
+    "explorerAddressLink": "https://snowtrace.dev/address/",
+    "explorerTxLink": "https://snowtrace.dev/tx/"
+  },
+  "eip155:43114/erc20:0x1f1e7c893855525b303f99bdf5c3c05be09ca251": {
+    "assetId": "eip155:43114/erc20:0x1f1e7c893855525b303f99bdf5c3c05be09ca251",
+    "chainId": "eip155:43114",
+    "name": "Synapse on Avalanche",
+    "precision": 18,
+    "color": "#19152F",
+    "icon": "https://assets.coingecko.com/coins/images/18024/thumb/synapse_social_icon.png?1696517540",
+    "symbol": "SYN",
+    "explorer": "https://snowtrace.dev",
+    "explorerAddressLink": "https://snowtrace.dev/address/",
+    "explorerTxLink": "https://snowtrace.dev/tx/"
+  },
+  "eip155:43114/erc20:0x1fe70939c2cec8f31e8f7729442658586b469972": {
+    "assetId": "eip155:43114/erc20:0x1fe70939c2cec8f31e8f7729442658586b469972",
+    "chainId": "eip155:43114",
+    "name": "GMD on Avalanche",
+    "precision": 18,
+    "color": "#3D8BE4",
+    "icon": "https://assets.coingecko.com/coins/images/28088/thumb/gmd.png?1696527098",
+    "symbol": "GMD",
+    "explorer": "https://snowtrace.dev",
+    "explorerAddressLink": "https://snowtrace.dev/address/",
+    "explorerTxLink": "https://snowtrace.dev/tx/"
+  },
+  "eip155:43114/erc20:0x20c64dee8fda5269a78f2d5bdba861ca1d83df7a": {
+    "assetId": "eip155:43114/erc20:0x20c64dee8fda5269a78f2d5bdba861ca1d83df7a",
+    "chainId": "eip155:43114",
+    "name": "Backed HIGH   High Yield Corp Bond on Avalanche",
+    "precision": 18,
+    "color": "#474C57",
+    "icon": "https://assets.coingecko.com/coins/images/31868/thumb/b-HIGH-200x200.png?1696530680",
+    "symbol": "BHIGH",
+    "explorer": "https://snowtrace.dev",
+    "explorerAddressLink": "https://snowtrace.dev/address/",
+    "explorerTxLink": "https://snowtrace.dev/tx/"
+  },
+  "eip155:43114/erc20:0x2147efff675e4a4ee1c2f918d181cdbd7a8e208f": {
+    "assetId": "eip155:43114/erc20:0x2147efff675e4a4ee1c2f918d181cdbd7a8e208f",
+    "chainId": "eip155:43114",
+    "name": "Stella on Avalanche",
+    "precision": 18,
+    "color": "#BDC5DD",
+    "icon": "https://assets.coingecko.com/coins/images/12738/thumb/Stella200x200-06.png?1696512537",
+    "symbol": "ALPHA",
+    "explorer": "https://snowtrace.dev",
+    "explorerAddressLink": "https://snowtrace.dev/address/",
+    "explorerTxLink": "https://snowtrace.dev/tx/"
+  },
+  "eip155:43114/erc20:0x214db107654ff987ad859f34125307783fc8e387": {
+    "assetId": "eip155:43114/erc20:0x214db107654ff987ad859f34125307783fc8e387",
+    "chainId": "eip155:43114",
+    "name": "Frax Share on Avalanche",
+    "precision": 18,
+    "color": "#040404",
+    "icon": "https://assets.coingecko.com/coins/images/13423/thumb/Frax_Shares_icon.png?1696513183",
+    "symbol": "FXS",
+    "explorer": "https://snowtrace.dev",
+    "explorerAddressLink": "https://snowtrace.dev/address/",
+    "explorerTxLink": "https://snowtrace.dev/tx/"
+  },
+  "eip155:43114/erc20:0x228a48df6819ccc2eca01e2192ebafffdad56c19": {
+    "assetId": "eip155:43114/erc20:0x228a48df6819ccc2eca01e2192ebafffdad56c19",
+    "chainId": "eip155:43114",
+    "name": "VNX Swiss Franc on Avalanche",
+    "precision": 18,
+    "color": "#E3D693",
+    "icon": "https://assets.coingecko.com/coins/images/29547/thumb/VNXCHF_%282%29.png?1696528488",
+    "symbol": "VCHF",
+    "explorer": "https://snowtrace.dev",
+    "explorerAddressLink": "https://snowtrace.dev/address/",
+    "explorerTxLink": "https://snowtrace.dev/tx/"
+  },
+  "eip155:43114/erc20:0x22d4002028f537599be9f666d1c4fa138522f9c8": {
+    "assetId": "eip155:43114/erc20:0x22d4002028f537599be9f666d1c4fa138522f9c8",
+    "chainId": "eip155:43114",
+    "name": "Platypus Finance",
+    "precision": 18,
+    "color": "#22899C",
+    "icon": "https://assets.coingecko.com/coins/images/21724/thumb/7r2U_2Ig_400x400.jpg?1696521079",
+    "symbol": "PTP",
+    "explorer": "https://snowtrace.dev",
+    "explorerAddressLink": "https://snowtrace.dev/address/",
+    "explorerTxLink": "https://snowtrace.dev/tx/"
+  },
+  "eip155:43114/erc20:0x23f07a1c03e7c6d0c88e0e05e79b6e3511073fd5": {
+    "assetId": "eip155:43114/erc20:0x23f07a1c03e7c6d0c88e0e05e79b6e3511073fd5",
+    "chainId": "eip155:43114",
+    "name": "Crypto Development Services on Avalanche",
+    "precision": 8,
+    "color": "#996818",
+    "icon": "https://assets.coingecko.com/coins/images/21304/thumb/JhUZ3Rk.png?1696520673",
+    "symbol": "CDS",
+    "explorer": "https://snowtrace.dev",
+    "explorerAddressLink": "https://snowtrace.dev/address/",
+    "explorerTxLink": "https://snowtrace.dev/tx/"
+  },
+  "eip155:43114/erc20:0x240248628b7b6850352764c5dfa50d1592a033a8": {
+    "assetId": "eip155:43114/erc20:0x240248628b7b6850352764c5dfa50d1592a033a8",
+    "chainId": "eip155:43114",
+    "name": "Swapsicle",
+    "precision": 18,
+    "color": "#0C1423",
+    "icon": "https://assets.coingecko.com/coins/images/25864/thumb/Swapsicle-Icon_DarkCircle.png?1696524948",
+    "symbol": "POPS",
+    "explorer": "https://snowtrace.dev",
+    "explorerAddressLink": "https://snowtrace.dev/address/",
+    "explorerTxLink": "https://snowtrace.dev/tx/"
+  },
+  "eip155:43114/erc20:0x250bdca7d1845cd543bb55e7d82dca24d48e9f0f": {
+    "assetId": "eip155:43114/erc20:0x250bdca7d1845cd543bb55e7d82dca24d48e9f0f",
+    "chainId": "eip155:43114",
+    "name": "Dragon Crypto Argenti",
+    "precision": 18,
+    "color": "#BABABA",
+    "icon": "https://assets.coingecko.com/coins/images/26613/thumb/dcar%283%29.png?1696525687",
+    "symbol": "DCAR",
+    "explorer": "https://snowtrace.dev",
+    "explorerAddressLink": "https://snowtrace.dev/address/",
+    "explorerTxLink": "https://snowtrace.dev/tx/"
+  },
+  "eip155:43114/erc20:0x264c1383ea520f73dd837f915ef3a732e204a493": {
+    "assetId": "eip155:43114/erc20:0x264c1383ea520f73dd837f915ef3a732e204a493",
+    "chainId": "eip155:43114",
+    "name": "Wrapped BNB on Avalanche",
+    "precision": 18,
+    "color": "#F4BC2C",
+    "icon": "https://assets.coingecko.com/coins/images/12591/thumb/binance-coin-logo.png?1696512401",
+    "symbol": "WBNB",
+    "explorer": "https://snowtrace.dev",
+    "explorerAddressLink": "https://snowtrace.dev/address/",
+    "explorerTxLink": "https://snowtrace.dev/tx/"
+  },
+  "eip155:43114/erc20:0x2905d6d6957983d9ed73bc019ff2782c39dd7a49": {
+    "assetId": "eip155:43114/erc20:0x2905d6d6957983d9ed73bc019ff2782c39dd7a49",
+    "chainId": "eip155:43114",
+    "name": "Snake City",
+    "precision": 18,
+    "color": "#426DB0",
+    "icon": "https://assets.coingecko.com/coins/images/27331/thumb/02-38-02-LogoFooter_%281%29.png?1696526379",
+    "symbol": "SNCT",
+    "explorer": "https://snowtrace.dev",
+    "explorerAddressLink": "https://snowtrace.dev/address/",
+    "explorerTxLink": "https://snowtrace.dev/tx/"
+  },
+  "eip155:43114/erc20:0x2b2c81e08f1af8835a78bb2a90ae924ace0ea4be": {
+    "assetId": "eip155:43114/erc20:0x2b2c81e08f1af8835a78bb2a90ae924ace0ea4be",
+    "chainId": "eip155:43114",
+    "name": "BENQI Liquid Staked AVAX",
+    "precision": 18,
+    "color": "#06B4EC",
+    "icon": "https://assets.coingecko.com/coins/images/23657/thumb/savax_blue.png?1696522860",
+    "symbol": "SAVAX",
+    "explorer": "https://snowtrace.dev",
+    "explorerAddressLink": "https://snowtrace.dev/address/",
+    "explorerTxLink": "https://snowtrace.dev/tx/"
+  },
+  "eip155:43114/erc20:0x2cf51e73c3516f3d86e9c0b4de0971dbf0766fd4": {
+    "assetId": "eip155:43114/erc20:0x2cf51e73c3516f3d86e9c0b4de0971dbf0766fd4",
+    "chainId": "eip155:43114",
+    "name": "Blockzero Labs on Avalanche",
+    "precision": 18,
+    "color": "#88F8B8",
+    "icon": "https://assets.coingecko.com/coins/images/10029/thumb/blockzero.jpg?1696510062",
+    "symbol": "XIO",
+    "explorer": "https://snowtrace.dev",
+    "explorerAddressLink": "https://snowtrace.dev/address/",
+    "explorerTxLink": "https://snowtrace.dev/tx/"
+  },
+  "eip155:43114/erc20:0x2f11eeee0bf21e7661a22dbbbb9068f4ad191b86": {
+    "assetId": "eip155:43114/erc20:0x2f11eeee0bf21e7661a22dbbbb9068f4ad191b86",
+    "chainId": "eip155:43114",
+    "name": "Backed NIU Technologies on Avalanche",
+    "precision": 18,
+    "color": "#EC8898",
+    "icon": "https://assets.coingecko.com/coins/images/31869/thumb/b-NIU-200x200.png?1696530681",
+    "symbol": "BNIU",
+    "explorer": "https://snowtrace.dev",
+    "explorerAddressLink": "https://snowtrace.dev/address/",
+    "explorerTxLink": "https://snowtrace.dev/tx/"
+  },
+  "eip155:43114/erc20:0x2f123cf3f37ce3328cc9b5b8415f9ec5109b45e7": {
+    "assetId": "eip155:43114/erc20:0x2f123cf3f37ce3328cc9b5b8415f9ec5109b45e7",
+    "chainId": "eip155:43114",
+    "name": "Backed GOVIES 0 6 months EURO on Avalanche",
+    "precision": 18,
+    "color": "#ADB4B6",
+    "icon": "https://assets.coingecko.com/coins/images/31870/thumb/b-C3-M-200x200.png?1696530682",
+    "symbol": "BC3M",
+    "explorer": "https://snowtrace.dev",
+    "explorerAddressLink": "https://snowtrace.dev/address/",
+    "explorerTxLink": "https://snowtrace.dev/tx/"
+  },
+  "eip155:43114/erc20:0x2f5de51823e514de04475ba8db1eeba5b244ba84": {
+    "assetId": "eip155:43114/erc20:0x2f5de51823e514de04475ba8db1eeba5b244ba84",
+    "chainId": "eip155:43114",
+    "name": "Token Teknoloji A    USD on Avalanche",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/32817/thumb/usdot.png?1699579447",
+    "symbol": "USDOT",
+    "explorer": "https://snowtrace.dev",
+    "explorerAddressLink": "https://snowtrace.dev/address/",
+    "explorerTxLink": "https://snowtrace.dev/tx/"
+  },
+  "eip155:43114/erc20:0x2f6f07cdcf3588944bf4c42ac74ff24bf56e7590": {
+    "assetId": "eip155:43114/erc20:0x2f6f07cdcf3588944bf4c42ac74ff24bf56e7590",
+    "chainId": "eip155:43114",
+    "name": "Stargate Finance on Avalanche",
+    "precision": 18,
+    "color": "#8C8C8C",
+    "icon": "https://assets.coingecko.com/coins/images/24413/thumb/STG_LOGO.png?1696523595",
+    "symbol": "STG",
+    "explorer": "https://snowtrace.dev",
+    "explorerAddressLink": "https://snowtrace.dev/address/",
+    "explorerTxLink": "https://snowtrace.dev/tx/"
+  },
+  "eip155:43114/erc20:0x2f86508f41310d8d974b76deb3d246c0caa71cf5": {
+    "assetId": "eip155:43114/erc20:0x2f86508f41310d8d974b76deb3d246c0caa71cf5",
+    "chainId": "eip155:43114",
+    "name": "Hot Cross on Avalanche",
+    "precision": 18,
+    "color": "#A8CCCC",
+    "icon": "https://assets.coingecko.com/coins/images/15706/thumb/Hotcross.png?1696515334",
+    "symbol": "HOTCROSS",
+    "explorer": "https://snowtrace.dev",
+    "explorerAddressLink": "https://snowtrace.dev/address/",
+    "explorerTxLink": "https://snowtrace.dev/tx/"
+  },
+  "eip155:43114/erc20:0x2fd4d793c1905d82018d75e3b09d3035856890a1": {
+    "assetId": "eip155:43114/erc20:0x2fd4d793c1905d82018d75e3b09d3035856890a1",
+    "chainId": "eip155:43114",
+    "name": "Spherium on Avalanche",
+    "precision": 18,
+    "color": "#3F59F1",
+    "icon": "https://assets.coingecko.com/coins/images/17787/thumb/Group_15.png?1696517311",
+    "symbol": "SPHRI",
+    "explorer": "https://snowtrace.dev",
+    "explorerAddressLink": "https://snowtrace.dev/address/",
+    "explorerTxLink": "https://snowtrace.dev/tx/"
+  },
+  "eip155:43114/erc20:0x31c994ac062c1970c086260bc61babb708643fac": {
+    "assetId": "eip155:43114/erc20:0x31c994ac062c1970c086260bc61babb708643fac",
+    "chainId": "eip155:43114",
+    "name": "XANA on Avalanche",
+    "precision": 18,
+    "color": "#1A0557",
+    "icon": "https://assets.coingecko.com/coins/images/24379/thumb/XANA_Logo_neon_pink.png?1696523562",
+    "symbol": "XETA",
+    "explorer": "https://snowtrace.dev",
+    "explorerAddressLink": "https://snowtrace.dev/address/",
+    "explorerTxLink": "https://snowtrace.dev/tx/"
+  },
+  "eip155:43114/erc20:0x321e7092a180bb43555132ec53aaa65a5bf84251": {
+    "assetId": "eip155:43114/erc20:0x321e7092a180bb43555132ec53aaa65a5bf84251",
+    "chainId": "eip155:43114",
+    "name": "Governance OHM on Avalanche",
+    "precision": 18,
+    "color": "#859CA3",
+    "icon": "https://assets.coingecko.com/coins/images/21129/thumb/token_wsOHM_logo.png?1696520508",
+    "symbol": "GOHM",
+    "explorer": "https://snowtrace.dev",
+    "explorerAddressLink": "https://snowtrace.dev/address/",
+    "explorerTxLink": "https://snowtrace.dev/tx/"
+  },
+  "eip155:43114/erc20:0x323665443cef804a3b5206103304bd4872ea4253": {
+    "assetId": "eip155:43114/erc20:0x323665443cef804a3b5206103304bd4872ea4253",
+    "chainId": "eip155:43114",
+    "name": "Verified USD on Avalanche",
+    "precision": 6,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/32948/thumb/usdv_%281%29.png?1699933314",
+    "symbol": "USDV",
+    "explorer": "https://snowtrace.dev",
+    "explorerAddressLink": "https://snowtrace.dev/address/",
+    "explorerTxLink": "https://snowtrace.dev/tx/"
+  },
+  "eip155:43114/erc20:0x32975907733f93305be28e2bfd123666b7a9c863": {
+    "assetId": "eip155:43114/erc20:0x32975907733f93305be28e2bfd123666b7a9c863",
+    "chainId": "eip155:43114",
+    "name": "Ink Fantom on Avalanche",
+    "precision": 18,
+    "color": "#3A3B41",
+    "icon": "https://assets.coingecko.com/coins/images/23511/thumb/v3INKLogo-03.png?1696522720",
+    "symbol": "INK",
+    "explorer": "https://snowtrace.dev",
+    "explorerAddressLink": "https://snowtrace.dev/address/",
+    "explorerTxLink": "https://snowtrace.dev/tx/"
+  },
+  "eip155:43114/erc20:0x333000333b26ee30214b4af6419d9ab07a450400": {
+    "assetId": "eip155:43114/erc20:0x333000333b26ee30214b4af6419d9ab07a450400",
+    "chainId": "eip155:43114",
+    "name": "MELD on Avalanche",
+    "precision": 18,
+    "color": "#DD1D49",
+    "icon": "https://assets.coingecko.com/coins/images/30170/thumb/Twitter.jpg?1696529090",
+    "symbol": "MELD",
+    "explorer": "https://snowtrace.dev",
+    "explorerAddressLink": "https://snowtrace.dev/address/",
+    "explorerTxLink": "https://snowtrace.dev/tx/"
+  },
+  "eip155:43114/erc20:0x33333ee26a7d02e41c33828b42fb1e0889143477": {
+    "assetId": "eip155:43114/erc20:0x33333ee26a7d02e41c33828b42fb1e0889143477",
+    "chainId": "eip155:43114",
+    "name": "Topshelf Finance on Avalanche",
+    "precision": 18,
+    "color": "#959AF8",
+    "icon": "https://assets.coingecko.com/coins/images/21580/thumb/b-MDs-Uqg-Q-400x400.jpg?1696520940",
+    "symbol": "LIQR",
+    "explorer": "https://snowtrace.dev",
+    "explorerAddressLink": "https://snowtrace.dev/address/",
+    "explorerTxLink": "https://snowtrace.dev/tx/"
+  },
+  "eip155:43114/erc20:0x346a59146b9b4a77100d369a3d18e8007a9f46a6": {
+    "assetId": "eip155:43114/erc20:0x346a59146b9b4a77100d369a3d18e8007a9f46a6",
+    "chainId": "eip155:43114",
+    "name": "Orca AVAI",
+    "precision": 18,
+    "color": "#2BAA94",
+    "icon": "https://assets.coingecko.com/coins/images/18859/thumb/ic_orca.png?1696518319",
+    "symbol": "AVAI",
+    "explorer": "https://snowtrace.dev",
+    "explorerAddressLink": "https://snowtrace.dev/address/",
+    "explorerTxLink": "https://snowtrace.dev/tx/"
+  },
+  "eip155:43114/erc20:0x3709e8615e02c15b096f8a9b460ccb8ca8194e86": {
+    "assetId": "eip155:43114/erc20:0x3709e8615e02c15b096f8a9b460ccb8ca8194e86",
+    "chainId": "eip155:43114",
+    "name": "Vee Finance",
+    "precision": 18,
+    "color": "#ED7E2A",
+    "icon": "https://assets.coingecko.com/coins/images/18418/thumb/logo_-_2021-09-17T100305.788.png?1696517907",
+    "symbol": "VEE",
+    "explorer": "https://snowtrace.dev",
+    "explorerAddressLink": "https://snowtrace.dev/address/",
+    "explorerTxLink": "https://snowtrace.dev/tx/"
+  },
+  "eip155:43114/erc20:0x3712871408a829c5cd4e86da1f4ce727efcd28f6": {
+    "assetId": "eip155:43114/erc20:0x3712871408a829c5cd4e86da1f4ce727efcd28f6",
+    "chainId": "eip155:43114",
+    "name": "Glacier",
+    "precision": 18,
+    "color": "#0B090B",
+    "icon": "https://assets.coingecko.com/coins/images/29803/thumb/glacier.PNG?1696528732",
+    "symbol": "GLCR",
+    "explorer": "https://snowtrace.dev",
+    "explorerAddressLink": "https://snowtrace.dev/address/",
+    "explorerTxLink": "https://snowtrace.dev/tx/"
+  },
+  "eip155:43114/erc20:0x37b608519f91f70f2eeb0e5ed9af4061722e4f76": {
+    "assetId": "eip155:43114/erc20:0x37b608519f91f70f2eeb0e5ed9af4061722e4f76",
+    "chainId": "eip155:43114",
+    "name": "Sushi on Avalanche",
+    "precision": 18,
+    "color": "#161129",
+    "icon": "https://assets.coingecko.com/coins/images/12271/thumb/512x512_Logo_no_chop.png?1696512101",
+    "symbol": "SUSHI",
+    "explorer": "https://snowtrace.dev",
+    "explorerAddressLink": "https://snowtrace.dev/address/",
+    "explorerTxLink": "https://snowtrace.dev/tx/"
+  },
+  "eip155:43114/erc20:0x37f44b98316ad2815357113aebe0459029543e1e": {
+    "assetId": "eip155:43114/erc20:0x37f44b98316ad2815357113aebe0459029543e1e",
+    "chainId": "eip155:43114",
+    "name": "AvaDex Token",
+    "precision": 18,
+    "color": "#DFCA0E",
+    "icon": "https://assets.coingecko.com/coins/images/28393/thumb/IMG_20221129_125713_361.png?1696527392",
+    "symbol": "AVEX",
+    "explorer": "https://snowtrace.dev",
+    "explorerAddressLink": "https://snowtrace.dev/address/",
+    "explorerTxLink": "https://snowtrace.dev/tx/"
+  },
+  "eip155:43114/erc20:0x38dcf0532699b880e6a125f7d918380524cd60a6": {
+    "assetId": "eip155:43114/erc20:0x38dcf0532699b880e6a125f7d918380524cd60a6",
+    "chainId": "eip155:43114",
+    "name": "Hummingbot on Avalanche",
+    "precision": 18,
+    "color": "#E4E9E6",
+    "icon": "https://assets.coingecko.com/coins/images/21717/thumb/PDPuf0tJ_400x400.jpg?1696521072",
+    "symbol": "HBOT",
+    "explorer": "https://snowtrace.dev",
+    "explorerAddressLink": "https://snowtrace.dev/address/",
+    "explorerTxLink": "https://snowtrace.dev/tx/"
+  },
+  "eip155:43114/erc20:0x395908aeb53d33a9b8ac35e148e9805d34a555d3": {
+    "assetId": "eip155:43114/erc20:0x395908aeb53d33a9b8ac35e148e9805d34a555d3",
+    "chainId": "eip155:43114",
+    "name": "Walrus",
+    "precision": 18,
+    "color": "#495C86",
+    "icon": "https://assets.coingecko.com/coins/images/25865/thumb/1.png?1696524949",
+    "symbol": "WLRS",
+    "explorer": "https://snowtrace.dev",
+    "explorerAddressLink": "https://snowtrace.dev/address/",
+    "explorerTxLink": "https://snowtrace.dev/tx/"
+  },
+  "eip155:43114/erc20:0x397bbd6a0e41bdf4c3f971731e180db8ad06ebc1": {
+    "assetId": "eip155:43114/erc20:0x397bbd6a0e41bdf4c3f971731e180db8ad06ebc1",
+    "chainId": "eip155:43114",
+    "name": "Avaxtars",
+    "precision": 6,
+    "color": "#BE2131",
+    "icon": "https://assets.coingecko.com/coins/images/18336/thumb/avxt.PNG?1696517826",
+    "symbol": "AVXT",
+    "explorer": "https://snowtrace.dev",
+    "explorerAddressLink": "https://snowtrace.dev/address/",
+    "explorerTxLink": "https://snowtrace.dev/tx/"
+  },
+  "eip155:43114/erc20:0x39fc9e94caeacb435842fadedecb783589f50f5f": {
+    "assetId": "eip155:43114/erc20:0x39fc9e94caeacb435842fadedecb783589f50f5f",
+    "chainId": "eip155:43114",
+    "name": "Kyber Network Crystal on Avalanche",
+    "precision": 18,
+    "color": "#CFF1EF",
+    "icon": "https://assets.coingecko.com/coins/images/14899/thumb/RwdVsGcw_400x400.jpg?1696514562",
+    "symbol": "KNC",
+    "explorer": "https://snowtrace.dev",
+    "explorerAddressLink": "https://snowtrace.dev/address/",
+    "explorerTxLink": "https://snowtrace.dev/tx/"
+  },
+  "eip155:43114/erc20:0x3ab1c9adb065f3fca0059652cd7a52b05c98f9a9": {
+    "assetId": "eip155:43114/erc20:0x3ab1c9adb065f3fca0059652cd7a52b05c98f9a9",
+    "chainId": "eip155:43114",
+    "name": "Orbs on Avalanche",
+    "precision": 18,
+    "color": "#6E809F",
+    "icon": "https://assets.coingecko.com/coins/images/4630/thumb/Orbs.jpg?1696505200",
+    "symbol": "ORBS",
+    "explorer": "https://snowtrace.dev",
+    "explorerAddressLink": "https://snowtrace.dev/address/",
+    "explorerTxLink": "https://snowtrace.dev/tx/"
+  },
+  "eip155:43114/erc20:0x3b55e45fd6bd7d4724f5c47e0d1bcaedd059263e": {
+    "assetId": "eip155:43114/erc20:0x3b55e45fd6bd7d4724f5c47e0d1bcaedd059263e",
+    "chainId": "eip155:43114",
+    "name": "MAI on Avalanche",
+    "precision": 18,
+    "color": "#F1C5C5",
+    "icon": "https://assets.coingecko.com/coins/images/15264/thumb/mimatic-red.png?1696514916",
+    "symbol": "MIMATIC",
+    "explorer": "https://snowtrace.dev",
+    "explorerAddressLink": "https://snowtrace.dev/address/",
+    "explorerTxLink": "https://snowtrace.dev/tx/"
+  },
+  "eip155:43114/erc20:0x3bd2b1c7ed8d396dbb98ded3aebb41350a5b2339": {
+    "assetId": "eip155:43114/erc20:0x3bd2b1c7ed8d396dbb98ded3aebb41350a5b2339",
+    "chainId": "eip155:43114",
+    "name": "UMA on Avalanche",
+    "precision": 18,
+    "color": "#FCD2D2",
+    "icon": "https://assets.coingecko.com/coins/images/10951/thumb/UMA.png?1696510900",
+    "symbol": "UMA",
+    "explorer": "https://snowtrace.dev",
+    "explorerAddressLink": "https://snowtrace.dev/address/",
+    "explorerTxLink": "https://snowtrace.dev/tx/"
+  },
+  "eip155:43114/erc20:0x3ce2fcec09879af073b53bef5f4d04327a1bc032": {
+    "assetId": "eip155:43114/erc20:0x3ce2fcec09879af073b53bef5f4d04327a1bc032",
+    "chainId": "eip155:43114",
+    "name": "Hurricane NFT",
+    "precision": 18,
+    "color": "#2777BC",
+    "icon": "https://assets.coingecko.com/coins/images/24974/thumb/624fd8f9e5546b00017c915d_NHCT_icon_3x.png?1696524127",
+    "symbol": "NHCT",
+    "explorer": "https://snowtrace.dev",
+    "explorerAddressLink": "https://snowtrace.dev/address/",
+    "explorerTxLink": "https://snowtrace.dev/tx/"
+  },
+  "eip155:43114/erc20:0x3d8f74620857dd8ed6d0da02ceb13fd0ed8ba678": {
+    "assetId": "eip155:43114/erc20:0x3d8f74620857dd8ed6d0da02ceb13fd0ed8ba678",
+    "chainId": "eip155:43114",
+    "name": "OnX Finance on Avalanche",
+    "precision": 18,
+    "color": "#4B2DF9",
+    "icon": "https://assets.coingecko.com/coins/images/13445/thumb/onxlogo-1.png?1696513209",
+    "symbol": "ONX",
+    "explorer": "https://snowtrace.dev",
+    "explorerAddressLink": "https://snowtrace.dev/address/",
+    "explorerTxLink": "https://snowtrace.dev/tx/"
+  },
+  "eip155:43114/erc20:0x3eefb18003d033661f84e48360ebecd181a84709": {
+    "assetId": "eip155:43114/erc20:0x3eefb18003d033661f84e48360ebecd181a84709",
+    "chainId": "eip155:43114",
+    "name": "Islander",
+    "precision": 18,
+    "color": "#AADDFC",
+    "icon": "https://assets.coingecko.com/coins/images/22375/thumb/islander-new-logo.png?1696521719",
+    "symbol": "ISA",
+    "explorer": "https://snowtrace.dev",
+    "explorerAddressLink": "https://snowtrace.dev/address/",
+    "explorerTxLink": "https://snowtrace.dev/tx/"
+  },
+  "eip155:43114/erc20:0x4036f3d9c45a20f44f0b8b85dd6ca33005ff9654": {
+    "assetId": "eip155:43114/erc20:0x4036f3d9c45a20f44f0b8b85dd6ca33005ff9654",
+    "chainId": "eip155:43114",
+    "name": "Roobee on Avalanche",
+    "precision": 18,
+    "color": "#94D424",
+    "icon": "https://assets.coingecko.com/coins/images/8791/thumb/Group_11.png?1696508946",
+    "symbol": "ROOBEE",
+    "explorer": "https://snowtrace.dev",
+    "explorerAddressLink": "https://snowtrace.dev/address/",
+    "explorerTxLink": "https://snowtrace.dev/tx/"
+  },
+  "eip155:43114/erc20:0x42006ab57701251b580bdfc24778c43c9ff589a1": {
+    "assetId": "eip155:43114/erc20:0x42006ab57701251b580bdfc24778c43c9ff589a1",
+    "chainId": "eip155:43114",
+    "name": "EvoVerses",
+    "precision": 18,
+    "color": "#273435",
+    "icon": "https://assets.coingecko.com/coins/images/25088/thumb/evoToken.png?1696524239",
+    "symbol": "EVO",
+    "explorer": "https://snowtrace.dev",
+    "explorerAddressLink": "https://snowtrace.dev/address/",
+    "explorerTxLink": "https://snowtrace.dev/tx/"
+  },
+  "eip155:43114/erc20:0x431d5dff03120afa4bdf332c61a6e1766ef37bdb": {
+    "assetId": "eip155:43114/erc20:0x431d5dff03120afa4bdf332c61a6e1766ef37bdb",
+    "chainId": "eip155:43114",
+    "name": "JPY Coin on Avalanche",
+    "precision": 18,
+    "color": "#1E4B9F",
+    "icon": "https://assets.coingecko.com/coins/images/25971/thumb/2023jpyc.png?1696525049",
+    "symbol": "JPYC",
+    "explorer": "https://snowtrace.dev",
+    "explorerAddressLink": "https://snowtrace.dev/address/",
+    "explorerTxLink": "https://snowtrace.dev/tx/"
+  },
+  "eip155:43114/erc20:0x440abbf18c54b2782a4917b80a1746d3a2c2cce1": {
+    "assetId": "eip155:43114/erc20:0x440abbf18c54b2782a4917b80a1746d3a2c2cce1",
+    "chainId": "eip155:43114",
+    "name": "Shibavax",
+    "precision": 18,
+    "color": "#ECDBD6",
+    "icon": "https://assets.coingecko.com/coins/images/17913/thumb/Logo-outline-HD200.png?1699832471",
+    "symbol": "SHIBX",
+    "explorer": "https://snowtrace.dev",
+    "explorerAddressLink": "https://snowtrace.dev/address/",
+    "explorerTxLink": "https://snowtrace.dev/tx/"
+  },
+  "eip155:43114/erc20:0x444444444444c1a66f394025ac839a535246fcc8": {
+    "assetId": "eip155:43114/erc20:0x444444444444c1a66f394025ac839a535246fcc8",
+    "chainId": "eip155:43114",
+    "name": "Genius on Avalanche",
+    "precision": 9,
+    "color": "#0F073F",
+    "icon": "https://assets.coingecko.com/coins/images/28621/thumb/GENI200x200.png?1696527606",
+    "symbol": "GENI",
+    "explorer": "https://snowtrace.dev",
+    "explorerAddressLink": "https://snowtrace.dev/address/",
+    "explorerTxLink": "https://snowtrace.dev/tx/"
+  },
+  "eip155:43114/erc20:0x44754455564474a89358b2c2265883df993b12f0": {
+    "assetId": "eip155:43114/erc20:0x44754455564474a89358b2c2265883df993b12f0",
+    "chainId": "eip155:43114",
+    "name": "ZeroSwap on Avalanche",
+    "precision": 18,
+    "color": "#070748",
+    "icon": "https://assets.coingecko.com/coins/images/12861/thumb/logo.?1696512650",
+    "symbol": "ZEE",
+    "explorer": "https://snowtrace.dev",
+    "explorerAddressLink": "https://snowtrace.dev/address/",
+    "explorerTxLink": "https://snowtrace.dev/tx/"
+  },
+  "eip155:43114/erc20:0x449674b82f05d498e126dd6615a1057a9c088f2c": {
+    "assetId": "eip155:43114/erc20:0x449674b82f05d498e126dd6615a1057a9c088f2c",
+    "chainId": "eip155:43114",
+    "name": "Lost World",
+    "precision": 18,
+    "color": "#904689",
+    "icon": "https://assets.coingecko.com/coins/images/24921/thumb/logo.png?1696524077",
+    "symbol": "LOST",
+    "explorer": "https://snowtrace.dev",
+    "explorerAddressLink": "https://snowtrace.dev/address/",
+    "explorerTxLink": "https://snowtrace.dev/tx/"
+  },
+  "eip155:43114/erc20:0x44c784266cf024a60e8acf2427b9857ace194c5d": {
+    "assetId": "eip155:43114/erc20:0x44c784266cf024a60e8acf2427b9857ace194c5d",
+    "chainId": "eip155:43114",
+    "name": "Axelar on Avalanche",
+    "precision": 6,
+    "color": "#141414",
+    "icon": "https://assets.coingecko.com/coins/images/27277/thumb/V-65_xQ1_400x400.jpeg?1696526329",
+    "symbol": "AXL",
+    "explorer": "https://snowtrace.dev",
+    "explorerAddressLink": "https://snowtrace.dev/address/",
+    "explorerTxLink": "https://snowtrace.dev/tx/"
+  },
+  "eip155:43114/erc20:0x45c13620b55c35a5f539d26e88247011eb10fdbd": {
+    "assetId": "eip155:43114/erc20:0x45c13620b55c35a5f539d26e88247011eb10fdbd",
+    "chainId": "eip155:43114",
+    "name": "HurricaneSwap",
+    "precision": 18,
+    "color": "#DED6EC",
+    "icon": "https://assets.coingecko.com/coins/images/18912/thumb/hurricane.PNG?1696518369",
+    "symbol": "HCT",
+    "explorer": "https://snowtrace.dev",
+    "explorerAddressLink": "https://snowtrace.dev/address/",
+    "explorerTxLink": "https://snowtrace.dev/tx/"
+  },
+  "eip155:43114/erc20:0x48f88a3fe843ccb0b5003e70b4192c1d7448bef0": {
+    "assetId": "eip155:43114/erc20:0x48f88a3fe843ccb0b5003e70b4192c1d7448bef0",
+    "chainId": "eip155:43114",
+    "name": "Colony Avalanche Index",
+    "precision": 18,
+    "color": "#04164F",
+    "icon": "https://assets.coingecko.com/coins/images/27196/thumb/CAI_logo.png?1696526245",
+    "symbol": "CAI",
+    "explorer": "https://snowtrace.dev",
+    "explorerAddressLink": "https://snowtrace.dev/address/",
+    "explorerTxLink": "https://snowtrace.dev/tx/"
+  },
+  "eip155:43114/erc20:0x491a4eb4f1fc3bff8e1d2fc856a6a46663ad556f": {
+    "assetId": "eip155:43114/erc20:0x491a4eb4f1fc3bff8e1d2fc856a6a46663ad556f",
+    "chainId": "eip155:43114",
+    "name": "Brazilian Digital on Avalanche",
+    "precision": 4,
+    "color": "#160633",
+    "icon": "https://assets.coingecko.com/coins/images/8472/thumb/MicrosoftTeams-image_%286%29.png?1696508657",
+    "symbol": "BRZ",
+    "explorer": "https://snowtrace.dev",
+    "explorerAddressLink": "https://snowtrace.dev/address/",
+    "explorerTxLink": "https://snowtrace.dev/tx/"
+  },
+  "eip155:43114/erc20:0x49d5c2bdffac6ce2bfdb6640f4f80f226bc10bab": {
+    "assetId": "eip155:43114/erc20:0x49d5c2bdffac6ce2bfdb6640f4f80f226bc10bab",
+    "chainId": "eip155:43114",
+    "name": "WETH on Avalanche",
+    "precision": 18,
+    "color": "#393838",
+    "icon": "https://assets.coingecko.com/coins/images/2518/thumb/weth.png?1696503332",
+    "symbol": "WETH",
+    "explorer": "https://snowtrace.dev",
+    "explorerAddressLink": "https://snowtrace.dev/address/",
+    "explorerTxLink": "https://snowtrace.dev/tx/"
+  },
+  "eip155:43114/erc20:0x4bfc90322dd638f81f034517359bd447f8e0235a": {
+    "assetId": "eip155:43114/erc20:0x4bfc90322dd638f81f034517359bd447f8e0235a",
+    "chainId": "eip155:43114",
+    "name": "New Order on Avalanche",
+    "precision": 18,
+    "color": "#F4BC95",
+    "icon": "https://assets.coingecko.com/coins/images/21440/thumb/new-order-icon-256px.png?1696520803",
+    "symbol": "NEWO",
+    "explorer": "https://snowtrace.dev",
+    "explorerAddressLink": "https://snowtrace.dev/address/",
+    "explorerTxLink": "https://snowtrace.dev/tx/"
+  },
+  "eip155:43114/erc20:0x4c9b4e1ac6f24cde3660d5e4ef1ebf77c710c084": {
+    "assetId": "eip155:43114/erc20:0x4c9b4e1ac6f24cde3660d5e4ef1ebf77c710c084",
+    "chainId": "eip155:43114",
+    "name": "Lydia Finance",
+    "precision": 18,
+    "color": "#4D2487",
+    "icon": "https://assets.coingecko.com/coins/images/15195/thumb/512_pure_logo.png?1696514852",
+    "symbol": "LYD",
+    "explorer": "https://snowtrace.dev",
+    "explorerAddressLink": "https://snowtrace.dev/address/",
+    "explorerTxLink": "https://snowtrace.dev/tx/"
+  },
+  "eip155:43114/erc20:0x4e3642603a75528489c2d94f86e9507260d3c5a1": {
+    "assetId": "eip155:43114/erc20:0x4e3642603a75528489c2d94f86e9507260d3c5a1",
+    "chainId": "eip155:43114",
+    "name": "Juggernaut on Avalanche",
+    "precision": 18,
+    "color": "#443C2C",
+    "icon": "https://assets.coingecko.com/coins/images/12761/thumb/juggernaut_logo.png?1696512558",
+    "symbol": "JGN",
+    "explorer": "https://snowtrace.dev",
+    "explorerAddressLink": "https://snowtrace.dev/address/",
+    "explorerTxLink": "https://snowtrace.dev/tx/"
+  },
+  "eip155:43114/erc20:0x4fbf0429599460d327bd5f55625e30e4fc066095": {
+    "assetId": "eip155:43114/erc20:0x4fbf0429599460d327bd5f55625e30e4fc066095",
+    "chainId": "eip155:43114",
+    "name": "Teddy Dollar",
+    "precision": 18,
+    "color": "#CDD3CE",
+    "icon": "https://assets.coingecko.com/coins/images/18678/thumb/TSDfinalresize.png?1696518147",
+    "symbol": "TSD",
+    "explorer": "https://snowtrace.dev",
+    "explorerAddressLink": "https://snowtrace.dev/address/",
+    "explorerTxLink": "https://snowtrace.dev/tx/"
+  },
+  "eip155:43114/erc20:0x502580fc390606b47fc3b741d6d49909383c28a9": {
+    "assetId": "eip155:43114/erc20:0x502580fc390606b47fc3b741d6d49909383c28a9",
+    "chainId": "eip155:43114",
+    "name": "HatchyPocket on Avalanche",
+    "precision": 18,
+    "color": "#C39223",
+    "icon": "https://assets.coingecko.com/coins/images/27560/thumb/HATCHY_200x200_Logo.png?1696526595",
+    "symbol": "HATCHY",
+    "explorer": "https://snowtrace.dev",
+    "explorerAddressLink": "https://snowtrace.dev/address/",
+    "explorerTxLink": "https://snowtrace.dev/tx/"
+  },
+  "eip155:43114/erc20:0x5085434227ab73151fad2de546210cbc8663df96": {
+    "assetId": "eip155:43114/erc20:0x5085434227ab73151fad2de546210cbc8663df96",
+    "chainId": "eip155:43114",
+    "name": "Metaderby",
+    "precision": 18,
+    "color": "#976C10",
+    "icon": "https://assets.coingecko.com/coins/images/25242/thumb/metaderby.png?1696524383",
+    "symbol": "DBY",
+    "explorer": "https://snowtrace.dev",
+    "explorerAddressLink": "https://snowtrace.dev/address/",
+    "explorerTxLink": "https://snowtrace.dev/tx/"
+  },
+  "eip155:43114/erc20:0x50b7545627a5162f82a992c33b87adc75187b218": {
+    "assetId": "eip155:43114/erc20:0x50b7545627a5162f82a992c33b87adc75187b218",
+    "chainId": "eip155:43114",
+    "name": "Wrapped Bitcoin on Avalanche",
+    "precision": 8,
+    "color": "#ECE8E6",
+    "icon": "https://assets.coingecko.com/coins/images/7598/thumb/wrapped_bitcoin_wbtc.png?1696507857",
+    "symbol": "WBTC",
+    "explorer": "https://snowtrace.dev",
+    "explorerAddressLink": "https://snowtrace.dev/address/",
+    "explorerTxLink": "https://snowtrace.dev/tx/"
+  },
+  "eip155:43114/erc20:0x50c72103940d419fb64448f258f7eabba784f84b": {
+    "assetId": "eip155:43114/erc20:0x50c72103940d419fb64448f258f7eabba784f84b",
+    "chainId": "eip155:43114",
+    "name": "Deliq",
+    "precision": 16,
+    "color": "#121314",
+    "icon": "https://assets.coingecko.com/coins/images/24457/thumb/JT5SiYhr_400x400.jpg?1696523637",
+    "symbol": "DLQ",
+    "explorer": "https://snowtrace.dev",
+    "explorerAddressLink": "https://snowtrace.dev/address/",
+    "explorerTxLink": "https://snowtrace.dev/tx/"
+  },
+  "eip155:43114/erc20:0x511d35c52a3c244e7b8bd92c0c297755fbd89212": {
+    "assetId": "eip155:43114/erc20:0x511d35c52a3c244e7b8bd92c0c297755fbd89212",
+    "chainId": "eip155:43114",
+    "name": "Beta Finance on Avalanche",
+    "precision": 18,
+    "color": "#2D1C2C",
+    "icon": "https://assets.coingecko.com/coins/images/18715/thumb/beta_finance.jpg?1696518183",
+    "symbol": "BETA",
+    "explorer": "https://snowtrace.dev",
+    "explorerAddressLink": "https://snowtrace.dev/address/",
+    "explorerTxLink": "https://snowtrace.dev/tx/"
+  },
+  "eip155:43114/erc20:0x513c7e3a9c69ca3e22550ef58ac1c0088e918fff": {
+    "assetId": "eip155:43114/erc20:0x513c7e3a9c69ca3e22550ef58ac1c0088e918fff",
+    "chainId": "eip155:43114",
+    "name": "Aave v3 sAVAX",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/32916/thumb/savax.png?1699825205",
+    "symbol": "ASAVAX",
+    "explorer": "https://snowtrace.dev",
+    "explorerAddressLink": "https://snowtrace.dev/address/",
+    "explorerTxLink": "https://snowtrace.dev/tx/"
+  },
+  "eip155:43114/erc20:0x51e48670098173025c477d9aa3f0eff7bf9f7812": {
+    "assetId": "eip155:43114/erc20:0x51e48670098173025c477d9aa3f0eff7bf9f7812",
+    "chainId": "eip155:43114",
+    "name": "DegenX",
+    "precision": 18,
+    "color": "#FCE6DA",
+    "icon": "https://assets.coingecko.com/coins/images/27204/thumb/33358FE4-080B-4987-86A9-202CDEE46F06.png?1696526253",
+    "symbol": "DGNX",
+    "explorer": "https://snowtrace.dev",
+    "explorerAddressLink": "https://snowtrace.dev/address/",
+    "explorerTxLink": "https://snowtrace.dev/tx/"
+  },
+  "eip155:43114/erc20:0x52d134c6db5889fad3542a09eaf7aa90c0fdf9e4": {
+    "assetId": "eip155:43114/erc20:0x52d134c6db5889fad3542a09eaf7aa90c0fdf9e4",
+    "chainId": "eip155:43114",
+    "name": "Backed IBTA   Treasury Bond 1 3yr on Avalanche",
+    "precision": 18,
+    "color": "#464C57",
+    "icon": "https://assets.coingecko.com/coins/images/31880/thumb/b-IBTA-200x200.png?1696530692",
+    "symbol": "BIBTA",
+    "explorer": "https://snowtrace.dev",
+    "explorerAddressLink": "https://snowtrace.dev/address/",
+    "explorerTxLink": "https://snowtrace.dev/tx/"
+  },
+  "eip155:43114/erc20:0x53b22d356f34e977e48921e07381de0f8200b8e6": {
+    "assetId": "eip155:43114/erc20:0x53b22d356f34e977e48921e07381de0f8200b8e6",
+    "chainId": "eip155:43114",
+    "name": "Monsterra MAG on Avalanche",
+    "precision": 18,
+    "color": "#3CCEAF",
+    "icon": "https://assets.coingecko.com/coins/images/27152/thumb/MAG.png?1696526203",
+    "symbol": "MAG",
+    "explorer": "https://snowtrace.dev",
+    "explorerAddressLink": "https://snowtrace.dev/address/",
+    "explorerTxLink": "https://snowtrace.dev/tx/"
+  },
+  "eip155:43114/erc20:0x544c42fbb96b39b21df61cf322b5edc285ee7429": {
+    "assetId": "eip155:43114/erc20:0x544c42fbb96b39b21df61cf322b5edc285ee7429",
+    "chainId": "eip155:43114",
+    "name": "InsurAce on Avalanche",
+    "precision": 18,
+    "color": "#DAEDD0",
+    "icon": "https://assets.coingecko.com/coins/images/14226/thumb/insur.png?1696513941",
+    "symbol": "INSUR",
+    "explorer": "https://snowtrace.dev",
+    "explorerAddressLink": "https://snowtrace.dev/address/",
+    "explorerTxLink": "https://snowtrace.dev/tx/"
+  },
+  "eip155:43114/erc20:0x54a77f27d2346c3a8f5b43a501434f0f21f33e3c": {
+    "assetId": "eip155:43114/erc20:0x54a77f27d2346c3a8f5b43a501434f0f21f33e3c",
+    "chainId": "eip155:43114",
+    "name": "Kingdom Quest",
+    "precision": 18,
+    "color": "#803C18",
+    "icon": "https://assets.coingecko.com/coins/images/25021/thumb/Q-SHreiW_400x400.jpg?1696524173",
+    "symbol": "KGC",
+    "explorer": "https://snowtrace.dev",
+    "explorerAddressLink": "https://snowtrace.dev/address/",
+    "explorerTxLink": "https://snowtrace.dev/tx/"
+  },
+  "eip155:43114/erc20:0x5541d83efad1f281571b343977648b75d95cdac2": {
+    "assetId": "eip155:43114/erc20:0x5541d83efad1f281571b343977648b75d95cdac2",
+    "chainId": "eip155:43114",
+    "name": "Grape Finance",
+    "precision": 18,
+    "color": "#0C8E2C",
+    "icon": "https://assets.coingecko.com/coins/images/22718/thumb/grape.png?1696522022",
+    "symbol": "GRAPE",
+    "explorer": "https://snowtrace.dev",
+    "explorerAddressLink": "https://snowtrace.dev/address/",
+    "explorerTxLink": "https://snowtrace.dev/tx/"
+  },
+  "eip155:43114/erc20:0x564a341df6c126f90cf3ecb92120fd7190acb401": {
+    "assetId": "eip155:43114/erc20:0x564a341df6c126f90cf3ecb92120fd7190acb401",
+    "chainId": "eip155:43114",
+    "name": "BiLira on Avalanche",
+    "precision": 6,
+    "color": "#8B98E8",
+    "icon": "https://assets.coingecko.com/coins/images/10119/thumb/JBs9jiXO_400x400.jpg?1696510144",
+    "symbol": "TRYB",
+    "explorer": "https://snowtrace.dev",
+    "explorerAddressLink": "https://snowtrace.dev/address/",
+    "explorerTxLink": "https://snowtrace.dev/tx/"
+  },
+  "eip155:43114/erc20:0x5817d4f0b62a59b17f75207da1848c2ce75e7af4": {
+    "assetId": "eip155:43114/erc20:0x5817d4f0b62a59b17f75207da1848c2ce75e7af4",
+    "chainId": "eip155:43114",
+    "name": "Vector Finance",
+    "precision": 18,
+    "color": "#6B6CE4",
+    "icon": "https://assets.coingecko.com/coins/images/24001/thumb/token-icon-brand2000px.png?1696523195",
+    "symbol": "VTX",
+    "explorer": "https://snowtrace.dev",
+    "explorerAddressLink": "https://snowtrace.dev/address/",
+    "explorerTxLink": "https://snowtrace.dev/tx/"
+  },
+  "eip155:43114/erc20:0x590eb2920486486c2d9bb3eb651f73b81df87bcf": {
+    "assetId": "eip155:43114/erc20:0x590eb2920486486c2d9bb3eb651f73b81df87bcf",
+    "chainId": "eip155:43114",
+    "name": "Bobcoin on Avalanche",
+    "precision": 18,
+    "color": "#AA9266",
+    "icon": "https://assets.coingecko.com/coins/images/24264/thumb/bobc.png?1696523448",
+    "symbol": "BOBC",
+    "explorer": "https://snowtrace.dev",
+    "explorerAddressLink": "https://snowtrace.dev/address/",
+    "explorerTxLink": "https://snowtrace.dev/tx/"
+  },
+  "eip155:43114/erc20:0x59414b3089ce2af0010e7523dea7e2b35d776ec7": {
+    "assetId": "eip155:43114/erc20:0x59414b3089ce2af0010e7523dea7e2b35d776ec7",
+    "chainId": "eip155:43114",
+    "name": "Yield Yak",
+    "precision": 18,
+    "color": "#33C56F",
+    "icon": "https://assets.coingecko.com/coins/images/17654/thumb/yieldyak.png?1696517185",
+    "symbol": "YAK",
+    "explorer": "https://snowtrace.dev",
+    "explorerAddressLink": "https://snowtrace.dev/address/",
+    "explorerTxLink": "https://snowtrace.dev/tx/"
+  },
+  "eip155:43114/erc20:0x5947bb275c521040051d82396192181b413227a3": {
+    "assetId": "eip155:43114/erc20:0x5947bb275c521040051d82396192181b413227a3",
+    "chainId": "eip155:43114",
+    "name": "Chainlink on Avalanche",
+    "precision": 18,
+    "color": "#2C5CDC",
+    "icon": "https://assets.coingecko.com/coins/images/877/thumb/chainlink-new-logo.png?1696502009",
+    "symbol": "LINK",
+    "explorer": "https://snowtrace.dev",
+    "explorerAddressLink": "https://snowtrace.dev/address/",
+    "explorerTxLink": "https://snowtrace.dev/tx/"
+  },
+  "eip155:43114/erc20:0x595c8481c48894771ce8fade54ac6bf59093f9e8": {
+    "assetId": "eip155:43114/erc20:0x595c8481c48894771ce8fade54ac6bf59093f9e8",
+    "chainId": "eip155:43114",
+    "name": "Gaj Finance on Avalanche",
+    "precision": 18,
+    "color": "#E0D2D6",
+    "icon": "https://assets.coingecko.com/coins/images/15257/thumb/logo200x200.png?1696514910",
+    "symbol": "GAJ",
+    "explorer": "https://snowtrace.dev",
+    "explorerAddressLink": "https://snowtrace.dev/address/",
+    "explorerTxLink": "https://snowtrace.dev/tx/"
+  },
+  "eip155:43114/erc20:0x596fa47043f99a4e0f122243b841e55375cde0d2": {
+    "assetId": "eip155:43114/erc20:0x596fa47043f99a4e0f122243b841e55375cde0d2",
+    "chainId": "eip155:43114",
+    "name": "0x Protocol on Avalanche",
+    "precision": 18,
+    "color": "#1C2424",
+    "icon": "https://assets.coingecko.com/coins/images/863/thumb/0x.png?1696501996",
+    "symbol": "ZRX",
+    "explorer": "https://snowtrace.dev",
+    "explorerAddressLink": "https://snowtrace.dev/address/",
+    "explorerTxLink": "https://snowtrace.dev/tx/"
+  },
+  "eip155:43114/erc20:0x5a15bdcf9a3a8e799fa4381e666466a516f2d9c8": {
+    "assetId": "eip155:43114/erc20:0x5a15bdcf9a3a8e799fa4381e666466a516f2d9c8",
+    "chainId": "eip155:43114",
+    "name": "Snail Trail",
+    "precision": 18,
+    "color": "#7C5DF4",
+    "icon": "https://assets.coingecko.com/coins/images/25394/thumb/logo_%283%29.png?1696524526",
+    "symbol": "SLIME",
+    "explorer": "https://snowtrace.dev",
+    "explorerAddressLink": "https://snowtrace.dev/address/",
+    "explorerTxLink": "https://snowtrace.dev/tx/"
+  },
+  "eip155:43114/erc20:0x5ecfec22aa950cb5a3b4fd7249dc30b2bd160f18": {
+    "assetId": "eip155:43114/erc20:0x5ecfec22aa950cb5a3b4fd7249dc30b2bd160f18",
+    "chainId": "eip155:43114",
+    "name": "Tarot on Avalanche",
+    "precision": 18,
+    "color": "#E5E5E5",
+    "icon": "https://assets.coingecko.com/coins/images/31800/thumb/TAROT.jpg?1696530615",
+    "symbol": "TAROT",
+    "explorer": "https://snowtrace.dev",
+    "explorerAddressLink": "https://snowtrace.dev/address/",
+    "explorerTxLink": "https://snowtrace.dev/tx/"
+  },
+  "eip155:43114/erc20:0x5f018e73c185ab23647c82bd039e762813877f0e": {
+    "assetId": "eip155:43114/erc20:0x5f018e73c185ab23647c82bd039e762813877f0e",
+    "chainId": "eip155:43114",
+    "name": "BUILD on Avalanche",
+    "precision": 18,
+    "color": "#EC1C24",
+    "icon": "https://assets.coingecko.com/coins/images/26533/thumb/BUILD.png?1696525607",
+    "symbol": "BUILD",
+    "explorer": "https://snowtrace.dev",
+    "explorerAddressLink": "https://snowtrace.dev/address/",
+    "explorerTxLink": "https://snowtrace.dev/tx/"
+  },
+  "eip155:43114/erc20:0x5fc17416925789e0852fbfcd81c490ca4abc51f9": {
+    "assetId": "eip155:43114/erc20:0x5fc17416925789e0852fbfcd81c490ca4abc51f9",
+    "chainId": "eip155:43114",
+    "name": "inSure DeFi on Avalanche",
+    "precision": 18,
+    "color": "#E4E0E9",
+    "icon": "https://assets.coingecko.com/coins/images/10354/thumb/logo-grey-circle.png?1696510355",
+    "symbol": "SURE",
+    "explorer": "https://snowtrace.dev",
+    "explorerAddressLink": "https://snowtrace.dev/address/",
+    "explorerTxLink": "https://snowtrace.dev/tx/"
+  },
+  "eip155:43114/erc20:0x60781c2586d68229fde47564546784ab3faca982": {
+    "assetId": "eip155:43114/erc20:0x60781c2586d68229fde47564546784ab3faca982",
+    "chainId": "eip155:43114",
+    "name": "Pangolin",
+    "precision": 18,
+    "color": "#221D18",
+    "icon": "https://assets.coingecko.com/coins/images/14023/thumb/PNG_token.png?1696513750",
+    "symbol": "PNG",
+    "explorer": "https://snowtrace.dev",
+    "explorerAddressLink": "https://snowtrace.dev/address/",
+    "explorerTxLink": "https://snowtrace.dev/tx/"
+  },
+  "eip155:43114/erc20:0x6121191018baf067c6dc6b18d42329447a164f05": {
+    "assetId": "eip155:43114/erc20:0x6121191018baf067c6dc6b18d42329447a164f05",
+    "chainId": "eip155:43114",
+    "name": "Pizza Game",
+    "precision": 18,
+    "color": "#98472D",
+    "icon": "https://assets.coingecko.com/coins/images/23771/thumb/eh-lDaUq_400x400.jpg?1696522972",
+    "symbol": "PIZZA",
+    "explorer": "https://snowtrace.dev",
+    "explorerAddressLink": "https://snowtrace.dev/address/",
+    "explorerTxLink": "https://snowtrace.dev/tx/"
+  },
+  "eip155:43114/erc20:0x617724974218a18769020a70162165a539c07e8a": {
+    "assetId": "eip155:43114/erc20:0x617724974218a18769020a70162165a539c07e8a",
+    "chainId": "eip155:43114",
+    "name": "Olive Cash on Avalanche",
+    "precision": 18,
+    "color": "#B9844B",
+    "icon": "https://assets.coingecko.com/coins/images/14880/thumb/2_%285%29.png?1696514544",
+    "symbol": "OLIVE",
+    "explorer": "https://snowtrace.dev",
+    "explorerAddressLink": "https://snowtrace.dev/address/",
+    "explorerTxLink": "https://snowtrace.dev/tx/"
+  },
+  "eip155:43114/erc20:0x625e7708f30ca75bfd92586e17077590c60eb4cd": {
+    "assetId": "eip155:43114/erc20:0x625e7708f30ca75bfd92586e17077590c60eb4cd",
+    "chainId": "eip155:43114",
+    "name": "Aave v3 USDC on Avalanche",
+    "precision": 6,
+    "color": "#AFACD6",
+    "icon": "https://assets.coingecko.com/coins/images/32847/thumb/usdc_%281%29.png?1699619355",
+    "symbol": "AUSDC",
+    "explorer": "https://snowtrace.dev",
+    "explorerAddressLink": "https://snowtrace.dev/address/",
+    "explorerTxLink": "https://snowtrace.dev/tx/"
+  },
+  "eip155:43114/erc20:0x62aceea3e666c5706ce1c61055fac1a669d31d93": {
+    "assetId": "eip155:43114/erc20:0x62aceea3e666c5706ce1c61055fac1a669d31d93",
+    "chainId": "eip155:43114",
+    "name": "KALM on Avalanche",
+    "precision": 18,
+    "color": "#C4C4C4",
+    "icon": "https://assets.coingecko.com/coins/images/15849/thumb/kalmar.png?1696515466",
+    "symbol": "KALM",
+    "explorer": "https://snowtrace.dev",
+    "explorerAddressLink": "https://snowtrace.dev/address/",
+    "explorerTxLink": "https://snowtrace.dev/tx/"
+  },
+  "eip155:43114/erc20:0x62edc0692bd897d2295872a9ffcac5425011c661": {
+    "assetId": "eip155:43114/erc20:0x62edc0692bd897d2295872a9ffcac5425011c661",
+    "chainId": "eip155:43114",
+    "name": "GMX on Avalanche",
+    "precision": 18,
+    "color": "#491EEC",
+    "icon": "https://assets.coingecko.com/coins/images/18323/thumb/arbit.png?1696517814",
+    "symbol": "GMX",
+    "explorer": "https://snowtrace.dev",
+    "explorerAddressLink": "https://snowtrace.dev/address/",
+    "explorerTxLink": "https://snowtrace.dev/tx/"
+  },
+  "eip155:43114/erc20:0x63682bdc5f875e9bf69e201550658492c9763f89": {
+    "assetId": "eip155:43114/erc20:0x63682bdc5f875e9bf69e201550658492c9763f89",
+    "chainId": "eip155:43114",
+    "name": "Betswap gg on Avalanche",
+    "precision": 18,
+    "color": "#342E2A",
+    "icon": "https://assets.coingecko.com/coins/images/22496/thumb/betswap.jpg?1696521820",
+    "symbol": "BSGG",
+    "explorer": "https://snowtrace.dev",
+    "explorerAddressLink": "https://snowtrace.dev/address/",
+    "explorerTxLink": "https://snowtrace.dev/tx/"
+  },
+  "eip155:43114/erc20:0x637afeff75ca669ff92e4570b14d6399a658902f": {
+    "assetId": "eip155:43114/erc20:0x637afeff75ca669ff92e4570b14d6399a658902f",
+    "chainId": "eip155:43114",
+    "name": "Cook on Avalanche",
+    "precision": 18,
+    "color": "#2A315B",
+    "icon": "https://assets.coingecko.com/coins/images/14603/thumb/logo-200x200.jpg?1696514281",
+    "symbol": "COOK",
+    "explorer": "https://snowtrace.dev",
+    "explorerAddressLink": "https://snowtrace.dev/address/",
+    "explorerTxLink": "https://snowtrace.dev/tx/"
+  },
+  "eip155:43114/erc20:0x63a72806098bd3d9520cc43356dd78afe5d386d9": {
+    "assetId": "eip155:43114/erc20:0x63a72806098bd3d9520cc43356dd78afe5d386d9",
+    "chainId": "eip155:43114",
+    "name": "Aave on Avalanche",
+    "precision": 18,
+    "color": "#7188B4",
+    "icon": "https://assets.coingecko.com/coins/images/12645/thumb/AAVE.png?1696512452",
+    "symbol": "AAVE",
+    "explorer": "https://snowtrace.dev",
+    "explorerAddressLink": "https://snowtrace.dev/address/",
+    "explorerTxLink": "https://snowtrace.dev/tx/"
+  },
+  "eip155:43114/erc20:0x644192291cc835a93d6330b24ea5f5fedd0eef9e": {
+    "assetId": "eip155:43114/erc20:0x644192291cc835a93d6330b24ea5f5fedd0eef9e",
+    "chainId": "eip155:43114",
+    "name": "AllianceBlock Nexera on Avalanche",
+    "precision": 18,
+    "color": "#6B6CF9",
+    "icon": "https://assets.coingecko.com/coins/images/29181/thumb/nxra.png?1696528139",
+    "symbol": "NXRA",
+    "explorer": "https://snowtrace.dev",
+    "explorerAddressLink": "https://snowtrace.dev/address/",
+    "explorerTxLink": "https://snowtrace.dev/tx/"
+  },
+  "eip155:43114/erc20:0x65031e28cb0e8cc21ae411f9dd22c9b1bd260ce4": {
+    "assetId": "eip155:43114/erc20:0x65031e28cb0e8cc21ae411f9dd22c9b1bd260ce4",
+    "chainId": "eip155:43114",
+    "name": "Brokkr",
+    "precision": 18,
+    "color": "#191D27",
+    "icon": "https://assets.coingecko.com/coins/images/27813/thumb/bro.png?1696526832",
+    "symbol": "BRO",
+    "explorer": "https://snowtrace.dev",
+    "explorerAddressLink": "https://snowtrace.dev/address/",
+    "explorerTxLink": "https://snowtrace.dev/tx/"
+  },
+  "eip155:43114/erc20:0x65378b697853568da9ff8eab60c13e1ee9f4a654": {
+    "assetId": "eip155:43114/erc20:0x65378b697853568da9ff8eab60c13e1ee9f4a654",
+    "chainId": "eip155:43114",
+    "name": "Husky Avax on Avalanche",
+    "precision": 18,
+    "color": "#939393",
+    "icon": "https://assets.coingecko.com/coins/images/17812/thumb/husky.png?1696517332",
+    "symbol": "HUSKY",
+    "explorer": "https://snowtrace.dev",
+    "explorerAddressLink": "https://snowtrace.dev/address/",
+    "explorerTxLink": "https://snowtrace.dev/tx/"
+  },
+  "eip155:43114/erc20:0x66b071a55b7c258c2086527e35ee355771aa05b8": {
+    "assetId": "eip155:43114/erc20:0x66b071a55b7c258c2086527e35ee355771aa05b8",
+    "chainId": "eip155:43114",
+    "name": "Stella on Avalanche",
+    "precision": 18,
+    "color": "#DFBE67",
+    "icon": "https://assets.coingecko.com/coins/images/30914/thumb/STL_Token_Logo.png?1696529759",
+    "symbol": "STL",
+    "explorer": "https://snowtrace.dev",
+    "explorerAddressLink": "https://snowtrace.dev/address/",
+    "explorerTxLink": "https://snowtrace.dev/tx/"
+  },
+  "eip155:43114/erc20:0x68327a91e79f87f501bc8522fc333fb7a72393cb": {
+    "assetId": "eip155:43114/erc20:0x68327a91e79f87f501bc8522fc333fb7a72393cb",
+    "chainId": "eip155:43114",
+    "name": "AUX Coin",
+    "precision": 18,
+    "color": "#BA9D52",
+    "icon": "https://assets.coingecko.com/coins/images/28298/thumb/AUX-Coin_200.png?1696527297",
+    "symbol": "AUX",
+    "explorer": "https://snowtrace.dev",
+    "explorerAddressLink": "https://snowtrace.dev/address/",
+    "explorerTxLink": "https://snowtrace.dev/tx/"
+  },
+  "eip155:43114/erc20:0x68ee0d0aad9e1984af85ca224117e4d20eaf68be": {
+    "assetId": "eip155:43114/erc20:0x68ee0d0aad9e1984af85ca224117e4d20eaf68be",
+    "chainId": "eip155:43114",
+    "name": "Crypto Royale on Avalanche",
+    "precision": 18,
+    "color": "#646CFC",
+    "icon": "https://assets.coingecko.com/coins/images/20668/thumb/ROY_logo_new_design_small.png?1696520069",
+    "symbol": "ROY",
+    "explorer": "https://snowtrace.dev",
+    "explorerAddressLink": "https://snowtrace.dev/address/",
+    "explorerTxLink": "https://snowtrace.dev/tx/"
+  },
+  "eip155:43114/erc20:0x69260b9483f9871ca57f81a90d91e2f96c2cd11d": {
+    "assetId": "eip155:43114/erc20:0x69260b9483f9871ca57f81a90d91e2f96c2cd11d",
+    "chainId": "eip155:43114",
+    "name": "GoGoPool",
+    "precision": 18,
+    "color": "#5C44EC",
+    "icon": "https://assets.coingecko.com/coins/images/30267/thumb/GGP_logo_square.png?1696529174",
+    "symbol": "GGP",
+    "explorer": "https://snowtrace.dev",
+    "explorerAddressLink": "https://snowtrace.dev/address/",
+    "explorerTxLink": "https://snowtrace.dev/tx/"
+  },
+  "eip155:43114/erc20:0x695fa794d59106cebd40ab5f5ca19f458c723829": {
+    "assetId": "eip155:43114/erc20:0x695fa794d59106cebd40ab5f5ca19f458c723829",
+    "chainId": "eip155:43114",
+    "name": "HakuSwap",
+    "precision": 18,
+    "color": "#A8E6E0",
+    "icon": "https://assets.coingecko.com/coins/images/23611/thumb/haku.png?1696522817",
+    "symbol": "HAKU",
+    "explorer": "https://snowtrace.dev",
+    "explorerAddressLink": "https://snowtrace.dev/address/",
+    "explorerTxLink": "https://snowtrace.dev/tx/"
+  },
+  "eip155:43114/erc20:0x6ab707aca953edaefbc4fd23ba73294241490620": {
+    "assetId": "eip155:43114/erc20:0x6ab707aca953edaefbc4fd23ba73294241490620",
+    "chainId": "eip155:43114",
+    "name": "Aave v3 USDT on Avalanche",
+    "precision": 6,
+    "color": "#51AC9D",
+    "icon": "https://assets.coingecko.com/coins/images/32884/thumb/USDT.PNG?1699768611",
+    "symbol": "AUSDT",
+    "explorer": "https://snowtrace.dev",
+    "explorerAddressLink": "https://snowtrace.dev/address/",
+    "explorerTxLink": "https://snowtrace.dev/tx/"
+  },
+  "eip155:43114/erc20:0x6afd5a1ea4b793cc1526d6dc7e99a608b356ef7b": {
+    "assetId": "eip155:43114/erc20:0x6afd5a1ea4b793cc1526d6dc7e99a608b356ef7b",
+    "chainId": "eip155:43114",
+    "name": "Storm",
+    "precision": 18,
+    "color": "#065DF4",
+    "icon": "https://assets.coingecko.com/coins/images/18170/thumb/nFiYZ2xO_400x400.png?1696517670",
+    "symbol": "STORM",
+    "explorer": "https://snowtrace.dev",
+    "explorerAddressLink": "https://snowtrace.dev/address/",
+    "explorerTxLink": "https://snowtrace.dev/tx/"
+  },
+  "eip155:43114/erc20:0x6b289cceaa8639e3831095d75a3e43520fabf552": {
+    "assetId": "eip155:43114/erc20:0x6b289cceaa8639e3831095d75a3e43520fabf552",
+    "chainId": "eip155:43114",
+    "name": "Cartesi on Avalanche",
+    "precision": 18,
+    "color": "#AEAEAE",
+    "icon": "https://assets.coingecko.com/coins/images/11038/thumb/Cartesi_Logo.png?1696510982",
+    "symbol": "CTSI",
+    "explorer": "https://snowtrace.dev",
+    "explorerAddressLink": "https://snowtrace.dev/address/",
+    "explorerTxLink": "https://snowtrace.dev/tx/"
+  },
+  "eip155:43114/erc20:0x6c1c0319d8ddcb0ffe1a68c5b3829fd361587db4": {
+    "assetId": "eip155:43114/erc20:0x6c1c0319d8ddcb0ffe1a68c5b3829fd361587db4",
+    "chainId": "eip155:43114",
+    "name": "POLAR",
+    "precision": 18,
+    "color": "#D1D1D1",
+    "icon": "https://assets.coingecko.com/coins/images/22682/thumb/lZqXDw8a_400x400.png?1696521993",
+    "symbol": "POLAR",
+    "explorer": "https://snowtrace.dev",
+    "explorerAddressLink": "https://snowtrace.dev/address/",
+    "explorerTxLink": "https://snowtrace.dev/tx/"
+  },
+  "eip155:43114/erc20:0x6d80113e533a2c0fe82eabd35f1875dcea89ea97": {
+    "assetId": "eip155:43114/erc20:0x6d80113e533a2c0fe82eabd35f1875dcea89ea97",
+    "chainId": "eip155:43114",
+    "name": "Aave v3 WAVAX",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/32915/thumb/wavax.png?1699824961",
+    "symbol": "AWAVAX",
+    "explorer": "https://snowtrace.dev",
+    "explorerAddressLink": "https://snowtrace.dev/address/",
+    "explorerTxLink": "https://snowtrace.dev/tx/"
+  },
+  "eip155:43114/erc20:0x6d923f688c7ff287dc3a5943caeefc994f97b290": {
+    "assetId": "eip155:43114/erc20:0x6d923f688c7ff287dc3a5943caeefc994f97b290",
+    "chainId": "eip155:43114",
+    "name": "SmarterCoin",
+    "precision": 18,
+    "color": "#942C55",
+    "icon": "https://assets.coingecko.com/coins/images/19634/thumb/kXN8SJ0.png?1696519062",
+    "symbol": "SMRTR",
+    "explorer": "https://snowtrace.dev",
+    "explorerAddressLink": "https://snowtrace.dev/address/",
+    "explorerTxLink": "https://snowtrace.dev/tx/"
+  },
+  "eip155:43114/erc20:0x6e7f5c0b9f4432716bdd0a77a3601291b9d9e985": {
+    "assetId": "eip155:43114/erc20:0x6e7f5c0b9f4432716bdd0a77a3601291b9d9e985",
+    "chainId": "eip155:43114",
+    "name": "Spore on Avalanche",
+    "precision": 9,
+    "color": "#374777",
+    "icon": "https://assets.coingecko.com/coins/images/14470/thumb/SPORE.png?1696514157",
+    "symbol": "SPORE",
+    "explorer": "https://snowtrace.dev",
+    "explorerAddressLink": "https://snowtrace.dev/address/",
+    "explorerTxLink": "https://snowtrace.dev/tx/"
+  },
+  "eip155:43114/erc20:0x6e84a6216ea6dacc71ee8e6b0a5b7322eebc0fdd": {
+    "assetId": "eip155:43114/erc20:0x6e84a6216ea6dacc71ee8e6b0a5b7322eebc0fdd",
+    "chainId": "eip155:43114",
+    "name": "JOE on Avalanche",
+    "precision": 18,
+    "color": "#C06861",
+    "icon": "https://assets.coingecko.com/coins/images/17569/thumb/traderjoe.png?1696517104",
+    "symbol": "JOE",
+    "explorer": "https://snowtrace.dev",
+    "explorerAddressLink": "https://snowtrace.dev/address/",
+    "explorerTxLink": "https://snowtrace.dev/tx/"
+  },
+  "eip155:43114/erc20:0x7086c48c997b8597a1692798155b4fcf2cee7f0f": {
+    "assetId": "eip155:43114/erc20:0x7086c48c997b8597a1692798155b4fcf2cee7f0f",
+    "chainId": "eip155:43114",
+    "name": "AVATA Network",
+    "precision": 6,
+    "color": "#C20404",
+    "icon": "https://assets.coingecko.com/coins/images/24899/thumb/round.png?1696524057",
+    "symbol": "AVAT",
+    "explorer": "https://snowtrace.dev",
+    "explorerAddressLink": "https://snowtrace.dev/address/",
+    "explorerTxLink": "https://snowtrace.dev/tx/"
+  },
+  "eip155:43114/erc20:0x7086e045b78e1e72f741f25231c08d238812cf8a": {
+    "assetId": "eip155:43114/erc20:0x7086e045b78e1e72f741f25231c08d238812cf8a",
+    "chainId": "eip155:43114",
+    "name": "RaceX",
+    "precision": 18,
+    "color": "#CF707A",
+    "icon": "https://assets.coingecko.com/coins/images/20424/thumb/logo-1_%281%29.png?1696519831",
+    "symbol": "RACEX",
+    "explorer": "https://snowtrace.dev",
+    "explorerAddressLink": "https://snowtrace.dev/address/",
+    "explorerTxLink": "https://snowtrace.dev/tx/"
+  },
+  "eip155:43114/erc20:0x714f020c54cc9d104b6f4f6998c63ce2a31d1888": {
+    "assetId": "eip155:43114/erc20:0x714f020c54cc9d104b6f4f6998c63ce2a31d1888",
+    "chainId": "eip155:43114",
+    "name": "Step App on Avalanche",
+    "precision": 18,
+    "color": "#362F11",
+    "icon": "https://assets.coingecko.com/coins/images/25015/thumb/801485424e1f49bc8d0facff9287eb9b_photo.png?1696524166",
+    "symbol": "FITFI",
+    "explorer": "https://snowtrace.dev",
+    "explorerAddressLink": "https://snowtrace.dev/address/",
+    "explorerTxLink": "https://snowtrace.dev/tx/"
+  },
+  "eip155:43114/erc20:0x721c299e6bf7d6a430d9bea3364ea197314bce09": {
+    "assetId": "eip155:43114/erc20:0x721c299e6bf7d6a430d9bea3364ea197314bce09",
+    "chainId": "eip155:43114",
+    "name": "Spaceswap MILK2 on Avalanche",
+    "precision": 18,
+    "color": "#EADBDD",
+    "icon": "https://assets.coingecko.com/coins/images/12771/thumb/milk.png?1696512567",
+    "symbol": "MILK2",
+    "explorer": "https://snowtrace.dev",
+    "explorerAddressLink": "https://snowtrace.dev/address/",
+    "explorerTxLink": "https://snowtrace.dev/tx/"
+  },
+  "eip155:43114/erc20:0x72bc9d71dd9ad563f52270c6ce5fb30f617c7a1d": {
+    "assetId": "eip155:43114/erc20:0x72bc9d71dd9ad563f52270c6ce5fb30f617c7a1d",
+    "chainId": "eip155:43114",
+    "name": "Onston on Avalanche",
+    "precision": 18,
+    "color": "#202841",
+    "icon": "https://assets.coingecko.com/coins/images/20669/thumb/onston.PNG?1696520070",
+    "symbol": "ONSTON",
+    "explorer": "https://snowtrace.dev",
+    "explorerAddressLink": "https://snowtrace.dev/address/",
+    "explorerTxLink": "https://snowtrace.dev/tx/"
+  },
+  "eip155:43114/erc20:0x73178fceb736a9d6c1a9ef1fe413f09cba2d4a68": {
+    "assetId": "eip155:43114/erc20:0x73178fceb736a9d6c1a9ef1fe413f09cba2d4a68",
+    "chainId": "eip155:43114",
+    "name": "RealFevr on Avalanche",
+    "precision": 18,
+    "color": "#580DA7",
+    "icon": "https://assets.coingecko.com/coins/images/17136/thumb/Fevr-Token.png?1696516695",
+    "symbol": "FEVR",
+    "explorer": "https://snowtrace.dev",
+    "explorerAddressLink": "https://snowtrace.dev/address/",
+    "explorerTxLink": "https://snowtrace.dev/tx/"
+  },
+  "eip155:43114/erc20:0x73f2af605ea8a3d8410b83ee05b8d6fc0da1aca4": {
+    "assetId": "eip155:43114/erc20:0x73f2af605ea8a3d8410b83ee05b8d6fc0da1aca4",
+    "chainId": "eip155:43114",
+    "name": "Rides Finance",
+    "precision": 18,
+    "color": "#6FBE48",
+    "icon": "https://assets.coingecko.com/coins/images/24172/thumb/5Hj1cTR.png?1646744055",
+    "symbol": "RIDES",
+    "explorer": "https://snowtrace.dev",
+    "explorerAddressLink": "https://snowtrace.dev/address/",
+    "explorerTxLink": "https://snowtrace.dev/tx/"
+  },
+  "eip155:43114/erc20:0x7678e162f38ec9ef2bfd1d0aaf9fd93355e5fa0b": {
+    "assetId": "eip155:43114/erc20:0x7678e162f38ec9ef2bfd1d0aaf9fd93355e5fa0b",
+    "chainId": "eip155:43114",
+    "name": "VNX EURO on Avalanche",
+    "precision": 18,
+    "color": "#DFD088",
+    "icon": "https://assets.coingecko.com/coins/images/29351/thumb/VNXEUR_%281%29.png?1696528300",
+    "symbol": "VEUR",
+    "explorer": "https://snowtrace.dev",
+    "explorerAddressLink": "https://snowtrace.dev/address/",
+    "explorerTxLink": "https://snowtrace.dev/tx/"
+  },
+  "eip155:43114/erc20:0x769bfeb9faacd6eb2746979a8dd0b7e9920ac2a4": {
+    "assetId": "eip155:43114/erc20:0x769bfeb9faacd6eb2746979a8dd0b7e9920ac2a4",
+    "chainId": "eip155:43114",
+    "name": "zJOE",
+    "precision": 18,
+    "color": "#6868BC",
+    "icon": "https://assets.coingecko.com/coins/images/25532/thumb/zJOE-200px.png?1696524665",
+    "symbol": "ZJOE",
+    "explorer": "https://snowtrace.dev",
+    "explorerAddressLink": "https://snowtrace.dev/address/",
+    "explorerTxLink": "https://snowtrace.dev/tx/"
+  },
+  "eip155:43114/erc20:0x771c01e1917b5ab5b791f7b96f0cd69e22f6dbcf": {
+    "assetId": "eip155:43114/erc20:0x771c01e1917b5ab5b791f7b96f0cd69e22f6dbcf",
+    "chainId": "eip155:43114",
+    "name": "Nunu Spirits on Avalanche",
+    "precision": 18,
+    "color": "#A0CF41",
+    "icon": "https://assets.coingecko.com/coins/images/24378/thumb/NNT_99cc33.png?1696523561",
+    "symbol": "NNT",
+    "explorer": "https://snowtrace.dev",
+    "explorerAddressLink": "https://snowtrace.dev/address/",
+    "explorerTxLink": "https://snowtrace.dev/tx/"
+  },
+  "eip155:43114/erc20:0x7761e2338b35bceb6bda6ce477ef012bde7ae611": {
+    "assetId": "eip155:43114/erc20:0x7761e2338b35bceb6bda6ce477ef012bde7ae611",
+    "chainId": "eip155:43114",
+    "name": "Chikn Egg",
+    "precision": 18,
+    "color": "#E85652",
+    "icon": "https://assets.coingecko.com/coins/images/21811/thumb/EggToken_200_Transparent.png?1696521162",
+    "symbol": "EGG",
+    "explorer": "https://snowtrace.dev",
+    "explorerAddressLink": "https://snowtrace.dev/address/",
+    "explorerTxLink": "https://snowtrace.dev/tx/"
+  },
+  "eip155:43114/erc20:0x77777777777d4554c39223c354a05825b2e8faa3": {
+    "assetId": "eip155:43114/erc20:0x77777777777d4554c39223c354a05825b2e8faa3",
+    "chainId": "eip155:43114",
+    "name": "Yeti Finance",
+    "precision": 18,
+    "color": "#DCEDF8",
+    "icon": "https://assets.coingecko.com/coins/images/25022/thumb/1_oJ0F2Zf6CuAhLP0zOboo6w.png?1696524174",
+    "symbol": "YETI",
+    "explorer": "https://snowtrace.dev",
+    "explorerAddressLink": "https://snowtrace.dev/address/",
+    "explorerTxLink": "https://snowtrace.dev/tx/"
+  },
+  "eip155:43114/erc20:0x78c42324016cd91d1827924711563fb66e33a83a": {
+    "assetId": "eip155:43114/erc20:0x78c42324016cd91d1827924711563fb66e33a83a",
+    "chainId": "eip155:43114",
+    "name": "Relay Chain on Avalanche",
+    "precision": 18,
+    "color": "#0CA4EC",
+    "icon": "https://assets.coingecko.com/coins/images/17816/thumb/relay-logo-200.png?1696517336",
+    "symbol": "RELAY",
+    "explorer": "https://snowtrace.dev",
+    "explorerAddressLink": "https://snowtrace.dev/address/",
+    "explorerTxLink": "https://snowtrace.dev/tx/"
+  },
+  "eip155:43114/erc20:0x78ea3fef1c1f07348199bf44f45b803b9b0dbe28": {
+    "assetId": "eip155:43114/erc20:0x78ea3fef1c1f07348199bf44f45b803b9b0dbe28",
+    "chainId": "eip155:43114",
+    "name": "Hoppers Game",
+    "precision": 18,
+    "color": "#371C2D",
+    "icon": "https://assets.coingecko.com/coins/images/24296/thumb/FLY.png?1696523478",
+    "symbol": "FLY",
+    "explorer": "https://snowtrace.dev",
+    "explorerAddressLink": "https://snowtrace.dev/address/",
+    "explorerTxLink": "https://snowtrace.dev/tx/"
+  },
+  "eip155:43114/erc20:0x79ba10485ae46a9436d560d9664369176ec2eb2b": {
+    "assetId": "eip155:43114/erc20:0x79ba10485ae46a9436d560d9664369176ec2eb2b",
+    "chainId": "eip155:43114",
+    "name": "Chikn Worm",
+    "precision": 18,
+    "color": "#D58D7C",
+    "icon": "https://assets.coingecko.com/coins/images/28497/thumb/Worm_Icon_01_1340.png?1696527489",
+    "symbol": "WORM",
+    "explorer": "https://snowtrace.dev",
+    "explorerAddressLink": "https://snowtrace.dev/address/",
+    "explorerTxLink": "https://snowtrace.dev/tx/"
+  },
+  "eip155:43114/erc20:0x7a023a408f51c23760eb31190fc731bc12b52954": {
+    "assetId": "eip155:43114/erc20:0x7a023a408f51c23760eb31190fc731bc12b52954",
+    "chainId": "eip155:43114",
+    "name": "Janus Network",
+    "precision": 18,
+    "color": "#BF30B9",
+    "icon": "https://assets.coingecko.com/coins/images/27115/thumb/200x200.png?1696526168",
+    "symbol": "JNS",
+    "explorer": "https://snowtrace.dev",
+    "explorerAddressLink": "https://snowtrace.dev/address/",
+    "explorerTxLink": "https://snowtrace.dev/tx/"
+  },
+  "eip155:43114/erc20:0x7b2b702706d9b361dfe3f00bd138c0cfda7fb2cf": {
+    "assetId": "eip155:43114/erc20:0x7b2b702706d9b361dfe3f00bd138c0cfda7fb2cf",
+    "chainId": "eip155:43114",
+    "name": "Pollen",
+    "precision": 18,
+    "color": "#FC3258",
+    "icon": "https://assets.coingecko.com/coins/images/21679/thumb/pln.png?1696521035",
+    "symbol": "PLN",
+    "explorer": "https://snowtrace.dev",
+    "explorerAddressLink": "https://snowtrace.dev/address/",
+    "explorerTxLink": "https://snowtrace.dev/tx/"
+  },
+  "eip155:43114/erc20:0x7bddaf6dbab30224aa2116c4291521c7a60d5f55": {
+    "assetId": "eip155:43114/erc20:0x7bddaf6dbab30224aa2116c4291521c7a60d5f55",
+    "chainId": "eip155:43114",
+    "name": "VaporFi",
+    "precision": 18,
+    "color": "#D9F7F9",
+    "icon": "https://assets.coingecko.com/coins/images/29235/thumb/logo_vape.png?1696528192",
+    "symbol": "VAPE",
+    "explorer": "https://snowtrace.dev",
+    "explorerAddressLink": "https://snowtrace.dev/address/",
+    "explorerTxLink": "https://snowtrace.dev/tx/"
+  },
+  "eip155:43114/erc20:0x7d1232b90d3f809a54eeaeebc639c62df8a8942f": {
+    "assetId": "eip155:43114/erc20:0x7d1232b90d3f809a54eeaeebc639c62df8a8942f",
+    "chainId": "eip155:43114",
+    "name": "Snowbank",
+    "precision": 9,
+    "color": "#BEBEBE",
+    "icon": "https://assets.coingecko.com/coins/images/19947/thumb/sb.png?1696519364",
+    "symbol": "SB",
+    "explorer": "https://snowtrace.dev",
+    "explorerAddressLink": "https://snowtrace.dev/address/",
+    "explorerTxLink": "https://snowtrace.dev/tx/"
+  },
+  "eip155:43114/erc20:0x820802fa8a99901f52e39acd21177b0be6ee2974": {
+    "assetId": "eip155:43114/erc20:0x820802fa8a99901f52e39acd21177b0be6ee2974",
+    "chainId": "eip155:43114",
+    "name": "EUROe Stablecoin on Avalanche",
+    "precision": 6,
+    "color": "#DCE1E1",
+    "icon": "https://assets.coingecko.com/coins/images/28913/thumb/euroe-200x200-round.png?1696527889",
+    "symbol": "EUROE",
+    "explorer": "https://snowtrace.dev",
+    "explorerAddressLink": "https://snowtrace.dev/address/",
+    "explorerTxLink": "https://snowtrace.dev/tx/"
+  },
+  "eip155:43114/erc20:0x82e64f49ed5ec1bc6e43dad4fc8af9bb3a2312ee": {
+    "assetId": "eip155:43114/erc20:0x82e64f49ed5ec1bc6e43dad4fc8af9bb3a2312ee",
+    "chainId": "eip155:43114",
+    "name": "Aave v3 DAI on Avalanche",
+    "precision": 18,
+    "color": "#FCBF41",
+    "icon": "https://assets.coingecko.com/coins/images/32886/thumb/dai.png?1699769446",
+    "symbol": "ADAI",
+    "explorer": "https://snowtrace.dev",
+    "explorerAddressLink": "https://snowtrace.dev/address/",
+    "explorerTxLink": "https://snowtrace.dev/tx/"
+  },
+  "eip155:43114/erc20:0x82fe038ea4b50f9c957da326c412ebd73462077c": {
+    "assetId": "eip155:43114/erc20:0x82fe038ea4b50f9c957da326c412ebd73462077c",
+    "chainId": "eip155:43114",
+    "name": "Joe Hat",
+    "precision": 18,
+    "color": "#D6746E",
+    "icon": "https://assets.coingecko.com/coins/images/24789/thumb/logo_%281%29.png?1696523949",
+    "symbol": "HAT",
+    "explorer": "https://snowtrace.dev",
+    "explorerAddressLink": "https://snowtrace.dev/address/",
+    "explorerTxLink": "https://snowtrace.dev/tx/"
+  },
+  "eip155:43114/erc20:0x83a283641c6b4df383bcddf807193284c84c5342": {
+    "assetId": "eip155:43114/erc20:0x83a283641c6b4df383bcddf807193284c84c5342",
+    "chainId": "eip155:43114",
+    "name": "VaporNodes",
+    "precision": 18,
+    "color": "#5ACCE7",
+    "icon": "https://assets.coingecko.com/coins/images/21977/thumb/logo-rounded.png?1696521325",
+    "symbol": "VPND",
+    "explorer": "https://snowtrace.dev",
+    "explorerAddressLink": "https://snowtrace.dev/address/",
+    "explorerTxLink": "https://snowtrace.dev/tx/"
+  },
+  "eip155:43114/erc20:0x846d50248baf8b7ceaa9d9b53bfd12d7d7fbb25a": {
+    "assetId": "eip155:43114/erc20:0x846d50248baf8b7ceaa9d9b53bfd12d7d7fbb25a",
+    "chainId": "eip155:43114",
+    "name": "Verso",
+    "precision": 18,
+    "color": "#428CE5",
+    "icon": "https://assets.coingecko.com/coins/images/15169/thumb/versa.PNG?1696514824",
+    "symbol": "VSO",
+    "explorer": "https://snowtrace.dev",
+    "explorerAddressLink": "https://snowtrace.dev/address/",
+    "explorerTxLink": "https://snowtrace.dev/tx/"
+  },
+  "eip155:43114/erc20:0x8729438eb15e2c8b576fcc6aecda6a148776c0f5": {
+    "assetId": "eip155:43114/erc20:0x8729438eb15e2c8b576fcc6aecda6a148776c0f5",
+    "chainId": "eip155:43114",
+    "name": "BENQI",
+    "precision": 18,
+    "color": "#20393F",
+    "icon": "https://assets.coingecko.com/coins/images/16362/thumb/GergDDN3_400x400.jpg?1696515961",
+    "symbol": "QI",
+    "explorer": "https://snowtrace.dev",
+    "explorerAddressLink": "https://snowtrace.dev/address/",
+    "explorerTxLink": "https://snowtrace.dev/tx/"
+  },
+  "eip155:43114/erc20:0x873801ae2ff12d816db9a7b082f5796bec64c82c": {
+    "assetId": "eip155:43114/erc20:0x873801ae2ff12d816db9a7b082f5796bec64c82c",
+    "chainId": "eip155:43114",
+    "name": "Waterfall Governance on Avalanche",
+    "precision": 18,
+    "color": "#3477E7",
+    "icon": "https://assets.coingecko.com/coins/images/19189/thumb/wtf_icon_avatar_200x200.png?1696518637",
+    "symbol": "WTF",
+    "explorer": "https://snowtrace.dev",
+    "explorerAddressLink": "https://snowtrace.dev/address/",
+    "explorerTxLink": "https://snowtrace.dev/tx/"
+  },
+  "eip155:43114/erc20:0x88128fd4b259552a9a1d457f435a6527aab72d42": {
+    "assetId": "eip155:43114/erc20:0x88128fd4b259552a9a1d457f435a6527aab72d42",
+    "chainId": "eip155:43114",
+    "name": "Maker on Avalanche",
+    "precision": 18,
+    "color": "#1CAC9C",
+    "icon": "https://assets.coingecko.com/coins/images/1364/thumb/Mark_Maker.png?1696502423",
+    "symbol": "MKR",
+    "explorer": "https://snowtrace.dev",
+    "explorerAddressLink": "https://snowtrace.dev/address/",
+    "explorerTxLink": "https://snowtrace.dev/tx/"
+  },
+  "eip155:43114/erc20:0x885d748c00a279b67a7749ec6b03301700dd0455": {
+    "assetId": "eip155:43114/erc20:0x885d748c00a279b67a7749ec6b03301700dd0455",
+    "chainId": "eip155:43114",
+    "name": "Maximus",
+    "precision": 18,
+    "color": "#A1222C",
+    "icon": "https://assets.coingecko.com/coins/images/20485/thumb/RH7DeA5K_400x400.jpg?1696519892",
+    "symbol": "MAXI",
+    "explorer": "https://snowtrace.dev",
+    "explorerAddressLink": "https://snowtrace.dev/address/",
+    "explorerTxLink": "https://snowtrace.dev/tx/"
+  },
+  "eip155:43114/erc20:0x8888888888f004100c0353d657be6300587a6ccd": {
+    "assetId": "eip155:43114/erc20:0x8888888888f004100c0353d657be6300587a6ccd",
+    "chainId": "eip155:43114",
+    "name": "ACryptoS on Avalanche",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/32721/thumb/ACS.jpg?1699009686",
+    "symbol": "ACS",
+    "explorer": "https://snowtrace.dev",
+    "explorerAddressLink": "https://snowtrace.dev/address/",
+    "explorerTxLink": "https://snowtrace.dev/tx/"
+  },
+  "eip155:43114/erc20:0x8908ea968d2f79d078d893c0bcecd63eacdd9322": {
+    "assetId": "eip155:43114/erc20:0x8908ea968d2f79d078d893c0bcecd63eacdd9322",
+    "chainId": "eip155:43114",
+    "name": "Libera Financial on Avalanche",
+    "precision": 18,
+    "color": "#4AAEA9",
+    "icon": "https://assets.coingecko.com/coins/images/26194/thumb/20791.png?1696525280",
+    "symbol": "LIBERA",
+    "explorer": "https://snowtrace.dev",
+    "explorerAddressLink": "https://snowtrace.dev/address/",
+    "explorerTxLink": "https://snowtrace.dev/tx/"
+  },
+  "eip155:43114/erc20:0x8929e9dbd2785e3ba16175e596cdd61520fee0d1": {
+    "assetId": "eip155:43114/erc20:0x8929e9dbd2785e3ba16175e596cdd61520fee0d1",
+    "chainId": "eip155:43114",
+    "name": "Altitude on Avalanche",
+    "precision": 18,
+    "color": "#436CFC",
+    "icon": "https://assets.coingecko.com/coins/images/30114/thumb/logo.png?1696529036",
+    "symbol": "ALTD",
+    "explorer": "https://snowtrace.dev",
+    "explorerAddressLink": "https://snowtrace.dev/address/",
+    "explorerTxLink": "https://snowtrace.dev/tx/"
+  },
+  "eip155:43114/erc20:0x8a0cac13c7da965a312f08ea4229c37869e85cb9": {
+    "assetId": "eip155:43114/erc20:0x8a0cac13c7da965a312f08ea4229c37869e85cb9",
+    "chainId": "eip155:43114",
+    "name": "The Graph on Avalanche",
+    "precision": 18,
+    "color": "#433DAA",
+    "icon": "https://assets.coingecko.com/coins/images/13397/thumb/Graph_Token.png?1696513159",
+    "symbol": "GRT",
+    "explorer": "https://snowtrace.dev",
+    "explorerAddressLink": "https://snowtrace.dev/address/",
+    "explorerTxLink": "https://snowtrace.dev/tx/"
+  },
+  "eip155:43114/erc20:0x8ae8be25c23833e0a01aa200403e826f611f9cd2": {
+    "assetId": "eip155:43114/erc20:0x8ae8be25c23833e0a01aa200403e826f611f9cd2",
+    "chainId": "eip155:43114",
+    "name": "TaleCraft",
+    "precision": 18,
+    "color": "#684737",
+    "icon": "https://assets.coingecko.com/coins/images/20934/thumb/3mrl6Lfw_400x400.jpg?1696520323",
+    "symbol": "CRAFT",
+    "explorer": "https://snowtrace.dev",
+    "explorerAddressLink": "https://snowtrace.dev/address/",
+    "explorerTxLink": "https://snowtrace.dev/tx/"
+  },
+  "eip155:43114/erc20:0x8c3633ee619a42d3755327c2524e4d108838c47f": {
+    "assetId": "eip155:43114/erc20:0x8c3633ee619a42d3755327c2524e4d108838c47f",
+    "chainId": "eip155:43114",
+    "name": "Zeus Finance",
+    "precision": 18,
+    "color": "#F4F4F4",
+    "icon": "https://assets.coingecko.com/coins/images/27107/thumb/logo.9dcd586c.png?1696526156",
+    "symbol": "ZEUS",
+    "explorer": "https://snowtrace.dev",
+    "explorerAddressLink": "https://snowtrace.dev/address/",
+    "explorerTxLink": "https://snowtrace.dev/tx/"
+  },
+  "eip155:43114/erc20:0x8d88e48465f30acfb8dac0b3e35c9d6d7d36abaf": {
+    "assetId": "eip155:43114/erc20:0x8d88e48465f30acfb8dac0b3e35c9d6d7d36abaf",
+    "chainId": "eip155:43114",
+    "name": "Canary",
+    "precision": 18,
+    "color": "#F4C404",
+    "icon": "https://assets.coingecko.com/coins/images/16764/thumb/logo_-_2021-06-29T113338.436.png?1696516337",
+    "symbol": "CNR",
+    "explorer": "https://snowtrace.dev",
+    "explorerAddressLink": "https://snowtrace.dev/address/",
+    "explorerTxLink": "https://snowtrace.dev/tx/"
+  },
+  "eip155:43114/erc20:0x8eb270e296023e9d92081fdf967ddd7878724424": {
+    "assetId": "eip155:43114/erc20:0x8eb270e296023e9d92081fdf967ddd7878724424",
+    "chainId": "eip155:43114",
+    "name": "Aave v3 MAI",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/32917/thumb/mai.png?1699825303",
+    "symbol": "AMAI",
+    "explorer": "https://snowtrace.dev",
+    "explorerAddressLink": "https://snowtrace.dev/address/",
+    "explorerTxLink": "https://snowtrace.dev/tx/"
+  },
+  "eip155:43114/erc20:0x8ebaf22b6f053dffeaf46f4dd9efa95d89ba8580": {
+    "assetId": "eip155:43114/erc20:0x8ebaf22b6f053dffeaf46f4dd9efa95d89ba8580",
+    "chainId": "eip155:43114",
+    "name": "Uniswap on Avalanche",
+    "precision": 18,
+    "color": "#FCECF5",
+    "icon": "https://assets.coingecko.com/coins/images/12504/thumb/uni.jpg?1696512319",
+    "symbol": "UNI",
+    "explorer": "https://snowtrace.dev",
+    "explorerAddressLink": "https://snowtrace.dev/address/",
+    "explorerTxLink": "https://snowtrace.dev/tx/"
+  },
+  "eip155:43114/erc20:0x8f47416cae600bccf9530e9f3aeaa06bdd1caa79": {
+    "assetId": "eip155:43114/erc20:0x8f47416cae600bccf9530e9f3aeaa06bdd1caa79",
+    "chainId": "eip155:43114",
+    "name": "ThorFi",
+    "precision": 18,
+    "color": "#0B1E2E",
+    "icon": "https://assets.coingecko.com/coins/images/21322/thumb/ThorFi-Mark-Storm2x.png?1696520689",
+    "symbol": "THOR",
+    "explorer": "https://snowtrace.dev",
+    "explorerAddressLink": "https://snowtrace.dev/address/",
+    "explorerTxLink": "https://snowtrace.dev/tx/"
+  },
+  "eip155:43114/erc20:0x8ffdf2de812095b1d19cb146e4c004587c0a0692": {
+    "assetId": "eip155:43114/erc20:0x8ffdf2de812095b1d19cb146e4c004587c0a0692",
+    "chainId": "eip155:43114",
+    "name": "Aave v3 BTC b",
+    "precision": 8,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/32914/thumb/btc.png?1699824823",
+    "symbol": "ABTCB",
+    "explorer": "https://snowtrace.dev",
+    "explorerAddressLink": "https://snowtrace.dev/address/",
+    "explorerTxLink": "https://snowtrace.dev/tx/"
+  },
+  "eip155:43114/erc20:0x916aba115f5162960e48a2675ad4d8cbd09ce8e4": {
+    "assetId": "eip155:43114/erc20:0x916aba115f5162960e48a2675ad4d8cbd09ce8e4",
+    "chainId": "eip155:43114",
+    "name": "MCVERSE",
+    "precision": 18,
+    "color": "#36B1F1",
+    "icon": "https://assets.coingecko.com/coins/images/29564/thumb/mcv-token-logo-200x200.png?1696528504",
+    "symbol": "MCV",
+    "explorer": "https://snowtrace.dev",
+    "explorerAddressLink": "https://snowtrace.dev/address/",
+    "explorerTxLink": "https://snowtrace.dev/tx/"
+  },
+  "eip155:43114/erc20:0x921f99719eb6c01b4b8f0ba7973a7c24891e740a": {
+    "assetId": "eip155:43114/erc20:0x921f99719eb6c01b4b8f0ba7973a7c24891e740a",
+    "chainId": "eip155:43114",
+    "name": "MetaBrands on Avalanche",
+    "precision": 18,
+    "color": "#709B99",
+    "icon": "https://assets.coingecko.com/coins/images/21244/thumb/MAGE-CG.png?1696520617",
+    "symbol": "MAGE",
+    "explorer": "https://snowtrace.dev",
+    "explorerAddressLink": "https://snowtrace.dev/address/",
+    "explorerTxLink": "https://snowtrace.dev/tx/"
+  },
+  "eip155:43114/erc20:0x924157b5dbb387a823719916b25256410a4ad470": {
+    "assetId": "eip155:43114/erc20:0x924157b5dbb387a823719916b25256410a4ad470",
+    "chainId": "eip155:43114",
+    "name": "Snowtomb LOT",
+    "precision": 18,
+    "color": "#E5E9F1",
+    "icon": "https://assets.coingecko.com/coins/images/23297/thumb/200slot.png?1696522515",
+    "symbol": "SLOT",
+    "explorer": "https://snowtrace.dev",
+    "explorerAddressLink": "https://snowtrace.dev/address/",
+    "explorerTxLink": "https://snowtrace.dev/tx/"
+  },
+  "eip155:43114/erc20:0x9366d30feba284e62900f6295bc28c9906f33172": {
+    "assetId": "eip155:43114/erc20:0x9366d30feba284e62900f6295bc28c9906f33172",
+    "chainId": "eip155:43114",
+    "name": "BiometricFinancial",
+    "precision": 6,
+    "color": "#377885",
+    "icon": "https://assets.coingecko.com/coins/images/25207/thumb/CoinGekoBioFiImage.png?1696524351",
+    "symbol": "BIOFI",
+    "explorer": "https://snowtrace.dev",
+    "explorerAddressLink": "https://snowtrace.dev/address/",
+    "explorerTxLink": "https://snowtrace.dev/tx/"
+  },
+  "eip155:43114/erc20:0x937e077abaea52d3abf879c9b9d3f2ebd15baa21": {
+    "assetId": "eip155:43114/erc20:0x937e077abaea52d3abf879c9b9d3f2ebd15baa21",
+    "chainId": "eip155:43114",
+    "name": "Oh  Finance on Avalanche",
+    "precision": 18,
+    "color": "#DAF2FA",
+    "icon": "https://assets.coingecko.com/coins/images/19493/thumb/oh-token-logo-200.png?1696518929",
+    "symbol": "OH",
+    "explorer": "https://snowtrace.dev",
+    "explorerAddressLink": "https://snowtrace.dev/address/",
+    "explorerTxLink": "https://snowtrace.dev/tx/"
+  },
+  "eip155:43114/erc20:0x938fe3788222a74924e062120e7bfac829c719fb": {
+    "assetId": "eip155:43114/erc20:0x938fe3788222a74924e062120e7bfac829c719fb",
+    "chainId": "eip155:43114",
+    "name": "Ape In on Avalanche",
+    "precision": 18,
+    "color": "#D0C1BA",
+    "icon": "https://assets.coingecko.com/coins/images/18262/thumb/apein.PNG?1696517757",
+    "symbol": "APEIN",
+    "explorer": "https://snowtrace.dev",
+    "explorerAddressLink": "https://snowtrace.dev/address/",
+    "explorerTxLink": "https://snowtrace.dev/tx/"
+  },
+  "eip155:43114/erc20:0x94025780a1ab58868d9b2dbbb775f44b32e8e6e5": {
+    "assetId": "eip155:43114/erc20:0x94025780a1ab58868d9b2dbbb775f44b32e8e6e5",
+    "chainId": "eip155:43114",
+    "name": "BetSwirl on Avalanche",
+    "precision": 18,
+    "color": "#476DEF",
+    "icon": "https://assets.coingecko.com/coins/images/26618/thumb/icon_200.png?1696525691",
+    "symbol": "BETS",
+    "explorer": "https://snowtrace.dev",
+    "explorerAddressLink": "https://snowtrace.dev/address/",
+    "explorerTxLink": "https://snowtrace.dev/tx/"
+  },
+  "eip155:43114/erc20:0x945ca41d03ec19b6a6ebf2ef0f4d0a50b23e4f2c": {
+    "assetId": "eip155:43114/erc20:0x945ca41d03ec19b6a6ebf2ef0f4d0a50b23e4f2c",
+    "chainId": "eip155:43114",
+    "name": "GRELF",
+    "precision": 8,
+    "color": "#4D3227",
+    "icon": "https://assets.coingecko.com/coins/images/29656/thumb/GRELF_Logo_smol.png?1700667970",
+    "symbol": "GRELF",
+    "explorer": "https://snowtrace.dev",
+    "explorerAddressLink": "https://snowtrace.dev/address/",
+    "explorerTxLink": "https://snowtrace.dev/tx/"
+  },
+  "eip155:43114/erc20:0x94960952876e3ed6a7760b198354fcc5319a406a": {
+    "assetId": "eip155:43114/erc20:0x94960952876e3ed6a7760b198354fcc5319a406a",
+    "chainId": "eip155:43114",
+    "name": "RBX on Avalanche",
+    "precision": 18,
+    "color": "#B43C2C",
+    "icon": "https://assets.coingecko.com/coins/images/19253/thumb/output-onlinepngtools-9.png?1696518698",
+    "symbol": "RBX",
+    "explorer": "https://snowtrace.dev",
+    "explorerAddressLink": "https://snowtrace.dev/address/",
+    "explorerTxLink": "https://snowtrace.dev/tx/"
+  },
+  "eip155:43114/erc20:0x95ced7c63ea990588f3fd01cdde25247d04b8d98": {
+    "assetId": "eip155:43114/erc20:0x95ced7c63ea990588f3fd01cdde25247d04b8d98",
+    "chainId": "eip155:43114",
+    "name": "GrapeVine",
+    "precision": 18,
+    "color": "#7A307A",
+    "icon": "https://assets.coingecko.com/coins/images/27741/thumb/CRYTOLOGO.png?1696526764",
+    "symbol": "XGRAPE",
+    "explorer": "https://snowtrace.dev",
+    "explorerAddressLink": "https://snowtrace.dev/address/",
+    "explorerTxLink": "https://snowtrace.dev/tx/"
+  },
+  "eip155:43114/erc20:0x95e376390f472fcaa21995169e11d523954b3bbb": {
+    "assetId": "eip155:43114/erc20:0x95e376390f472fcaa21995169e11d523954b3bbb",
+    "chainId": "eip155:43114",
+    "name": "LiraT on Avalanche",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/32815/thumb/lirat.png?1699579061",
+    "symbol": "TRYT",
+    "explorer": "https://snowtrace.dev",
+    "explorerAddressLink": "https://snowtrace.dev/address/",
+    "explorerTxLink": "https://snowtrace.dev/tx/"
+  },
+  "eip155:43114/erc20:0x961c8c0b1aad0c0b10a51fef6a867e3091bcef17": {
+    "assetId": "eip155:43114/erc20:0x961c8c0b1aad0c0b10a51fef6a867e3091bcef17",
+    "chainId": "eip155:43114",
+    "name": "Dypius  OLD  on Avalanche",
+    "precision": 18,
+    "color": "#E40818",
+    "icon": "https://assets.coingecko.com/coins/images/13480/thumb/DYP-200x200px.png?1696513241",
+    "symbol": "DYP",
+    "explorer": "https://snowtrace.dev",
+    "explorerAddressLink": "https://snowtrace.dev/address/",
+    "explorerTxLink": "https://snowtrace.dev/tx/"
+  },
+  "eip155:43114/erc20:0x9702230a8ea53601f5cd2dc00fdbc13d4df4a8c7": {
+    "assetId": "eip155:43114/erc20:0x9702230a8ea53601f5cd2dc00fdbc13d4df4a8c7",
+    "chainId": "eip155:43114",
+    "name": "Tether on Avalanche",
+    "precision": 6,
+    "color": "#C4ECE0",
+    "icon": "https://assets.coingecko.com/coins/images/325/thumb/Tether.png?1696501661",
+    "symbol": "USDT",
+    "explorer": "https://snowtrace.dev",
+    "explorerAddressLink": "https://snowtrace.dev/address/",
+    "explorerTxLink": "https://snowtrace.dev/tx/"
+  },
+  "eip155:43114/erc20:0x9767203e89dcd34851240b3919d4900d3e5069f1": {
+    "assetId": "eip155:43114/erc20:0x9767203e89dcd34851240b3919d4900d3e5069f1",
+    "chainId": "eip155:43114",
+    "name": "A4 Finance on Avalanche",
+    "precision": 6,
+    "color": "#D4D4D4",
+    "icon": "https://assets.coingecko.com/coins/images/21992/thumb/ba384ad07217a4be75cb85314f5760f7.jpg?1696521340",
+    "symbol": "A4",
+    "explorer": "https://snowtrace.dev",
+    "explorerAddressLink": "https://snowtrace.dev/address/",
+    "explorerTxLink": "https://snowtrace.dev/tx/"
+  },
+  "eip155:43114/erc20:0x97cd1cfe2ed5712660bb6c14053c0ecb031bff7d": {
+    "assetId": "eip155:43114/erc20:0x97cd1cfe2ed5712660bb6c14053c0ecb031bff7d",
+    "chainId": "eip155:43114",
+    "name": "Rai Reflex Index on Avalanche",
+    "precision": 18,
+    "color": "#1D2A2A",
+    "icon": "https://assets.coingecko.com/coins/images/14004/thumb/RAI-logo-coin.png?1696513733",
+    "symbol": "RAI",
+    "explorer": "https://snowtrace.dev",
+    "explorerAddressLink": "https://snowtrace.dev/address/",
+    "explorerTxLink": "https://snowtrace.dev/tx/"
+  },
+  "eip155:43114/erc20:0x97d367a5f900f5c9db4370d0d801fc52332244c7": {
+    "assetId": "eip155:43114/erc20:0x97d367a5f900f5c9db4370d0d801fc52332244c7",
+    "chainId": "eip155:43114",
+    "name": "Statik",
+    "precision": 18,
+    "color": "#265BB1",
+    "icon": "https://assets.coingecko.com/coins/images/22298/thumb/STATIK_200x200.png?1696521644",
+    "symbol": "STATIK",
+    "explorer": "https://snowtrace.dev",
+    "explorerAddressLink": "https://snowtrace.dev/address/",
+    "explorerTxLink": "https://snowtrace.dev/tx/"
+  },
+  "eip155:43114/erc20:0x98443b96ea4b0858fdf3219cd13e98c7a4690588": {
+    "assetId": "eip155:43114/erc20:0x98443b96ea4b0858fdf3219cd13e98c7a4690588",
+    "chainId": "eip155:43114",
+    "name": "Basic Attention on Avalanche",
+    "precision": 18,
+    "color": "#FC5404",
+    "icon": "https://assets.coingecko.com/coins/images/677/thumb/basic-attention-token.png?1696501867",
+    "symbol": "BAT",
+    "explorer": "https://snowtrace.dev",
+    "explorerAddressLink": "https://snowtrace.dev/address/",
+    "explorerTxLink": "https://snowtrace.dev/tx/"
+  },
+  "eip155:43114/erc20:0x99083d1b9c6744c71d0cf70b8965faca37684527": {
+    "assetId": "eip155:43114/erc20:0x99083d1b9c6744c71d0cf70b8965faca37684527",
+    "chainId": "eip155:43114",
+    "name": "FRANCE REV FINANCE on Avalanche",
+    "precision": 18,
+    "color": "#3CCC3E",
+    "icon": "https://assets.coingecko.com/coins/images/22224/thumb/LOGO200_FRF.png?1696521567",
+    "symbol": "FRF",
+    "explorer": "https://snowtrace.dev",
+    "explorerAddressLink": "https://snowtrace.dev/address/",
+    "explorerTxLink": "https://snowtrace.dev/tx/"
+  },
+  "eip155:43114/erc20:0x9a8e0217cd870783c3f2317985c57bf570969153": {
+    "assetId": "eip155:43114/erc20:0x9a8e0217cd870783c3f2317985c57bf570969153",
+    "chainId": "eip155:43114",
+    "name": "Cosmic Universe Magic",
+    "precision": 18,
+    "color": "#A2749F",
+    "icon": "https://assets.coingecko.com/coins/images/19313/thumb/13037.png?1696518755",
+    "symbol": "MAGIC",
+    "explorer": "https://snowtrace.dev",
+    "explorerAddressLink": "https://snowtrace.dev/address/",
+    "explorerTxLink": "https://snowtrace.dev/tx/"
+  },
+  "eip155:43114/erc20:0x9ad274e20a153451775ff29d546949a254c4a1bc": {
+    "assetId": "eip155:43114/erc20:0x9ad274e20a153451775ff29d546949a254c4a1bc",
+    "chainId": "eip155:43114",
+    "name": "Shack on Avalanche",
+    "precision": 18,
+    "color": "#EC1C24",
+    "icon": "https://assets.coingecko.com/coins/images/25699/thumb/shack_no_bg_no_pad3.png?1696524826",
+    "symbol": "SHACK",
+    "explorer": "https://snowtrace.dev",
+    "explorerAddressLink": "https://snowtrace.dev/address/",
+    "explorerTxLink": "https://snowtrace.dev/tx/"
+  },
+  "eip155:43114/erc20:0x9b06f3c5de42d4623d7a2bd940ec735103c68a76": {
+    "assetId": "eip155:43114/erc20:0x9b06f3c5de42d4623d7a2bd940ec735103c68a76",
+    "chainId": "eip155:43114",
+    "name": "Volta Club on Avalanche",
+    "precision": 18,
+    "color": "#350604",
+    "icon": "https://assets.coingecko.com/coins/images/31602/thumb/volta-200x200.png?1696530418",
+    "symbol": "VOLTA",
+    "explorer": "https://snowtrace.dev",
+    "explorerAddressLink": "https://snowtrace.dev/address/",
+    "explorerTxLink": "https://snowtrace.dev/tx/"
+  },
+  "eip155:43114/erc20:0x9c3254bb4f7f6a05a4aaf2cadce592c848d043c1": {
+    "assetId": "eip155:43114/erc20:0x9c3254bb4f7f6a05a4aaf2cadce592c848d043c1",
+    "chainId": "eip155:43114",
+    "name": "Alpha Shares V2",
+    "precision": 18,
+    "color": "#481762",
+    "icon": "https://assets.coingecko.com/coins/images/28136/thumb/alpha.png?1696527143",
+    "symbol": "ALPHA",
+    "explorer": "https://snowtrace.dev",
+    "explorerAddressLink": "https://snowtrace.dev/address/",
+    "explorerTxLink": "https://snowtrace.dev/tx/"
+  },
+  "eip155:43114/erc20:0x9c846d808a41328a209e235b5e3c4e626dab169e": {
+    "assetId": "eip155:43114/erc20:0x9c846d808a41328a209e235b5e3c4e626dab169e",
+    "chainId": "eip155:43114",
+    "name": "Chikn Fert",
+    "precision": 18,
+    "color": "#D68C8C",
+    "icon": "https://assets.coingecko.com/coins/images/25425/thumb/200x200_FERT.png?1696524556",
+    "symbol": "FERT",
+    "explorer": "https://snowtrace.dev",
+    "explorerAddressLink": "https://snowtrace.dev/address/",
+    "explorerTxLink": "https://snowtrace.dev/tx/"
+  },
+  "eip155:43114/erc20:0x9c9e5fd8bbc25984b178fdce6117defa39d2db39": {
+    "assetId": "eip155:43114/erc20:0x9c9e5fd8bbc25984b178fdce6117defa39d2db39",
+    "chainId": "eip155:43114",
+    "name": "Binance Peg BUSD on Avalanche",
+    "precision": 18,
+    "color": "#F4BC0C",
+    "icon": "https://assets.coingecko.com/coins/images/31273/thumb/new_binance-peg-busd.png?1696530096",
+    "symbol": "BUSD",
+    "explorer": "https://snowtrace.dev",
+    "explorerAddressLink": "https://snowtrace.dev/address/",
+    "explorerTxLink": "https://snowtrace.dev/tx/"
+  },
+  "eip155:43114/erc20:0x9df4ac62f9e435dbcd85e06c990a7f0ea32739a9": {
+    "assetId": "eip155:43114/erc20:0x9df4ac62f9e435dbcd85e06c990a7f0ea32739a9",
+    "chainId": "eip155:43114",
+    "name": "Granary on Avalanche",
+    "precision": 18,
+    "color": "#EDD894",
+    "icon": "https://assets.coingecko.com/coins/images/29740/thumb/Grain.png?1696528670",
+    "symbol": "GRAIN",
+    "explorer": "https://snowtrace.dev",
+    "explorerAddressLink": "https://snowtrace.dev/address/",
+    "explorerTxLink": "https://snowtrace.dev/tx/"
+  },
+  "eip155:43114/erc20:0x9e3ca00f2d4a9e5d4f0add0900de5f15050812cf": {
+    "assetId": "eip155:43114/erc20:0x9e3ca00f2d4a9e5d4f0add0900de5f15050812cf",
+    "chainId": "eip155:43114",
+    "name": "NFTrade on Avalanche",
+    "precision": 18,
+    "color": "#ECF4FC",
+    "icon": "https://assets.coingecko.com/coins/images/18578/thumb/nftrade.png?1696518055",
+    "symbol": "NFTD",
+    "explorer": "https://snowtrace.dev",
+    "explorerAddressLink": "https://snowtrace.dev/address/",
+    "explorerTxLink": "https://snowtrace.dev/tx/"
+  },
+  "eip155:43114/erc20:0x9eaac1b23d935365bd7b542fe22ceee2922f52dc": {
+    "assetId": "eip155:43114/erc20:0x9eaac1b23d935365bd7b542fe22ceee2922f52dc",
+    "chainId": "eip155:43114",
+    "name": "yearn finance on Avalanche",
+    "precision": 18,
+    "color": "#C3DDF7",
+    "icon": "https://assets.coingecko.com/coins/images/11849/thumb/yearn.jpg?1696511720",
+    "symbol": "YFI",
+    "explorer": "https://snowtrace.dev",
+    "explorerAddressLink": "https://snowtrace.dev/address/",
+    "explorerTxLink": "https://snowtrace.dev/tx/"
+  },
+  "eip155:43114/erc20:0x9ed7e4b1bff939ad473da5e7a218c771d1569456": {
+    "assetId": "eip155:43114/erc20:0x9ed7e4b1bff939ad473da5e7a218c771d1569456",
+    "chainId": "eip155:43114",
+    "name": "Reunit Wallet on Avalanche",
+    "precision": 6,
+    "color": "#0E0A0E",
+    "icon": "https://assets.coingecko.com/coins/images/29492/thumb/reunit_200.png?1696528436",
+    "symbol": "REUNI",
+    "explorer": "https://snowtrace.dev",
+    "explorerAddressLink": "https://snowtrace.dev/address/",
+    "explorerTxLink": "https://snowtrace.dev/tx/"
+  },
+  "eip155:43114/erc20:0x9f285507ea5b4f33822ca7abb5ec8953ce37a645": {
+    "assetId": "eip155:43114/erc20:0x9f285507ea5b4f33822ca7abb5ec8953ce37a645",
+    "chainId": "eip155:43114",
+    "name": "Degis",
+    "precision": 18,
+    "color": "#3E3E3E",
+    "icon": "https://assets.coingecko.com/coins/images/24333/thumb/DEG_Logo.png?1696523518",
+    "symbol": "DEG",
+    "explorer": "https://snowtrace.dev",
+    "explorerAddressLink": "https://snowtrace.dev/address/",
+    "explorerTxLink": "https://snowtrace.dev/tx/"
+  },
+  "eip155:43114/erc20:0x9fb9a33956351cf4fa040f65a13b835a3c8764e3": {
+    "assetId": "eip155:43114/erc20:0x9fb9a33956351cf4fa040f65a13b835a3c8764e3",
+    "chainId": "eip155:43114",
+    "name": "Multichain on Avalanche",
+    "precision": 18,
+    "color": "#D6D2FA",
+    "icon": "https://assets.coingecko.com/coins/images/22087/thumb/1_Wyot-SDGZuxbjdkaOeT2-A.png?1696521430",
+    "symbol": "MULTI",
+    "explorer": "https://snowtrace.dev",
+    "explorerAddressLink": "https://snowtrace.dev/address/",
+    "explorerTxLink": "https://snowtrace.dev/tx/"
+  },
+  "eip155:43114/erc20:0x9fda7ceec4c18008096c2fe2b85f05dc300f94d0": {
+    "assetId": "eip155:43114/erc20:0x9fda7ceec4c18008096c2fe2b85f05dc300f94d0",
+    "chainId": "eip155:43114",
+    "name": "Marginswap on Avalanche",
+    "precision": 18,
+    "color": "#262C34",
+    "icon": "https://assets.coingecko.com/coins/images/13899/thumb/marginswap_logo.png?1696513642",
+    "symbol": "MFI",
+    "explorer": "https://snowtrace.dev",
+    "explorerAddressLink": "https://snowtrace.dev/address/",
+    "explorerTxLink": "https://snowtrace.dev/tx/"
+  },
+  "eip155:43114/erc20:0xa1afcc973d44ce1c65a21d9e644cb82489d26503": {
+    "assetId": "eip155:43114/erc20:0xa1afcc973d44ce1c65a21d9e644cb82489d26503",
+    "chainId": "eip155:43114",
+    "name": "RunBlox on Avalanche",
+    "precision": 18,
+    "color": "#040404",
+    "icon": "https://assets.coingecko.com/coins/images/26156/thumb/img_v2_37fc1523-649d-45bc-a75f-387f9de1bfch.png?1696525244",
+    "symbol": "RUX",
+    "explorer": "https://snowtrace.dev",
+    "explorerAddressLink": "https://snowtrace.dev/address/",
+    "explorerTxLink": "https://snowtrace.dev/tx/"
+  },
+  "eip155:43114/erc20:0xa2776a53da0bf664ea34b8efa1c8ab4241a10968": {
+    "assetId": "eip155:43114/erc20:0xa2776a53da0bf664ea34b8efa1c8ab4241a10968",
+    "chainId": "eip155:43114",
+    "name": "Blizzard Network",
+    "precision": 18,
+    "color": "#E3DCF1",
+    "icon": "https://assets.coingecko.com/coins/images/18446/thumb/blizz.PNG?1696517933",
+    "symbol": "BLIZZ",
+    "explorer": "https://snowtrace.dev",
+    "explorerAddressLink": "https://snowtrace.dev/address/",
+    "explorerTxLink": "https://snowtrace.dev/tx/"
+  },
+  "eip155:43114/erc20:0xa32608e873f9ddef944b24798db69d80bbb4d1ed": {
+    "assetId": "eip155:43114/erc20:0xa32608e873f9ddef944b24798db69d80bbb4d1ed",
+    "chainId": "eip155:43114",
+    "name": "Crabada",
+    "precision": 18,
+    "color": "#0559AC",
+    "icon": "https://assets.coingecko.com/coins/images/20011/thumb/crabada_icon_%281%29.png?1696519432",
+    "symbol": "CRA",
+    "explorer": "https://snowtrace.dev",
+    "explorerAddressLink": "https://snowtrace.dev/address/",
+    "explorerTxLink": "https://snowtrace.dev/tx/"
+  },
+  "eip155:43114/erc20:0xa384bc7cdc0a93e686da9e7b8c0807cd040f4e0b": {
+    "assetId": "eip155:43114/erc20:0xa384bc7cdc0a93e686da9e7b8c0807cd040f4e0b",
+    "chainId": "eip155:43114",
+    "name": "WOWswap on Avalanche",
+    "precision": 18,
+    "color": "#F0B82C",
+    "icon": "https://assets.coingecko.com/coins/images/14101/thumb/Group-423.png?1696513823",
+    "symbol": "WOW",
+    "explorer": "https://snowtrace.dev",
+    "explorerAddressLink": "https://snowtrace.dev/address/",
+    "explorerTxLink": "https://snowtrace.dev/tx/"
+  },
+  "eip155:43114/erc20:0xa4fb4f0ff2431262d236778495145ecbc975c38b": {
+    "assetId": "eip155:43114/erc20:0xa4fb4f0ff2431262d236778495145ecbc975c38b",
+    "chainId": "eip155:43114",
+    "name": "Bware on Avalanche",
+    "precision": 18,
+    "color": "#8D650C",
+    "icon": "https://assets.coingecko.com/coins/images/30546/thumb/infra-token-square.png?1696529418",
+    "symbol": "INFRA",
+    "explorer": "https://snowtrace.dev",
+    "explorerAddressLink": "https://snowtrace.dev/address/",
+    "explorerTxLink": "https://snowtrace.dev/tx/"
+  },
+  "eip155:43114/erc20:0xa5acfeca5270bc9768633fbc86caa959b85ec8b7": {
+    "assetId": "eip155:43114/erc20:0xa5acfeca5270bc9768633fbc86caa959b85ec8b7",
+    "chainId": "eip155:43114",
+    "name": "KROWN on Avalanche",
+    "precision": 18,
+    "color": "#19202E",
+    "icon": "https://assets.coingecko.com/coins/images/16530/thumb/KRW_token_logo_200x200.png?1696516093",
+    "symbol": "KRW",
+    "explorer": "https://snowtrace.dev",
+    "explorerAddressLink": "https://snowtrace.dev/address/",
+    "explorerTxLink": "https://snowtrace.dev/tx/"
+  },
+  "eip155:43114/erc20:0xa77e70d0af1ac7ff86726740db1bd065c3566937": {
+    "assetId": "eip155:43114/erc20:0xa77e70d0af1ac7ff86726740db1bd065c3566937",
+    "chainId": "eip155:43114",
+    "name": "PLAYA3ULL GAMES",
+    "precision": 18,
+    "color": "#BEDCC8",
+    "icon": "https://assets.coingecko.com/coins/images/30695/thumb/App_Icon_Round.png?1696529564",
+    "symbol": "3ULL",
+    "explorer": "https://snowtrace.dev",
+    "explorerAddressLink": "https://snowtrace.dev/address/",
+    "explorerTxLink": "https://snowtrace.dev/tx/"
+  },
+  "eip155:43114/erc20:0xa7d7079b0fead91f3e65f86e8915cb59c1a4c664": {
+    "assetId": "eip155:43114/erc20:0xa7d7079b0fead91f3e65f86e8915cb59c1a4c664",
+    "chainId": "eip155:43114",
+    "name": "Aave v2 USDC on Avalanche",
+    "precision": 6,
+    "color": "#2C78CD",
+    "icon": "https://assets.coingecko.com/coins/images/14318/thumb/aUSDC.e260d492.png?1696514006",
+    "symbol": "AUSDC",
+    "explorer": "https://snowtrace.dev",
+    "explorerAddressLink": "https://snowtrace.dev/address/",
+    "explorerTxLink": "https://snowtrace.dev/tx/"
+  },
+  "eip155:43114/erc20:0xa9ef87eb3fdc2f08ef5ee401326f7331d4d312cf": {
+    "assetId": "eip155:43114/erc20:0xa9ef87eb3fdc2f08ef5ee401326f7331d4d312cf",
+    "chainId": "eip155:43114",
+    "name": "Index Avalanche DeFi",
+    "precision": 17,
+    "color": "#B99690",
+    "icon": "https://assets.coingecko.com/coins/images/30069/thumb/IXAD_token.png?1696528990",
+    "symbol": "IXAD",
+    "explorer": "https://snowtrace.dev",
+    "explorerAddressLink": "https://snowtrace.dev/address/",
+    "explorerTxLink": "https://snowtrace.dev/tx/"
+  },
+  "eip155:43114/erc20:0xab05b04743e0aeaf9d2ca81e5d3b8385e4bf961e": {
+    "assetId": "eip155:43114/erc20:0xab05b04743e0aeaf9d2ca81e5d3b8385e4bf961e",
+    "chainId": "eip155:43114",
+    "name": "SpiceUSD on Avalanche",
+    "precision": 18,
+    "color": "#5CBC5C",
+    "icon": "https://assets.coingecko.com/coins/images/25697/thumb/USDS.png?1696524824",
+    "symbol": "USDS",
+    "explorer": "https://snowtrace.dev",
+    "explorerAddressLink": "https://snowtrace.dev/address/",
+    "explorerTxLink": "https://snowtrace.dev/tx/"
+  },
+  "eip155:43114/erc20:0xab547a8dc764408ce9dea41bdf689aeeb349da12": {
+    "assetId": "eip155:43114/erc20:0xab547a8dc764408ce9dea41bdf689aeeb349da12",
+    "chainId": "eip155:43114",
+    "name": "Owloper Owl",
+    "precision": 18,
+    "color": "#F7E8E2",
+    "icon": "https://assets.coingecko.com/coins/images/26453/thumb/Jq6a3dLK_400x400.jpeg?1696525526",
+    "symbol": "OWL",
+    "explorer": "https://snowtrace.dev",
+    "explorerAddressLink": "https://snowtrace.dev/address/",
+    "explorerTxLink": "https://snowtrace.dev/tx/"
+  },
+  "eip155:43114/erc20:0xab592d197acc575d16c3346f4eb70c703f308d1e": {
+    "assetId": "eip155:43114/erc20:0xab592d197acc575d16c3346f4eb70c703f308d1e",
+    "chainId": "eip155:43114",
+    "name": "chikn feed",
+    "precision": 18,
+    "color": "#F33949",
+    "icon": "https://assets.coingecko.com/coins/images/22417/thumb/bJIvBemg_400x400.jpg?1696521759",
+    "symbol": "FEED",
+    "explorer": "https://snowtrace.dev",
+    "explorerAddressLink": "https://snowtrace.dev/address/",
+    "explorerTxLink": "https://snowtrace.dev/tx/"
+  },
+  "eip155:43114/erc20:0xabc9547b534519ff73921b1fba6e672b5f58d083": {
+    "assetId": "eip155:43114/erc20:0xabc9547b534519ff73921b1fba6e672b5f58d083",
+    "chainId": "eip155:43114",
+    "name": "WOO Network on Avalanche",
+    "precision": 18,
+    "color": "#E1E4E6",
+    "icon": "https://assets.coingecko.com/coins/images/12921/thumb/WOO_Logos_2023_Profile_Pic_WOO.png?1696512709",
+    "symbol": "WOO",
+    "explorer": "https://snowtrace.dev",
+    "explorerAddressLink": "https://snowtrace.dev/address/",
+    "explorerTxLink": "https://snowtrace.dev/tx/"
+  },
+  "eip155:43114/erc20:0xad090976ce846935dcff1ded852668beed912916": {
+    "assetId": "eip155:43114/erc20:0xad090976ce846935dcff1ded852668beed912916",
+    "chainId": "eip155:43114",
+    "name": "OATH on Avalanche",
+    "precision": 18,
+    "color": "#0E0E0E",
+    "icon": "https://assets.coingecko.com/coins/images/24075/thumb/OATH.png?1698051304",
+    "symbol": "OATH",
+    "explorer": "https://snowtrace.dev",
+    "explorerAddressLink": "https://snowtrace.dev/address/",
+    "explorerTxLink": "https://snowtrace.dev/tx/"
+  },
+  "eip155:43114/erc20:0xade6057fcafa57d6d51ffa341c64ce4814995995": {
+    "assetId": "eip155:43114/erc20:0xade6057fcafa57d6d51ffa341c64ce4814995995",
+    "chainId": "eip155:43114",
+    "name": "Backed ZPR1   1 3 Month T Bill on Avalanche",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/32867/thumb/b-ZPR1-200x200.png?1699671603",
+    "symbol": "BZPR1",
+    "explorer": "https://snowtrace.dev",
+    "explorerAddressLink": "https://snowtrace.dev/address/",
+    "explorerTxLink": "https://snowtrace.dev/tx/"
+  },
+  "eip155:43114/erc20:0xae4aa155d2987b454c29450ef4f862cf00907b61": {
+    "assetId": "eip155:43114/erc20:0xae4aa155d2987b454c29450ef4f862cf00907b61",
+    "chainId": "eip155:43114",
+    "name": "Thorus",
+    "precision": 18,
+    "color": "#384496",
+    "icon": "https://assets.coingecko.com/coins/images/22297/thumb/THO_200x200.png?1696521643",
+    "symbol": "THO",
+    "explorer": "https://snowtrace.dev",
+    "explorerAddressLink": "https://snowtrace.dev/address/",
+    "explorerTxLink": "https://snowtrace.dev/tx/"
+  },
+  "eip155:43114/erc20:0xae9d2385ff2e2951dd4fa061e74c4d3dedd24347": {
+    "assetId": "eip155:43114/erc20:0xae9d2385ff2e2951dd4fa061e74c4d3dedd24347",
+    "chainId": "eip155:43114",
+    "name": "Tokenplace on Avalanche",
+    "precision": 8,
+    "color": "#08B8EF",
+    "icon": "https://assets.coingecko.com/coins/images/15779/thumb/output-onlinepngtools_%283%29.png?1696515403",
+    "symbol": "TOK",
+    "explorer": "https://snowtrace.dev",
+    "explorerAddressLink": "https://snowtrace.dev/address/",
+    "explorerTxLink": "https://snowtrace.dev/tx/"
+  },
+  "eip155:43114/erc20:0xaf20f5f19698f1d19351028cd7103b63d30de7d7": {
+    "assetId": "eip155:43114/erc20:0xaf20f5f19698f1d19351028cd7103b63d30de7d7",
+    "chainId": "eip155:43114",
+    "name": "Wagmi on Avalanche",
+    "precision": 18,
+    "color": "#CEB484",
+    "icon": "https://assets.coingecko.com/coins/images/31887/thumb/wagmi_token_logo.png?1696530698",
+    "symbol": "WAGMI",
+    "explorer": "https://snowtrace.dev",
+    "explorerAddressLink": "https://snowtrace.dev/address/",
+    "explorerTxLink": "https://snowtrace.dev/tx/"
+  },
+  "eip155:43114/erc20:0xafc43610c7840b20b90caaf93759be5b54b291c9": {
+    "assetId": "eip155:43114/erc20:0xafc43610c7840b20b90caaf93759be5b54b291c9",
+    "chainId": "eip155:43114",
+    "name": "Allbridge on Avalanche",
+    "precision": 18,
+    "color": "#E4E4E4",
+    "icon": "https://assets.coingecko.com/coins/images/18690/thumb/abr.png?1696518157",
+    "symbol": "ABR",
+    "explorer": "https://snowtrace.dev",
+    "explorerAddressLink": "https://snowtrace.dev/address/",
+    "explorerTxLink": "https://snowtrace.dev/tx/"
+  },
+  "eip155:43114/erc20:0xafc4d521df3c0566d61931f81f02f1a525bad04d": {
+    "assetId": "eip155:43114/erc20:0xafc4d521df3c0566d61931f81f02f1a525bad04d",
+    "chainId": "eip155:43114",
+    "name": "Wasdaq Finance on Avalanche",
+    "precision": 9,
+    "color": "#0D0908",
+    "icon": "https://assets.coingecko.com/coins/images/21268/thumb/Dn1G5rLx_400x400.jpg?1696520639",
+    "symbol": "WSDQ",
+    "explorer": "https://snowtrace.dev",
+    "explorerAddressLink": "https://snowtrace.dev/address/",
+    "explorerTxLink": "https://snowtrace.dev/tx/"
+  },
+  "eip155:43114/erc20:0xafe3d2a31231230875dee1fa1eef14a412443d22": {
+    "assetId": "eip155:43114/erc20:0xafe3d2a31231230875dee1fa1eef14a412443d22",
+    "chainId": "eip155:43114",
+    "name": "DeFiato on Avalanche",
+    "precision": 18,
+    "color": "#043DFC",
+    "icon": "https://assets.coingecko.com/coins/images/13386/thumb/Defiato.png?1696513149",
+    "symbol": "DFIAT",
+    "explorer": "https://snowtrace.dev",
+    "explorerAddressLink": "https://snowtrace.dev/address/",
+    "explorerTxLink": "https://snowtrace.dev/tx/"
+  },
+  "eip155:43114/erc20:0xb00f1ad977a949a3ccc389ca1d1282a2946963b0": {
+    "assetId": "eip155:43114/erc20:0xb00f1ad977a949a3ccc389ca1d1282a2946963b0",
+    "chainId": "eip155:43114",
+    "name": "Boo Finance",
+    "precision": 18,
+    "color": "#E5F5F3",
+    "icon": "https://assets.coingecko.com/coins/images/18727/thumb/xrbdgaJc_400x400.jpg?1696518194",
+    "symbol": "BOOFI",
+    "explorer": "https://snowtrace.dev",
+    "explorerAddressLink": "https://snowtrace.dev/address/",
+    "explorerTxLink": "https://snowtrace.dev/tx/"
+  },
+  "eip155:43114/erc20:0xb09fe1613fe03e7361319d2a43edc17422f36b09": {
+    "assetId": "eip155:43114/erc20:0xb09fe1613fe03e7361319d2a43edc17422f36b09",
+    "chainId": "eip155:43114",
+    "name": "Bogged Finance on Avalanche",
+    "precision": 18,
+    "color": "#1D222D",
+    "icon": "https://assets.coingecko.com/coins/images/15980/thumb/bog.png?1696515593",
+    "symbol": "BOG",
+    "explorer": "https://snowtrace.dev",
+    "explorerAddressLink": "https://snowtrace.dev/address/",
+    "explorerTxLink": "https://snowtrace.dev/tx/"
+  },
+  "eip155:43114/erc20:0xb0a6e056b587d0a85640b39b1cb44086f7a26a1e": {
+    "assetId": "eip155:43114/erc20:0xb0a6e056b587d0a85640b39b1cb44086f7a26a1e",
+    "chainId": "eip155:43114",
+    "name": "Oddz on Avalanche",
+    "precision": 18,
+    "color": "#B4D4FC",
+    "icon": "https://assets.coingecko.com/coins/images/14421/thumb/NewLogo.png?1696514112",
+    "symbol": "ODDZ",
+    "explorer": "https://snowtrace.dev",
+    "explorerAddressLink": "https://snowtrace.dev/address/",
+    "explorerTxLink": "https://snowtrace.dev/tx/"
+  },
+  "eip155:43114/erc20:0xb0a8e082e5f8d2a04e74372c1be47737d85a0e73": {
+    "assetId": "eip155:43114/erc20:0xb0a8e082e5f8d2a04e74372c1be47737d85a0e73",
+    "chainId": "eip155:43114",
+    "name": "Atlas USV on Avalanche",
+    "precision": 9,
+    "color": "#081623",
+    "icon": "https://assets.coingecko.com/coins/images/22066/thumb/7iUyjg5t.png?1696521410",
+    "symbol": "USV",
+    "explorer": "https://snowtrace.dev",
+    "explorerAddressLink": "https://snowtrace.dev/address/",
+    "explorerTxLink": "https://snowtrace.dev/tx/"
+  },
+  "eip155:43114/erc20:0xb1466d4cf0dcfc0bcddcf3500f473cdacb88b56d": {
+    "assetId": "eip155:43114/erc20:0xb1466d4cf0dcfc0bcddcf3500f473cdacb88b56d",
+    "chainId": "eip155:43114",
+    "name": "Weble Ecosystem on Avalanche",
+    "precision": 18,
+    "color": "#98BBC8",
+    "icon": "https://assets.coingecko.com/coins/images/17353/thumb/cropped-logo-wombat.png?1696516905",
+    "symbol": "WET",
+    "explorer": "https://snowtrace.dev",
+    "explorerAddressLink": "https://snowtrace.dev/address/",
+    "explorerTxLink": "https://snowtrace.dev/tx/"
+  },
+  "eip155:43114/erc20:0xb168085d608d7ba4931a503d3424bc44ddb6b30d": {
+    "assetId": "eip155:43114/erc20:0xb168085d608d7ba4931a503d3424bc44ddb6b30d",
+    "chainId": "eip155:43114",
+    "name": "SIFU  OLD  on Avalanche",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/24692/thumb/token_%283%29.png?1696523859",
+    "symbol": "SIFU",
+    "explorer": "https://snowtrace.dev",
+    "explorerAddressLink": "https://snowtrace.dev/address/",
+    "explorerTxLink": "https://snowtrace.dev/tx/"
+  },
+  "eip155:43114/erc20:0xb279f8dd152b99ec1d84a489d32c35bc0c7f5674": {
+    "assetId": "eip155:43114/erc20:0xb279f8dd152b99ec1d84a489d32c35bc0c7f5674",
+    "chainId": "eip155:43114",
+    "name": "SteakHut Finance",
+    "precision": 18,
+    "color": "#DA75AE",
+    "icon": "https://assets.coingecko.com/coins/images/25688/thumb/logo_400.png?1696524815",
+    "symbol": "STEAK",
+    "explorer": "https://snowtrace.dev",
+    "explorerAddressLink": "https://snowtrace.dev/address/",
+    "explorerTxLink": "https://snowtrace.dev/tx/"
+  },
+  "eip155:43114/erc20:0xb27c8941a7df8958a1778c0259f76d1f8b711c35": {
+    "assetId": "eip155:43114/erc20:0xb27c8941a7df8958a1778c0259f76d1f8b711c35",
+    "chainId": "eip155:43114",
+    "name": "Kalao",
+    "precision": 18,
+    "color": "#1F2D50",
+    "icon": "https://assets.coingecko.com/coins/images/18641/thumb/KALAO.jpg?1696518113",
+    "symbol": "KLO",
+    "explorer": "https://snowtrace.dev",
+    "explorerAddressLink": "https://snowtrace.dev/address/",
+    "explorerTxLink": "https://snowtrace.dev/tx/"
+  },
+  "eip155:43114/erc20:0xb2a85c5ecea99187a977ac34303b80acbddfa208": {
+    "assetId": "eip155:43114/erc20:0xb2a85c5ecea99187a977ac34303b80acbddfa208",
+    "chainId": "eip155:43114",
+    "name": "Roco Finance",
+    "precision": 18,
+    "color": "#FC4C4D",
+    "icon": "https://assets.coingecko.com/coins/images/19234/thumb/86109466.png?1696518680",
+    "symbol": "ROCO",
+    "explorer": "https://snowtrace.dev",
+    "explorerAddressLink": "https://snowtrace.dev/address/",
+    "explorerTxLink": "https://snowtrace.dev/tx/"
+  },
+  "eip155:43114/erc20:0xb31f66aa3c1e785363f0875a1b74e27b85fd66c7": {
+    "assetId": "eip155:43114/erc20:0xb31f66aa3c1e785363f0875a1b74e27b85fd66c7",
+    "chainId": "eip155:43114",
+    "name": "Wrapped AVAX on Avalanche",
+    "precision": 18,
+    "color": "#EC5C5C",
+    "icon": "https://assets.coingecko.com/coins/images/15075/thumb/wrapped-avax.png?1696514734",
+    "symbol": "WAVAX",
+    "explorer": "https://snowtrace.dev",
+    "explorerAddressLink": "https://snowtrace.dev/address/",
+    "explorerTxLink": "https://snowtrace.dev/tx/"
+  },
+  "eip155:43114/erc20:0xb355f4f4cc84a9429a59d5c2b98d77016f7ec482": {
+    "assetId": "eip155:43114/erc20:0xb355f4f4cc84a9429a59d5c2b98d77016f7ec482",
+    "chainId": "eip155:43114",
+    "name": "Bitcoin BR on Avalanche",
+    "precision": 18,
+    "color": "#F29F15",
+    "icon": "https://assets.coingecko.com/coins/images/21205/thumb/btcbr.png?1696520580",
+    "symbol": "BTCBR",
+    "explorer": "https://snowtrace.dev",
+    "explorerAddressLink": "https://snowtrace.dev/address/",
+    "explorerTxLink": "https://snowtrace.dev/tx/"
+  },
+  "eip155:43114/erc20:0xb418417374fca27bb54169d3c777492e6fe17ee7": {
+    "assetId": "eip155:43114/erc20:0xb418417374fca27bb54169d3c777492e6fe17ee7",
+    "chainId": "eip155:43114",
+    "name": "Brillion on Avalanche",
+    "precision": 18,
+    "color": "#FCFAF2",
+    "icon": "https://assets.coingecko.com/coins/images/27976/thumb/Screenshot_2023-06-13_at_11.58.02_AM.png?1696526994",
+    "symbol": "DUA",
+    "explorer": "https://snowtrace.dev",
+    "explorerAddressLink": "https://snowtrace.dev/address/",
+    "explorerTxLink": "https://snowtrace.dev/tx/"
+  },
+  "eip155:43114/erc20:0xb44a9b6905af7c801311e8f4e76932ee959c663c": {
+    "assetId": "eip155:43114/erc20:0xb44a9b6905af7c801311e8f4e76932ee959c663c",
+    "chainId": "eip155:43114",
+    "name": "Anyswap on Avalanche",
+    "precision": 18,
+    "color": "#5975E7",
+    "icon": "https://assets.coingecko.com/coins/images/12242/thumb/anyswap.jpg?1696512074",
+    "symbol": "ANY",
+    "explorer": "https://snowtrace.dev",
+    "explorerAddressLink": "https://snowtrace.dev/address/",
+    "explorerTxLink": "https://snowtrace.dev/tx/"
+  },
+  "eip155:43114/erc20:0xb514cabd09ef5b169ed3fe0fa8dbd590741e81c2": {
+    "assetId": "eip155:43114/erc20:0xb514cabd09ef5b169ed3fe0fa8dbd590741e81c2",
+    "chainId": "eip155:43114",
+    "name": "USDD on Avalanche",
+    "precision": 18,
+    "color": "#3D7564",
+    "icon": "https://assets.coingecko.com/coins/images/25380/thumb/UUSD.jpg?1696524513",
+    "symbol": "USDD",
+    "explorer": "https://snowtrace.dev",
+    "explorerAddressLink": "https://snowtrace.dev/address/",
+    "explorerTxLink": "https://snowtrace.dev/tx/"
+  },
+  "eip155:43114/erc20:0xb54f16fb19478766a268f172c9480f8da1a7c9c3": {
+    "assetId": "eip155:43114/erc20:0xb54f16fb19478766a268f172c9480f8da1a7c9c3",
+    "chainId": "eip155:43114",
+    "name": "Wonderland TIME",
+    "precision": 9,
+    "color": "#66A7F0",
+    "icon": "https://assets.coingecko.com/coins/images/18126/thumb/time.PNG?1696517629",
+    "symbol": "TIME",
+    "explorer": "https://snowtrace.dev",
+    "explorerAddressLink": "https://snowtrace.dev/address/",
+    "explorerTxLink": "https://snowtrace.dev/tx/"
+  },
+  "eip155:43114/erc20:0xb648fa7a5f5ed3b3c743140346e3dc3fe94a9125": {
+    "assetId": "eip155:43114/erc20:0xb648fa7a5f5ed3b3c743140346e3dc3fe94a9125",
+    "chainId": "eip155:43114",
+    "name": "altFINS",
+    "precision": 18,
+    "color": "#34BC9C",
+    "icon": "https://assets.coingecko.com/coins/images/26280/thumb/AFINS_token_logo_200x200.png?1696525363",
+    "symbol": "AFINS",
+    "explorer": "https://snowtrace.dev",
+    "explorerAddressLink": "https://snowtrace.dev/address/",
+    "explorerTxLink": "https://snowtrace.dev/tx/"
+  },
+  "eip155:43114/erc20:0xb723783e0f9015c8e20b87f6cf7ae24df6479e62": {
+    "assetId": "eip155:43114/erc20:0xb723783e0f9015c8e20b87f6cf7ae24df6479e62",
+    "chainId": "eip155:43114",
+    "name": "ChoccySwap",
+    "precision": 18,
+    "color": "#6B422D",
+    "icon": "https://assets.coingecko.com/coins/images/25252/thumb/logo200.png?1696524392",
+    "symbol": "CCY",
+    "explorer": "https://snowtrace.dev",
+    "explorerAddressLink": "https://snowtrace.dev/address/",
+    "explorerTxLink": "https://snowtrace.dev/tx/"
+  },
+  "eip155:43114/erc20:0xb84527d59b6ecb96f433029ecc890d4492c5dce1": {
+    "assetId": "eip155:43114/erc20:0xb84527d59b6ecb96f433029ecc890d4492c5dce1",
+    "chainId": "eip155:43114",
+    "name": "Tomb on Avalanche",
+    "precision": 18,
+    "color": "#B0B098",
+    "icon": "https://assets.coingecko.com/coins/images/16133/thumb/tomb_icon_noBG.png?1696515739",
+    "symbol": "TOMB",
+    "explorer": "https://snowtrace.dev",
+    "explorerAddressLink": "https://snowtrace.dev/address/",
+    "explorerTxLink": "https://snowtrace.dev/tx/"
+  },
+  "eip155:43114/erc20:0xb97ef9ef8734c71904d8002f8b6bc66dd9c48a6e": {
+    "assetId": "eip155:43114/erc20:0xb97ef9ef8734c71904d8002f8b6bc66dd9c48a6e",
+    "chainId": "eip155:43114",
+    "name": "USDC on Avalanche",
+    "precision": 6,
+    "color": "#2E7ACD",
+    "icon": "https://assets.coingecko.com/coins/images/6319/thumb/usdc.png?1696506694",
+    "symbol": "USDC",
+    "explorer": "https://snowtrace.dev",
+    "explorerAddressLink": "https://snowtrace.dev/address/",
+    "explorerTxLink": "https://snowtrace.dev/tx/"
+  },
+  "eip155:43114/erc20:0xbbaaa0420d474b34be197f95a323c2ff3829e811": {
+    "assetId": "eip155:43114/erc20:0xbbaaa0420d474b34be197f95a323c2ff3829e811",
+    "chainId": "eip155:43114",
+    "name": "LODE Token",
+    "precision": 18,
+    "color": "#4D8DA0",
+    "icon": "https://assets.coingecko.com/coins/images/28296/thumb/LODE-Token_200.png?1696527295",
+    "symbol": "LODE",
+    "explorer": "https://snowtrace.dev",
+    "explorerAddressLink": "https://snowtrace.dev/address/",
+    "explorerTxLink": "https://snowtrace.dev/tx/"
+  },
+  "eip155:43114/erc20:0xbbcb0356bb9e6b3faa5cbf9e5f36185d53403ac9": {
+    "assetId": "eip155:43114/erc20:0xbbcb0356bb9e6b3faa5cbf9e5f36185d53403ac9",
+    "chainId": "eip155:43114",
+    "name": "Backed Coinbase Global on Avalanche",
+    "precision": 18,
+    "color": "#0548DB",
+    "icon": "https://assets.coingecko.com/coins/images/31872/thumb/b-COIN-200x200.png?1696530684",
+    "symbol": "BCOIN",
+    "explorer": "https://snowtrace.dev",
+    "explorerAddressLink": "https://snowtrace.dev/address/",
+    "explorerTxLink": "https://snowtrace.dev/tx/"
+  },
+  "eip155:43114/erc20:0xbd100d061e120b2c67a24453cf6368e63f1be056": {
+    "assetId": "eip155:43114/erc20:0xbd100d061e120b2c67a24453cf6368e63f1be056",
+    "chainId": "eip155:43114",
+    "name": "iDypius on Avalanche",
+    "precision": 18,
+    "color": "#F8C8C5",
+    "icon": "https://assets.coingecko.com/coins/images/21976/thumb/iDYP-200x200px.png?1696521324",
+    "symbol": "IDYP",
+    "explorer": "https://snowtrace.dev",
+    "explorerAddressLink": "https://snowtrace.dev/address/",
+    "explorerTxLink": "https://snowtrace.dev/tx/"
+  },
+  "eip155:43114/erc20:0xbd3936ec8d83a5d4e73eca625ecfa006da8c8f52": {
+    "assetId": "eip155:43114/erc20:0xbd3936ec8d83a5d4e73eca625ecfa006da8c8f52",
+    "chainId": "eip155:43114",
+    "name": "UREEQA on Avalanche",
+    "precision": 18,
+    "color": "#1464DC",
+    "icon": "https://assets.coingecko.com/coins/images/14605/thumb/R_O2enOX_400x400.png?1696514283",
+    "symbol": "URQA",
+    "explorer": "https://snowtrace.dev",
+    "explorerAddressLink": "https://snowtrace.dev/address/",
+    "explorerTxLink": "https://snowtrace.dev/tx/"
+  },
+  "eip155:43114/erc20:0xbd83010eb60f12112908774998f65761cf9f6f9a": {
+    "assetId": "eip155:43114/erc20:0xbd83010eb60f12112908774998f65761cf9f6f9a",
+    "chainId": "eip155:43114",
+    "name": "Spookyswap on Avalanche",
+    "precision": 18,
+    "color": "#E6D4E4",
+    "icon": "https://assets.coingecko.com/coins/images/15223/thumb/logo_200x200.png?1696514878",
+    "symbol": "BOO",
+    "explorer": "https://snowtrace.dev",
+    "explorerAddressLink": "https://snowtrace.dev/address/",
+    "explorerTxLink": "https://snowtrace.dev/tx/"
+  },
+  "eip155:43114/erc20:0xbec243c995409e6520d7c41e404da5deba4b209b": {
+    "assetId": "eip155:43114/erc20:0xbec243c995409e6520d7c41e404da5deba4b209b",
+    "chainId": "eip155:43114",
+    "name": "Synthetix Network on Avalanche",
+    "precision": 18,
+    "color": "#04B5E5",
+    "icon": "https://assets.coingecko.com/coins/images/3406/thumb/SNX.png?1696504103",
+    "symbol": "SNX",
+    "explorer": "https://snowtrace.dev",
+    "explorerAddressLink": "https://snowtrace.dev/address/",
+    "explorerTxLink": "https://snowtrace.dev/tx/"
+  },
+  "eip155:43114/erc20:0xbf1230bb63bfd7f5d628ab7b543bcefa8a24b81b": {
+    "assetId": "eip155:43114/erc20:0xbf1230bb63bfd7f5d628ab7b543bcefa8a24b81b",
+    "chainId": "eip155:43114",
+    "name": "Chronicum",
+    "precision": 18,
+    "color": "#C958EE",
+    "icon": "https://assets.coingecko.com/coins/images/26165/thumb/Untitled_%28200_%C3%97_200_px%29.png?1696525253",
+    "symbol": "CHRO",
+    "explorer": "https://snowtrace.dev",
+    "explorerAddressLink": "https://snowtrace.dev/address/",
+    "explorerTxLink": "https://snowtrace.dev/tx/"
+  },
+  "eip155:43114/erc20:0xc0367f9b1f84ca8de127226ac2a994ea4bf1e41b": {
+    "assetId": "eip155:43114/erc20:0xc0367f9b1f84ca8de127226ac2a994ea4bf1e41b",
+    "chainId": "eip155:43114",
+    "name": "Cross Chain Bridge on Avalanche",
+    "precision": 18,
+    "color": "#0554FC",
+    "icon": "https://assets.coingecko.com/coins/images/20223/thumb/0x92868A5255C628dA08F550a858A802f5351C5223.png?1696519632",
+    "symbol": "BRIDGE",
+    "explorer": "https://snowtrace.dev",
+    "explorerAddressLink": "https://snowtrace.dev/address/",
+    "explorerTxLink": "https://snowtrace.dev/tx/"
+  },
+  "eip155:43114/erc20:0xc0c5aa69dbe4d6dddfbc89c0957686ec60f24389": {
+    "assetId": "eip155:43114/erc20:0xc0c5aa69dbe4d6dddfbc89c0957686ec60f24389",
+    "chainId": "eip155:43114",
+    "name": "XEN Crypto on Avalanche",
+    "precision": 18,
+    "color": "#C4C4C4",
+    "icon": "https://assets.coingecko.com/coins/images/27713/thumb/Xen.jpeg?1696526739",
+    "symbol": "XEN",
+    "explorer": "https://snowtrace.dev",
+    "explorerAddressLink": "https://snowtrace.dev/address/",
+    "explorerTxLink": "https://snowtrace.dev/tx/"
+  },
+  "eip155:43114/erc20:0xc11bf915db4b43714bc8d32bf83bf5ea53d40981": {
+    "assetId": "eip155:43114/erc20:0xc11bf915db4b43714bc8d32bf83bf5ea53d40981",
+    "chainId": "eip155:43114",
+    "name": "Cheems Inu  NEW  on Avalanche",
+    "precision": 9,
+    "color": "#CF5506",
+    "icon": "https://assets.coingecko.com/coins/images/29393/thumb/cinu.png?1696528343",
+    "symbol": "CINU",
+    "explorer": "https://snowtrace.dev",
+    "explorerAddressLink": "https://snowtrace.dev/address/",
+    "explorerTxLink": "https://snowtrace.dev/tx/"
+  },
+  "eip155:43114/erc20:0xc17c30e98541188614df99239cabd40280810ca3": {
+    "assetId": "eip155:43114/erc20:0xc17c30e98541188614df99239cabd40280810ca3",
+    "chainId": "eip155:43114",
+    "name": "EverRise on Avalanche",
+    "precision": 18,
+    "color": "#EFDEDE",
+    "icon": "https://assets.coingecko.com/coins/images/16367/thumb/Logo_EverRise_Icon_logo.png?1696515966",
+    "symbol": "RISE",
+    "explorer": "https://snowtrace.dev",
+    "explorerAddressLink": "https://snowtrace.dev/address/",
+    "explorerTxLink": "https://snowtrace.dev/tx/"
+  },
+  "eip155:43114/erc20:0xc1c57c2975622ebe97d5c0980cf231787324024c": {
+    "assetId": "eip155:43114/erc20:0xc1c57c2975622ebe97d5c0980cf231787324024c",
+    "chainId": "eip155:43114",
+    "name": "Mu Meme",
+    "precision": 18,
+    "color": "#1A171C",
+    "icon": "https://assets.coingecko.com/coins/images/28431/thumb/mu-meme-logo.png?1696527428",
+    "symbol": "MUME",
+    "explorer": "https://snowtrace.dev",
+    "explorerAddressLink": "https://snowtrace.dev/address/",
+    "explorerTxLink": "https://snowtrace.dev/tx/"
+  },
+  "eip155:43114/erc20:0xc1d02e488a9ce2481bfdcd797d5373dd2e70a9c2": {
+    "assetId": "eip155:43114/erc20:0xc1d02e488a9ce2481bfdcd797d5373dd2e70a9c2",
+    "chainId": "eip155:43114",
+    "name": "Spaceswap SHAKE on Avalanche",
+    "precision": 18,
+    "color": "#151E91",
+    "icon": "https://assets.coingecko.com/coins/images/12765/thumb/shake.png?1696512562",
+    "symbol": "SHAKE",
+    "explorer": "https://snowtrace.dev",
+    "explorerAddressLink": "https://snowtrace.dev/address/",
+    "explorerTxLink": "https://snowtrace.dev/tx/"
+  },
+  "eip155:43114/erc20:0xc3048e19e76cb9a3aa9d77d8c03c29fc906e2437": {
+    "assetId": "eip155:43114/erc20:0xc3048e19e76cb9a3aa9d77d8c03c29fc906e2437",
+    "chainId": "eip155:43114",
+    "name": "Compound on Avalanche",
+    "precision": 18,
+    "color": "#040B0C",
+    "icon": "https://assets.coingecko.com/coins/images/10775/thumb/COMP.png?1696510737",
+    "symbol": "COMP",
+    "explorer": "https://snowtrace.dev",
+    "explorerAddressLink": "https://snowtrace.dev/address/",
+    "explorerTxLink": "https://snowtrace.dev/tx/"
+  },
+  "eip155:43114/erc20:0xc3344870d52688874b06d844e0c36cc39fc727f6": {
+    "assetId": "eip155:43114/erc20:0xc3344870d52688874b06d844e0c36cc39fc727f6",
+    "chainId": "eip155:43114",
+    "name": "Ankr Staked AVAX",
+    "precision": 18,
+    "color": "#FCEC1C",
+    "icon": "https://assets.coingecko.com/coins/images/28695/thumb/ankrAVAX.png?1696527677",
+    "symbol": "ANKRAVAX",
+    "explorer": "https://snowtrace.dev",
+    "explorerAddressLink": "https://snowtrace.dev/address/",
+    "explorerTxLink": "https://snowtrace.dev/tx/"
+  },
+  "eip155:43114/erc20:0xc38f41a296a4493ff429f1238e030924a1542e50": {
+    "assetId": "eip155:43114/erc20:0xc38f41a296a4493ff429f1238e030924a1542e50",
+    "chainId": "eip155:43114",
+    "name": "Snowball",
+    "precision": 18,
+    "color": "#9DD5FA",
+    "icon": "https://assets.coingecko.com/coins/images/14347/thumb/snowball.png?1696514034",
+    "symbol": "SNOB",
+    "explorer": "https://snowtrace.dev",
+    "explorerAddressLink": "https://snowtrace.dev/address/",
+    "explorerTxLink": "https://snowtrace.dev/tx/"
+  },
+  "eip155:43114/erc20:0xc45a479877e1e9dfe9fcd4056c699575a1045daa": {
+    "assetId": "eip155:43114/erc20:0xc45a479877e1e9dfe9fcd4056c699575a1045daa",
+    "chainId": "eip155:43114",
+    "name": "Aave v3 FRAX on Avalanche",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/32904/thumb/FRAX.png?1699802848",
+    "symbol": "AFRAX",
+    "explorer": "https://snowtrace.dev",
+    "explorerAddressLink": "https://snowtrace.dev/address/",
+    "explorerTxLink": "https://snowtrace.dev/tx/"
+  },
+  "eip155:43114/erc20:0xc55036b5348cfb45a932481744645985010d3a44": {
+    "assetId": "eip155:43114/erc20:0xc55036b5348cfb45a932481744645985010d3a44",
+    "chainId": "eip155:43114",
+    "name": "Wine Shares",
+    "precision": 18,
+    "color": "#133019",
+    "icon": "https://assets.coingecko.com/coins/images/22739/thumb/gshare.png?1696522044",
+    "symbol": "WINE",
+    "explorer": "https://snowtrace.dev",
+    "explorerAddressLink": "https://snowtrace.dev/address/",
+    "explorerTxLink": "https://snowtrace.dev/tx/"
+  },
+  "eip155:43114/erc20:0xc685e8eddc9f078666794cbfcd8d8351bac404ef": {
+    "assetId": "eip155:43114/erc20:0xc685e8eddc9f078666794cbfcd8d8351bac404ef",
+    "chainId": "eip155:43114",
+    "name": "ULTRON on Avalanche",
+    "precision": 18,
+    "color": "#E9E2F4",
+    "icon": "https://assets.coingecko.com/coins/images/26977/thumb/ULTRON-Profile-Pic.jpg?1696526031",
+    "symbol": "ULX",
+    "explorer": "https://snowtrace.dev",
+    "explorerAddressLink": "https://snowtrace.dev/address/",
+    "explorerTxLink": "https://snowtrace.dev/tx/"
+  },
+  "eip155:43114/erc20:0xc69eba65e87889f0805db717af06797055a0ba07": {
+    "assetId": "eip155:43114/erc20:0xc69eba65e87889f0805db717af06797055a0ba07",
+    "chainId": "eip155:43114",
+    "name": "Nucleus Vision on Avalanche",
+    "precision": 18,
+    "color": "#4C7B95",
+    "icon": "https://assets.coingecko.com/coins/images/3135/thumb/nv.jpg?1696503859",
+    "symbol": "NCASH",
+    "explorer": "https://snowtrace.dev",
+    "explorerAddressLink": "https://snowtrace.dev/address/",
+    "explorerTxLink": "https://snowtrace.dev/tx/"
+  },
+  "eip155:43114/erc20:0xc7198437980c041c805a1edcba50c1ce5db95118": {
+    "assetId": "eip155:43114/erc20:0xc7198437980c041c805a1edcba50c1ce5db95118",
+    "chainId": "eip155:43114",
+    "name": "Bridged Tether  Avalanche ",
+    "precision": 6,
+    "color": "#C4ECE0",
+    "icon": "https://assets.coingecko.com/coins/images/24189/thumb/Usdt.e.png?1696523377",
+    "symbol": "USDTE",
+    "explorer": "https://snowtrace.dev",
+    "explorerAddressLink": "https://snowtrace.dev/address/",
+    "explorerTxLink": "https://snowtrace.dev/tx/"
+  },
+  "eip155:43114/erc20:0xc7b5d72c836e718cda8888eaf03707faef675079": {
+    "assetId": "eip155:43114/erc20:0xc7b5d72c836e718cda8888eaf03707faef675079",
+    "chainId": "eip155:43114",
+    "name": "TrustSwap on Avalanche",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/11795/thumb/Untitled_design-removebg-preview.png?1696511671",
+    "symbol": "SWAP",
+    "explorer": "https://snowtrace.dev",
+    "explorerAddressLink": "https://snowtrace.dev/address/",
+    "explorerTxLink": "https://snowtrace.dev/tx/"
+  },
+  "eip155:43114/erc20:0xc7f4debc8072e23fe9259a5c0398326d8efb7f5c": {
+    "assetId": "eip155:43114/erc20:0xc7f4debc8072e23fe9259a5c0398326d8efb7f5c",
+    "chainId": "eip155:43114",
+    "name": "HeroesChained",
+    "precision": 18,
+    "color": "#D58731",
+    "icon": "https://assets.coingecko.com/coins/images/22813/thumb/logo_-_2022-01-20T140628.062.png?1696522115",
+    "symbol": "HEC",
+    "explorer": "https://snowtrace.dev",
+    "explorerAddressLink": "https://snowtrace.dev/address/",
+    "explorerTxLink": "https://snowtrace.dev/tx/"
+  },
+  "eip155:43114/erc20:0xc891eb4cbdeff6e073e859e987815ed1505c2acd": {
+    "assetId": "eip155:43114/erc20:0xc891eb4cbdeff6e073e859e987815ed1505c2acd",
+    "chainId": "eip155:43114",
+    "name": "EURC on Avalanche",
+    "precision": 6,
+    "color": "#3097FB",
+    "icon": "https://assets.coingecko.com/coins/images/26045/thumb/euro.png?1696525125",
+    "symbol": "EURC",
+    "explorer": "https://snowtrace.dev",
+    "explorerAddressLink": "https://snowtrace.dev/address/",
+    "explorerTxLink": "https://snowtrace.dev/tx/"
+  },
+  "eip155:43114/erc20:0xca8ebfb8e1460aaac7c272cb9053b3d42412aac2": {
+    "assetId": "eip155:43114/erc20:0xca8ebfb8e1460aaac7c272cb9053b3d42412aac2",
+    "chainId": "eip155:43114",
+    "name": "Gamer Arena",
+    "precision": 18,
+    "color": "#CF687A",
+    "icon": "https://assets.coingecko.com/coins/images/28151/thumb/200x200.png?1696527156",
+    "symbol": "GAU",
+    "explorer": "https://snowtrace.dev",
+    "explorerAddressLink": "https://snowtrace.dev/address/",
+    "explorerTxLink": "https://snowtrace.dev/tx/"
+  },
+  "eip155:43114/erc20:0xcaf5191fc480f43e4df80106c7695eca56e48b18": {
+    "assetId": "eip155:43114/erc20:0xcaf5191fc480f43e4df80106c7695eca56e48b18",
+    "chainId": "eip155:43114",
+    "name": "Akita Inu on Avalanche",
+    "precision": 18,
+    "color": "#A26542",
+    "icon": "https://assets.coingecko.com/coins/images/14115/thumb/akita.png?1696513836",
+    "symbol": "AKITA",
+    "explorer": "https://snowtrace.dev",
+    "explorerAddressLink": "https://snowtrace.dev/address/",
+    "explorerTxLink": "https://snowtrace.dev/tx/"
+  },
+  "eip155:43114/erc20:0xccf719c44e2c36e919335692e89d22cf13d6aaeb": {
+    "assetId": "eip155:43114/erc20:0xccf719c44e2c36e919335692e89d22cf13d6aaeb",
+    "chainId": "eip155:43114",
+    "name": "OpenBlox on Avalanche",
+    "precision": 18,
+    "color": "#070707",
+    "icon": "https://assets.coingecko.com/coins/images/26150/thumb/OBX_token-black_background_preview.png?1696525239",
+    "symbol": "OBX",
+    "explorer": "https://snowtrace.dev",
+    "explorerAddressLink": "https://snowtrace.dev/address/",
+    "explorerTxLink": "https://snowtrace.dev/tx/"
+  },
+  "eip155:43114/erc20:0xce1bffbd5374dac86a2893119683f4911a2f7814": {
+    "assetId": "eip155:43114/erc20:0xce1bffbd5374dac86a2893119683f4911a2f7814",
+    "chainId": "eip155:43114",
+    "name": "Spell on Avalanche",
+    "precision": 18,
+    "color": "#261E4C",
+    "icon": "https://assets.coingecko.com/coins/images/15861/thumb/abracadabra-3.png?1696515477",
+    "symbol": "SPELL",
+    "explorer": "https://snowtrace.dev",
+    "explorerAddressLink": "https://snowtrace.dev/address/",
+    "explorerTxLink": "https://snowtrace.dev/tx/"
+  },
+  "eip155:43114/erc20:0xcf8419a615c57511807236751c0af38db4ba3351": {
+    "assetId": "eip155:43114/erc20:0xcf8419a615c57511807236751c0af38db4ba3351",
+    "chainId": "eip155:43114",
+    "name": "Axial Token",
+    "precision": 18,
+    "color": "#232052",
+    "icon": "https://assets.coingecko.com/coins/images/20502/thumb/E5nD9pPv_400x400.jpg?1696519909",
+    "symbol": "AXIAL",
+    "explorer": "https://snowtrace.dev",
+    "explorerAddressLink": "https://snowtrace.dev/address/",
+    "explorerTxLink": "https://snowtrace.dev/tx/"
+  },
+  "eip155:43114/erc20:0xd036414fa2bcbb802691491e323bff1348c5f4ba": {
+    "assetId": "eip155:43114/erc20:0xd036414fa2bcbb802691491e323bff1348c5f4ba",
+    "chainId": "eip155:43114",
+    "name": "Mu Coin",
+    "precision": 18,
+    "color": "#3E3931",
+    "icon": "https://assets.coingecko.com/coins/images/24884/thumb/coingeckomucoin.png?1696524043",
+    "symbol": "MU",
+    "explorer": "https://snowtrace.dev",
+    "explorerAddressLink": "https://snowtrace.dev/address/",
+    "explorerTxLink": "https://snowtrace.dev/tx/"
+  },
+  "eip155:43114/erc20:0xd05b010eddb2dc65d5bd5a1389330d475049a4d5": {
+    "assetId": "eip155:43114/erc20:0xd05b010eddb2dc65d5bd5a1389330d475049a4d5",
+    "chainId": "eip155:43114",
+    "name": "Deepwaters",
+    "precision": 18,
+    "color": "#C160A0",
+    "icon": "https://assets.coingecko.com/coins/images/29143/thumb/WTR-icon-200x200.png?1696528103",
+    "symbol": "WTR",
+    "explorer": "https://snowtrace.dev",
+    "explorerAddressLink": "https://snowtrace.dev/address/",
+    "explorerTxLink": "https://snowtrace.dev/tx/"
+  },
+  "eip155:43114/erc20:0xd24c2ad096400b6fbcd2ad8b24e7acbc21a1da64": {
+    "assetId": "eip155:43114/erc20:0xd24c2ad096400b6fbcd2ad8b24e7acbc21a1da64",
+    "chainId": "eip155:43114",
+    "name": "Frax on Avalanche",
+    "precision": 18,
+    "color": "#040404",
+    "icon": "https://assets.coingecko.com/coins/images/13422/thumb/FRAX_icon.png?1696513182",
+    "symbol": "FRAX",
+    "explorer": "https://snowtrace.dev",
+    "explorerAddressLink": "https://snowtrace.dev/address/",
+    "explorerTxLink": "https://snowtrace.dev/tx/"
+  },
+  "eip155:43114/erc20:0xd3ac016b1b8c80eeadde4d186a9138c9324e4189": {
+    "assetId": "eip155:43114/erc20:0xd3ac016b1b8c80eeadde4d186a9138c9324e4189",
+    "chainId": "eip155:43114",
+    "name": "Okcash on Avalanche",
+    "precision": 18,
+    "color": "#0C1C34",
+    "icon": "https://assets.coingecko.com/coins/images/274/thumb/ok-logo-200px.png?1696501624",
+    "symbol": "OK",
+    "explorer": "https://snowtrace.dev",
+    "explorerAddressLink": "https://snowtrace.dev/address/",
+    "explorerTxLink": "https://snowtrace.dev/tx/"
+  },
+  "eip155:43114/erc20:0xd402298a793948698b9a63311404fbbee944eafd": {
+    "assetId": "eip155:43114/erc20:0xd402298a793948698b9a63311404fbbee944eafd",
+    "chainId": "eip155:43114",
+    "name": "Shrapnel on Avalanche",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/32793/thumb/shrapnel.png?1699441661",
+    "symbol": "SHRAP",
+    "explorer": "https://snowtrace.dev",
+    "explorerAddressLink": "https://snowtrace.dev/address/",
+    "explorerTxLink": "https://snowtrace.dev/tx/"
+  },
+  "eip155:43114/erc20:0xd47e4f1ef1aa4090bc27420bdd5cb379ced81440": {
+    "assetId": "eip155:43114/erc20:0xd47e4f1ef1aa4090bc27420bdd5cb379ced81440",
+    "chainId": "eip155:43114",
+    "name": "NFTEarth on Avalanche",
+    "precision": 18,
+    "color": "#E1FBED",
+    "icon": "https://assets.coingecko.com/coins/images/29116/thumb/20230223_224134.jpg?1696528078",
+    "symbol": "NFTE",
+    "explorer": "https://snowtrace.dev",
+    "explorerAddressLink": "https://snowtrace.dev/address/",
+    "explorerTxLink": "https://snowtrace.dev/tx/"
+  },
+  "eip155:43114/erc20:0xd4d026322c88c2d49942a75dff920fcfbc5614c1": {
+    "assetId": "eip155:43114/erc20:0xd4d026322c88c2d49942a75dff920fcfbc5614c1",
+    "chainId": "eip155:43114",
+    "name": "DEAPCOIN on Avalanche",
+    "precision": 18,
+    "color": "#F0B52C",
+    "icon": "https://assets.coingecko.com/coins/images/10970/thumb/DEAPcoin_01.png?1696510917",
+    "symbol": "DEP",
+    "explorer": "https://snowtrace.dev",
+    "explorerAddressLink": "https://snowtrace.dev/address/",
+    "explorerTxLink": "https://snowtrace.dev/tx/"
+  },
+  "eip155:43114/erc20:0xd501281565bf7789224523144fe5d98e8b28f267": {
+    "assetId": "eip155:43114/erc20:0xd501281565bf7789224523144fe5d98e8b28f267",
+    "chainId": "eip155:43114",
+    "name": "1inch on Avalanche",
+    "precision": 18,
+    "color": "#DFE3EA",
+    "icon": "https://assets.coingecko.com/coins/images/13469/thumb/1inch-token.png?1696513230",
+    "symbol": "1INCH",
+    "explorer": "https://snowtrace.dev",
+    "explorerAddressLink": "https://snowtrace.dev/address/",
+    "explorerTxLink": "https://snowtrace.dev/tx/"
+  },
+  "eip155:43114/erc20:0xd586e7f844cea2f87f50152665bcbc2c279d8d70": {
+    "assetId": "eip155:43114/erc20:0xd586e7f844cea2f87f50152665bcbc2c279d8d70",
+    "chainId": "eip155:43114",
+    "name": "Dai on Avalanche",
+    "precision": 18,
+    "color": "#FCBD3C",
+    "icon": "https://assets.coingecko.com/coins/images/9956/thumb/Badge_Dai.png?1696509996",
+    "symbol": "DAI",
+    "explorer": "https://snowtrace.dev",
+    "explorerAddressLink": "https://snowtrace.dev/address/",
+    "explorerTxLink": "https://snowtrace.dev/tx/"
+  },
+  "eip155:43114/erc20:0xd60effed653f3f1b69047f2d2dc4e808a548767b": {
+    "assetId": "eip155:43114/erc20:0xd60effed653f3f1b69047f2d2dc4e808a548767b",
+    "chainId": "eip155:43114",
+    "name": "UniFarm on Avalanche",
+    "precision": 18,
+    "color": "#812CA4",
+    "icon": "https://assets.coingecko.com/coins/images/15247/thumb/ufarm.jpeg?1696514900",
+    "symbol": "UFARM",
+    "explorer": "https://snowtrace.dev",
+    "explorerAddressLink": "https://snowtrace.dev/address/",
+    "explorerTxLink": "https://snowtrace.dev/tx/"
+  },
+  "eip155:43114/erc20:0xd7783a275e53fc6746dedfbad4a06059937502a4": {
+    "assetId": "eip155:43114/erc20:0xd7783a275e53fc6746dedfbad4a06059937502a4",
+    "chainId": "eip155:43114",
+    "name": "0x nodes on Avalanche",
+    "precision": 18,
+    "color": "#378060",
+    "icon": "https://assets.coingecko.com/coins/images/15600/thumb/BIOS_01.png?1696515235",
+    "symbol": "BIOS",
+    "explorer": "https://snowtrace.dev",
+    "explorerAddressLink": "https://snowtrace.dev/address/",
+    "explorerTxLink": "https://snowtrace.dev/tx/"
+  },
+  "eip155:43114/erc20:0xd7c295e399ca928a3a14b01d760e794f1adf8990": {
+    "assetId": "eip155:43114/erc20:0xd7c295e399ca928a3a14b01d760e794f1adf8990",
+    "chainId": "eip155:43114",
+    "name": "DSLA Protocol on Avalanche",
+    "precision": 18,
+    "color": "#C7C5C5",
+    "icon": "https://assets.coingecko.com/coins/images/6694/thumb/dsla_logo-squared_200x200.png?1696507035",
+    "symbol": "DSLA",
+    "explorer": "https://snowtrace.dev",
+    "explorerAddressLink": "https://snowtrace.dev/address/",
+    "explorerTxLink": "https://snowtrace.dev/tx/"
+  },
+  "eip155:43114/erc20:0xd9d90f882cddd6063959a9d837b05cb748718a05": {
+    "assetId": "eip155:43114/erc20:0xd9d90f882cddd6063959a9d837b05cb748718a05",
+    "chainId": "eip155:43114",
+    "name": "Moremoney Finance",
+    "precision": 18,
+    "color": "#438EBC",
+    "icon": "https://assets.coingecko.com/coins/images/23294/thumb/Moremoney_05.jpg?1696522512",
+    "symbol": "MORE",
+    "explorer": "https://snowtrace.dev",
+    "explorerAddressLink": "https://snowtrace.dev/address/",
+    "explorerTxLink": "https://snowtrace.dev/tx/"
+  },
+  "eip155:43114/erc20:0xdacde03d7ab4d81feddc3a20faa89abac9072ce2": {
+    "assetId": "eip155:43114/erc20:0xdacde03d7ab4d81feddc3a20faa89abac9072ce2",
+    "chainId": "eip155:43114",
+    "name": "Platypus USD",
+    "precision": 18,
+    "color": "#06A6C0",
+    "icon": "https://assets.coingecko.com/coins/images/28963/thumb/USP_4168x4168.png?1696527935",
+    "symbol": "USP",
+    "explorer": "https://snowtrace.dev",
+    "explorerAddressLink": "https://snowtrace.dev/address/",
+    "explorerTxLink": "https://snowtrace.dev/tx/"
+  },
+  "eip155:43114/erc20:0xdebb1d6a2196f2335ad51fbde7ca587205889360": {
+    "assetId": "eip155:43114/erc20:0xdebb1d6a2196f2335ad51fbde7ca587205889360",
+    "chainId": "eip155:43114",
+    "name": "NFTmall on Avalanche",
+    "precision": 18,
+    "color": "#D4A454",
+    "icon": "https://assets.coingecko.com/coins/images/16217/thumb/Icon-1000x1000.png?1696515817",
+    "symbol": "GEM",
+    "explorer": "https://snowtrace.dev",
+    "explorerAddressLink": "https://snowtrace.dev/address/",
+    "explorerTxLink": "https://snowtrace.dev/tx/"
+  },
+  "eip155:43114/erc20:0xdf474b7109b73b7d57926d43598d5934131136b2": {
+    "assetId": "eip155:43114/erc20:0xdf474b7109b73b7d57926d43598d5934131136b2",
+    "chainId": "eip155:43114",
+    "name": "Ankr Network on Avalanche",
+    "precision": 18,
+    "color": "#245CE4",
+    "icon": "https://assets.coingecko.com/coins/images/4324/thumb/U85xTl2.png?1696504928",
+    "symbol": "ANKR",
+    "explorer": "https://snowtrace.dev",
+    "explorerAddressLink": "https://snowtrace.dev/address/",
+    "explorerTxLink": "https://snowtrace.dev/tx/"
+  },
+  "eip155:43114/erc20:0xe06fba763c2104db5027f57f6a5be0a0d86308af": {
+    "assetId": "eip155:43114/erc20:0xe06fba763c2104db5027f57f6a5be0a0d86308af",
+    "chainId": "eip155:43114",
+    "name": "Akitavax",
+    "precision": 18,
+    "color": "#F3DED8",
+    "icon": "https://assets.coingecko.com/coins/images/23043/thumb/coingeckologoakitax.png?1696522336",
+    "symbol": "AKITAX",
+    "explorer": "https://snowtrace.dev",
+    "explorerAddressLink": "https://snowtrace.dev/address/",
+    "explorerTxLink": "https://snowtrace.dev/tx/"
+  },
+  "eip155:43114/erc20:0xe0bb6fed446a2dbb27f84d3c27c4ed8ea7603366": {
+    "assetId": "eip155:43114/erc20:0xe0bb6fed446a2dbb27f84d3c27c4ed8ea7603366",
+    "chainId": "eip155:43114",
+    "name": "Metaderby Hoof",
+    "precision": 18,
+    "color": "#F8D65A",
+    "icon": "https://assets.coingecko.com/coins/images/25397/thumb/hoof.png?1696524529",
+    "symbol": "HOOF",
+    "explorer": "https://snowtrace.dev",
+    "explorerAddressLink": "https://snowtrace.dev/address/",
+    "explorerTxLink": "https://snowtrace.dev/tx/"
+  },
+  "eip155:43114/erc20:0xe15bcb9e0ea69e6ab9fa080c4c4a5632896298c3": {
+    "assetId": "eip155:43114/erc20:0xe15bcb9e0ea69e6ab9fa080c4c4a5632896298c3",
+    "chainId": "eip155:43114",
+    "name": "Balancer on Avalanche",
+    "precision": 18,
+    "color": "#040404",
+    "icon": "https://assets.coingecko.com/coins/images/11683/thumb/Balancer.png?1696511572",
+    "symbol": "BAL",
+    "explorer": "https://snowtrace.dev",
+    "explorerAddressLink": "https://snowtrace.dev/address/",
+    "explorerTxLink": "https://snowtrace.dev/tx/"
+  },
+  "eip155:43114/erc20:0xe19a1684873fab5fb694cfd06607100a632ff21c": {
+    "assetId": "eip155:43114/erc20:0xe19a1684873fab5fb694cfd06607100a632ff21c",
+    "chainId": "eip155:43114",
+    "name": "Baklava",
+    "precision": 18,
+    "color": "#F6D94A",
+    "icon": "https://assets.coingecko.com/coins/images/23780/thumb/200x200_BAVA_LOGO_%282%29.png?1696522980",
+    "symbol": "BAVA",
+    "explorer": "https://snowtrace.dev",
+    "explorerAddressLink": "https://snowtrace.dev/address/",
+    "explorerTxLink": "https://snowtrace.dev/tx/"
+  },
+  "eip155:43114/erc20:0xe397784960f814ba35c9ee0bc4c9dffdf86925f9": {
+    "assetId": "eip155:43114/erc20:0xe397784960f814ba35c9ee0bc4c9dffdf86925f9",
+    "chainId": "eip155:43114",
+    "name": "Monsterra on Avalanche",
+    "precision": 18,
+    "color": "#F7DB87",
+    "icon": "https://assets.coingecko.com/coins/images/24377/thumb/MSTR.png?1696523560",
+    "symbol": "MSTR",
+    "explorer": "https://snowtrace.dev",
+    "explorerAddressLink": "https://snowtrace.dev/address/",
+    "explorerTxLink": "https://snowtrace.dev/tx/"
+  },
+  "eip155:43114/erc20:0xe3b3f75f99da4ff26aa867ef70b48f8f6b2d4958": {
+    "assetId": "eip155:43114/erc20:0xe3b3f75f99da4ff26aa867ef70b48f8f6b2d4958",
+    "chainId": "eip155:43114",
+    "name": "Megaweapon",
+    "precision": 9,
+    "color": "#CC41AD",
+    "icon": "https://assets.coingecko.com/coins/images/20833/thumb/weapon.png?1696520226",
+    "symbol": "WEAPON",
+    "explorer": "https://snowtrace.dev",
+    "explorerAddressLink": "https://snowtrace.dev/address/",
+    "explorerTxLink": "https://snowtrace.dev/tx/"
+  },
+  "eip155:43114/erc20:0xe50fa9b3c56ffb159cb0fca61f5c9d750e8128c8": {
+    "assetId": "eip155:43114/erc20:0xe50fa9b3c56ffb159cb0fca61f5c9d750e8128c8",
+    "chainId": "eip155:43114",
+    "name": "Aave v3 WETH on Avalanche",
+    "precision": 18,
+    "color": "#C5B9CB",
+    "icon": "https://assets.coingecko.com/coins/images/32882/thumb/WETH_%281%29.png?1699716492",
+    "symbol": "AWETH",
+    "explorer": "https://snowtrace.dev",
+    "explorerAddressLink": "https://snowtrace.dev/address/",
+    "explorerTxLink": "https://snowtrace.dev/tx/"
+  },
+  "eip155:43114/erc20:0xe533b81297b820d2eb2cd837263926596328e8d2": {
+    "assetId": "eip155:43114/erc20:0xe533b81297b820d2eb2cd837263926596328e8d2",
+    "chainId": "eip155:43114",
+    "name": "EMDX",
+    "precision": 18,
+    "color": "#0C8ACC",
+    "icon": "https://assets.coingecko.com/coins/images/30774/thumb/EMDX_200x200.png?1696529642",
+    "symbol": "EMDX",
+    "explorer": "https://snowtrace.dev",
+    "explorerAddressLink": "https://snowtrace.dev/address/",
+    "explorerTxLink": "https://snowtrace.dev/tx/"
+  },
+  "eip155:43114/erc20:0xe5caef4af8780e59df925470b050fb23c43ca68c": {
+    "assetId": "eip155:43114/erc20:0xe5caef4af8780e59df925470b050fb23c43ca68c",
+    "chainId": "eip155:43114",
+    "name": "Ferrum Network on Avalanche",
+    "precision": 18,
+    "color": "#DCDDDD",
+    "icon": "https://assets.coingecko.com/coins/images/8251/thumb/FRM.png?1696508455",
+    "symbol": "FRM",
+    "explorer": "https://snowtrace.dev",
+    "explorerAddressLink": "https://snowtrace.dev/address/",
+    "explorerTxLink": "https://snowtrace.dev/tx/"
+  },
+  "eip155:43114/erc20:0xe6d1afea0b76c8f51024683dd27fa446ddaf34b6": {
+    "assetId": "eip155:43114/erc20:0xe6d1afea0b76c8f51024683dd27fa446ddaf34b6",
+    "chainId": "eip155:43114",
+    "name": "Frozen Walrus Share",
+    "precision": 18,
+    "color": "#495A81",
+    "icon": "https://assets.coingecko.com/coins/images/25866/thumb/3.png?1696524950",
+    "symbol": "WSHARE",
+    "explorer": "https://snowtrace.dev",
+    "explorerAddressLink": "https://snowtrace.dev/address/",
+    "explorerTxLink": "https://snowtrace.dev/tx/"
+  },
+  "eip155:43114/erc20:0xe896cdeaac9615145c0ca09c8cd5c25bced6384c": {
+    "assetId": "eip155:43114/erc20:0xe896cdeaac9615145c0ca09c8cd5c25bced6384c",
+    "chainId": "eip155:43114",
+    "name": "Penguin Finance",
+    "precision": 18,
+    "color": "#D24243",
+    "icon": "https://assets.coingecko.com/coins/images/14643/thumb/pefi.png?1696514320",
+    "symbol": "PEFI",
+    "explorer": "https://snowtrace.dev",
+    "explorerAddressLink": "https://snowtrace.dev/address/",
+    "explorerTxLink": "https://snowtrace.dev/tx/"
+  },
+  "eip155:43114/erc20:0xe9d62a1daffaa10e4f239936972807955ad765b4": {
+    "assetId": "eip155:43114/erc20:0xe9d62a1daffaa10e4f239936972807955ad765b4",
+    "chainId": "eip155:43114",
+    "name": "Earniverse",
+    "precision": 18,
+    "color": "#EAEAE8",
+    "icon": "https://assets.coingecko.com/coins/images/23929/thumb/HGpGTTBc_400x400.jpg?1696523127",
+    "symbol": "EIV",
+    "explorer": "https://snowtrace.dev",
+    "explorerAddressLink": "https://snowtrace.dev/address/",
+    "explorerTxLink": "https://snowtrace.dev/tx/"
+  },
+  "eip155:43114/erc20:0xeb8343d5284caec921f035207ca94db6baaacbcd": {
+    "assetId": "eip155:43114/erc20:0xeb8343d5284caec921f035207ca94db6baaacbcd",
+    "chainId": "eip155:43114",
+    "name": "Echidna",
+    "precision": 18,
+    "color": "#E09298",
+    "icon": "https://assets.coingecko.com/coins/images/24000/thumb/ecd.png?1696523194",
+    "symbol": "ECD",
+    "explorer": "https://snowtrace.dev",
+    "explorerAddressLink": "https://snowtrace.dev/address/",
+    "explorerTxLink": "https://snowtrace.dev/tx/"
+  },
+  "eip155:43114/erc20:0xec3492a2508ddf4fdc0cd76f31f340b30d1793e6": {
+    "assetId": "eip155:43114/erc20:0xec3492a2508ddf4fdc0cd76f31f340b30d1793e6",
+    "chainId": "eip155:43114",
+    "name": "Colony",
+    "precision": 18,
+    "color": "#30AAED",
+    "icon": "https://assets.coingecko.com/coins/images/21358/thumb/colony.PNG?1696520723",
+    "symbol": "CLY",
+    "explorer": "https://snowtrace.dev",
+    "explorerAddressLink": "https://snowtrace.dev/address/",
+    "explorerTxLink": "https://snowtrace.dev/tx/"
+  },
+  "eip155:43114/erc20:0xed2b42d3c9c6e97e11755bb37df29b6375ede3eb": {
+    "assetId": "eip155:43114/erc20:0xed2b42d3c9c6e97e11755bb37df29b6375ede3eb",
+    "chainId": "eip155:43114",
+    "name": "Heroes of NFT",
+    "precision": 18,
+    "color": "#D7C5E7",
+    "icon": "https://assets.coingecko.com/coins/images/23527/thumb/tokenlogo200.png?1696522735",
+    "symbol": "HON",
+    "explorer": "https://snowtrace.dev",
+    "explorerAddressLink": "https://snowtrace.dev/address/",
+    "explorerTxLink": "https://snowtrace.dev/tx/"
+  },
+  "eip155:43114/erc20:0xee9801669c6138e84bd50deb500827b776777d28": {
+    "assetId": "eip155:43114/erc20:0xee9801669c6138e84bd50deb500827b776777d28",
+    "chainId": "eip155:43114",
+    "name": "O3 Swap on Avalanche",
+    "precision": 18,
+    "color": "#D7F0E8",
+    "icon": "https://assets.coingecko.com/coins/images/15460/thumb/o3.png?1696515107",
+    "symbol": "O3",
+    "explorer": "https://snowtrace.dev",
+    "explorerAddressLink": "https://snowtrace.dev/address/",
+    "explorerTxLink": "https://snowtrace.dev/tx/"
+  },
+  "eip155:43114/erc20:0xeeeeeb57642040be42185f49c52f7e9b38f8eeee": {
+    "assetId": "eip155:43114/erc20:0xeeeeeb57642040be42185f49c52f7e9b38f8eeee",
+    "chainId": "eip155:43114",
+    "name": "Elk Finance on Avalanche",
+    "precision": 18,
+    "color": "#CDCFCD",
+    "icon": "https://assets.coingecko.com/coins/images/17813/thumb/elk.png?1696517333",
+    "symbol": "ELK",
+    "explorer": "https://snowtrace.dev",
+    "explorerAddressLink": "https://snowtrace.dev/address/",
+    "explorerTxLink": "https://snowtrace.dev/tx/"
+  },
+  "eip155:43114/erc20:0xf03dccaec9a28200a6708c686cf0b8bf26ddc356": {
+    "assetId": "eip155:43114/erc20:0xf03dccaec9a28200a6708c686cf0b8bf26ddc356",
+    "chainId": "eip155:43114",
+    "name": "YDragon on Avalanche",
+    "precision": 18,
+    "color": "#E34E3C",
+    "icon": "https://assets.coingecko.com/coins/images/17807/thumb/icon.png?1696517328",
+    "symbol": "YDR",
+    "explorer": "https://snowtrace.dev",
+    "explorerAddressLink": "https://snowtrace.dev/address/",
+    "explorerTxLink": "https://snowtrace.dev/tx/"
+  },
+  "eip155:43114/erc20:0xf14f4ce569cb3679e99d5059909e23b07bd2f387": {
+    "assetId": "eip155:43114/erc20:0xf14f4ce569cb3679e99d5059909e23b07bd2f387",
+    "chainId": "eip155:43114",
+    "name": "NXUSD",
+    "precision": 18,
+    "color": "#0566DC",
+    "icon": "https://assets.coingecko.com/coins/images/25101/thumb/nxusd-logo.png?1696524253",
+    "symbol": "NXUSD",
+    "explorer": "https://snowtrace.dev",
+    "explorerAddressLink": "https://snowtrace.dev/address/",
+    "explorerTxLink": "https://snowtrace.dev/tx/"
+  },
+  "eip155:43114/erc20:0xf30c5083a1479865c9a8916dec6ddadd82e8907b": {
+    "assetId": "eip155:43114/erc20:0xf30c5083a1479865c9a8916dec6ddadd82e8907b",
+    "chainId": "eip155:43114",
+    "name": "Spice Trade on Avalanche",
+    "precision": 18,
+    "color": "#250E45",
+    "icon": "https://assets.coingecko.com/coins/images/25770/thumb/SPICE.png?1696524857",
+    "symbol": "SPICE",
+    "explorer": "https://snowtrace.dev",
+    "explorerAddressLink": "https://snowtrace.dev/address/",
+    "explorerTxLink": "https://snowtrace.dev/tx/"
+  },
+  "eip155:43114/erc20:0xf32398dae246c5f672b52a54e9b413dffcae1a44": {
+    "assetId": "eip155:43114/erc20:0xf32398dae246c5f672b52a54e9b413dffcae1a44",
+    "chainId": "eip155:43114",
+    "name": "Kassandra",
+    "precision": 18,
+    "color": "#371E2A",
+    "icon": "https://assets.coingecko.com/coins/images/22918/thumb/kacy.png?1696522215",
+    "symbol": "KACY",
+    "explorer": "https://snowtrace.dev",
+    "explorerAddressLink": "https://snowtrace.dev/address/",
+    "explorerTxLink": "https://snowtrace.dev/tx/"
+  },
+  "eip155:43114/erc20:0xf329e36c7bf6e5e86ce2150875a84ce77f477375": {
+    "assetId": "eip155:43114/erc20:0xf329e36c7bf6e5e86ce2150875a84ce77f477375",
+    "chainId": "eip155:43114",
+    "name": "Aave v3 AAVE on Avalanche",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/32887/thumb/aave.png?1699773604",
+    "symbol": "AAAVE",
+    "explorer": "https://snowtrace.dev",
+    "explorerAddressLink": "https://snowtrace.dev/address/",
+    "explorerTxLink": "https://snowtrace.dev/tx/"
+  },
+  "eip155:43114/erc20:0xf44fb887334fa17d2c5c0f970b5d320ab53ed557": {
+    "assetId": "eip155:43114/erc20:0xf44fb887334fa17d2c5c0f970b5d320ab53ed557",
+    "chainId": "eip155:43114",
+    "name": "Starter xyz on Avalanche",
+    "precision": 18,
+    "color": "#272025",
+    "icon": "https://assets.coingecko.com/coins/images/14301/thumb/logo_poly_sym.png?1696513997",
+    "symbol": "START",
+    "explorer": "https://snowtrace.dev",
+    "explorerAddressLink": "https://snowtrace.dev/address/",
+    "explorerTxLink": "https://snowtrace.dev/tx/"
+  },
+  "eip155:43114/erc20:0xf44ff799ea2bbfec96f9a50498209aac3c2b3b8b": {
+    "assetId": "eip155:43114/erc20:0xf44ff799ea2bbfec96f9a50498209aac3c2b3b8b",
+    "chainId": "eip155:43114",
+    "name": "Router Protocol on Avalanche",
+    "precision": 18,
+    "color": "#363555",
+    "icon": "https://assets.coingecko.com/coins/images/13709/thumb/route_token_200x200-19.png?1696513454",
+    "symbol": "ROUTE",
+    "explorer": "https://snowtrace.dev",
+    "explorerAddressLink": "https://snowtrace.dev/address/",
+    "explorerTxLink": "https://snowtrace.dev/tx/"
+  },
+  "eip155:43114/erc20:0xf538030ba4b39e35a3576bd6698cfcc6ac34a81f": {
+    "assetId": "eip155:43114/erc20:0xf538030ba4b39e35a3576bd6698cfcc6ac34a81f",
+    "chainId": "eip155:43114",
+    "name": "NEMO on Avalanche",
+    "precision": 18,
+    "color": "#17C4EA",
+    "icon": "https://assets.coingecko.com/coins/images/27473/thumb/NEMO_logo.png?1696526512",
+    "symbol": "NEMO",
+    "explorer": "https://snowtrace.dev",
+    "explorerAddressLink": "https://snowtrace.dev/address/",
+    "explorerTxLink": "https://snowtrace.dev/tx/"
+  },
+  "eip155:43114/erc20:0xf693248f96fe03422fea95ac0afbbbc4a8fdd172": {
+    "assetId": "eip155:43114/erc20:0xf693248f96fe03422fea95ac0afbbbc4a8fdd172",
+    "chainId": "eip155:43114",
+    "name": "Treasure Under Sea",
+    "precision": 18,
+    "color": "#ED7504",
+    "icon": "https://assets.coingecko.com/coins/images/20012/thumb/img-tus.png?1696519433",
+    "symbol": "TUS",
+    "explorer": "https://snowtrace.dev",
+    "explorerAddressLink": "https://snowtrace.dev/address/",
+    "explorerTxLink": "https://snowtrace.dev/tx/"
+  },
+  "eip155:43114/erc20:0xf69c2fcd9128d49dfa22348c69177f9380438eb8": {
+    "assetId": "eip155:43114/erc20:0xf69c2fcd9128d49dfa22348c69177f9380438eb8",
+    "chainId": "eip155:43114",
+    "name": "NFT Soccer Games",
+    "precision": 6,
+    "color": "#C02B28",
+    "icon": "https://assets.coingecko.com/coins/images/23461/thumb/nftsg_logo_200.png?1696522672",
+    "symbol": "NFSG",
+    "explorer": "https://snowtrace.dev",
+    "explorerAddressLink": "https://snowtrace.dev/address/",
+    "explorerTxLink": "https://snowtrace.dev/tx/"
+  },
+  "eip155:43114/erc20:0xf7d9281e8e363584973f946201b82ba72c965d27": {
+    "assetId": "eip155:43114/erc20:0xf7d9281e8e363584973f946201b82ba72c965d27",
+    "chainId": "eip155:43114",
+    "name": "Yield Yak AVAX",
+    "precision": 18,
+    "color": "#06CB65",
+    "icon": "https://assets.coingecko.com/coins/images/27221/thumb/yyAVAX_Token__200x200.png?1696526272",
+    "symbol": "YYAVAX",
+    "explorer": "https://snowtrace.dev",
+    "explorerAddressLink": "https://snowtrace.dev/address/",
+    "explorerTxLink": "https://snowtrace.dev/tx/"
+  },
+  "eip155:43114/erc20:0xf891214fdcf9cdaa5fdc42369ee4f27f226adad6": {
+    "assetId": "eip155:43114/erc20:0xf891214fdcf9cdaa5fdc42369ee4f27f226adad6",
+    "chainId": "eip155:43114",
+    "name": "Imperium Empires",
+    "precision": 18,
+    "color": "#A7A7A7",
+    "icon": "https://assets.coingecko.com/coins/images/21933/thumb/X6_UI3rs_400x400.jpg?1696521282",
+    "symbol": "IME",
+    "explorer": "https://snowtrace.dev",
+    "explorerAddressLink": "https://snowtrace.dev/address/",
+    "explorerTxLink": "https://snowtrace.dev/tx/"
+  },
+  "eip155:43114/erc20:0xf99516bc189af00ff8effd5a1f2295b67d70a90e": {
+    "assetId": "eip155:43114/erc20:0xf99516bc189af00ff8effd5a1f2295b67d70a90e",
+    "chainId": "eip155:43114",
+    "name": "Salvor",
+    "precision": 18,
+    "color": "#E8992B",
+    "icon": "https://assets.coingecko.com/coins/images/32277/thumb/sart.png?1697180675",
+    "symbol": "ART",
+    "explorer": "https://snowtrace.dev",
+    "explorerAddressLink": "https://snowtrace.dev/address/",
+    "explorerTxLink": "https://snowtrace.dev/tx/"
+  },
+  "eip155:43114/erc20:0xf9a075c9647e91410bf6c402bdf166e1540f67f0": {
+    "assetId": "eip155:43114/erc20:0xf9a075c9647e91410bf6c402bdf166e1540f67f0",
+    "chainId": "eip155:43114",
+    "name": "Sing  Avalanche ",
+    "precision": 18,
+    "color": "#5C5C5C",
+    "icon": "https://assets.coingecko.com/coins/images/18846/thumb/sing_token.png?1696518307",
+    "symbol": "SING",
+    "explorer": "https://snowtrace.dev",
+    "explorerAddressLink": "https://snowtrace.dev/address/",
+    "explorerTxLink": "https://snowtrace.dev/tx/"
+  },
+  "eip155:43114/erc20:0xfab550568c688d5d8a52c7d794cb93edc26ec0ec": {
+    "assetId": "eip155:43114/erc20:0xfab550568c688d5d8a52c7d794cb93edc26ec0ec",
+    "chainId": "eip155:43114",
+    "name": "Bridged USD Coin  Axelar  on Avalanche",
+    "precision": 6,
+    "color": "#2C78CD",
+    "icon": "https://assets.coingecko.com/coins/images/26476/thumb/uausdc_D_3x.png?1696525548",
+    "symbol": "AXLUSDC",
+    "explorer": "https://snowtrace.dev",
+    "explorerAddressLink": "https://snowtrace.dev/address/",
+    "explorerTxLink": "https://snowtrace.dev/tx/"
+  },
+  "eip155:43114/erc20:0xfac235f442ed946087c1db9f70075b51e698a487": {
+    "assetId": "eip155:43114/erc20:0xfac235f442ed946087c1db9f70075b51e698a487",
+    "chainId": "eip155:43114",
+    "name": "Pterosaur Finance",
+    "precision": 18,
+    "color": "#3474BB",
+    "icon": "https://assets.coingecko.com/coins/images/29348/thumb/pterosaur-coin%28200-200%29.png?1696528297",
+    "symbol": "PTER",
+    "explorer": "https://snowtrace.dev",
+    "explorerAddressLink": "https://snowtrace.dev/address/",
+    "explorerTxLink": "https://snowtrace.dev/tx/"
+  },
+  "eip155:43114/erc20:0xfb98b335551a418cd0737375a2ea0ded62ea213b": {
+    "assetId": "eip155:43114/erc20:0xfb98b335551a418cd0737375a2ea0ded62ea213b",
+    "chainId": "eip155:43114",
+    "name": "Pendle on Avalanche",
+    "precision": 18,
+    "color": "#D4D4DC",
+    "icon": "https://assets.coingecko.com/coins/images/15069/thumb/Pendle_Logo_Normal-03.png?1696514728",
+    "symbol": "PENDLE",
+    "explorer": "https://snowtrace.dev",
+    "explorerAddressLink": "https://snowtrace.dev/address/",
+    "explorerTxLink": "https://snowtrace.dev/tx/"
+  },
+  "eip155:43114/erc20:0xfc6da929c031162841370af240dec19099861d3b": {
+    "assetId": "eip155:43114/erc20:0xfc6da929c031162841370af240dec19099861d3b",
+    "chainId": "eip155:43114",
+    "name": "Domi on Avalanche",
+    "precision": 18,
+    "color": "#D3AD53",
+    "icon": "https://assets.coingecko.com/coins/images/21633/thumb/Transparent_Circle_Logo_2.png?1696520993",
+    "symbol": "DOMI",
+    "explorer": "https://snowtrace.dev",
+    "explorerAddressLink": "https://snowtrace.dev/address/",
+    "explorerTxLink": "https://snowtrace.dev/tx/"
+  },
+  "eip155:43114/erc20:0xfcaf13227dcbfa2dc2b1928acfca03b85e2d25dd": {
+    "assetId": "eip155:43114/erc20:0xfcaf13227dcbfa2dc2b1928acfca03b85e2d25dd",
+    "chainId": "eip155:43114",
+    "name": "Impossible Finance Launchpad on Avalanche",
+    "precision": 18,
+    "color": "#0C0C25",
+    "icon": "https://assets.coingecko.com/coins/images/17803/thumb/IDIA.png?1696517325",
+    "symbol": "IDIA",
+    "explorer": "https://snowtrace.dev",
+    "explorerAddressLink": "https://snowtrace.dev/address/",
+    "explorerTxLink": "https://snowtrace.dev/tx/"
+  },
+  "eip155:43114/erc20:0xfcc6ce74f4cd7edef0c5429bb99d38a3608043a5": {
+    "assetId": "eip155:43114/erc20:0xfcc6ce74f4cd7edef0c5429bb99d38a3608043a5",
+    "chainId": "eip155:43114",
+    "name": "The Phoenix",
+    "precision": 18,
+    "color": "#4F1E17",
+    "icon": "https://assets.coingecko.com/coins/images/22709/thumb/2QuHdcO.png?1696522019",
+    "symbol": "FIRE",
+    "explorer": "https://snowtrace.dev",
+    "explorerAddressLink": "https://snowtrace.dev/address/",
+    "explorerTxLink": "https://snowtrace.dev/tx/"
+  },
+  "eip155:43114/erc20:0xfcde4a87b8b6fa58326bb462882f1778158b02f1": {
+    "assetId": "eip155:43114/erc20:0xfcde4a87b8b6fa58326bb462882f1778158b02f1",
+    "chainId": "eip155:43114",
+    "name": "WXT Token on Avalanche",
+    "precision": 18,
+    "color": "#C9FAC8",
+    "icon": "https://assets.coingecko.com/coins/images/8835/thumb/Wirex.jpg?1696508988",
+    "symbol": "WXT",
+    "explorer": "https://snowtrace.dev",
+    "explorerAddressLink": "https://snowtrace.dev/address/",
+    "explorerTxLink": "https://snowtrace.dev/tx/"
+  },
+  "eip155:43114/erc20:0xfd538ca3f58dc309da55b11f007ff53fb4602876": {
+    "assetId": "eip155:43114/erc20:0xfd538ca3f58dc309da55b11f007ff53fb4602876",
+    "chainId": "eip155:43114",
+    "name": "Battle For Giostone",
+    "precision": 18,
+    "color": "#F0D976",
+    "icon": "https://assets.coingecko.com/coins/images/27715/thumb/BFG-token-logo.00b4b09c.png?1696526740",
+    "symbol": "BFG",
+    "explorer": "https://snowtrace.dev",
+    "explorerAddressLink": "https://snowtrace.dev/address/",
+    "explorerTxLink": "https://snowtrace.dev/tx/"
+  },
+  "eip155:43114/erc20:0xfda866cfece71f4c17b4a5e5f9a00ac08c72eadc": {
+    "assetId": "eip155:43114/erc20:0xfda866cfece71f4c17b4a5e5f9a00ac08c72eadc",
+    "chainId": "eip155:43114",
+    "name": "Pera Finance",
+    "precision": 18,
+    "color": "#367EF4",
+    "icon": "https://assets.coingecko.com/coins/images/16185/thumb/Pera-Finance-200x200.png?1696515787",
+    "symbol": "PERA",
+    "explorer": "https://snowtrace.dev",
+    "explorerAddressLink": "https://snowtrace.dev/address/",
+    "explorerTxLink": "https://snowtrace.dev/tx/"
+  },
+  "eip155:43114/slip44:60": {
+    "assetId": "eip155:43114/slip44:60",
+    "chainId": "eip155:43114",
+    "name": "Avalanche",
+    "networkName": "Avalanche C-Chain",
+    "symbol": "AVAX",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://rawcdn.githack.com/trustwallet/assets/32e51d582a890b3dd3135fe3ee7c20c2fd699a6d/blockchains/avalanchec/info/logo.png",
+    "explorer": "https://snowtrace.dev",
+    "explorerAddressLink": "https://snowtrace.dev/address/",
+    "explorerTxLink": "https://snowtrace.dev/tx/"
+  },
+  "eip155:56/bep20:0x00000000ba2ca30042001abc545871380f570b1f": {
+    "assetId": "eip155:56/bep20:0x00000000ba2ca30042001abc545871380f570b1f",
+    "chainId": "eip155:56",
+    "name": "ArithFi on BNB Smart Chain",
+    "precision": 18,
+    "color": "#161D1D",
+    "icon": "https://assets.coingecko.com/coins/images/32122/thumb/2.Profile.png?1696586855",
+    "symbol": "ATF",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x000351d035d8bbf2aa3131ebfecd66fb21836f6c": {
+    "assetId": "eip155:56/bep20:0x000351d035d8bbf2aa3131ebfecd66fb21836f6c",
+    "chainId": "eip155:56",
+    "name": "Scotty Beam",
+    "precision": 18,
+    "color": "#151D44",
+    "icon": "https://assets.coingecko.com/coins/images/21755/thumb/sign-logo.png?1696521110",
+    "symbol": "SCOTTY",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x000851476180bfc499ea68450a5327d21c9b050e": {
+    "assetId": "eip155:56/bep20:0x000851476180bfc499ea68450a5327d21c9b050e",
+    "chainId": "eip155:56",
+    "name": "Slam",
+    "precision": 18,
+    "color": "#C5CED2",
+    "icon": "https://assets.coingecko.com/coins/images/15023/thumb/slam2-0-logo.png?1696514684",
+    "symbol": "SLAM",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x0009ae5a69b037ea74a900783fab457fa605ae5d": {
+    "assetId": "eip155:56/bep20:0x0009ae5a69b037ea74a900783fab457fa605ae5d",
+    "chainId": "eip155:56",
+    "name": "Grok on BNB Smart Chain",
+    "precision": 9,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/32798/thumb/logo_200px.png?1699446214",
+    "symbol": "XAI",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x0012365f0a1e5f30a5046c680dcb21d07b15fcf7": {
+    "assetId": "eip155:56/bep20:0x0012365f0a1e5f30a5046c680dcb21d07b15fcf7",
+    "chainId": "eip155:56",
+    "name": "Gym Network",
+    "precision": 18,
+    "color": "#D8E2EE",
+    "icon": "https://assets.coingecko.com/coins/images/24654/thumb/Blue.png?1696523824",
+    "symbol": "GYMNET",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x002d3c280f719c4b0444680a8c4b1785b6cc2a59": {
+    "assetId": "eip155:56/bep20:0x002d3c280f719c4b0444680a8c4b1785b6cc2a59",
+    "chainId": "eip155:56",
+    "name": "ETHFan Burn",
+    "precision": 9,
+    "color": "#302016",
+    "icon": "https://assets.coingecko.com/coins/images/24268/thumb/efb.png?1696523451",
+    "symbol": "EFB",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x0034719300501b06e10ebb1d07ea5967301f0941": {
+    "assetId": "eip155:56/bep20:0x0034719300501b06e10ebb1d07ea5967301f0941",
+    "chainId": "eip155:56",
+    "name": "Governance xALGO",
+    "precision": 6,
+    "color": "#204782",
+    "icon": "https://assets.coingecko.com/coins/images/31282/thumb/xalgo.png?1696530105",
+    "symbol": "XALGO",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x00855c21754fe85fd4e38ac23d2b3e091b04a042": {
+    "assetId": "eip155:56/bep20:0x00855c21754fe85fd4e38ac23d2b3e091b04a042",
+    "chainId": "eip155:56",
+    "name": "YourKiss",
+    "precision": 9,
+    "color": "#522BBF",
+    "icon": "https://assets.coingecko.com/coins/images/25333/thumb/YourKiss_200.png?1696524468",
+    "symbol": "YKS",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x00ceb4868501b456207856bb6f949c3d2af09a66": {
+    "assetId": "eip155:56/bep20:0x00ceb4868501b456207856bb6f949c3d2af09a66",
+    "chainId": "eip155:56",
+    "name": "tudaBirds",
+    "precision": 9,
+    "color": "#0A0F20",
+    "icon": "https://assets.coingecko.com/coins/images/22839/thumb/_TOvRxfx_400x400.jpg?1696522140",
+    "symbol": "BURD",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x00e1656e45f18ec6747f5a8496fd39b50b38396d": {
+    "assetId": "eip155:56/bep20:0x00e1656e45f18ec6747f5a8496fd39b50b38396d",
+    "chainId": "eip155:56",
+    "name": "BombCrypto",
+    "precision": 18,
+    "color": "#D6671F",
+    "icon": "https://assets.coingecko.com/coins/images/18567/thumb/bcoin.png?1696518045",
+    "symbol": "BCOIN",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x00ee89f7f21b60b72dd5d4070a4310f796c38c32": {
+    "assetId": "eip155:56/bep20:0x00ee89f7f21b60b72dd5d4070a4310f796c38c32",
+    "chainId": "eip155:56",
+    "name": "TradeFlow",
+    "precision": 18,
+    "color": "#AC8D52",
+    "icon": "https://assets.coingecko.com/coins/images/27843/thumb/photo_2022-10-17_12-17-44.jpg?1696526862",
+    "symbol": "TFLOW",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x00f80a8f39bb4d04a3038c497e3642bf1b0a304e": {
+    "assetId": "eip155:56/bep20:0x00f80a8f39bb4d04a3038c497e3642bf1b0a304e",
+    "chainId": "eip155:56",
+    "name": "Bountie Hunter",
+    "precision": 18,
+    "color": "#927F69",
+    "icon": "https://assets.coingecko.com/coins/images/24559/thumb/BountieHunter_LogoDesign_TransparentBackground.png?1696523735",
+    "symbol": "BOUNTIE",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x00f97c17f4dc4f3bfd2dd9ce5e67f3a339a8a261": {
+    "assetId": "eip155:56/bep20:0x00f97c17f4dc4f3bfd2dd9ce5e67f3a339a8a261",
+    "chainId": "eip155:56",
+    "name": "Shield Protocol",
+    "precision": 18,
+    "color": "#FCCDCD",
+    "icon": "https://assets.coingecko.com/coins/images/24286/thumb/output-200.png?1696523469",
+    "symbol": "SHIELD",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x011734f6ed20e8d011d85cf7894814b897420acf": {
+    "assetId": "eip155:56/bep20:0x011734f6ed20e8d011d85cf7894814b897420acf",
+    "chainId": "eip155:56",
+    "name": "BallSwap on BNB Smart Chain",
+    "precision": 18,
+    "color": "#F08A1D",
+    "icon": "https://assets.coingecko.com/coins/images/14050/thumb/bsp.png?1696513775",
+    "symbol": "BSP",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x012a6a39eec345a0ea2b994b17875e721d17ee45": {
+    "assetId": "eip155:56/bep20:0x012a6a39eec345a0ea2b994b17875e721d17ee45",
+    "chainId": "eip155:56",
+    "name": "1Reward Token",
+    "precision": 18,
+    "color": "#EC8F08",
+    "icon": "https://assets.coingecko.com/coins/images/27348/thumb/1RT.png?1696526395",
+    "symbol": "1RT",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x014a087b646bd90e7dcead3993f49eb1f4b5f30a": {
+    "assetId": "eip155:56/bep20:0x014a087b646bd90e7dcead3993f49eb1f4b5f30a",
+    "chainId": "eip155:56",
+    "name": "GulfCoin",
+    "precision": 18,
+    "color": "#3EB1D4",
+    "icon": "https://assets.coingecko.com/coins/images/26053/thumb/gulf-coin-logo-A2F3BBC063-seeklogo.com.png?1696525138",
+    "symbol": "GULF",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x0151f08a29142e07d075664e2ecf3c949635c31e": {
+    "assetId": "eip155:56/bep20:0x0151f08a29142e07d075664e2ecf3c949635c31e",
+    "chainId": "eip155:56",
+    "name": "Shibot",
+    "precision": 9,
+    "color": "#21292E",
+    "icon": "https://assets.coingecko.com/coins/images/29695/thumb/SHIBOT_LOGO_512.jpg?1696528628",
+    "symbol": "SHIBOT",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x016cf83732f1468150d87dcc5bdf67730b3934d3": {
+    "assetId": "eip155:56/bep20:0x016cf83732f1468150d87dcc5bdf67730b3934d3",
+    "chainId": "eip155:56",
+    "name": "AirNFT",
+    "precision": 18,
+    "color": "#E2CBF6",
+    "icon": "https://assets.coingecko.com/coins/images/18370/thumb/AIRT-Logo.png?1696517862",
+    "symbol": "AIRT",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x0173295183685f27c84db046b5f0bea3e683c24b": {
+    "assetId": "eip155:56/bep20:0x0173295183685f27c84db046b5f0bea3e683c24b",
+    "chainId": "eip155:56",
+    "name": "Cat",
+    "precision": 18,
+    "color": "#E9D2B5",
+    "icon": "https://assets.coingecko.com/coins/images/28447/thumb/IMG_20221207_032252_321.jpg?1696527442",
+    "symbol": "CAT",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x01832e3346fd3a0d38ca589d836bd78d1de7030c": {
+    "assetId": "eip155:56/bep20:0x01832e3346fd3a0d38ca589d836bd78d1de7030c",
+    "chainId": "eip155:56",
+    "name": "SwapTracker",
+    "precision": 18,
+    "color": "#EAF4F8",
+    "icon": "https://assets.coingecko.com/coins/images/20420/thumb/swaptracker-logo-200x200.png?1696519828",
+    "symbol": "SWPT",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x019992270e95b800671d3bc1d763e07e489687b2": {
+    "assetId": "eip155:56/bep20:0x019992270e95b800671d3bc1d763e07e489687b2",
+    "chainId": "eip155:56",
+    "name": "Lovely Swap",
+    "precision": 8,
+    "color": "#B22769",
+    "icon": "https://assets.coingecko.com/coins/images/26465/thumb/square2.png?1696525538",
+    "symbol": "LST",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x01bd7acb6ff3b6dd5aefa05cf085f2104f3fc53f": {
+    "assetId": "eip155:56/bep20:0x01bd7acb6ff3b6dd5aefa05cf085f2104f3fc53f",
+    "chainId": "eip155:56",
+    "name": "TreatDAO",
+    "precision": 18,
+    "color": "#F6C6D0",
+    "icon": "https://assets.coingecko.com/coins/images/19156/thumb/TREAT.jpg?1696518607",
+    "symbol": "TREAT",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x01e04c6e0b2c93bb4f8ee4b71072b861f9352660": {
+    "assetId": "eip155:56/bep20:0x01e04c6e0b2c93bb4f8ee4b71072b861f9352660",
+    "chainId": "eip155:56",
+    "name": "American Shiba on BNB Smart Chain",
+    "precision": 18,
+    "color": "#69697E",
+    "icon": "https://assets.coingecko.com/coins/images/15650/thumb/american_shiba.PNG?1696515282",
+    "symbol": "USHIBA",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x01e0d17a533e5930a349c2bb71304f04f20ab12b": {
+    "assetId": "eip155:56/bep20:0x01e0d17a533e5930a349c2bb71304f04f20ab12b",
+    "chainId": "eip155:56",
+    "name": "Revolve Games",
+    "precision": 18,
+    "color": "#9042BC",
+    "icon": "https://assets.coingecko.com/coins/images/18481/thumb/HQ3.png?1696517966",
+    "symbol": "RPG",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x02030d968558fd429eafa6e5b0c7a95a4903233b": {
+    "assetId": "eip155:56/bep20:0x02030d968558fd429eafa6e5b0c7a95a4903233b",
+    "chainId": "eip155:56",
+    "name": "GoSleep NGT on BNB Smart Chain",
+    "precision": 18,
+    "color": "#F8D5A1",
+    "icon": "https://assets.coingecko.com/coins/images/29826/thumb/NGT200_200.png?1696528754",
+    "symbol": "NGT",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x021f48697343a6396bafc01795a4c140b637f4b4": {
+    "assetId": "eip155:56/bep20:0x021f48697343a6396bafc01795a4c140b637f4b4",
+    "chainId": "eip155:56",
+    "name": "Magic Yearn Share",
+    "precision": 18,
+    "color": "#23273B",
+    "icon": "https://assets.coingecko.com/coins/images/29343/thumb/mys.png?1696528292",
+    "symbol": "MYS",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x0226a6203e113253c5a7afad2f7c75a2e8324009": {
+    "assetId": "eip155:56/bep20:0x0226a6203e113253c5a7afad2f7c75a2e8324009",
+    "chainId": "eip155:56",
+    "name": "ZooCoin on BNB Smart Chain",
+    "precision": 18,
+    "color": "#70C5AE",
+    "icon": "https://assets.coingecko.com/coins/images/31230/thumb/ZOO.png?1696530056",
+    "symbol": "ZOO",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x0231f91e02debd20345ae8ab7d71a41f8e140ce7": {
+    "assetId": "eip155:56/bep20:0x0231f91e02debd20345ae8ab7d71a41f8e140ce7",
+    "chainId": "eip155:56",
+    "name": "Jupiter on BNB Smart Chain",
+    "precision": 18,
+    "color": "#3CB44C",
+    "icon": "https://assets.coingecko.com/coins/images/10351/thumb/logo512.png?1696510352",
+    "symbol": "JUP",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x0255af6c9f86f6b0543357bacefa262a2664f80f": {
+    "assetId": "eip155:56/bep20:0x0255af6c9f86f6b0543357bacefa262a2664f80f",
+    "chainId": "eip155:56",
+    "name": "Immutable on BNB Smart Chain",
+    "precision": 18,
+    "color": "#04E484",
+    "icon": "https://assets.coingecko.com/coins/images/17640/thumb/darav2.png?1696517171",
+    "symbol": "DARA",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x02634e559651ac67b8a3c73b15c8cf79b31242ec": {
+    "assetId": "eip155:56/bep20:0x02634e559651ac67b8a3c73b15c8cf79b31242ec",
+    "chainId": "eip155:56",
+    "name": "Outter Finance  OLD ",
+    "precision": 18,
+    "color": "#B7AA68",
+    "icon": "https://assets.coingecko.com/coins/images/31707/thumb/Outter_-_Icon.png?1696530530",
+    "symbol": "OUT",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x026593a507f20dcf25e0b45e0983c39871735b01": {
+    "assetId": "eip155:56/bep20:0x026593a507f20dcf25e0b45e0983c39871735b01",
+    "chainId": "eip155:56",
+    "name": "Pink Vote",
+    "precision": 18,
+    "color": "#DC8424",
+    "icon": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAIAAAACACAMAAAD04JH5AAADAFBMVEUtN0jYhyb///8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAC2GX5SAAABAHRSTlP/////AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAf6K/dgAAQItJREFUeNoBgEB/vwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAgICAgICAgICAgICAgICAgICAgICAQEBAQEBAQEBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgEBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgAAAAAAAAAAAAACAgICAgICAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMAAAAAAAAAAAACAgICAgICAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMAAAAAAAAAAAACAgICAgICAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMAAAAAAAAAAAACAgICAgICAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMAAAAAAAAAAAACAgICAgICAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMAAAAAAAAAAAACAgICAgICAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMAAAAAAAAAAAACAgICAgICAwMDAwMDAwMDAwMDAwMDAwMDAwMDAgICAgICAgEBAQEBAQEBAwMDAwMDAwMDAwMDAwICAgICAgIDAwMDAwMDAwMDAwMDAwMBAQEBAQEBAwMDAwMDAwMDAwMDAwICAgICAgIDAwMDAwMDAwMDAwMDAwMAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQEBAQEBAQAAAAAAAAAAAAICAgICAgIDAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQEBAQEBAQAAAAAAAAAAAAICAgICAgIDAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQEBAQEBAQAAAAAAAAAAAAICAgICAgIDAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQEBAQEBAQAAAAAAAAAAAAICAgICAgIDAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQEBAQEBAQAAAAAAAAAAAAICAgICAgIDAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQEBAQEBAQAAAAAAAAAAAAICAgICAgIDAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQEBAQEBAQAAAAAAAAAAAAICAgICAgIDAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQEBAQEBAQAAAAAAAAAAAAICAgICAgIDAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQEBAQEBAQAAAAAAAAAAAAICAgICAgIDAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQEBAQEBAQAAAAAAAAAAAAICAgICAgIDAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQEBAQEBAQAAAAAAAAAAAAICAgICAgIDAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQEBAQEBAQAAAAAAAAAAAAICAgICAgIDAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQEBAQEBAQAAAAAAAAAAAAICAgICAgIDAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAgICAgICAgICAgICAgICAgICAgICAQMDAwMDAwMBAQEBAQEBAQEBAQAAAAAAAAAAAAICAgICAgIDAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAICAgICAgIDAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAICAgICAgIDAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAICAgICAgIDAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAICAgICAgIDAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAICAgICAgIDAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAICAgICAgIDAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAICAgICAgIDAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAICAgICAgIDAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAICAgICAgIDAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAICAgICAgIDAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAICAgICAgIDAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAICAgICAgIDAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAICAgICAgIDAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAICAgICAgIDAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAICAgICAgIDAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAICAgICAgIDAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAICAgICAgIDAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAICAgICAgIDAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAICAgICAgIDAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAICAgICAgIDAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAACAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgAAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAACAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAACAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAACAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAACAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAACAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAACAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAwMDAwMDAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMAAAAAAAAAAAAAAAEBAQEBAQEBAQEDAwMDAwMDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF+iLV4KEYj9AAAAAElFTkSuQmCC",
+    "symbol": "PIT",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x026db614f070cb4c7e421da22df84ea1021236eb": {
+    "assetId": "eip155:56/bep20:0x026db614f070cb4c7e421da22df84ea1021236eb",
+    "chainId": "eip155:56",
+    "name": "Rage On Wheels",
+    "precision": 18,
+    "color": "#967C06",
+    "icon": "https://assets.coingecko.com/coins/images/29905/thumb/row200.png?1696528834",
+    "symbol": "ROW",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x027a9d301fb747cd972cfb29a63f3bda551dfc5c": {
+    "assetId": "eip155:56/bep20:0x027a9d301fb747cd972cfb29a63f3bda551dfc5c",
+    "chainId": "eip155:56",
+    "name": "Magpie WOM on BNB Smart Chain",
+    "precision": 18,
+    "color": "#847564",
+    "icon": "https://assets.coingecko.com/coins/images/29924/thumb/mWOM.png?1696528852",
+    "symbol": "MWOM",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x02806435d4b7c1df6fc2df629488a1623b589396": {
+    "assetId": "eip155:56/bep20:0x02806435d4b7c1df6fc2df629488a1623b589396",
+    "chainId": "eip155:56",
+    "name": "Iotec Finance",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/32751/thumb/IMG_20231105_023441_306.jpg?1699264748",
+    "symbol": "IOT",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x0288d3e353fe2299f11ea2c2e1696b4a648ecc07": {
+    "assetId": "eip155:56/bep20:0x0288d3e353fe2299f11ea2c2e1696b4a648ecc07",
+    "chainId": "eip155:56",
+    "name": "ZCore Finance",
+    "precision": 18,
+    "color": "#6BB060",
+    "icon": "https://assets.coingecko.com/coins/images/15346/thumb/icone_marca.png?1696514995",
+    "symbol": "ZEFI",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x02a40c048ee2607b5f5606e445cfc3633fb20b58": {
+    "assetId": "eip155:56/bep20:0x02a40c048ee2607b5f5606e445cfc3633fb20b58",
+    "chainId": "eip155:56",
+    "name": "Kaby Arena on BNB Smart Chain",
+    "precision": 18,
+    "color": "#416A8C",
+    "icon": "https://assets.coingecko.com/coins/images/18090/thumb/URPKhnop_400x400.jpg?1696517595",
+    "symbol": "KABY",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x02a9d7162bd73c2b35c5cf6cdd585e91928c850a": {
+    "assetId": "eip155:56/bep20:0x02a9d7162bd73c2b35c5cf6cdd585e91928c850a",
+    "chainId": "eip155:56",
+    "name": "Baby Floki Inu",
+    "precision": 9,
+    "color": "#CBE8F7",
+    "icon": "https://assets.coingecko.com/coins/images/16759/thumb/floki.PNG?1696516332",
+    "symbol": "BFLOKI",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x02ff5065692783374947393723dba9599e59f591": {
+    "assetId": "eip155:56/bep20:0x02ff5065692783374947393723dba9599e59f591",
+    "chainId": "eip155:56",
+    "name": "YooShi",
+    "precision": 9,
+    "color": "#36A429",
+    "icon": "https://assets.coingecko.com/coins/images/15614/thumb/logo.png?1696515248",
+    "symbol": "YOOSHI",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x031b41e504677879370e9dbcf937283a8691fa7f": {
+    "assetId": "eip155:56/bep20:0x031b41e504677879370e9dbcf937283a8691fa7f",
+    "chainId": "eip155:56",
+    "name": "Fetch ai on BNB Smart Chain",
+    "precision": 18,
+    "color": "#1A253E",
+    "icon": "https://assets.coingecko.com/coins/images/5681/thumb/Fetch.jpg?1696506140",
+    "symbol": "FET",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x0328a69b363a16f66810b23cb0b8d32abadb203d": {
+    "assetId": "eip155:56/bep20:0x0328a69b363a16f66810b23cb0b8d32abadb203d",
+    "chainId": "eip155:56",
+    "name": "Kanaloa Network",
+    "precision": 18,
+    "color": "#310B2B",
+    "icon": "https://assets.coingecko.com/coins/images/17981/thumb/koa.PNG?1696517499",
+    "symbol": "KANA",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x03443efa9dfc7d3f404da427429ee8fd0947026e": {
+    "assetId": "eip155:56/bep20:0x03443efa9dfc7d3f404da427429ee8fd0947026e",
+    "chainId": "eip155:56",
+    "name": "PEPE CEO INU",
+    "precision": 9,
+    "color": "#2C5541",
+    "icon": "https://assets.coingecko.com/coins/images/31642/thumb/LOGO__PEPE_200X200.png?1696530458",
+    "symbol": "PEPE",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x03450c8c2a9265823a715cad9cd3ade2c840bbc2": {
+    "assetId": "eip155:56/bep20:0x03450c8c2a9265823a715cad9cd3ade2c840bbc2",
+    "chainId": "eip155:56",
+    "name": "Magic GPT Game",
+    "precision": 18,
+    "color": "#3E2D24",
+    "icon": "https://assets.coingecko.com/coins/images/31886/thumb/photo_2023-09-21_17-14-43.jpg?1696530697",
+    "symbol": "MGPT",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x034d4fda3860ea9cc0274e602fb9d9732712480f": {
+    "assetId": "eip155:56/bep20:0x034d4fda3860ea9cc0274e602fb9d9732712480f",
+    "chainId": "eip155:56",
+    "name": "Bloody Bunny",
+    "precision": 18,
+    "color": "#DBCCD8",
+    "icon": "https://assets.coingecko.com/coins/images/28622/thumb/logo_ok_1_%282%29.png?1696527607",
+    "symbol": "BONY",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x037838b556d9c9d654148a284682c55bb5f56ef4": {
+    "assetId": "eip155:56/bep20:0x037838b556d9c9d654148a284682c55bb5f56ef4",
+    "chainId": "eip155:56",
+    "name": "Lightning Protocol",
+    "precision": 18,
+    "color": "#08D0F4",
+    "icon": "https://assets.coingecko.com/coins/images/14357/thumb/ClPrk1N.png?1696514043",
+    "symbol": "LIGHT",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x037b202ca88d2028d82936d5615ee5088cb9fd78": {
+    "assetId": "eip155:56/bep20:0x037b202ca88d2028d82936d5615ee5088cb9fd78",
+    "chainId": "eip155:56",
+    "name": "Distributed Autonomous Organization",
+    "precision": 18,
+    "color": "#DADCFC",
+    "icon": "https://assets.coingecko.com/coins/images/30667/thumb/Untitled_3.png?1696529537",
+    "symbol": "DAO",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x037d70234eea7d05e8cd6796d89bc37a2ac45de9": {
+    "assetId": "eip155:56/bep20:0x037d70234eea7d05e8cd6796d89bc37a2ac45de9",
+    "chainId": "eip155:56",
+    "name": "MaoRabbit",
+    "precision": 18,
+    "color": "#CE9F3C",
+    "icon": "https://assets.coingecko.com/coins/images/28375/thumb/MAORabbit.png?1696527376",
+    "symbol": "MAORABBIT",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x03887c177c18140209c0f93adc230d4c5515bf4a": {
+    "assetId": "eip155:56/bep20:0x03887c177c18140209c0f93adc230d4c5515bf4a",
+    "chainId": "eip155:56",
+    "name": "Pegasus DEX",
+    "precision": 18,
+    "color": "#7521B4",
+    "icon": "https://assets.coingecko.com/coins/images/29743/thumb/IMG_4903.PNG?1696528672",
+    "symbol": "PEG",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x0391be54e72f7e001f6bbc331777710b4f2999ef": {
+    "assetId": "eip155:56/bep20:0x0391be54e72f7e001f6bbc331777710b4f2999ef",
+    "chainId": "eip155:56",
+    "name": "Trava Finance on BNB Smart Chain",
+    "precision": 18,
+    "color": "#1C8CF4",
+    "icon": "https://assets.coingecko.com/coins/images/17553/thumb/TRAVA_OFFICIAL_LOGO.png?1696517089",
+    "symbol": "TRAVA",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x039cd22cb49084142d55fcd4b6096a4f51ffb3b4": {
+    "assetId": "eip155:56/bep20:0x039cd22cb49084142d55fcd4b6096a4f51ffb3b4",
+    "chainId": "eip155:56",
+    "name": "MoveZ",
+    "precision": 18,
+    "color": "#FC5E05",
+    "icon": "https://assets.coingecko.com/coins/images/25661/thumb/JYwFw77.png?1696524789",
+    "symbol": "MOVEZ",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x03ac6ab6a9a91a0fcdec7d85b38bdfbb719ec02f": {
+    "assetId": "eip155:56/bep20:0x03ac6ab6a9a91a0fcdec7d85b38bdfbb719ec02f",
+    "chainId": "eip155:56",
+    "name": "Metagame Arena",
+    "precision": 18,
+    "color": "#252A50",
+    "icon": "https://assets.coingecko.com/coins/images/20947/thumb/mga.png?1696520335",
+    "symbol": "MGA",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x03ff0ff224f904be3118461335064bb48df47938": {
+    "assetId": "eip155:56/bep20:0x03ff0ff224f904be3118461335064bb48df47938",
+    "chainId": "eip155:56",
+    "name": "Wrapped One",
+    "precision": 18,
+    "color": "#3FC9E1",
+    "icon": "https://assets.coingecko.com/coins/images/18183/thumb/wonelogo.png?1696517683",
+    "symbol": "WONE",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x04073d16c6a08c27e8bbebe262ea4d1c6fa4c772": {
+    "assetId": "eip155:56/bep20:0x04073d16c6a08c27e8bbebe262ea4d1c6fa4c772",
+    "chainId": "eip155:56",
+    "name": "Metaverse Miner",
+    "precision": 18,
+    "color": "#1C2841",
+    "icon": "https://assets.coingecko.com/coins/images/18408/thumb/d360aee2b1bd9fd9.png?1696517898",
+    "symbol": "META",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x0409633a72d846fc5bbe2f98d88564d35987904d": {
+    "assetId": "eip155:56/bep20:0x0409633a72d846fc5bbe2f98d88564d35987904d",
+    "chainId": "eip155:56",
+    "name": "Phoenix",
+    "precision": 18,
+    "color": "#045CFC",
+    "icon": "https://assets.coingecko.com/coins/images/20052/thumb/Phoenix_logo_blue_bird.png?1696519471",
+    "symbol": "PHB",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x041640ea980e3fe61e9c4ca26d9007bc70094c15": {
+    "assetId": "eip155:56/bep20:0x041640ea980e3fe61e9c4ca26d9007bc70094c15",
+    "chainId": "eip155:56",
+    "name": "PirateCoin",
+    "precision": 9,
+    "color": "#140F09",
+    "icon": "https://assets.coingecko.com/coins/images/18278/thumb/logo_200_%284%29.png?1696517772",
+    "symbol": "PIRATECOIN",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x041e714aa0dce7d4189441896486d361e98bad5f": {
+    "assetId": "eip155:56/bep20:0x041e714aa0dce7d4189441896486d361e98bad5f",
+    "chainId": "eip155:56",
+    "name": "Rich",
+    "precision": 9,
+    "color": "#F8D8C2",
+    "icon": "https://assets.coingecko.com/coins/images/22896/thumb/rch.png?1696522193",
+    "symbol": "RCH",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x04524f05cce069af9bce7879616773a94bb46c84": {
+    "assetId": "eip155:56/bep20:0x04524f05cce069af9bce7879616773a94bb46c84",
+    "chainId": "eip155:56",
+    "name": "SCI Coin",
+    "precision": 18,
+    "color": "#DEE9F2",
+    "icon": "https://assets.coingecko.com/coins/images/29680/thumb/Logo_SCIPlus.jpeg?1696528614",
+    "symbol": "SCI+",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x0465aad9da170798433f4ab7fa7ec8b9b9bf0bb1": {
+    "assetId": "eip155:56/bep20:0x0465aad9da170798433f4ab7fa7ec8b9b9bf0bb1",
+    "chainId": "eip155:56",
+    "name": "mPendle on BNB Smart Chain",
+    "precision": 18,
+    "color": "#456895",
+    "icon": "https://assets.coingecko.com/coins/images/31918/thumb/mPendle.png?1696530726",
+    "symbol": "MPENDLE",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x04756126f044634c9a0f0e985e60c88a51acc206": {
+    "assetId": "eip155:56/bep20:0x04756126f044634c9a0f0e985e60c88a51acc206",
+    "chainId": "eip155:56",
+    "name": "Carbon Browser",
+    "precision": 18,
+    "color": "#FC6620",
+    "icon": "https://assets.coingecko.com/coins/images/28905/thumb/csix.png?1696527881",
+    "symbol": "CSIX",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x048e9b1ddf9ebbb224812372280e94ccac443f9e": {
+    "assetId": "eip155:56/bep20:0x048e9b1ddf9ebbb224812372280e94ccac443f9e",
+    "chainId": "eip155:56",
+    "name": "Jarvis Synthetic British Pound on BNB Smart Chain",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/15726/thumb/jGBP.png?1696515352",
+    "symbol": "JGBP",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x049d68029688eabf473097a2fc38ef61633a3c7a": {
+    "assetId": "eip155:56/bep20:0x049d68029688eabf473097a2fc38ef61633a3c7a",
+    "chainId": "eip155:56",
+    "name": "Frapped USDT",
+    "precision": 6,
+    "color": "#4FCB64",
+    "icon": "https://assets.coingecko.com/coins/images/21949/thumb/frapped.png?1696521298",
+    "symbol": "FUSDT",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x049dd7532148826cde956c7b45fec8c30b514052": {
+    "assetId": "eip155:56/bep20:0x049dd7532148826cde956c7b45fec8c30b514052",
+    "chainId": "eip155:56",
+    "name": "IoTeXPad",
+    "precision": 18,
+    "color": "#3CA692",
+    "icon": "https://assets.coingecko.com/coins/images/20964/thumb/7gyi5TV8_400x400.jpg?1696520351",
+    "symbol": "TEX",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x04baf95fd4c52fd09a56d840baee0ab8d7357bf0": {
+    "assetId": "eip155:56/bep20:0x04baf95fd4c52fd09a56d840baee0ab8d7357bf0",
+    "chainId": "eip155:56",
+    "name": "One on BNB Smart Chain",
+    "precision": 18,
+    "color": "#ACA2DA",
+    "icon": "https://assets.coingecko.com/coins/images/4960/thumb/Screenshot_39.png?1696505497",
+    "symbol": "ONE",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x04c747b40be4d535fc83d09939fb0f626f32800b": {
+    "assetId": "eip155:56/bep20:0x04c747b40be4d535fc83d09939fb0f626f32800b",
+    "chainId": "eip155:56",
+    "name": "ITAM Games",
+    "precision": 18,
+    "color": "#B7354F",
+    "icon": "https://assets.coingecko.com/coins/images/11063/thumb/ITAMGames.png?1696511005",
+    "symbol": "ITAM",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x04df8c91fccfd703cd15047bf6c1ce76d335c6ce": {
+    "assetId": "eip155:56/bep20:0x04df8c91fccfd703cd15047bf6c1ce76d335c6ce",
+    "chainId": "eip155:56",
+    "name": "Baby Lovely Inu",
+    "precision": 9,
+    "color": "#DEC78F",
+    "icon": "https://assets.coingecko.com/coins/images/23608/thumb/blovely.png?1696522815",
+    "symbol": "BLOVELY",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x04f69b0258550e5210b6b2f7ddb57777a8a5a65a": {
+    "assetId": "eip155:56/bep20:0x04f69b0258550e5210b6b2f7ddb57777a8a5a65a",
+    "chainId": "eip155:56",
+    "name": "FIFI",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/33085/thumb/fifi.png?1700718752",
+    "symbol": "FIFI",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x04f73a09e2eb410205be256054794fb452f0d245": {
+    "assetId": "eip155:56/bep20:0x04f73a09e2eb410205be256054794fb452f0d245",
+    "chainId": "eip155:56",
+    "name": "DxSale Network on BNB Smart Chain",
+    "precision": 18,
+    "color": "#CCCCCC",
+    "icon": "https://assets.coingecko.com/coins/images/12250/thumb/dx-light.png?1696512081",
+    "symbol": "SALE",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x051a66a7750098fb1ec6548d36e275bb23749a78": {
+    "assetId": "eip155:56/bep20:0x051a66a7750098fb1ec6548d36e275bb23749a78",
+    "chainId": "eip155:56",
+    "name": "SecureChain AI on BNB Smart Chain",
+    "precision": 18,
+    "color": "#212121",
+    "icon": "https://assets.coingecko.com/coins/images/31680/thumb/SCAI-icon-3.png?1696530499",
+    "symbol": "SCAI",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x052775cf897b3ec894f26b8d801c514123c305d1": {
+    "assetId": "eip155:56/bep20:0x052775cf897b3ec894f26b8d801c514123c305d1",
+    "chainId": "eip155:56",
+    "name": "LaRace",
+    "precision": 18,
+    "color": "#8CDC24",
+    "icon": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAIAAAACACAMAAAD04JH5AAADAFBMVEUtN0iP2Cb///8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADFvqjsAAABAHRSTlP/////AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAf6K/dgAAQItJREFUeNoBgEB/vwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgICAgICAgICAgICAgICAQEBAQEBAQEBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAwAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAwAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAwAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAwAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAwAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAwAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAAMDAwMDAwMDAwMDAwMDAwMDAwMDAgICAgICAgEBAQEBAQECAgICAgICAwMDAwMDAwMDAwMDAwMDAwMDAwMDAgICAgICAgAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAAMDAwMDAwMAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAwAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAwAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAwAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAwAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAwAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAwAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAwMDAwMDAwMDAwMDAwMDAwMDAwMDAgICAgICAgMBAQEBAQECAgICAgICAwMDAwMDAwICAgICAgIDAwMDAwMDAwAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAACAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAgICAgICAgMAAAAAAAACAgICAgICAwEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAACAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAgICAgICAgMAAAAAAAACAgICAgICAwEBAQEBAQEDAwMDAwMCAgICAgICAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAACAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAgICAgICAgMAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAACAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAgICAgICAgMAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAACAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAgICAgICAgMAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAACAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAgICAgICAgMAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAACAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAgICAgICAgMAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAACAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAgICAgICAgMAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAACAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgAAAAAAAAACAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAgICAgICAgMAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAwMDAwMDAgICAgICAgAAAAAAAAAAAAACAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMAAAAAAAACAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAgICAgICAgMAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMAAAAAAAACAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAgICAgICAgMAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMAAAAAAAACAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAgICAgICAgMAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMAAAAAAAACAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAgICAgICAgMAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMAAAAAAAACAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAgICAgICAgMAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMAAAAAAAACAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAgICAgICAgMAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAAAAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMAAAAAAAAAAwMDAwMDAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAMDAwMDAwMAAAAAAAAAAwMDAwMDAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAMDAwMDAwMAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAM/QL9mk2z/2AAAAAElFTkSuQmCC",
+    "symbol": "LAR",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x0556551f81623ae32c5c7cf853c67fafbe61648a": {
+    "assetId": "eip155:56/bep20:0x0556551f81623ae32c5c7cf853c67fafbe61648a",
+    "chainId": "eip155:56",
+    "name": "Solar Full Cycle",
+    "precision": 9,
+    "color": "#343C5A",
+    "icon": "https://assets.coingecko.com/coins/images/21204/thumb/SFC-200x200-Transparent-logo.png?1696520579",
+    "symbol": "SFC",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x0557a288a93ed0df218785f2787dac1cd077f8f3": {
+    "assetId": "eip155:56/bep20:0x0557a288a93ed0df218785f2787dac1cd077f8f3",
+    "chainId": "eip155:56",
+    "name": "Make DeFi Better",
+    "precision": 18,
+    "color": "#CCA44C",
+    "icon": "https://assets.coingecko.com/coins/images/27062/thumb/20039.png?1696526112",
+    "symbol": "MDB",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x0565805ca3a4105faee51983b0bd8ffb5ce1455c": {
+    "assetId": "eip155:56/bep20:0x0565805ca3a4105faee51983b0bd8ffb5ce1455c",
+    "chainId": "eip155:56",
+    "name": "BlockchainSpace on BNB Smart Chain",
+    "precision": 18,
+    "color": "#226A87",
+    "icon": "https://assets.coingecko.com/coins/images/21271/thumb/BednjMw.png?1696520642",
+    "symbol": "GUILD",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x0573780eb18d5c847d89e745e94149b9e9d0cde8": {
+    "assetId": "eip155:56/bep20:0x0573780eb18d5c847d89e745e94149b9e9d0cde8",
+    "chainId": "eip155:56",
+    "name": "iStable",
+    "precision": 9,
+    "color": "#040404",
+    "icon": "https://assets.coingecko.com/coins/images/28843/thumb/I-STABLE-05.png?1696527819",
+    "symbol": "I-STABLE",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x058b6b716fe5e365f4df7e0910eb62f630903d6d": {
+    "assetId": "eip155:56/bep20:0x058b6b716fe5e365f4df7e0910eb62f630903d6d",
+    "chainId": "eip155:56",
+    "name": "Kindness For The Soul",
+    "precision": 9,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/32993/thumb/IMG_3398.png?1700528108",
+    "symbol": "KIND",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x05f816b53a4c7b6b3bfbe1f759da7fe188689c5b": {
+    "assetId": "eip155:56/bep20:0x05f816b53a4c7b6b3bfbe1f759da7fe188689c5b",
+    "chainId": "eip155:56",
+    "name": "Shaun Inu",
+    "precision": 9,
+    "color": "#ECE8D8",
+    "icon": "https://assets.coingecko.com/coins/images/30258/thumb/Shauninu_%281%29.png?1696529166",
+    "symbol": "SHAUN",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x06082951efdb5095e45e3c08cb103782645a2e69": {
+    "assetId": "eip155:56/bep20:0x06082951efdb5095e45e3c08cb103782645a2e69",
+    "chainId": "eip155:56",
+    "name": "Wateenswap",
+    "precision": 18,
+    "color": "#9988BC",
+    "icon": "https://assets.coingecko.com/coins/images/26333/thumb/Xs5yrJym_400x400.jpeg?1696525411",
+    "symbol": "WTN",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x0611686a2558de495617685b3da12448657170fe": {
+    "assetId": "eip155:56/bep20:0x0611686a2558de495617685b3da12448657170fe",
+    "chainId": "eip155:56",
+    "name": "CATpay on BNB Smart Chain",
+    "precision": 9,
+    "color": "#62CCF4",
+    "icon": "https://assets.coingecko.com/coins/images/24731/thumb/catpay.png?1696523894",
+    "symbol": "CATPAY",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x0615dbba33fe61a31c7ed131bda6655ed76748b1": {
+    "assetId": "eip155:56/bep20:0x0615dbba33fe61a31c7ed131bda6655ed76748b1",
+    "chainId": "eip155:56",
+    "name": "BaconDAO on BNB Smart Chain",
+    "precision": 18,
+    "color": "#090608",
+    "icon": "https://assets.coingecko.com/coins/images/18059/thumb/xDV_bhdA_400x400.jpg?1696517567",
+    "symbol": "BACON",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x061e64f1293bc49402a867cc6411987148bcdb1b": {
+    "assetId": "eip155:56/bep20:0x061e64f1293bc49402a867cc6411987148bcdb1b",
+    "chainId": "eip155:56",
+    "name": "BNBKinG",
+    "precision": 9,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/32772/thumb/BNBN.png?1699343522",
+    "symbol": "BNBKING",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x0627e7ee0d14fcdd2ff30d1563aebdbccec678be": {
+    "assetId": "eip155:56/bep20:0x0627e7ee0d14fcdd2ff30d1563aebdbccec678be",
+    "chainId": "eip155:56",
+    "name": "JackpotDoge",
+    "precision": 9,
+    "color": "#E4C58C",
+    "icon": "https://assets.coingecko.com/coins/images/28001/thumb/62caad33f3c5f30014065a1d-image-p-1660157227220-File-name.png?1696527018",
+    "symbol": "JPD",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x065a74c744eb69b4975629c1a89823c694d2efdb": {
+    "assetId": "eip155:56/bep20:0x065a74c744eb69b4975629c1a89823c694d2efdb",
+    "chainId": "eip155:56",
+    "name": "Web3Tools",
+    "precision": 18,
+    "color": "#227EAF",
+    "icon": "https://assets.coingecko.com/coins/images/29050/thumb/logo.png?1696528018",
+    "symbol": "WEB3T",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x066aee69d93dee28b32a57febd1878a2d94f6b0c": {
+    "assetId": "eip155:56/bep20:0x066aee69d93dee28b32a57febd1878a2d94f6b0c",
+    "chainId": "eip155:56",
+    "name": "GOLD8",
+    "precision": 18,
+    "color": "#E4C86E",
+    "icon": "https://assets.coingecko.com/coins/images/27481/thumb/gold8-200x200.png?1696526519",
+    "symbol": "GOLD8",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x066cda0cca84e9c6ed0a4ecb92aa036a9582544b": {
+    "assetId": "eip155:56/bep20:0x066cda0cca84e9c6ed0a4ecb92aa036a9582544b",
+    "chainId": "eip155:56",
+    "name": "Sonic Inu",
+    "precision": 9,
+    "color": "#191919",
+    "icon": "https://assets.coingecko.com/coins/images/30259/thumb/Sonic_inu-1.png?1696529167",
+    "symbol": "SONIC",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x066d5f83835d17ada8fc0bd49ae1bcf2642ea2f7": {
+    "assetId": "eip155:56/bep20:0x066d5f83835d17ada8fc0bd49ae1bcf2642ea2f7",
+    "chainId": "eip155:56",
+    "name": "Kangaroo Community",
+    "precision": 18,
+    "color": "#090507",
+    "icon": "https://assets.coingecko.com/coins/images/31658/thumb/WhatsApp_Image_2023-09-07_at_15.08.54.jpeg?1696530473",
+    "symbol": "KROO",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x06dc293c250e2fb2416a4276d291803fc74fb9b5": {
+    "assetId": "eip155:56/bep20:0x06dc293c250e2fb2416a4276d291803fc74fb9b5",
+    "chainId": "eip155:56",
+    "name": "The Kingdom Coin",
+    "precision": 18,
+    "color": "#BE9422",
+    "icon": "https://assets.coingecko.com/coins/images/30098/thumb/44-DF930-C-7-E3-D-400-A-BDEA-7-F0185-DBFE7-C.jpg?1696529022",
+    "symbol": "TKC",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x06f96469fd2b81f43e26e061635177b66ac45280": {
+    "assetId": "eip155:56/bep20:0x06f96469fd2b81f43e26e061635177b66ac45280",
+    "chainId": "eip155:56",
+    "name": "Ensue",
+    "precision": 18,
+    "color": "#A89CC9",
+    "icon": "https://assets.coingecko.com/coins/images/31968/thumb/ensue.jpeg?1696530773",
+    "symbol": "ENSUE",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x0733618ab62eeec815f2d1739b7a50bf9e74d8a2": {
+    "assetId": "eip155:56/bep20:0x0733618ab62eeec815f2d1739b7a50bf9e74d8a2",
+    "chainId": "eip155:56",
+    "name": "Pomerium Ecosystem Token",
+    "precision": 18,
+    "color": "#0C0CFC",
+    "icon": "https://assets.coingecko.com/coins/images/29544/thumb/pomerium-logo-PMG_%281%29.png?1696528485",
+    "symbol": "PMG",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x073d31b72e5444e6f00e24d31f66f100dee40e74": {
+    "assetId": "eip155:56/bep20:0x073d31b72e5444e6f00e24d31f66f100dee40e74",
+    "chainId": "eip155:56",
+    "name": "Twitter CEO Floki",
+    "precision": 18,
+    "color": "#786C64",
+    "icon": "https://assets.coingecko.com/coins/images/29246/thumb/23697.png?1696528202",
+    "symbol": "FLOKICEO",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x0747cda49c82d3fc6b06df1822e1de0c16673e9f": {
+    "assetId": "eip155:56/bep20:0x0747cda49c82d3fc6b06df1822e1de0c16673e9f",
+    "chainId": "eip155:56",
+    "name": "Flux Protocol on BNB Smart Chain",
+    "precision": 18,
+    "color": "#D67C16",
+    "icon": "https://assets.coingecko.com/coins/images/15002/thumb/logo.dabc411c.png?1696514665",
+    "symbol": "FLUX",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x07663837218a003e66310a01596af4bf4e44623d": {
+    "assetId": "eip155:56/bep20:0x07663837218a003e66310a01596af4bf4e44623d",
+    "chainId": "eip155:56",
+    "name": "rUSD on BNB Smart Chain",
+    "precision": 18,
+    "color": "#193464",
+    "icon": "https://assets.coingecko.com/coins/images/16184/thumb/rUSD-Logo-200.png?1696515786",
+    "symbol": "RUSD",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x076ddce096c93dcf5d51fe346062bf0ba9523493": {
+    "assetId": "eip155:56/bep20:0x076ddce096c93dcf5d51fe346062bf0ba9523493",
+    "chainId": "eip155:56",
+    "name": "Paralink Network on BNB Smart Chain",
+    "precision": 18,
+    "color": "#1EA2DC",
+    "icon": "https://assets.coingecko.com/coins/images/15789/thumb/para.PNG?1696515412",
+    "symbol": "PARA",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x07728696ee70a28c9c032926577af1d524df30f9": {
+    "assetId": "eip155:56/bep20:0x07728696ee70a28c9c032926577af1d524df30f9",
+    "chainId": "eip155:56",
+    "name": "PlaceWar Governance",
+    "precision": 18,
+    "color": "#E57127",
+    "icon": "https://assets.coingecko.com/coins/images/19993/thumb/place.png?1696519415",
+    "symbol": "PLACE",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x0782b6d8c4551b9760e74c0545a9bcd90bdc41e5": {
+    "assetId": "eip155:56/bep20:0x0782b6d8c4551b9760e74c0545a9bcd90bdc41e5",
+    "chainId": "eip155:56",
+    "name": "Destablecoin HAY",
+    "precision": 18,
+    "color": "#FCFAF0",
+    "icon": "https://assets.coingecko.com/coins/images/26947/thumb/HAY.png?1696526002",
+    "symbol": "HAY",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x078efa21a70337834788c3e6f0a99275f71393f0": {
+    "assetId": "eip155:56/bep20:0x078efa21a70337834788c3e6f0a99275f71393f0",
+    "chainId": "eip155:56",
+    "name": "Kinect Finance",
+    "precision": 18,
+    "color": "#1B0F2B",
+    "icon": "https://assets.coingecko.com/coins/images/28680/thumb/nK_ijQXW_400x400.jpg?1696527664",
+    "symbol": "KNT",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x079f0f5f3ad15e01a5cd919564a8f52dde03431b": {
+    "assetId": "eip155:56/bep20:0x079f0f5f3ad15e01a5cd919564a8f52dde03431b",
+    "chainId": "eip155:56",
+    "name": "MegaToken",
+    "precision": 18,
+    "color": "#1A77A8",
+    "icon": "https://assets.coingecko.com/coins/images/20671/thumb/undefined-Imgur-5.png?1696520072",
+    "symbol": "MEGA",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x07b36f2549291d320132712a1e64d3826b1fb4d7": {
+    "assetId": "eip155:56/bep20:0x07b36f2549291d320132712a1e64d3826b1fb4d7",
+    "chainId": "eip155:56",
+    "name": "Wifedoge",
+    "precision": 9,
+    "color": "#E0BB5D",
+    "icon": "https://assets.coingecko.com/coins/images/17346/thumb/w_doge_logo200.png?1696516898",
+    "symbol": "WIFEDOGE",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x07c3c3f7203c61725d6f9c3194cd7d78aacf5668": {
+    "assetId": "eip155:56/bep20:0x07c3c3f7203c61725d6f9c3194cd7d78aacf5668",
+    "chainId": "eip155:56",
+    "name": "Blinq Network",
+    "precision": 18,
+    "color": "#39276D",
+    "icon": "https://assets.coingecko.com/coins/images/31961/thumb/Blinq-Logo.png?1696530766",
+    "symbol": "BLINQ",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x07e551e31a793e20dc18494ff6b03095a8f8ee36": {
+    "assetId": "eip155:56/bep20:0x07e551e31a793e20dc18494ff6b03095a8f8ee36",
+    "chainId": "eip155:56",
+    "name": "Qmall on BNB Smart Chain",
+    "precision": 18,
+    "color": "#382D39",
+    "icon": "https://assets.coingecko.com/coins/images/23630/thumb/tjVN6bQ5_400x400.jpg?1696522834",
+    "symbol": "QMALL",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x07f5ceded6b3dba557b3663edc8941fb37b63945": {
+    "assetId": "eip155:56/bep20:0x07f5ceded6b3dba557b3663edc8941fb37b63945",
+    "chainId": "eip155:56",
+    "name": "Little Angry Bunny v2",
+    "precision": 9,
+    "color": "#152933",
+    "icon": "https://assets.coingecko.com/coins/images/20327/thumb/lab_v2.png?1696519729",
+    "symbol": "LAB-V2",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x07f9702ce093db82dfdc92c2c6e578d6ea8d5e22": {
+    "assetId": "eip155:56/bep20:0x07f9702ce093db82dfdc92c2c6e578d6ea8d5e22",
+    "chainId": "eip155:56",
+    "name": "Oobit on BNB Smart Chain",
+    "precision": 18,
+    "color": "#D8D6F4",
+    "icon": "https://assets.coingecko.com/coins/images/19855/thumb/obt.png?1696519278",
+    "symbol": "OBT",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x08037036451c768465369431da5c671ad9b37dbc": {
+    "assetId": "eip155:56/bep20:0x08037036451c768465369431da5c671ad9b37dbc",
+    "chainId": "eip155:56",
+    "name": "NFT Stars on BNB Smart Chain",
+    "precision": 18,
+    "color": "#272726",
+    "icon": "https://assets.coingecko.com/coins/images/16141/thumb/j2KHi8zR_400x400.png?1696515746",
+    "symbol": "NFTS",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x08426874d46f90e5e527604fa5e3e30486770eb3": {
+    "assetId": "eip155:56/bep20:0x08426874d46f90e5e527604fa5e3e30486770eb3",
+    "chainId": "eip155:56",
+    "name": "Moonshots Farm",
+    "precision": 18,
+    "color": "#CDB779",
+    "icon": "https://assets.coingecko.com/coins/images/22487/thumb/moonshots200.png?1696521810",
+    "symbol": "BONES",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x0864c156b3c5f69824564dec60c629ae6401bf2a": {
+    "assetId": "eip155:56/bep20:0x0864c156b3c5f69824564dec60c629ae6401bf2a",
+    "chainId": "eip155:56",
+    "name": "Streamr on BNB Smart Chain",
+    "precision": 18,
+    "color": "#F56510",
+    "icon": "https://assets.coingecko.com/coins/images/17869/thumb/DATA_new_symbol_3x.png?1696517392",
+    "symbol": "DATA",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x086ddd008e20dd74c4fb216170349853f8ca8289": {
+    "assetId": "eip155:56/bep20:0x086ddd008e20dd74c4fb216170349853f8ca8289",
+    "chainId": "eip155:56",
+    "name": "MxmBoxcEus Token",
+    "precision": 18,
+    "color": "#040F11",
+    "icon": "https://assets.coingecko.com/coins/images/28418/thumb/MBE.png?1696527416",
+    "symbol": "MBE",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x08a84af1368cd333073ac5dfb2254208e06b3a70": {
+    "assetId": "eip155:56/bep20:0x08a84af1368cd333073ac5dfb2254208e06b3a70",
+    "chainId": "eip155:56",
+    "name": "marumaruNFT",
+    "precision": 18,
+    "color": "#04AC9D",
+    "icon": "https://assets.coingecko.com/coins/images/27672/thumb/90e23f86-426d-4a0f-9d66-10da3d58baf5.png?1696526700",
+    "symbol": "MARU",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x08b450e4a48c04cdf6db2bd4cf24057f7b9563ff": {
+    "assetId": "eip155:56/bep20:0x08b450e4a48c04cdf6db2bd4cf24057f7b9563ff",
+    "chainId": "eip155:56",
+    "name": "Quoll Finance",
+    "precision": 18,
+    "color": "#3F3B2F",
+    "icon": "https://assets.coingecko.com/coins/images/28078/thumb/logo_quoll_asset.png?1696527089",
+    "symbol": "QUO",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x08b87b1cfdba00dfb79d77cac1a5970ba6c9cde2": {
+    "assetId": "eip155:56/bep20:0x08b87b1cfdba00dfb79d77cac1a5970ba6c9cde2",
+    "chainId": "eip155:56",
+    "name": "Metarix",
+    "precision": 18,
+    "color": "#F4CBF7",
+    "icon": "https://assets.coingecko.com/coins/images/27565/thumb/output-onlinepngtools_%287%29.png?1696526600",
+    "symbol": "MTRX",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x08ba0619b1e7a582e0bce5bbe9843322c954c340": {
+    "assetId": "eip155:56/bep20:0x08ba0619b1e7a582e0bce5bbe9843322c954c340",
+    "chainId": "eip155:56",
+    "name": "Binamon",
+    "precision": 18,
+    "color": "#F46C44",
+    "icon": "https://assets.coingecko.com/coins/images/16346/thumb/bmon.png?1696515946",
+    "symbol": "BMON",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x08bd7f9849f8eec12fd78c9fed6ba4e47269e3d5": {
+    "assetId": "eip155:56/bep20:0x08bd7f9849f8eec12fd78c9fed6ba4e47269e3d5",
+    "chainId": "eip155:56",
+    "name": "BabyDot",
+    "precision": 18,
+    "color": "#DED2D8",
+    "icon": "https://assets.coingecko.com/coins/images/17213/thumb/bdot.PNG?1696516769",
+    "symbol": "BDOT",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x08ccac619e9c6e95d48dfd23793d722a994b95b8": {
+    "assetId": "eip155:56/bep20:0x08ccac619e9c6e95d48dfd23793d722a994b95b8",
+    "chainId": "eip155:56",
+    "name": "Doge 1 Mission to the moon",
+    "precision": 9,
+    "color": "#88A0A4",
+    "icon": "https://assets.coingecko.com/coins/images/23778/thumb/IMMAGINE-PER-CMC.png?1696522978",
+    "symbol": "DOGE-1",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x08f725d2809fda409bc23493f3615a4c85a22d7d": {
+    "assetId": "eip155:56/bep20:0x08f725d2809fda409bc23493f3615a4c85a22d7d",
+    "chainId": "eip155:56",
+    "name": "TrustNFT",
+    "precision": 18,
+    "color": "#4D40A0",
+    "icon": "https://assets.coingecko.com/coins/images/20478/thumb/logo-3_%281%29.png?1696519886",
+    "symbol": "TRUSTNFT",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x092bbec1342afffd16cfb41b56343d5a299cdf0d": {
+    "assetId": "eip155:56/bep20:0x092bbec1342afffd16cfb41b56343d5a299cdf0d",
+    "chainId": "eip155:56",
+    "name": "ShibaCorgi",
+    "precision": 9,
+    "color": "#B38654",
+    "icon": "https://assets.coingecko.com/coins/images/15608/thumb/shibacorgi-200.jpg?1696515242",
+    "symbol": "SHICO",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x0938a5d325a8496c186cf122946e9dd22f8a625b": {
+    "assetId": "eip155:56/bep20:0x0938a5d325a8496c186cf122946e9dd22f8a625b",
+    "chainId": "eip155:56",
+    "name": "Digital Files on BNB Smart Chain",
+    "precision": 18,
+    "color": "#C0C0C3",
+    "icon": "https://assets.coingecko.com/coins/images/29282/thumb/DIFI_logo.png?1696528234",
+    "symbol": "DIFI",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x095956b142431eb9cf88b99f392540b91acbf4ad": {
+    "assetId": "eip155:56/bep20:0x095956b142431eb9cf88b99f392540b91acbf4ad",
+    "chainId": "eip155:56",
+    "name": "One Basis Cash",
+    "precision": 18,
+    "color": "#46ACD8",
+    "icon": "https://assets.coingecko.com/coins/images/16521/thumb/OBS.50eb9474.png?1696516084",
+    "symbol": "OBS",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x098a138fd939ae6bde61deb9ab82c838e85d98e3": {
+    "assetId": "eip155:56/bep20:0x098a138fd939ae6bde61deb9ab82c838e85d98e3",
+    "chainId": "eip155:56",
+    "name": "Billionaires Pixel Club",
+    "precision": 9,
+    "color": "#060605",
+    "icon": "https://assets.coingecko.com/coins/images/29795/thumb/IMG_20230412_023811_990.jpg?1696528725",
+    "symbol": "BPC",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x09a6c44c3947b69e2b45f4d51b67e6a39acfb506": {
+    "assetId": "eip155:56/bep20:0x09a6c44c3947b69e2b45f4d51b67e6a39acfb506",
+    "chainId": "eip155:56",
+    "name": "UNCX Network on BNB Smart Chain",
+    "precision": 18,
+    "color": "#08DA75",
+    "icon": "https://assets.coingecko.com/coins/images/12871/thumb/uncx.png?1696512659",
+    "symbol": "UNCX",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x09c704c1eb9245af48f058878e72129557a10f04": {
+    "assetId": "eip155:56/bep20:0x09c704c1eb9245af48f058878e72129557a10f04",
+    "chainId": "eip155:56",
+    "name": "Sweep Token",
+    "precision": 9,
+    "color": "#BEB0A9",
+    "icon": "https://assets.coingecko.com/coins/images/27848/thumb/sweep200.png?1696526867",
+    "symbol": "SWEEP",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x09cf7ca1b4ca6ab3855f23020e8e0e9e721cc03d": {
+    "assetId": "eip155:56/bep20:0x09cf7ca1b4ca6ab3855f23020e8e0e9e721cc03d",
+    "chainId": "eip155:56",
+    "name": "Layerium",
+    "precision": 18,
+    "color": "#78CAF4",
+    "icon": "https://assets.coingecko.com/coins/images/32137/thumb/Layerium.jpg?1696589104",
+    "symbol": "LYUM",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x09d975c3351dbded28617517fc6982284a787f03": {
+    "assetId": "eip155:56/bep20:0x09d975c3351dbded28617517fc6982284a787f03",
+    "chainId": "eip155:56",
+    "name": "Crypto Island",
+    "precision": 18,
+    "color": "#725826",
+    "icon": "https://assets.coingecko.com/coins/images/17897/thumb/200x200_CISLA.png?1696517417",
+    "symbol": "CISLA",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x09e889bb4d5b474f561db0491c38702f367a4e4d": {
+    "assetId": "eip155:56/bep20:0x09e889bb4d5b474f561db0491c38702f367a4e4d",
+    "chainId": "eip155:56",
+    "name": "Clover Finance on BNB Smart Chain",
+    "precision": 18,
+    "color": "#A8EFE9",
+    "icon": "https://assets.coingecko.com/coins/images/15278/thumb/photo_2022-03-24_10-22-33.jpg?1696514930",
+    "symbol": "CLV",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x09f062cbf43d56df6df8e5381f8a9df2a64c68c0": {
+    "assetId": "eip155:56/bep20:0x09f062cbf43d56df6df8e5381f8a9df2a64c68c0",
+    "chainId": "eip155:56",
+    "name": "DecentralFree",
+    "precision": 18,
+    "color": "#FCE5C5",
+    "icon": "https://assets.coingecko.com/coins/images/30003/thumb/DecentralFee_logo.png?1696528928",
+    "symbol": "FREELA",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x09f423ac3c9babbff6f94d372b16e4206e71439f": {
+    "assetId": "eip155:56/bep20:0x09f423ac3c9babbff6f94d372b16e4206e71439f",
+    "chainId": "eip155:56",
+    "name": "Enjinstarter on BNB Smart Chain",
+    "precision": 18,
+    "color": "#AD428B",
+    "icon": "https://assets.coingecko.com/coins/images/18732/thumb/l-R1nYA0_400x400.jpg?1696518198",
+    "symbol": "EJS",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x0a232cb2005bda62d3de7ab5deb3ffe4c456165a": {
+    "assetId": "eip155:56/bep20:0x0a232cb2005bda62d3de7ab5deb3ffe4c456165a",
+    "chainId": "eip155:56",
+    "name": "Finance Vote on BNB Smart Chain",
+    "precision": 18,
+    "color": "#0C253D",
+    "icon": "https://assets.coingecko.com/coins/images/13181/thumb/finance.png?1696512964",
+    "symbol": "FVT",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x0a356f512f6fce740111ee04ab1699017a908680": {
+    "assetId": "eip155:56/bep20:0x0a356f512f6fce740111ee04ab1699017a908680",
+    "chainId": "eip155:56",
+    "name": "UniFarm on BNB Smart Chain",
+    "precision": 18,
+    "color": "#812CA4",
+    "icon": "https://assets.coingecko.com/coins/images/15247/thumb/ufarm.jpeg?1696514900",
+    "symbol": "UFARM",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x0a3a21356793b49154fd3bbe91cbc2a16c0457f5": {
+    "assetId": "eip155:56/bep20:0x0a3a21356793b49154fd3bbe91cbc2a16c0457f5",
+    "chainId": "eip155:56",
+    "name": "RFOX on BNB Smart Chain",
+    "precision": 18,
+    "color": "#CC0404",
+    "icon": "https://assets.coingecko.com/coins/images/12956/thumb/rfox.png?1696512744",
+    "symbol": "RFOX",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x0a4e1bdfa75292a98c15870aef24bd94bffe0bd4": {
+    "assetId": "eip155:56/bep20:0x0a4e1bdfa75292a98c15870aef24bd94bffe0bd4",
+    "chainId": "eip155:56",
+    "name": "Fight Of The Ages",
+    "precision": 18,
+    "color": "#C4BA8A",
+    "icon": "https://assets.coingecko.com/coins/images/26023/thumb/logo_thunder.jpg?1696525100",
+    "symbol": "FOTA",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x0a6e6d2f58d22e267fdc9bfb295f0d43985febb4": {
+    "assetId": "eip155:56/bep20:0x0a6e6d2f58d22e267fdc9bfb295f0d43985febb4",
+    "chainId": "eip155:56",
+    "name": "HelpSeed",
+    "precision": 18,
+    "color": "#182C30",
+    "icon": "https://assets.coingecko.com/coins/images/23858/thumb/d76MlHE2_400x400.png?1696523059",
+    "symbol": "HELPS",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x0a92285241b0ea93eff4195db4530af1a4bcfe0c": {
+    "assetId": "eip155:56/bep20:0x0a92285241b0ea93eff4195db4530af1a4bcfe0c",
+    "chainId": "eip155:56",
+    "name": "Crypto Street",
+    "precision": 18,
+    "color": "#3BAE97",
+    "icon": "https://assets.coingecko.com/coins/images/31604/thumb/CSTLOGOFINAL_%281%29.png?1696530420",
+    "symbol": "CST",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x0a94ea47de185d6376db4cad70123ec8de4f2841": {
+    "assetId": "eip155:56/bep20:0x0a94ea47de185d6376db4cad70123ec8de4f2841",
+    "chainId": "eip155:56",
+    "name": "Synaptic AI",
+    "precision": 18,
+    "color": "#48205C",
+    "icon": "https://assets.coingecko.com/coins/images/29260/thumb/SynapticAI_logo.png?1696528214",
+    "symbol": "SYNAPTICAI",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x0aa086e7a108d387de63294fe2a88b05820a9855": {
+    "assetId": "eip155:56/bep20:0x0aa086e7a108d387de63294fe2a88b05820a9855",
+    "chainId": "eip155:56",
+    "name": "MMOCoin",
+    "precision": 18,
+    "color": "#4CB824",
+    "icon": "https://assets.coingecko.com/coins/images/4364/thumb/xWGfHzg.png?1696504965",
+    "symbol": "MMO",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x0ae38f7e10a43b5b2fb064b42a2f4514cba909ef": {
+    "assetId": "eip155:56/bep20:0x0ae38f7e10a43b5b2fb064b42a2f4514cba909ef",
+    "chainId": "eip155:56",
+    "name": "unshETH Ether on BNB Smart Chain",
+    "precision": 18,
+    "color": "#04D7F6",
+    "icon": "https://assets.coingecko.com/coins/images/30365/thumb/ush.png?1696529262",
+    "symbol": "UNSHETH",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x0aec1e4ce3cd3ccee64ff1a2ee47770fd2b0d8d3": {
+    "assetId": "eip155:56/bep20:0x0aec1e4ce3cd3ccee64ff1a2ee47770fd2b0d8d3",
+    "chainId": "eip155:56",
+    "name": "Capybara BSC",
+    "precision": 18,
+    "color": "#B67B46",
+    "icon": "https://assets.coingecko.com/coins/images/29563/thumb/logo200.png?1696528503",
+    "symbol": "CAPY",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x0af2ec0957cb0faa0d449c6326c4dd73d78436e7": {
+    "assetId": "eip155:56/bep20:0x0af2ec0957cb0faa0d449c6326c4dd73d78436e7",
+    "chainId": "eip155:56",
+    "name": "Happy Train",
+    "precision": 18,
+    "color": "#F2F3EB",
+    "icon": "https://assets.coingecko.com/coins/images/31820/thumb/happy_train.jpeg?1696530634",
+    "symbol": "HTR",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x0af55d5ff28a3269d69b98680fd034f115dd53ac": {
+    "assetId": "eip155:56/bep20:0x0af55d5ff28a3269d69b98680fd034f115dd53ac",
+    "chainId": "eip155:56",
+    "name": "BankSocial on BNB Smart Chain",
+    "precision": 8,
+    "color": "#1A2844",
+    "icon": "https://assets.coingecko.com/coins/images/15738/thumb/banksocial_small.png?1696515363",
+    "symbol": "BSL",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x0b15ddf19d47e6a86a56148fb4afffc6929bcb89": {
+    "assetId": "eip155:56/bep20:0x0b15ddf19d47e6a86a56148fb4afffc6929bcb89",
+    "chainId": "eip155:56",
+    "name": "Impossible Finance Launchpad on BNB Smart Chain",
+    "precision": 18,
+    "color": "#0C0C25",
+    "icon": "https://assets.coingecko.com/coins/images/17803/thumb/IDIA.png?1696517325",
+    "symbol": "IDIA",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x0b33542240d6fa323c796749f6d6869fdb7f13ca": {
+    "assetId": "eip155:56/bep20:0x0b33542240d6fa323c796749f6d6869fdb7f13ca",
+    "chainId": "eip155:56",
+    "name": "Ethereum Meta on BNB Smart Chain",
+    "precision": 18,
+    "color": "#459879",
+    "icon": "https://assets.coingecko.com/coins/images/6586/thumb/ethereum-meta.png?1696506937",
+    "symbol": "ETHM",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x0b34d4a7c5bfc7004b9a193f8309523e99ca766e": {
+    "assetId": "eip155:56/bep20:0x0b34d4a7c5bfc7004b9a193f8309523e99ca766e",
+    "chainId": "eip155:56",
+    "name": "Shon",
+    "precision": 18,
+    "color": "#43B5C5",
+    "icon": "https://assets.coingecko.com/coins/images/17135/thumb/200x200_LOGO.png?1696516694",
+    "symbol": "SHON",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x0b3f42481c228f70756dbfa0309d3ddc2a5e0f6a": {
+    "assetId": "eip155:56/bep20:0x0b3f42481c228f70756dbfa0309d3ddc2a5e0f6a",
+    "chainId": "eip155:56",
+    "name": "UltraSafe",
+    "precision": 9,
+    "color": "#198DCB",
+    "icon": "https://assets.coingecko.com/coins/images/15503/thumb/YjaL3nG.png?1696515147",
+    "symbol": "ULTRA",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x0b49e5c0640105c5f63f7cd9a3473948ef323bda": {
+    "assetId": "eip155:56/bep20:0x0b49e5c0640105c5f63f7cd9a3473948ef323bda",
+    "chainId": "eip155:56",
+    "name": "GGbond",
+    "precision": 9,
+    "color": "#AF3C37",
+    "icon": "https://assets.coingecko.com/coins/images/30600/thumb/Frame_7.png?1696529470",
+    "symbol": "GGBOND",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x0b842c7b18bef85daea11f23e1dabe0d6671c19a": {
+    "assetId": "eip155:56/bep20:0x0b842c7b18bef85daea11f23e1dabe0d6671c19a",
+    "chainId": "eip155:56",
+    "name": "Shido  OLD  on BNB Smart Chain",
+    "precision": 18,
+    "color": "#131F2C",
+    "icon": "https://assets.coingecko.com/coins/images/26674/thumb/Shido.png?1696525746",
+    "symbol": "SHIDO",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x0b9bdcc696efa768cafe0e675525eaf42e32d108": {
+    "assetId": "eip155:56/bep20:0x0b9bdcc696efa768cafe0e675525eaf42e32d108",
+    "chainId": "eip155:56",
+    "name": "GoSleep ZZZ on BNB Smart Chain",
+    "precision": 18,
+    "color": "#C5ADF5",
+    "icon": "https://assets.coingecko.com/coins/images/29901/thumb/ZZZ200_200.png?1696528830",
+    "symbol": "ZZZ",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x0ba45f3aa9aca408dcbacebd21096602498b7b10": {
+    "assetId": "eip155:56/bep20:0x0ba45f3aa9aca408dcbacebd21096602498b7b10",
+    "chainId": "eip155:56",
+    "name": "LBViVi",
+    "precision": 18,
+    "color": "#2B230C",
+    "icon": "https://assets.coingecko.com/coins/images/30777/thumb/IMG_20230615_211100_123.jpg?1696529645",
+    "symbol": "LBVV",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x0bd669a4ce836f70c3814b22a142116851d2c04a": {
+    "assetId": "eip155:56/bep20:0x0bd669a4ce836f70c3814b22a142116851d2c04a",
+    "chainId": "eip155:56",
+    "name": "SOS Fidelity",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/26088/thumb/SOSF_200x200.png?1696525179",
+    "symbol": "SOSF",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x0c08638473cafbca3beb113616a1871f4bfad4f9": {
+    "assetId": "eip155:56/bep20:0x0c08638473cafbca3beb113616a1871f4bfad4f9",
+    "chainId": "eip155:56",
+    "name": "LIF3 LSHARE on BNB Smart Chain",
+    "precision": 18,
+    "color": "#B28E66",
+    "icon": "https://assets.coingecko.com/coins/images/31575/thumb/LSHARE.png?1696530392",
+    "symbol": "LSHARE",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x0c1253a30da9580472064a91946c5ce0c58acf7f": {
+    "assetId": "eip155:56/bep20:0x0c1253a30da9580472064a91946c5ce0c58acf7f",
+    "chainId": "eip155:56",
+    "name": "Titan Hunters",
+    "precision": 18,
+    "color": "#E7CB0C",
+    "icon": "https://assets.coingecko.com/coins/images/20588/thumb/tita.png?1696519995",
+    "symbol": "TITA",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x0c27b49db71a9fb6e9cf97f7cbb0cf3f0e97f920": {
+    "assetId": "eip155:56/bep20:0x0c27b49db71a9fb6e9cf97f7cbb0cf3f0e97f920",
+    "chainId": "eip155:56",
+    "name": "Nyantereum International",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/13090/thumb/Nyantereum.png?1696512877",
+    "symbol": "NYANTE",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x0c59d2dc24798ff6869de428aa931a862c4e9994": {
+    "assetId": "eip155:56/bep20:0x0c59d2dc24798ff6869de428aa931a862c4e9994",
+    "chainId": "eip155:56",
+    "name": "AppleSwap AI",
+    "precision": 9,
+    "color": "#583C4C",
+    "icon": "https://assets.coingecko.com/coins/images/30817/thumb/logo_200.png?1696529673",
+    "symbol": "AP",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x0c6ed1e73ba73b8441868538e210ebd5dd240fa0": {
+    "assetId": "eip155:56/bep20:0x0c6ed1e73ba73b8441868538e210ebd5dd240fa0",
+    "chainId": "eip155:56",
+    "name": "Sable Coin",
+    "precision": 18,
+    "color": "#B59437",
+    "icon": "https://assets.coingecko.com/coins/images/31192/thumb/eiJHqwTU_400x400.jpg?1696530020",
+    "symbol": "USDS",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x0c9b16e74407611f24efe12bdb9bac442e480340": {
+    "assetId": "eip155:56/bep20:0x0c9b16e74407611f24efe12bdb9bac442e480340",
+    "chainId": "eip155:56",
+    "name": "Pharos",
+    "precision": 18,
+    "color": "#82B8D8",
+    "icon": "https://assets.coingecko.com/coins/images/32459/thumb/PHAROS.jpg?1698241679",
+    "symbol": "PHAROS",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x0cbd6fadcf8096cc9a43d90b45f65826102e3ece": {
+    "assetId": "eip155:56/bep20:0x0cbd6fadcf8096cc9a43d90b45f65826102e3ece",
+    "chainId": "eip155:56",
+    "name": "CheckDot on BNB Smart Chain",
+    "precision": 18,
+    "color": "#3CEC94",
+    "icon": "https://assets.coingecko.com/coins/images/20370/thumb/token-200x200_%281%29.png?1696519781",
+    "symbol": "CDT",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x0cbfdea4f45a486cc7db53cb6e37b312a137c605": {
+    "assetId": "eip155:56/bep20:0x0cbfdea4f45a486cc7db53cb6e37b312a137c605",
+    "chainId": "eip155:56",
+    "name": "SEEDx",
+    "precision": 18,
+    "color": "#593E42",
+    "icon": "https://assets.coingecko.com/coins/images/29462/thumb/200px.png?1696528408",
+    "symbol": "SEEDX",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x0cca2f5561bb0fca88e5b9b48b7fbf000349c357": {
+    "assetId": "eip155:56/bep20:0x0cca2f5561bb0fca88e5b9b48b7fbf000349c357",
+    "chainId": "eip155:56",
+    "name": "Zodium",
+    "precision": 18,
+    "color": "#EFBE91",
+    "icon": "https://assets.coingecko.com/coins/images/21181/thumb/s4TSr4S_-_Imgur.png?1696520557",
+    "symbol": "ZODI",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x0ccd575bf9378c06f6dca82f8122f570769f00c2": {
+    "assetId": "eip155:56/bep20:0x0ccd575bf9378c06f6dca82f8122f570769f00c2",
+    "chainId": "eip155:56",
+    "name": "CryptoBlades Kingdoms",
+    "precision": 18,
+    "color": "#0D0E0C",
+    "icon": "https://assets.coingecko.com/coins/images/18728/thumb/cryptoblades-kingdoms.jpeg?1696518195",
+    "symbol": "KING",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x0cd5c0e24a29225b2e0eae25c3ab8f62ef70df9d": {
+    "assetId": "eip155:56/bep20:0x0cd5c0e24a29225b2e0eae25c3ab8f62ef70df9d",
+    "chainId": "eip155:56",
+    "name": "AI Floki",
+    "precision": 9,
+    "color": "#1E1D23",
+    "icon": "https://assets.coingecko.com/coins/images/29261/thumb/uOcyUk9.jpg?1696528215",
+    "symbol": "AIFLOKI",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x0cf8e180350253271f4b917ccfb0accc4862f262": {
+    "assetId": "eip155:56/bep20:0x0cf8e180350253271f4b917ccfb0accc4862f262",
+    "chainId": "eip155:56",
+    "name": "Bitcoin BR on BNB Smart Chain",
+    "precision": 18,
+    "color": "#F29F15",
+    "icon": "https://assets.coingecko.com/coins/images/21205/thumb/btcbr.png?1696520580",
+    "symbol": "BTCBR",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x0d1afece252ff513c5d210aeae88f6c7d37e6ab2": {
+    "assetId": "eip155:56/bep20:0x0d1afece252ff513c5d210aeae88f6c7d37e6ab2",
+    "chainId": "eip155:56",
+    "name": "EarthByt",
+    "precision": 18,
+    "color": "#A4C37F",
+    "icon": "https://assets.coingecko.com/coins/images/23491/thumb/Untitled-design-17.png?1696522701",
+    "symbol": "EBYT",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x0d35a2b85c5a63188d566d104bebf7c694334ee4": {
+    "assetId": "eip155:56/bep20:0x0d35a2b85c5a63188d566d104bebf7c694334ee4",
+    "chainId": "eip155:56",
+    "name": "Pawtocol on BNB Smart Chain",
+    "precision": 18,
+    "color": "#E86538",
+    "icon": "https://assets.coingecko.com/coins/images/12186/thumb/pawtocol.jpg?1696512023",
+    "symbol": "UPI",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x0d3843f92d622468ba67df5a6a4149b484a75af3": {
+    "assetId": "eip155:56/bep20:0x0d3843f92d622468ba67df5a6a4149b484a75af3",
+    "chainId": "eip155:56",
+    "name": "Dinger on BNB Smart Chain",
+    "precision": 9,
+    "color": "#0E0A52",
+    "icon": "https://assets.coingecko.com/coins/images/19443/thumb/dinger.png?1696518881",
+    "symbol": "DINGER",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x0d4992e48278aa7f7c915f820743d9fab7fea713": {
+    "assetId": "eip155:56/bep20:0x0d4992e48278aa7f7c915f820743d9fab7fea713",
+    "chainId": "eip155:56",
+    "name": "MetaZilla",
+    "precision": 8,
+    "color": "#35D4E4",
+    "icon": "https://assets.coingecko.com/coins/images/20369/thumb/metazilla_auto_x2.png?1696519780",
+    "symbol": "MZ",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x0d8ce2a99bb6e3b7db580ed848240e4a0f9ae153": {
+    "assetId": "eip155:56/bep20:0x0d8ce2a99bb6e3b7db580ed848240e4a0f9ae153",
+    "chainId": "eip155:56",
+    "name": "Binance Peg Filecoin",
+    "precision": 18,
+    "color": "#0493FC",
+    "icon": "https://assets.coingecko.com/coins/images/15776/thumb/filecoin.png?1696515400",
+    "symbol": "FIL",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x0d97d170ccee5c0dcd2b19adc445613436581732": {
+    "assetId": "eip155:56/bep20:0x0d97d170ccee5c0dcd2b19adc445613436581732",
+    "chainId": "eip155:56",
+    "name": "AI Coinova",
+    "precision": 18,
+    "color": "#483599",
+    "icon": "https://assets.coingecko.com/coins/images/32296/thumb/20231006_172757.png?1697185596",
+    "symbol": "AICN",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x0da6ed8b13214ff28e9ca979dd37439e8a88f6c4": {
+    "assetId": "eip155:56/bep20:0x0da6ed8b13214ff28e9ca979dd37439e8a88f6c4",
+    "chainId": "eip155:56",
+    "name": "StableXSwap",
+    "precision": 18,
+    "color": "#323130",
+    "icon": "https://assets.coingecko.com/coins/images/12967/thumb/photo_2021-01-12_00.19.13.jpeg?1696512755",
+    "symbol": "STAX",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x0de08c1abe5fb86dd7fd2ac90400ace305138d5b": {
+    "assetId": "eip155:56/bep20:0x0de08c1abe5fb86dd7fd2ac90400ace305138d5b",
+    "chainId": "eip155:56",
+    "name": "Idena",
+    "precision": 18,
+    "color": "#626262",
+    "icon": "https://assets.coingecko.com/coins/images/10548/thumb/idena200x200.png?1696510533",
+    "symbol": "IDNA",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x0dfcb45eae071b3b846e220560bbcdd958414d78": {
+    "assetId": "eip155:56/bep20:0x0dfcb45eae071b3b846e220560bbcdd958414d78",
+    "chainId": "eip155:56",
+    "name": "Libero Financial",
+    "precision": 18,
+    "color": "#41B0A8",
+    "icon": "https://assets.coingecko.com/coins/images/23971/thumb/libero.png?1696523167",
+    "symbol": "LIBERO",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x0e09fabb73bd3ade0a17ecc321fd13a19e81ce82": {
+    "assetId": "eip155:56/bep20:0x0e09fabb73bd3ade0a17ecc321fd13a19e81ce82",
+    "chainId": "eip155:56",
+    "name": "PancakeSwap on BNB Smart Chain",
+    "precision": 18,
+    "color": "#D38C4E",
+    "icon": "https://assets.coingecko.com/coins/images/12632/thumb/pancakeswap-cake-logo_%281%29.png?1696512440",
+    "symbol": "CAKE",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x0e28bc9b03971e95acf9ae1326e51ecf9c55b498": {
+    "assetId": "eip155:56/bep20:0x0e28bc9b03971e95acf9ae1326e51ecf9c55b498",
+    "chainId": "eip155:56",
+    "name": "Brickken on BNB Smart Chain",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/18474/thumb/brickken-coin.png?1696517960",
+    "symbol": "BKN",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x0e2b41ea957624a314108cc4e33703e9d78f4b3c": {
+    "assetId": "eip155:56/bep20:0x0e2b41ea957624a314108cc4e33703e9d78f4b3c",
+    "chainId": "eip155:56",
+    "name": "Greenheart CBD",
+    "precision": 18,
+    "color": "#1C5C2C",
+    "icon": "https://assets.coingecko.com/coins/images/15284/thumb/GreenHeart-CBD-Logo-200x200px.png?1696514935",
+    "symbol": "CBD",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x0e37d70b51ffa2b98b4d34a5712c5291115464e3": {
+    "assetId": "eip155:56/bep20:0x0e37d70b51ffa2b98b4d34a5712c5291115464e3",
+    "chainId": "eip155:56",
+    "name": "IQ on BNB Smart Chain",
+    "precision": 18,
+    "color": "#FB5CAC",
+    "icon": "https://assets.coingecko.com/coins/images/5010/thumb/YAIS3fUh.png?1696505542",
+    "symbol": "IQ",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x0e4b5ea0259eb3d66e6fcb7cc8785817f8490a53": {
+    "assetId": "eip155:56/bep20:0x0e4b5ea0259eb3d66e6fcb7cc8785817f8490a53",
+    "chainId": "eip155:56",
+    "name": "SokuSwap on BNB Smart Chain",
+    "precision": 18,
+    "color": "#2CC1F4",
+    "icon": "https://assets.coingecko.com/coins/images/18378/thumb/VCIEHaG.png?1696517870",
+    "symbol": "SOKU",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x0e7beec376099429b85639eb3abe7cf22694ed49": {
+    "assetId": "eip155:56/bep20:0x0e7beec376099429b85639eb3abe7cf22694ed49",
+    "chainId": "eip155:56",
+    "name": "Bunicorn",
+    "precision": 18,
+    "color": "#2B3954",
+    "icon": "https://assets.coingecko.com/coins/images/17366/thumb/buni.PNG?1696516917",
+    "symbol": "BUNI",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x0e8d5504bf54d9e44260f8d153ecd5412130cabb": {
+    "assetId": "eip155:56/bep20:0x0e8d5504bf54d9e44260f8d153ecd5412130cabb",
+    "chainId": "eip155:56",
+    "name": "UNCL on BNB Smart Chain",
+    "precision": 18,
+    "color": "#27A7FC",
+    "icon": "https://assets.coingecko.com/coins/images/13102/thumb/uncl_logo.png?1696512888",
+    "symbol": "UNCL",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x0e9729a1db9e45ff08f64e6c4342be3921e993e0": {
+    "assetId": "eip155:56/bep20:0x0e9729a1db9e45ff08f64e6c4342be3921e993e0",
+    "chainId": "eip155:56",
+    "name": "Day of Defeat 2 0",
+    "precision": 18,
+    "color": "#CCA13A",
+    "icon": "https://assets.coingecko.com/coins/images/20621/thumb/Untitled_design_%2836%29.png?1696520026",
+    "symbol": "DOD",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x0e9766df73973abcfedde700497c57110ee5c301": {
+    "assetId": "eip155:56/bep20:0x0e9766df73973abcfedde700497c57110ee5c301",
+    "chainId": "eip155:56",
+    "name": "HODL",
+    "precision": 9,
+    "color": "#E2EEFC",
+    "icon": "https://assets.coingecko.com/coins/images/15546/thumb/hodl.png?1696515187",
+    "symbol": "HODL",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x0e9c0f8fcc8e60f8daeb569448a41514eb321471": {
+    "assetId": "eip155:56/bep20:0x0e9c0f8fcc8e60f8daeb569448a41514eb321471",
+    "chainId": "eip155:56",
+    "name": "Baka Casino",
+    "precision": 9,
+    "color": "#FAF8F3",
+    "icon": "https://assets.coingecko.com/coins/images/31525/thumb/BAKACLOGO.jpg?1696530334",
+    "symbol": "BAKAC",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x0eb3a705fc54725037cc9e008bdede697f62f335": {
+    "assetId": "eip155:56/bep20:0x0eb3a705fc54725037cc9e008bdede697f62f335",
+    "chainId": "eip155:56",
+    "name": "Cosmos Hub",
+    "precision": 18,
+    "color": "#2C334A",
+    "icon": "https://assets.coingecko.com/coins/images/1481/thumb/cosmos_hub.png?1696502525",
+    "symbol": "ATOM",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x0ebd9537a25f56713e34c45b38f421a1e7191469": {
+    "assetId": "eip155:56/bep20:0x0ebd9537a25f56713e34c45b38f421a1e7191469",
+    "chainId": "eip155:56",
+    "name": "dotmoovs on BNB Smart Chain",
+    "precision": 18,
+    "color": "#FC4C64",
+    "icon": "https://assets.coingecko.com/coins/images/15817/thumb/dotmoovs-symbol-gradient.png?1696515436",
+    "symbol": "MOOV",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x0ec04ece89609e545b8768e303986421ffc32eaf": {
+    "assetId": "eip155:56/bep20:0x0ec04ece89609e545b8768e303986421ffc32eaf",
+    "chainId": "eip155:56",
+    "name": "Bintex Futures on BNB Smart Chain",
+    "precision": 18,
+    "color": "#ACD08C",
+    "icon": "https://assets.coingecko.com/coins/images/12117/thumb/Bintexfutures_Icon_Logo.png?1696511961",
+    "symbol": "BNTX",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x0ee7292bd28f4a490f849fb30c28cabab9440f9e": {
+    "assetId": "eip155:56/bep20:0x0ee7292bd28f4a490f849fb30c28cabab9440f9e",
+    "chainId": "eip155:56",
+    "name": "GemLink",
+    "precision": 8,
+    "color": "#060C22",
+    "icon": "https://assets.coingecko.com/coins/images/24212/thumb/18770.png?1696523399",
+    "symbol": "GLINK",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x0f005dfe97c5041e538b7075915b2ee706677c26": {
+    "assetId": "eip155:56/bep20:0x0f005dfe97c5041e538b7075915b2ee706677c26",
+    "chainId": "eip155:56",
+    "name": "JeToken",
+    "precision": 9,
+    "color": "#10136D",
+    "icon": "https://assets.coingecko.com/coins/images/21104/thumb/fav-icon.png?1696520485",
+    "symbol": "JETS",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x0f1c6791a8b8d764c78dd54f0a151ec4d3a0c090": {
+    "assetId": "eip155:56/bep20:0x0f1c6791a8b8d764c78dd54f0a151ec4d3a0c090",
+    "chainId": "eip155:56",
+    "name": "Tama Finance",
+    "precision": 9,
+    "color": "#917658",
+    "icon": "https://assets.coingecko.com/coins/images/15702/thumb/Q0bhsxl.png?1696515330",
+    "symbol": "TAMA",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x0f1cbed8efa0e012adbccb1638d0ab0147d5ac00": {
+    "assetId": "eip155:56/bep20:0x0f1cbed8efa0e012adbccb1638d0ab0147d5ac00",
+    "chainId": "eip155:56",
+    "name": "HELLO on BNB Smart Chain",
+    "precision": 18,
+    "color": "#B3B3B3",
+    "icon": "https://assets.coingecko.com/coins/images/27891/thumb/uFXN2S1N_400x400.jpeg?1696526908",
+    "symbol": "HELLO",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x0f208f5ea1d4fbca61ac6b6754f765950d3840de": {
+    "assetId": "eip155:56/bep20:0x0f208f5ea1d4fbca61ac6b6754f765950d3840de",
+    "chainId": "eip155:56",
+    "name": "YachtingVerse  OLD ",
+    "precision": 18,
+    "color": "#8CCCE4",
+    "icon": "https://assets.coingecko.com/coins/images/30334/thumb/aMmNwBTH_400x400.jpg?1699665666",
+    "symbol": "YACHT",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x0f237db17aa4e6de062e6f052bd9c805789b01c3": {
+    "assetId": "eip155:56/bep20:0x0f237db17aa4e6de062e6f052bd9c805789b01c3",
+    "chainId": "eip155:56",
+    "name": "Covesting on BNB Smart Chain",
+    "precision": 18,
+    "color": "#040404",
+    "icon": "https://assets.coingecko.com/coins/images/1950/thumb/covesting.png?1696502933",
+    "symbol": "COV",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x0f5d54b27bdb556823f96f2536496550f8816dc5": {
+    "assetId": "eip155:56/bep20:0x0f5d54b27bdb556823f96f2536496550f8816dc5",
+    "chainId": "eip155:56",
+    "name": "ritestream",
+    "precision": 18,
+    "color": "#121414",
+    "icon": "https://assets.coingecko.com/coins/images/24130/thumb/rite.png?1696523321",
+    "symbol": "RITE",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x0f5d8cd195a4539bcf2ec6118c6da50287c6d5f5": {
+    "assetId": "eip155:56/bep20:0x0f5d8cd195a4539bcf2ec6118c6da50287c6d5f5",
+    "chainId": "eip155:56",
+    "name": "Gold Fever Native Gold on BNB Smart Chain",
+    "precision": 18,
+    "color": "#A87F6C",
+    "icon": "https://assets.coingecko.com/coins/images/20633/thumb/2ypNydrG_400x400.jpg?1696520037",
+    "symbol": "NGL",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x0f6266a9e9214ea129d4a001e9541d643a34c772": {
+    "assetId": "eip155:56/bep20:0x0f6266a9e9214ea129d4a001e9541d643a34c772",
+    "chainId": "eip155:56",
+    "name": "OLOID",
+    "precision": 18,
+    "color": "#111111",
+    "icon": "https://assets.coingecko.com/coins/images/25950/thumb/OLOID-COIN-3-200x200.png?1696525029",
+    "symbol": "OLOID",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x0f7065ba2d07d1aa29ef0340ce2e6021a5e663a1": {
+    "assetId": "eip155:56/bep20:0x0f7065ba2d07d1aa29ef0340ce2e6021a5e663a1",
+    "chainId": "eip155:56",
+    "name": "Gamexchange",
+    "precision": 1,
+    "color": "#070504",
+    "icon": "https://assets.coingecko.com/coins/images/32352/thumb/gamex.jpg?1697475067",
+    "symbol": "GAMEX",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x0f76142d83ddef359753cca33647cc4dcee1c6d1": {
+    "assetId": "eip155:56/bep20:0x0f76142d83ddef359753cca33647cc4dcee1c6d1",
+    "chainId": "eip155:56",
+    "name": "EarnX V2",
+    "precision": 18,
+    "color": "#442C90",
+    "icon": "https://assets.coingecko.com/coins/images/24234/thumb/earnx.PNG?1696523419",
+    "symbol": "EARNX",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x0f9d74c91f8cdcc2b5efdb78cc8c41e94f13551a": {
+    "assetId": "eip155:56/bep20:0x0f9d74c91f8cdcc2b5efdb78cc8c41e94f13551a",
+    "chainId": "eip155:56",
+    "name": "Gojo BSC",
+    "precision": 9,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/33173/thumb/GojoCoin_200.png?1700920402",
+    "symbol": "GOJOBSC",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x0f9e4d49f25de22c2202af916b681fbb3790497b": {
+    "assetId": "eip155:56/bep20:0x0f9e4d49f25de22c2202af916b681fbb3790497b",
+    "chainId": "eip155:56",
+    "name": "PERL eco on BNB Smart Chain",
+    "precision": 18,
+    "color": "#44D4A4",
+    "icon": "https://assets.coingecko.com/coins/images/4682/thumb/PERL.eco-Icon-green_6x.png?1696505249",
+    "symbol": "PERL",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x0fb6b79b89fc91d55a00a8e0ac1b1dc5957944ee": {
+    "assetId": "eip155:56/bep20:0x0fb6b79b89fc91d55a00a8e0ac1b1dc5957944ee",
+    "chainId": "eip155:56",
+    "name": "LendrUSRE",
+    "precision": 18,
+    "color": "#9222B4",
+    "icon": "https://assets.coingecko.com/coins/images/31619/thumb/LendrRE_Logo_200x200.png?1696530435",
+    "symbol": "USRE",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x0fc0b3f6f5c769c138088266ac21760ab33f76ca": {
+    "assetId": "eip155:56/bep20:0x0fc0b3f6f5c769c138088266ac21760ab33f76ca",
+    "chainId": "eip155:56",
+    "name": "Cracle",
+    "precision": 5,
+    "color": "#F6EEE7",
+    "icon": "https://assets.coingecko.com/coins/images/29621/thumb/logo.jpg?1696528557",
+    "symbol": "CRA",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x0fe178b9a471b3698cb6fcb4625df9a756a2c55c": {
+    "assetId": "eip155:56/bep20:0x0fe178b9a471b3698cb6fcb4625df9a756a2c55c",
+    "chainId": "eip155:56",
+    "name": "Strip Finance",
+    "precision": 18,
+    "color": "#0C1412",
+    "icon": "https://assets.coingecko.com/coins/images/20289/thumb/strip_finance.PNG?1696519694",
+    "symbol": "STRIP",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x0ff534801e98a4976246d1f418e441783fc9aa15": {
+    "assetId": "eip155:56/bep20:0x0ff534801e98a4976246d1f418e441783fc9aa15",
+    "chainId": "eip155:56",
+    "name": "Future AI on BNB Smart Chain",
+    "precision": 18,
+    "color": "#307CF3",
+    "icon": "https://assets.coingecko.com/coins/images/28841/thumb/200x200.png?1696527817",
+    "symbol": "FUTURE-AI",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x1006ea3289b833b6720aaa82746990ec77de8c36": {
+    "assetId": "eip155:56/bep20:0x1006ea3289b833b6720aaa82746990ec77de8c36",
+    "chainId": "eip155:56",
+    "name": "Digital Bank of Africa",
+    "precision": 8,
+    "color": "#0D0D0D",
+    "icon": "https://assets.coingecko.com/coins/images/19177/thumb/DBA-icon-black-08-01.jpg?1696518626",
+    "symbol": "DBA",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x100995a7e5ffd8ee60cc18a10c75cee8c572c59b": {
+    "assetId": "eip155:56/bep20:0x100995a7e5ffd8ee60cc18a10c75cee8c572c59b",
+    "chainId": "eip155:56",
+    "name": "HYGT",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAIAAAACACAMAAAD04JH5AAADAFBMVEUtN0gm2C3///8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAohE1IAAABAHRSTlP/////AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAf6K/dgAAQItJREFUeNoBgEB/vwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgEBAQEBAQECAgICAgICAQEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgAAAAAAAAAAAAAAAAEBAgICAgICAgICAgICAgICAgICAgICAQEBAQEBAQEBAQEBAQECAgICAgICAgICAgICAgICAgIAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAAAAAEBAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAgICAgICAgICAgIDAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAAAAAEBAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAgICAgICAgICAgIDAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAAAAAEBAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAgICAgICAgICAgIDAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAAAAAEBAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAgICAgICAgICAgIDAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAAAAAEBAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAgICAgICAgICAgIDAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAAAAAEBAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAgICAgICAgICAgIDAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAACAgICAgICAQMDAwMDAwMDAwMDAwMDAwMDAwMDAgICAgICAgEBAQEBAQEBAwMDAwMDAwMDAwMDAwICAgIDAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQEBAQEBAQAAAAAAAAAAAAICAgIDAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQEBAQEBAQAAAAAAAAAAAAICAgIDAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQEBAQEBAQAAAAAAAAAAAAICAgIDAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQEBAQEBAQAAAAAAAAAAAAICAgIDAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQEBAQEBAQAAAAAAAAAAAAICAgIDAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQEBAQEBAQAAAAAAAAAAAAICAgIDAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQEBAwMDAwMDAgICAgICAgEBAQEBAQECAgICAgICAAMDAwMDAwMAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAQMDAwMDAwMBAQEBAQEBAQEBAQAAAAAAAAAAAAICAgIDAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAICAgIDAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAICAgIDAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAICAgIDAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAICAgIDAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAICAgIDAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAICAgIDAgICAgICAgICAgICAgICAgICAgMBAQEBAQEBAQEBAQEBAQMDAwMDAwICAgICAgIBAwMDAwMDAwAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAgICAgICAgEBAQEBAQEBAQEBAQAAAAAAAAAAAAICAgIDAgICAgICAgICAgICAgICAgICAgMBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAgICAgICAgMBAQEBAQEBAQEBAQAAAAAAAAAAAAICAgIDAgICAgICAgICAgICAgICAgICAgMBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAgICAgICAgMBAQEBAQEBAQEBAQAAAAAAAAAAAAICAgIDAgICAgICAgICAgICAgICAgICAgMBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAgICAgICAgMBAQEBAQEBAQEBAQAAAAAAAAAAAAICAgIDAgICAgICAgICAgICAgICAgICAgMBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAgICAgICAgMBAQEBAQEBAQEBAQAAAAAAAAAAAAICAgIDAgICAgICAgICAgICAgICAgICAgMBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAgICAgICAgMBAQEBAQEBAQEBAQAAAAAAAAAAAAICAgIDAgICAgICAgICAgICAgICAgICAgMBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAgICAgICAgMBAQEBAQEBAQEBAQAAAAAAAAAAAAICAgIDAAMDAwMDAwMDAwMDAgICAgICAgMBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAwMDAwMDAgICAgICAgMBAQEBAQEBAQEBAQAAAAAAAAAAAAICAgIDAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQEBAQEBAQAAAAAAAAAAAAICAgIDAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQEBAQEBAQAAAAAAAAAAAAICAgIDAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQEBAQEBAQAAAAAAAAAAAAICAgIDAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQEBAQEBAQAAAAAAAAAAAAICAgIDAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQEBAQEBAQAAAAAAAAAAAAICAgIDAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQEBAQEBAQAAAAAAAAAAAAICAgICAgIDAAAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQEBAQEBAQAAAAAAAAAAAAICAgIDAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQEBAQEBAQAAAAAAAAAAAAICAgICAgIDAAAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQEBAQEBAQAAAAAAAAAAAAICAgIDAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQEBAQEBAQAAAAAAAAAAAAICAgICAgIDAAAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQEBAQEBAQAAAAAAAAAAAAICAgIDAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQEBAQEBAQAAAAAAAAAAAAICAgICAgIDAAAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQEBAQEBAQAAAAAAAAAAAAICAgIDAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQEBAQEBAQAAAAAAAAAAAAICAgICAgIDAAAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQEBAQEBAQAAAAAAAAAAAAICAgIDAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQEBAQEBAQAAAAAAAAAAAAICAgICAgIDAAAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQEBAQEBAQAAAAAAAAAAAAICAgIDAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQEBAQEBAQAAAAAAAAAAAAICAgICAgIDAAAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQEBAQEBAQAAAAAAAAAAAAICAgIDAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQEBAQEBAQAAAAAAAAAAAAICAgICAgIDAAAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQEBAQEBAQAAAAAAAAAAAAICAgIDAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQEBAQEBAQAAAAAAAAAAAAICAgICAgIDAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwMDAwMDAgICAgICAgICAgICAgICAgICAgICAQMDAwMDAwMBAQEBAQEBAQEBAQAAAAAAAAAAAAICAgIDAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQEBAQEBAQAAAAAAAAAAAAICAgICAgIDAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAICAgIDAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQEBAQEBAQAAAAAAAAAAAAICAgICAgIDAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAICAgIDAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQEBAQEBAQAAAAAAAAAAAAICAgICAgIDAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAICAgIDAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQEBAQEBAQAAAAAAAAAAAAICAgICAgIDAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAICAgIDAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQEBAQEBAQAAAAAAAAAAAAICAgICAgIDAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAICAgIDAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQEBAQEBAQAAAAAAAAAAAAICAgICAgIDAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAICAgIDAAAAAAAAAAAAAAEBAQMDAwMDAwMBAQEBAQEBAQEBAQAAAAAAAAAAAAADAwMDAwMDAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMDAwMDAwMDAwMDAwMDAwMDAwMDAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAADAwMDAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOkkLa3ztoKQAAAAAElFTkSuQmCC",
+    "symbol": "HYGT",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x1068a279aee90c4033660425406658f4474fe2b5": {
+    "assetId": "eip155:56/bep20:0x1068a279aee90c4033660425406658f4474fe2b5",
+    "chainId": "eip155:56",
+    "name": "RealMoneyWorld",
+    "precision": 18,
+    "color": "#34CCFC",
+    "icon": "https://assets.coingecko.com/coins/images/28615/thumb/chyksjm.png?1696527600",
+    "symbol": "RMW",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x108d0f1fc10ed324f8cc65d0a91cad11cd4994a4": {
+    "assetId": "eip155:56/bep20:0x108d0f1fc10ed324f8cc65d0a91cad11cd4994a4",
+    "chainId": "eip155:56",
+    "name": "God of Wealth",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/32804/thumb/GOW39-LOGO.png?1699453901",
+    "symbol": "GOW39",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x10a12969cb08a8d88d4bfb5d1fa317d41e0fdab3": {
+    "assetId": "eip155:56/bep20:0x10a12969cb08a8d88d4bfb5d1fa317d41e0fdab3",
+    "chainId": "eip155:56",
+    "name": "MetaGods",
+    "precision": 18,
+    "color": "#F9F3E6",
+    "icon": "https://assets.coingecko.com/coins/images/21666/thumb/n9xlniyOphEZp40cR7OnXO1p5H8kI8rLGn6vbx8AaVGiYi250HIeNISTx7eMHU-Ym5XRc9nFPmNXfRZmr3QglH1Svte4Tisu2EZPU3JVFKlPLLnQwDXhodgYcSt0Xb33kyrA_yqFEZnMw1q5qi-4KgdHd4bHv7MKNz2rF3MuA_RWdylgpB3xdUoaxoiMLqzlVbEatJYnDQyhqvh.jpg?1696521023",
+    "symbol": "MGOD",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x10adf50e15611d5a4de3bd21f0db7f3491a8ae0f": {
+    "assetId": "eip155:56/bep20:0x10adf50e15611d5a4de3bd21f0db7f3491a8ae0f",
+    "chainId": "eip155:56",
+    "name": "Monetas  OLD ",
+    "precision": 18,
+    "color": "#14E1D4",
+    "icon": "https://assets.coingecko.com/coins/images/18700/thumb/logo_-_2021-10-01T091320.526.png?1696518168",
+    "symbol": "MNTG",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x10b9dd394467f2cfbc769e07e88dc7e2c41b0965": {
+    "assetId": "eip155:56/bep20:0x10b9dd394467f2cfbc769e07e88dc7e2c41b0965",
+    "chainId": "eip155:56",
+    "name": "Renewable Energy",
+    "precision": 9,
+    "color": "#308DB2",
+    "icon": "https://assets.coingecko.com/coins/images/25457/thumb/LOGO.png?1696524588",
+    "symbol": "RET",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x10c9524dbf934b3b625dce3bdc0efdc367f4e84b": {
+    "assetId": "eip155:56/bep20:0x10c9524dbf934b3b625dce3bdc0efdc367f4e84b",
+    "chainId": "eip155:56",
+    "name": "Mavaverse",
+    "precision": 8,
+    "color": "#C49436",
+    "icon": "https://assets.coingecko.com/coins/images/23830/thumb/mvx.png?1696523032",
+    "symbol": "MVX",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x10f6f2b97f3ab29583d9d38babf2994df7220c21": {
+    "assetId": "eip155:56/bep20:0x10f6f2b97f3ab29583d9d38babf2994df7220c21",
+    "chainId": "eip155:56",
+    "name": "Teddy Doge",
+    "precision": 18,
+    "color": "#F9C119",
+    "icon": "https://assets.coingecko.com/coins/images/23389/thumb/17859.png?1696522603",
+    "symbol": "TEDDY",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x111111111117dc0aa78b770fa6a738034120c302": {
+    "assetId": "eip155:56/bep20:0x111111111117dc0aa78b770fa6a738034120c302",
+    "chainId": "eip155:56",
+    "name": "1inch on BNB Smart Chain",
+    "precision": 18,
+    "color": "#DFE3EA",
+    "icon": "https://assets.coingecko.com/coins/images/13469/thumb/1inch-token.png?1696513230",
+    "symbol": "1INCH",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x1123e16abea3a59e16d2b5614668481f7d15a706": {
+    "assetId": "eip155:56/bep20:0x1123e16abea3a59e16d2b5614668481f7d15a706",
+    "chainId": "eip155:56",
+    "name": "SLM Games",
+    "precision": 18,
+    "color": "#ECC849",
+    "icon": "https://assets.coingecko.com/coins/images/31786/thumb/SLM.jpg?1696530603",
+    "symbol": "SLM",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x1135883a1bc6776bf90c97845adc491922106dfb": {
+    "assetId": "eip155:56/bep20:0x1135883a1bc6776bf90c97845adc491922106dfb",
+    "chainId": "eip155:56",
+    "name": "Rejuve AI on BNB Smart Chain",
+    "precision": 6,
+    "color": "#74C8C6",
+    "icon": "https://assets.coingecko.com/coins/images/29366/thumb/2023_Rejuve_Logo_-_Square_-_Teal.jpg?1696528314",
+    "symbol": "RJV",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x11582ef4642b1e7f0a023804b497656e2663bc9b": {
+    "assetId": "eip155:56/bep20:0x11582ef4642b1e7f0a023804b497656e2663bc9b",
+    "chainId": "eip155:56",
+    "name": "KCCPad",
+    "precision": 18,
+    "color": "#041022",
+    "icon": "https://assets.coingecko.com/coins/images/16994/thumb/kcc.png?1696516559",
+    "symbol": "KCCPAD",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x116204ba071bb5c8b203e2a5f903f557b54ef577": {
+    "assetId": "eip155:56/bep20:0x116204ba071bb5c8b203e2a5f903f557b54ef577",
+    "chainId": "eip155:56",
+    "name": "Cavatar",
+    "precision": 18,
+    "color": "#C8C8C8",
+    "icon": "https://assets.coingecko.com/coins/images/30064/thumb/cavatar_1024x1024.png?1696528986",
+    "symbol": "CAVAT",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x1162e2efce13f99ed259ffc24d99108aaa0ce935": {
+    "assetId": "eip155:56/bep20:0x1162e2efce13f99ed259ffc24d99108aaa0ce935",
+    "chainId": "eip155:56",
+    "name": "CluCoin",
+    "precision": 9,
+    "color": "#DC1489",
+    "icon": "https://assets.coingecko.com/coins/images/15685/thumb/CoinGecko.png?1696515314",
+    "symbol": "CLU",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x116526135380e28836c6080f1997645d5a807fae": {
+    "assetId": "eip155:56/bep20:0x116526135380e28836c6080f1997645d5a807fae",
+    "chainId": "eip155:56",
+    "name": "Martik",
+    "precision": 18,
+    "color": "#EEEEEE",
+    "icon": "https://assets.coingecko.com/coins/images/29264/thumb/48b2b503-fe47-494c-b696-2c89ca28ea4b-removebg-preview-PhotoRoom.png-PhotoRoom.png?1696528217",
+    "symbol": "MTK",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x117eefdde5e5aed6626ffedbb5d2ac955f64dbf3": {
+    "assetId": "eip155:56/bep20:0x117eefdde5e5aed6626ffedbb5d2ac955f64dbf3",
+    "chainId": "eip155:56",
+    "name": "StaFi Staked MATIC on BNB Smart Chain",
+    "precision": 18,
+    "color": "#04C4CA",
+    "icon": "https://assets.coingecko.com/coins/images/29610/thumb/rMATIC.png?1696528546",
+    "symbol": "RMATIC",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x119555f26df9386982fa9f0245d643840fbe8a49": {
+    "assetId": "eip155:56/bep20:0x119555f26df9386982fa9f0245d643840fbe8a49",
+    "chainId": "eip155:56",
+    "name": "SPEXY",
+    "precision": 18,
+    "color": "#6578DD",
+    "icon": "https://assets.coingecko.com/coins/images/30831/thumb/SPX-01.png?1696529684",
+    "symbol": "SPX",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x11a38e06699b238d6d9a0c7a01f3ac63a07ad318": {
+    "assetId": "eip155:56/bep20:0x11a38e06699b238d6d9a0c7a01f3ac63a07ad318",
+    "chainId": "eip155:56",
+    "name": "USDFI",
+    "precision": 18,
+    "color": "#091007",
+    "icon": "https://assets.coingecko.com/coins/images/31149/thumb/USDFI_200.png?1696529977",
+    "symbol": "USDFI",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x11ac6af070fe1991a457c56fb85c577efe57f0e4": {
+    "assetId": "eip155:56/bep20:0x11ac6af070fe1991a457c56fb85c577efe57f0e4",
+    "chainId": "eip155:56",
+    "name": "DragonKing",
+    "precision": 18,
+    "color": "#46C2CC",
+    "icon": "https://assets.coingecko.com/coins/images/29794/thumb/IMG_20230411_222000_357.png?1696528724",
+    "symbol": "DRAGONKING",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x11d1ac5ec23e3a193e8a491a198f5fc9ee715839": {
+    "assetId": "eip155:56/bep20:0x11d1ac5ec23e3a193e8a491a198f5fc9ee715839",
+    "chainId": "eip155:56",
+    "name": "MultiPad",
+    "precision": 18,
+    "color": "#C24760",
+    "icon": "https://assets.coingecko.com/coins/images/18145/thumb/200_x_200_%281%29.png?1696517648",
+    "symbol": "MPAD",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x11fe7a37f2923566caa0de7d37c868631c695205": {
+    "assetId": "eip155:56/bep20:0x11fe7a37f2923566caa0de7d37c868631c695205",
+    "chainId": "eip155:56",
+    "name": "Aurora Dimension",
+    "precision": 18,
+    "color": "#D2EAEF",
+    "icon": "https://assets.coingecko.com/coins/images/21198/thumb/aurora.png?1696520573",
+    "symbol": "ADTX",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x121235cff4c59eec80b14c1d38b44e7de3a18287": {
+    "assetId": "eip155:56/bep20:0x121235cff4c59eec80b14c1d38b44e7de3a18287",
+    "chainId": "eip155:56",
+    "name": "DarkShield",
+    "precision": 18,
+    "color": "#7C4550",
+    "icon": "https://assets.coingecko.com/coins/images/21737/thumb/dks.jpg?1696521092",
+    "symbol": "DKS",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x123458c167a371250d325bd8b1fff12c8af692a7": {
+    "assetId": "eip155:56/bep20:0x123458c167a371250d325bd8b1fff12c8af692a7",
+    "chainId": "eip155:56",
+    "name": "DRAC Network",
+    "precision": 18,
+    "color": "#E7D0D1",
+    "icon": "https://assets.coingecko.com/coins/images/27438/thumb/200X200.png?1696526479",
+    "symbol": "DRAC",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x1236a887ef31b4d32e1f0a2b5e4531f52cec7e75": {
+    "assetId": "eip155:56/bep20:0x1236a887ef31b4d32e1f0a2b5e4531f52cec7e75",
+    "chainId": "eip155:56",
+    "name": "GAMI World",
+    "precision": 6,
+    "color": "#1C345C",
+    "icon": "https://assets.coingecko.com/coins/images/19841/thumb/GAMI_LOGO_200x200.png?1696519263",
+    "symbol": "GAMI",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x1236ea13c7339287cd00ab196aaa8217006b04dc": {
+    "assetId": "eip155:56/bep20:0x1236ea13c7339287cd00ab196aaa8217006b04dc",
+    "chainId": "eip155:56",
+    "name": "Epic League on BNB Smart Chain",
+    "precision": 18,
+    "color": "#C8518C",
+    "icon": "https://assets.coingecko.com/coins/images/32139/thumb/epl_symbol_200.png?1696591947",
+    "symbol": "EPL",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x124123c7af9efd2a86f4d41daa88ac164d02a3d5": {
+    "assetId": "eip155:56/bep20:0x124123c7af9efd2a86f4d41daa88ac164d02a3d5",
+    "chainId": "eip155:56",
+    "name": "GreenEnvironmentalCoins",
+    "precision": 18,
+    "color": "#51AE44",
+    "icon": "https://assets.coingecko.com/coins/images/31933/thumb/IMG_20230922_152539_673.jpg?1696530741",
+    "symbol": "GEC",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x127415d59e508c70a3990175c8267eb9c49b84fc": {
+    "assetId": "eip155:56/bep20:0x127415d59e508c70a3990175c8267eb9c49b84fc",
+    "chainId": "eip155:56",
+    "name": "STAY",
+    "precision": 18,
+    "color": "#AC8816",
+    "icon": "https://assets.coingecko.com/coins/images/25479/thumb/stay.png?1696524613",
+    "symbol": "STAY",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x129385c4acd0075e45a0c9a5177bdfec9678a138": {
+    "assetId": "eip155:56/bep20:0x129385c4acd0075e45a0c9a5177bdfec9678a138",
+    "chainId": "eip155:56",
+    "name": "Metakings",
+    "precision": 18,
+    "color": "#787048",
+    "icon": "https://assets.coingecko.com/coins/images/21495/thumb/mtk.png?1696520855",
+    "symbol": "MTK",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x12bb890508c125661e03b09ec06e404bc9289040": {
+    "assetId": "eip155:56/bep20:0x12bb890508c125661e03b09ec06e404bc9289040",
+    "chainId": "eip155:56",
+    "name": "Radio Caca on BNB Smart Chain",
+    "precision": 18,
+    "color": "#DCD1B3",
+    "icon": "https://assets.coingecko.com/coins/images/17841/thumb/ez44_BSs_400x400.jpg?1696517365",
+    "symbol": "RACA",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x12da2f2761038486271c99da7e0fb4413e2b5e38": {
+    "assetId": "eip155:56/bep20:0x12da2f2761038486271c99da7e0fb4413e2b5e38",
+    "chainId": "eip155:56",
+    "name": "NFTBlackmarket",
+    "precision": 9,
+    "color": "#C4C4C4",
+    "icon": "https://assets.coingecko.com/coins/images/17606/thumb/200_%289%29.png?1696517138",
+    "symbol": "NBM",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x12de91acb5f544b37b1e66438324b8db26a91d8a": {
+    "assetId": "eip155:56/bep20:0x12de91acb5f544b37b1e66438324b8db26a91d8a",
+    "chainId": "eip155:56",
+    "name": "MetaFootball",
+    "precision": 9,
+    "color": "#272628",
+    "icon": "https://assets.coingecko.com/coins/images/21945/thumb/2duK7I_h_400x400.png?1696521294",
+    "symbol": "MTF",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x12e34cdf6a031a10fe241864c32fb03a4fdad739": {
+    "assetId": "eip155:56/bep20:0x12e34cdf6a031a10fe241864c32fb03a4fdad739",
+    "chainId": "eip155:56",
+    "name": "FREEdom coin on BNB Smart Chain",
+    "precision": 18,
+    "color": "#E4BC5A",
+    "icon": "https://assets.coingecko.com/coins/images/5585/thumb/free.png?1696506051",
+    "symbol": "FREE",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x12ef97ebe8a51bb7cff3e1799c8f7936db9d13d3": {
+    "assetId": "eip155:56/bep20:0x12ef97ebe8a51bb7cff3e1799c8f7936db9d13d3",
+    "chainId": "eip155:56",
+    "name": "Onigiri Kitty",
+    "precision": 18,
+    "color": "#318CDB",
+    "icon": "https://assets.coingecko.com/coins/images/32506/thumb/OKY.jpg?1698321668",
+    "symbol": "OKY",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x12f31b73d812c6bb0d735a218c086d44d5fe5f89": {
+    "assetId": "eip155:56/bep20:0x12f31b73d812c6bb0d735a218c086d44d5fe5f89",
+    "chainId": "eip155:56",
+    "name": "agEUR on BNB Smart Chain",
+    "precision": 18,
+    "color": "#C0B99D",
+    "icon": "https://assets.coingecko.com/coins/images/19479/thumb/agEUR.png?1696518915",
+    "symbol": "AGEUR",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x12fc07081fab7de60987cad8e8dc407b606fb2f8": {
+    "assetId": "eip155:56/bep20:0x12fc07081fab7de60987cad8e8dc407b606fb2f8",
+    "chainId": "eip155:56",
+    "name": "Dark Frontiers",
+    "precision": 8,
+    "color": "#DEDEDE",
+    "icon": "https://assets.coingecko.com/coins/images/18856/thumb/Twitter_post_-_121.png?1700880077",
+    "symbol": "DARK",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x1311b352467d2b5c296881badea82850bcd8f886": {
+    "assetId": "eip155:56/bep20:0x1311b352467d2b5c296881badea82850bcd8f886",
+    "chainId": "eip155:56",
+    "name": "TOOLS",
+    "precision": 18,
+    "color": "#FCCC14",
+    "icon": "https://assets.coingecko.com/coins/images/14330/thumb/bsctools.png?1696514018",
+    "symbol": "TOOLS",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x1354e1c028ad93ed9992ee3bfd3ee5608489439c": {
+    "assetId": "eip155:56/bep20:0x1354e1c028ad93ed9992ee3bfd3ee5608489439c",
+    "chainId": "eip155:56",
+    "name": "Truefeedback on BNB Smart Chain",
+    "precision": 18,
+    "color": "#4D483A",
+    "icon": "https://assets.coingecko.com/coins/images/8842/thumb/5rd7a55q_400x400.png?1696508994",
+    "symbol": "TFBX",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x138218c8e064ed2a011c9ff203759a8a1e23e6c8": {
+    "assetId": "eip155:56/bep20:0x138218c8e064ed2a011c9ff203759a8a1e23e6c8",
+    "chainId": "eip155:56",
+    "name": "MintMe com Coin on BNB Smart Chain",
+    "precision": 18,
+    "color": "#D4B404",
+    "icon": "https://assets.coingecko.com/coins/images/5127/thumb/MINTME_logo.png?1696505647",
+    "symbol": "MINTME",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x1384555d00144c7725ac71da2bb1fd67b9ad889a": {
+    "assetId": "eip155:56/bep20:0x1384555d00144c7725ac71da2bb1fd67b9ad889a",
+    "chainId": "eip155:56",
+    "name": "Dsun Token",
+    "precision": 18,
+    "color": "#F8D819",
+    "icon": "https://assets.coingecko.com/coins/images/29973/thumb/500-200.png?1696528899",
+    "symbol": "DSUN",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x13a637026df26f846d55acc52775377717345c06": {
+    "assetId": "eip155:56/bep20:0x13a637026df26f846d55acc52775377717345c06",
+    "chainId": "eip155:56",
+    "name": "SpaceY 2025 on BNB Smart Chain",
+    "precision": 18,
+    "color": "#F4DDFC",
+    "icon": "https://assets.coingecko.com/coins/images/20499/thumb/spacey2025.PNG?1696519906",
+    "symbol": "SPAY",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x13b8abb1cfd7bbe1f5764fe967ed049d488d9d1d": {
+    "assetId": "eip155:56/bep20:0x13b8abb1cfd7bbe1f5764fe967ed049d488d9d1d",
+    "chainId": "eip155:56",
+    "name": "Joe Yo Coin",
+    "precision": 9,
+    "color": "#C29282",
+    "icon": "https://assets.coingecko.com/coins/images/25337/thumb/Joe_Yo_Coin_200.png?1696524471",
+    "symbol": "JYC",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x13c944ef30a2b9b1e4d5cfcec65411278b7b7524": {
+    "assetId": "eip155:56/bep20:0x13c944ef30a2b9b1e4d5cfcec65411278b7b7524",
+    "chainId": "eip155:56",
+    "name": "Bullet",
+    "precision": 18,
+    "color": "#FC0494",
+    "icon": "https://assets.coingecko.com/coins/images/25951/thumb/101215144.png?1696525030",
+    "symbol": "BLT",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x13e1070e3a388e53ec35480ff494538f9ffc5b8d": {
+    "assetId": "eip155:56/bep20:0x13e1070e3a388e53ec35480ff494538f9ffc5b8d",
+    "chainId": "eip155:56",
+    "name": "MyBricks",
+    "precision": 9,
+    "color": "#FC745C",
+    "icon": "https://assets.coingecko.com/coins/images/17311/thumb/DEV6onU.png?1696516865",
+    "symbol": "BRICKS",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x14016e85a25aeb13065688cafb43044c2ef86784": {
+    "assetId": "eip155:56/bep20:0x14016e85a25aeb13065688cafb43044c2ef86784",
+    "chainId": "eip155:56",
+    "name": "Bridged TrueUSD on BNB Smart Chain",
+    "precision": 18,
+    "color": "#1C5BFC",
+    "icon": "https://assets.coingecko.com/coins/images/30837/thumb/tusd.jpeg?1696529695",
+    "symbol": "TUSD",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x140b890bf8e2fe3e26fcd516c75728fb20b31c4f": {
+    "assetId": "eip155:56/bep20:0x140b890bf8e2fe3e26fcd516c75728fb20b31c4f",
+    "chainId": "eip155:56",
+    "name": "BuffSwap",
+    "precision": 4,
+    "color": "#1D2039",
+    "icon": "https://assets.coingecko.com/coins/images/21189/thumb/buffsw.PNG?1696520565",
+    "symbol": "BUFFS",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x141383cdb8158982fb3469c3e49cc82f8026d968": {
+    "assetId": "eip155:56/bep20:0x141383cdb8158982fb3469c3e49cc82f8026d968",
+    "chainId": "eip155:56",
+    "name": "CorionX on BNB Smart Chain",
+    "precision": 18,
+    "color": "#FCE0D4",
+    "icon": "https://assets.coingecko.com/coins/images/13129/thumb/x_log.png?1696512916",
+    "symbol": "CORX",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x14220f5893e945eed36389905b991d6b972e04f0": {
+    "assetId": "eip155:56/bep20:0x14220f5893e945eed36389905b991d6b972e04f0",
+    "chainId": "eip155:56",
+    "name": "STACKS",
+    "precision": 18,
+    "color": "#785831",
+    "icon": "https://assets.coingecko.com/coins/images/31926/thumb/Logo200x200.png?1696530734",
+    "symbol": "STACKS",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x142cdfb01002bbc9b58b387ffdb215642160e081": {
+    "assetId": "eip155:56/bep20:0x142cdfb01002bbc9b58b387ffdb215642160e081",
+    "chainId": "eip155:56",
+    "name": "Lion Fai",
+    "precision": 18,
+    "color": "#ECECEC",
+    "icon": "https://assets.coingecko.com/coins/images/30863/thumb/LionF.jpg?1696529710",
+    "symbol": "LIONF",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x14357d294fbabbe0fbf59503370c772d563b35b6": {
+    "assetId": "eip155:56/bep20:0x14357d294fbabbe0fbf59503370c772d563b35b6",
+    "chainId": "eip155:56",
+    "name": "Hummingbird Finance  OLD ",
+    "precision": 9,
+    "color": "#361955",
+    "icon": "https://assets.coingecko.com/coins/images/15403/thumb/Untitled-design-8-removebg-preview.png?1696515049",
+    "symbol": "HMNG",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x1446f3cedf4d86a9399e49f7937766e6de2a3aab": {
+    "assetId": "eip155:56/bep20:0x1446f3cedf4d86a9399e49f7937766e6de2a3aab",
+    "chainId": "eip155:56",
+    "name": "KROWN on BNB Smart Chain",
+    "precision": 18,
+    "color": "#19202E",
+    "icon": "https://assets.coingecko.com/coins/images/16530/thumb/KRW_token_logo_200x200.png?1696516093",
+    "symbol": "KRW",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x1476e96fadb37668d7680921297e2ab98ec36c2f": {
+    "assetId": "eip155:56/bep20:0x1476e96fadb37668d7680921297e2ab98ec36c2f",
+    "chainId": "eip155:56",
+    "name": "Floki Rocket",
+    "precision": 18,
+    "color": "#C9C4C9",
+    "icon": "https://assets.coingecko.com/coins/images/20299/thumb/200-x-200.png?1696519703",
+    "symbol": "RLOKI",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x14778860e937f509e651192a90589de711fb88a9": {
+    "assetId": "eip155:56/bep20:0x14778860e937f509e651192a90589de711fb88a9",
+    "chainId": "eip155:56",
+    "name": "CyberConnect on BNB Smart Chain",
+    "precision": 18,
+    "color": "#A5A5A5",
+    "icon": "https://assets.coingecko.com/coins/images/31274/thumb/cyberconnect.png?1696530098",
+    "symbol": "CYBER",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x14a9a94e555fdd54c21d7f7e328e61d7ebece54b": {
+    "assetId": "eip155:56/bep20:0x14a9a94e555fdd54c21d7f7e328e61d7ebece54b",
+    "chainId": "eip155:56",
+    "name": "Lootex on BNB Smart Chain",
+    "precision": 18,
+    "color": "#35415D",
+    "icon": "https://assets.coingecko.com/coins/images/22895/thumb/loot.png?1696522192",
+    "symbol": "LOOT",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x14aad57fb5f9a0c9ce136cf93521cbebe14ec2e6": {
+    "assetId": "eip155:56/bep20:0x14aad57fb5f9a0c9ce136cf93521cbebe14ec2e6",
+    "chainId": "eip155:56",
+    "name": "Shiba Inu Empire",
+    "precision": 9,
+    "color": "#EBBC2B",
+    "icon": "https://assets.coingecko.com/coins/images/20201/thumb/shibemp_200_200.png?1696519612",
+    "symbol": "SHIBEMP",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x14b13e06f75e1f0fd51ca2e699589ef398e10f4c": {
+    "assetId": "eip155:56/bep20:0x14b13e06f75e1f0fd51ca2e699589ef398e10f4c",
+    "chainId": "eip155:56",
+    "name": "IDM Coop",
+    "precision": 9,
+    "color": "#D4B20C",
+    "icon": "https://assets.coingecko.com/coins/images/19665/thumb/8jVtkWu.png?1696519093",
+    "symbol": "IDM",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x14beb72194866e1b4d6ffad3cd5b488f76168b61": {
+    "assetId": "eip155:56/bep20:0x14beb72194866e1b4d6ffad3cd5b488f76168b61",
+    "chainId": "eip155:56",
+    "name": "BitCoin Battle",
+    "precision": 9,
+    "color": "#EAE9C3",
+    "icon": "https://assets.coingecko.com/coins/images/32198/thumb/BBC.jpg?1696745810",
+    "symbol": "BBC",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x14c358b573a4ce45364a3dbd84bbb4dae87af034": {
+    "assetId": "eip155:56/bep20:0x14c358b573a4ce45364a3dbd84bbb4dae87af034",
+    "chainId": "eip155:56",
+    "name": "DungeonSwap",
+    "precision": 18,
+    "color": "#E40C07",
+    "icon": "https://assets.coingecko.com/coins/images/15207/thumb/logo-200x200.png?1696514864",
+    "symbol": "DND",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x14c4fc3334f16a07d277ee53d5c6fd32631ff126": {
+    "assetId": "eip155:56/bep20:0x14c4fc3334f16a07d277ee53d5c6fd32631ff126",
+    "chainId": "eip155:56",
+    "name": "Nexus Chain",
+    "precision": 18,
+    "color": "#3A972A",
+    "icon": "https://assets.coingecko.com/coins/images/31330/thumb/logo.png?1696530149",
+    "symbol": "WNEXUS",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x14e0980675ada43085c6c69c3cd207a03e43549b": {
+    "assetId": "eip155:56/bep20:0x14e0980675ada43085c6c69c3cd207a03e43549b",
+    "chainId": "eip155:56",
+    "name": "Figure DAO",
+    "precision": 18,
+    "color": "#2A1C3C",
+    "icon": "https://assets.coingecko.com/coins/images/29342/thumb/LOGO.png?1696528291",
+    "symbol": "FDAO",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x14e419554163a0bb4a3bce3ef3d4c73dde5bd4c9": {
+    "assetId": "eip155:56/bep20:0x14e419554163a0bb4a3bce3ef3d4c73dde5bd4c9",
+    "chainId": "eip155:56",
+    "name": "Utility Meta Token",
+    "precision": 18,
+    "color": "#F4FBE8",
+    "icon": "https://assets.coingecko.com/coins/images/30481/thumb/photo_2023-03-05_08-18-12.jpg?1696529367",
+    "symbol": "UMT",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x14eb173d2b4b8d888f9886bbec41ec1b0e18f2b6": {
+    "assetId": "eip155:56/bep20:0x14eb173d2b4b8d888f9886bbec41ec1b0e18f2b6",
+    "chainId": "eip155:56",
+    "name": "Tourist Shiba Inu",
+    "precision": 9,
+    "color": "#C8956D",
+    "icon": "https://assets.coingecko.com/coins/images/23878/thumb/TOURISTS-200x200px.png?1696523078",
+    "symbol": "TOURISTS",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x14ee333538b4621a600f011e508d783ea200d60e": {
+    "assetId": "eip155:56/bep20:0x14ee333538b4621a600f011e508d783ea200d60e",
+    "chainId": "eip155:56",
+    "name": "AVOCADO BG",
+    "precision": 18,
+    "color": "#A9D78D",
+    "icon": "https://assets.coingecko.com/coins/images/32382/thumb/IMG_4824.jpeg?1698041919",
+    "symbol": "AVO",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x14f1ec1ba0f8a8e9a3b8178c9dcc32155e82c70b": {
+    "assetId": "eip155:56/bep20:0x14f1ec1ba0f8a8e9a3b8178c9dcc32155e82c70b",
+    "chainId": "eip155:56",
+    "name": "KAIF",
+    "precision": 18,
+    "color": "#A8F733",
+    "icon": "https://assets.coingecko.com/coins/images/29842/thumb/kaif-cmcLogo200x200.png?1696528769",
+    "symbol": "KAF",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x151b1e2635a717bcdc836ecd6fbb62b674fe3e1d": {
+    "assetId": "eip155:56/bep20:0x151b1e2635a717bcdc836ecd6fbb62b674fe3e1d",
+    "chainId": "eip155:56",
+    "name": "Venus XVS",
+    "precision": 8,
+    "color": "#E5E4E0",
+    "icon": "https://assets.coingecko.com/coins/images/13903/thumb/xvs_logo.png?1696513645",
+    "symbol": "VXVS",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x154a9f9cbd3449ad22fdae23044319d6ef2a1fab": {
+    "assetId": "eip155:56/bep20:0x154a9f9cbd3449ad22fdae23044319d6ef2a1fab",
+    "chainId": "eip155:56",
+    "name": "CryptoBlades on BNB Smart Chain",
+    "precision": 18,
+    "color": "#E5E5E4",
+    "icon": "https://assets.coingecko.com/coins/images/15334/thumb/cryptoblade.PNG?1696514982",
+    "symbol": "SKILL",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x155dab50f1dded25c099e209e7b375456a70e504": {
+    "assetId": "eip155:56/bep20:0x155dab50f1dded25c099e209e7b375456a70e504",
+    "chainId": "eip155:56",
+    "name": "Mercor Finance",
+    "precision": 18,
+    "color": "#445CFC",
+    "icon": "https://assets.coingecko.com/coins/images/15938/thumb/6LIc1-Sm_400x400.png?1696515550",
+    "symbol": "MRCR",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x155e8a74dac3d8560ddabbc26aa064b764535193": {
+    "assetId": "eip155:56/bep20:0x155e8a74dac3d8560ddabbc26aa064b764535193",
+    "chainId": "eip155:56",
+    "name": "Filipcoin on BNB Smart Chain",
+    "precision": 18,
+    "color": "#F3EDD9",
+    "icon": "https://assets.coingecko.com/coins/images/21354/thumb/filip.PNG?1696520719",
+    "symbol": "FCP",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x156df0dd6300c73ac692d805720967cf4464776e": {
+    "assetId": "eip155:56/bep20:0x156df0dd6300c73ac692d805720967cf4464776e",
+    "chainId": "eip155:56",
+    "name": "AstroSpaces io",
+    "precision": 9,
+    "color": "#BFBFBF",
+    "icon": "https://assets.coingecko.com/coins/images/22394/thumb/logo.jpg?1696521737",
+    "symbol": "SPACES",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x1591e923e0836a3949b59637fbe8959f000894b9": {
+    "assetId": "eip155:56/bep20:0x1591e923e0836a3949b59637fbe8959f000894b9",
+    "chainId": "eip155:56",
+    "name": "Multi AI",
+    "precision": 18,
+    "color": "#8D0F10",
+    "icon": "https://assets.coingecko.com/coins/images/31423/thumb/logo_black_back-round_200_200.png?1696530238",
+    "symbol": "MAI",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x15d1dafbcc97f606bd02120d170fdac33b1a4a86": {
+    "assetId": "eip155:56/bep20:0x15d1dafbcc97f606bd02120d170fdac33b1a4a86",
+    "chainId": "eip155:56",
+    "name": "CashBackPro",
+    "precision": 6,
+    "color": "#E9D26D",
+    "icon": "https://assets.coingecko.com/coins/images/12893/thumb/logo_%2818%29.png?1696512681",
+    "symbol": "CBP",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x15e596aecb199d94bbf7869b42273f9e8bcc9fa1": {
+    "assetId": "eip155:56/bep20:0x15e596aecb199d94bbf7869b42273f9e8bcc9fa1",
+    "chainId": "eip155:56",
+    "name": "Merry Christmas Token",
+    "precision": 18,
+    "color": "#FC7C7F",
+    "icon": "https://assets.coingecko.com/coins/images/28538/thumb/MCT_200.png?1696527531",
+    "symbol": "MCT",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x1603441703472aff8cdf1871961176cc494588dc": {
+    "assetId": "eip155:56/bep20:0x1603441703472aff8cdf1871961176cc494588dc",
+    "chainId": "eip155:56",
+    "name": "Finance AI",
+    "precision": 18,
+    "color": "#344697",
+    "icon": "https://assets.coingecko.com/coins/images/29113/thumb/B351-E2-C5-8-F1-C-404-D-854-C-068996-C1-B476.jpg?1696528075",
+    "symbol": "FINANCEAI",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x1606940bb5cd6de59a7e25367f4fb8965f38f122": {
+    "assetId": "eip155:56/bep20:0x1606940bb5cd6de59a7e25367f4fb8965f38f122",
+    "chainId": "eip155:56",
+    "name": "Aqua Goat",
+    "precision": 9,
+    "color": "#1A2D3D",
+    "icon": "https://assets.coingecko.com/coins/images/18676/thumb/ag.png?1696518145",
+    "symbol": "AQUAGOAT",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x1610bc33319e9398de5f57b33a5b184c806ad217": {
+    "assetId": "eip155:56/bep20:0x1610bc33319e9398de5f57b33a5b184c806ad217",
+    "chainId": "eip155:56",
+    "name": "Venus DOT",
+    "precision": 8,
+    "color": "#455259",
+    "icon": "https://assets.coingecko.com/coins/images/13919/thumb/venus_dot.png?1696513660",
+    "symbol": "VDOT",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x1613957159e9b0ac6c80e824f7eea748a32a0ae2": {
+    "assetId": "eip155:56/bep20:0x1613957159e9b0ac6c80e824f7eea748a32a0ae2",
+    "chainId": "eip155:56",
+    "name": "Chain Guardians on BNB Smart Chain",
+    "precision": 18,
+    "color": "#242628",
+    "icon": "https://assets.coingecko.com/coins/images/14326/thumb/cgg_logo.png?1696514015",
+    "symbol": "CGG",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x16153214e683018d5aa318864c8e692b66e16778": {
+    "assetId": "eip155:56/bep20:0x16153214e683018d5aa318864c8e692b66e16778",
+    "chainId": "eip155:56",
+    "name": "PolkaWar",
+    "precision": 18,
+    "color": "#D8D6D4",
+    "icon": "https://assets.coingecko.com/coins/images/16776/thumb/polkawar.PNG?1696516348",
+    "symbol": "PWAR",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x1633b7157e7638c4d6593436111bf125ee74703f": {
+    "assetId": "eip155:56/bep20:0x1633b7157e7638c4d6593436111bf125ee74703f",
+    "chainId": "eip155:56",
+    "name": "Splintershards",
+    "precision": 18,
+    "color": "#090A0A",
+    "icon": "https://assets.coingecko.com/coins/images/17332/thumb/splinter.PNG?1696516884",
+    "symbol": "SPS",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x16350ac2153a1d6322c90197129076b747d3222a": {
+    "assetId": "eip155:56/bep20:0x16350ac2153a1d6322c90197129076b747d3222a",
+    "chainId": "eip155:56",
+    "name": "Morpho Network",
+    "precision": 18,
+    "color": "#DB578A",
+    "icon": "https://assets.coingecko.com/coins/images/28541/thumb/MORPHO_NETWORK_LOGO.PNG?1696527533",
+    "symbol": "MORPHO",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x163f182c32d24a09d91eb75820cde9fd5832b329": {
+    "assetId": "eip155:56/bep20:0x163f182c32d24a09d91eb75820cde9fd5832b329",
+    "chainId": "eip155:56",
+    "name": "ElonDoge io",
+    "precision": 9,
+    "color": "#DE997A",
+    "icon": "https://assets.coingecko.com/coins/images/15806/thumb/Edoge.png?1696515426",
+    "symbol": "EDOGE",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x166295ebd6a938c7aaf61350eb5161a9939ab2b7": {
+    "assetId": "eip155:56/bep20:0x166295ebd6a938c7aaf61350eb5161a9939ab2b7",
+    "chainId": "eip155:56",
+    "name": "Murasaki",
+    "precision": 18,
+    "color": "#E7DAED",
+    "icon": "https://assets.coingecko.com/coins/images/28570/thumb/mura.png?1696527558",
+    "symbol": "MURA",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x167e5455e4c978883b414e7f02c0147eec9a18e9": {
+    "assetId": "eip155:56/bep20:0x167e5455e4c978883b414e7f02c0147eec9a18e9",
+    "chainId": "eip155:56",
+    "name": "Life v2",
+    "precision": 18,
+    "color": "#305FBD",
+    "icon": "https://assets.coingecko.com/coins/images/20568/thumb/1-j2MSwg_400x400.jpg?1696519976",
+    "symbol": "LTNV2",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x167fcfed3aad2d11052fcde0cbf704d879939473": {
+    "assetId": "eip155:56/bep20:0x167fcfed3aad2d11052fcde0cbf704d879939473",
+    "chainId": "eip155:56",
+    "name": "Triathon",
+    "precision": 18,
+    "color": "#246CDC",
+    "icon": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAIAAAACACAMAAAD04JH5AAADAFBMVEUtN0gmb9j///8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/LtyrAAABAHRSTlP/////AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAf6K/dgAAQItJREFUeNoBgEB/vwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAgICAgICAgICAgICAQEBAQEBAQEBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgAAAAAAAAAAAAAAAAEBAgICAgICAgICAgICAgICAgICAgICAQEBAQEBAQEBAQEBAQECAgICAgICAAAAAAAAAAAAAAAAAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMAAAAAAAAAAAAAAAEBAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMAAAAAAAAAAAAAAAEBAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMAAAAAAAAAAAAAAAEBAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMAAAAAAAAAAAAAAAEBAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMAAAAAAAAAAAAAAAEBAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMAAAAAAAAAAAAAAAEBAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAMDAwMDAwMDAwMDAgICAgICAgEBAQEBAQECAgICAgICAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMAAAAAAAACAgICAgICAQMDAwMDAwMDAwMDAwMDAwMDAwMDAgICAgICAgEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQMDAwMDAwMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAgICAgICAgAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAgICAgICAgMAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAgICAgICAgMAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAgICAgICAgMAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAgICAgICAgMAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAgICAgICAgMAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAgICAgICAgMAAAAAAAAAAAACAgICAgICAgICAgICAgEBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAwMDAwMDAwICAgIAAAAAAAACAgICAgICAgICAgICAgMBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAwAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAICAgIDAAAAAAACAgICAgICAgICAgICAgMBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAwAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAICAgIDAAAAAAACAgICAgICAgICAgICAgMBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAwAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAICAgIDAAAAAAACAgICAgICAgICAgICAgMBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAwAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAICAgIDAAAAAAACAgICAgICAgICAgICAgMBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAwAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAICAgIDAAAAAAACAgICAgICAgICAgICAgMBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAwAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAICAgIDAAAAAAAAAwMDAwMDAgICAgICAgMBAQEBAQECAgICAgICAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAADAwMDAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAgICAgICAgICAgICAQMDAwMDAwMBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgAAAAAAAAAAAwMDAwMDAgICAgICAgICAgICAgICAgICAgICAQMDAwMDAwMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMAAAAAAAAAAAAAAAAAAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMAAAAAAAAAAAAAAAAAAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMAAAAAAAAAAAAAAAAAAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMAAAAAAAAAAAAAAAAAAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMAAAAAAAAAAAAAAAAAAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMAAAAAAAAAAAAAAAAAAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAMDAwMDAwMDAwMDAwEBAQEBAQEBAQEBAQEBAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMAAAAAAAAAAAAAAAAAAAMDAwMDAwMDAwMDAwMDAwMDAwMDAwEBAQEBAQEBAQEBAQEBAwMDAwMDAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHF3MJNfqsHVAAAAAElFTkSuQmCC",
+    "symbol": "GEON",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x168e3b1746aa249a9b3603b70605924fe255ee1a": {
+    "assetId": "eip155:56/bep20:0x168e3b1746aa249a9b3603b70605924fe255ee1a",
+    "chainId": "eip155:56",
+    "name": "GAMER",
+    "precision": 18,
+    "color": "#F7F3E2",
+    "icon": "https://assets.coingecko.com/coins/images/21288/thumb/ezgif-1-7f6a016717.jpg?1696520658",
+    "symbol": "GMR",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x16a042f785bada1548773f52ae32743e86b0fa13": {
+    "assetId": "eip155:56/bep20:0x16a042f785bada1548773f52ae32743e86b0fa13",
+    "chainId": "eip155:56",
+    "name": "Funny Money",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/32666/thumb/Funny_Money_logo.png?1698903148",
+    "symbol": "FNY",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x16b3e050e9e2f0ac4f1bea1b3e4fdc43d7f062dd": {
+    "assetId": "eip155:56/bep20:0x16b3e050e9e2f0ac4f1bea1b3e4fdc43d7f062dd",
+    "chainId": "eip155:56",
+    "name": "Sombra on BNB Smart Chain",
+    "precision": 9,
+    "color": "#460482",
+    "icon": "https://assets.coingecko.com/coins/images/17884/thumb/sombra-200.png?1696517405",
+    "symbol": "SMBR",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x16dcc0ec78e91e868dca64be86aec62bf7c61037": {
+    "assetId": "eip155:56/bep20:0x16dcc0ec78e91e868dca64be86aec62bf7c61037",
+    "chainId": "eip155:56",
+    "name": "EverETH",
+    "precision": 9,
+    "color": "#842CA5",
+    "icon": "https://assets.coingecko.com/coins/images/18221/thumb/200x200.png?1696517718",
+    "symbol": "EVERETH",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x16e79e09b3b56bcbba83667aff88dc6ca727af2e": {
+    "assetId": "eip155:56/bep20:0x16e79e09b3b56bcbba83667aff88dc6ca727af2e",
+    "chainId": "eip155:56",
+    "name": "Bart Simpson Coin",
+    "precision": 9,
+    "color": "#885404",
+    "icon": "https://assets.coingecko.com/coins/images/30233/thumb/BART.png?1696529143",
+    "symbol": "BART",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x16f9cc3c6f8d8006cfc0ee693cef9d76b0d44c36": {
+    "assetId": "eip155:56/bep20:0x16f9cc3c6f8d8006cfc0ee693cef9d76b0d44c36",
+    "chainId": "eip155:56",
+    "name": "Baby Bali",
+    "precision": 9,
+    "color": "#DBD7DD",
+    "icon": "https://assets.coingecko.com/coins/images/20789/thumb/New-Era-of-Baby-Bali-200x200pxl.png?1696520182",
+    "symbol": "BB",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x16faf9daa401aa42506af503aa3d80b871c467a3": {
+    "assetId": "eip155:56/bep20:0x16faf9daa401aa42506af503aa3d80b871c467a3",
+    "chainId": "eip155:56",
+    "name": "DexCheck on BNB Smart Chain",
+    "precision": 18,
+    "color": "#06283B",
+    "icon": "https://assets.coingecko.com/coins/images/26412/thumb/DexCheck_logo_%282%29.png?1696525488",
+    "symbol": "DCK",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x16fdd1edb14ac4012395a0617a682d81595db486": {
+    "assetId": "eip155:56/bep20:0x16fdd1edb14ac4012395a0617a682d81595db486",
+    "chainId": "eip155:56",
+    "name": "VEED",
+    "precision": 18,
+    "color": "#342146",
+    "icon": "https://assets.coingecko.com/coins/images/15919/thumb/VEED.png?1696515532",
+    "symbol": "VEED",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x170dc35c5b58aededc81960691eb4b389eba9e95": {
+    "assetId": "eip155:56/bep20:0x170dc35c5b58aededc81960691eb4b389eba9e95",
+    "chainId": "eip155:56",
+    "name": "Immortl  OLD  on BNB Smart Chain",
+    "precision": 18,
+    "color": "#18160F",
+    "icon": "https://assets.coingecko.com/coins/images/21983/thumb/ONE.png?1696521331",
+    "symbol": "IMRTL",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x17179f506b89d80291b581f200f34b17ff172cd3": {
+    "assetId": "eip155:56/bep20:0x17179f506b89d80291b581f200f34b17ff172cd3",
+    "chainId": "eip155:56",
+    "name": "Ixirswap",
+    "precision": 9,
+    "color": "#050607",
+    "icon": "https://assets.coingecko.com/coins/images/23884/thumb/CMC_CG_%282%29.png?1696523084",
+    "symbol": "IXIR",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x1785113910847770290f5f840b4c74fc46451201": {
+    "assetId": "eip155:56/bep20:0x1785113910847770290f5f840b4c74fc46451201",
+    "chainId": "eip155:56",
+    "name": "Fabwelt on BNB Smart Chain",
+    "precision": 18,
+    "color": "#BD53A9",
+    "icon": "https://assets.coingecko.com/coins/images/20505/thumb/welt.PNG?1696519911",
+    "symbol": "WELT",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x178fbe1cf4775fbdb9756d6349195a05799c0fe5": {
+    "assetId": "eip155:56/bep20:0x178fbe1cf4775fbdb9756d6349195a05799c0fe5",
+    "chainId": "eip155:56",
+    "name": "Espento",
+    "precision": 18,
+    "color": "#3564FC",
+    "icon": "https://assets.coingecko.com/coins/images/29818/thumb/espento.png?1696528746",
+    "symbol": "SPENT",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x1796ae0b0fa4862485106a0de9b654efe301d0b2": {
+    "assetId": "eip155:56/bep20:0x1796ae0b0fa4862485106a0de9b654efe301d0b2",
+    "chainId": "eip155:56",
+    "name": "Polychain Monsters on BNB Smart Chain",
+    "precision": 18,
+    "color": "#F04B7D",
+    "icon": "https://assets.coingecko.com/coins/images/14604/thumb/polkamon.png?1696514282",
+    "symbol": "PMON",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x179e3b3d1fcba4d740171c710e6a6cfc3c80a571": {
+    "assetId": "eip155:56/bep20:0x179e3b3d1fcba4d740171c710e6a6cfc3c80a571",
+    "chainId": "eip155:56",
+    "name": "Blockchain Island",
+    "precision": 18,
+    "color": "#3772A0",
+    "icon": "https://assets.coingecko.com/coins/images/31593/thumb/LG_BCL1.png?1696530409",
+    "symbol": "BCL",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x17b7163cf1dbd286e262ddc68b553d899b93f526": {
+    "assetId": "eip155:56/bep20:0x17b7163cf1dbd286e262ddc68b553d899b93f526",
+    "chainId": "eip155:56",
+    "name": "Qubit",
+    "precision": 18,
+    "color": "#FCF8D7",
+    "icon": "https://assets.coingecko.com/coins/images/17957/thumb/qubit.PNG?1696517477",
+    "symbol": "QBT",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x17bd2e09fa4585c15749f40bb32a6e3db58522ba": {
+    "assetId": "eip155:56/bep20:0x17bd2e09fa4585c15749f40bb32a6e3db58522ba",
+    "chainId": "eip155:56",
+    "name": "Ethernal Finance",
+    "precision": 18,
+    "color": "#F4742C",
+    "icon": "https://assets.coingecko.com/coins/images/20190/thumb/CMC_%282%29.png?1696519602",
+    "symbol": "ETHFIN",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x17c8c198c06f16a8db68148d9ac460f5aed029d8": {
+    "assetId": "eip155:56/bep20:0x17c8c198c06f16a8db68148d9ac460f5aed029d8",
+    "chainId": "eip155:56",
+    "name": "NeoCortexAI  OLD ",
+    "precision": 18,
+    "color": "#17373A",
+    "icon": "https://assets.coingecko.com/coins/images/29591/thumb/Untitled_design_%281%29.png?1696528530",
+    "symbol": "CORAI",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x17e65e6b9b166fb8e7c59432f0db126711246bc0": {
+    "assetId": "eip155:56/bep20:0x17e65e6b9b166fb8e7c59432f0db126711246bc0",
+    "chainId": "eip155:56",
+    "name": "TiFi",
+    "precision": 18,
+    "color": "#04A4FC",
+    "icon": "https://assets.coingecko.com/coins/images/24990/thumb/logo200_%281%29.png?1696524142",
+    "symbol": "TIFI",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x17fd3caa66502c6f1cbd5600d8448f3af8f2aba1": {
+    "assetId": "eip155:56/bep20:0x17fd3caa66502c6f1cbd5600d8448f3af8f2aba1",
+    "chainId": "eip155:56",
+    "name": "Smarty Pay",
+    "precision": 0,
+    "color": "#E10414",
+    "icon": "https://assets.coingecko.com/coins/images/18813/thumb/logo_smarty-pay.png?1696518275",
+    "symbol": "SPY",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x180cfbe9843d79bcafcbcdf23590247793dfc95b": {
+    "assetId": "eip155:56/bep20:0x180cfbe9843d79bcafcbcdf23590247793dfc95b",
+    "chainId": "eip155:56",
+    "name": "PolkaFantasy on BNB Smart Chain",
+    "precision": 18,
+    "color": "#FC6CB4",
+    "icon": "https://assets.coingecko.com/coins/images/18299/thumb/XP_Token_Icon.png?1696517791",
+    "symbol": "XP",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x180dae91d6d56235453a892d2e56a3e40ba81df8": {
+    "assetId": "eip155:56/bep20:0x180dae91d6d56235453a892d2e56a3e40ba81df8",
+    "chainId": "eip155:56",
+    "name": "DOJO on BNB Smart Chain",
+    "precision": 18,
+    "color": "#F2C204",
+    "icon": "https://assets.coingecko.com/coins/images/16396/thumb/074606deafab3872.png?1696515994",
+    "symbol": "DOJO",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x181c0f81d56102f64ec805ca444638b18a191db3": {
+    "assetId": "eip155:56/bep20:0x181c0f81d56102f64ec805ca444638b18a191db3",
+    "chainId": "eip155:56",
+    "name": "PEPE DAO",
+    "precision": 18,
+    "color": "#F4FAF2",
+    "icon": "https://assets.coingecko.com/coins/images/30286/thumb/IMG_20230510_010937_683.jpg?1696529191",
+    "symbol": "PEPED",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x181de8c57c4f25eba9fd27757bbd11cc66a55d31": {
+    "assetId": "eip155:56/bep20:0x181de8c57c4f25eba9fd27757bbd11cc66a55d31",
+    "chainId": "eip155:56",
+    "name": "Beluga fi on BNB Smart Chain",
+    "precision": 18,
+    "color": "#906DC5",
+    "icon": "https://assets.coingecko.com/coins/images/13790/thumb/brand-logo-v2.23e5d279.png?1696513539",
+    "symbol": "BELUGA",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x182fd4f68695f1951018b5f8c1b2f778919ff0ce": {
+    "assetId": "eip155:56/bep20:0x182fd4f68695f1951018b5f8c1b2f778919ff0ce",
+    "chainId": "eip155:56",
+    "name": "Dogepad Finance",
+    "precision": 9,
+    "color": "#351E45",
+    "icon": "https://assets.coingecko.com/coins/images/28468/thumb/Doge-Pad-15.png?1696527462",
+    "symbol": "DPF",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x18359cf655a444204e46f286edc445c9d30ffc54": {
+    "assetId": "eip155:56/bep20:0x18359cf655a444204e46f286edc445c9d30ffc54",
+    "chainId": "eip155:56",
+    "name": "Dogemoon",
+    "precision": 18,
+    "color": "#D1A53F",
+    "icon": "https://assets.coingecko.com/coins/images/15308/thumb/DOGEMOON.png?1696514958",
+    "symbol": "DOGEMOON",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x1851ccd370c444ff494d7505e6103959bce9f9d9": {
+    "assetId": "eip155:56/bep20:0x1851ccd370c444ff494d7505e6103959bce9f9d9",
+    "chainId": "eip155:56",
+    "name": "ONUS on BNB Smart Chain",
+    "precision": 18,
+    "color": "#0666FC",
+    "icon": "https://assets.coingecko.com/coins/images/24599/thumb/ONUS_200.png?1696523773",
+    "symbol": "ONUS",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x1861c9058577c3b48e73d91d6f25c18b17fbffe0": {
+    "assetId": "eip155:56/bep20:0x1861c9058577c3b48e73d91d6f25c18b17fbffe0",
+    "chainId": "eip155:56",
+    "name": "DSLA Protocol on BNB Smart Chain",
+    "precision": 18,
+    "color": "#C7C5C5",
+    "icon": "https://assets.coingecko.com/coins/images/6694/thumb/dsla_logo-squared_200x200.png?1696507035",
+    "symbol": "DSLA",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x186866858aef38c05829166a7711b37563e15994": {
+    "assetId": "eip155:56/bep20:0x186866858aef38c05829166a7711b37563e15994",
+    "chainId": "eip155:56",
+    "name": "Hodl Finance",
+    "precision": 9,
+    "color": "#BDD0FC",
+    "icon": "https://assets.coingecko.com/coins/images/20213/thumb/hft_coingecko.png?1696519623",
+    "symbol": "HFT",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x18905200183e2c6f33653f469ec10a2a16027957": {
+    "assetId": "eip155:56/bep20:0x18905200183e2c6f33653f469ec10a2a16027957",
+    "chainId": "eip155:56",
+    "name": "Starterpool",
+    "precision": 9,
+    "color": "#5CF4FC",
+    "icon": "https://assets.coingecko.com/coins/images/31045/thumb/input-onlinepngtools.png?1696529880",
+    "symbol": "SPOL",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x1894251aebcff227133575ed3069be9670e25db0": {
+    "assetId": "eip155:56/bep20:0x1894251aebcff227133575ed3069be9670e25db0",
+    "chainId": "eip155:56",
+    "name": "Halo Coin",
+    "precision": 9,
+    "color": "#98A8B8",
+    "icon": "https://assets.coingecko.com/coins/images/27758/thumb/200.png?1696526781",
+    "symbol": "HALO",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x18acf236eb40c0d4824fb8f2582ebbecd325ef6a": {
+    "assetId": "eip155:56/bep20:0x18acf236eb40c0d4824fb8f2582ebbecd325ef6a",
+    "chainId": "eip155:56",
+    "name": "Oikos",
+    "precision": 18,
+    "color": "#343C44",
+    "icon": "https://assets.coingecko.com/coins/images/11486/thumb/B49FnNM.png?1696511392",
+    "symbol": "OKS",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x18b5f22266343ccd180c6285a66cc9a23dc262e9": {
+    "assetId": "eip155:56/bep20:0x18b5f22266343ccd180c6285a66cc9a23dc262e9",
+    "chainId": "eip155:56",
+    "name": "Evulus",
+    "precision": 9,
+    "color": "#B7DFDA",
+    "icon": "https://assets.coingecko.com/coins/images/22081/thumb/isotipo-evulus.png?1696521425",
+    "symbol": "EVU",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x18d3be5ecddf79279004e2d90d507594c2d46f85": {
+    "assetId": "eip155:56/bep20:0x18d3be5ecddf79279004e2d90d507594c2d46f85",
+    "chainId": "eip155:56",
+    "name": "Koakuma",
+    "precision": 18,
+    "color": "#FBE0C5",
+    "icon": "https://assets.coingecko.com/coins/images/28745/thumb/logo_200.png?1696527725",
+    "symbol": "KKMA",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x18d9d0d6e42bb52a13236f4fa33d9d2485d9015a": {
+    "assetId": "eip155:56/bep20:0x18d9d0d6e42bb52a13236f4fa33d9d2485d9015a",
+    "chainId": "eip155:56",
+    "name": "Shira Cat",
+    "precision": 18,
+    "color": "#4F9C95",
+    "icon": "https://assets.coingecko.com/coins/images/29274/thumb/IMG_20230302_120852_281.jpg?1696528227",
+    "symbol": "CATSHIRA",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x18e596bcefdd0ff9dc8c50d0b9d329ea770d5ef1": {
+    "assetId": "eip155:56/bep20:0x18e596bcefdd0ff9dc8c50d0b9d329ea770d5ef1",
+    "chainId": "eip155:56",
+    "name": "BTS Chain",
+    "precision": 18,
+    "color": "#D1D4BB",
+    "icon": "https://assets.coingecko.com/coins/images/19386/thumb/mDVn3lgM_400x400.jpg?1696518826",
+    "symbol": "BTSC",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x19048172b5a0893ad008e7c52c11a6dd3c8784a1": {
+    "assetId": "eip155:56/bep20:0x19048172b5a0893ad008e7c52c11a6dd3c8784a1",
+    "chainId": "eip155:56",
+    "name": "Wild Island Game",
+    "precision": 18,
+    "color": "#CAA843",
+    "icon": "https://assets.coingecko.com/coins/images/22196/thumb/logo-moneda200.png?1696521539",
+    "symbol": "WILD",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x190b589cf9fb8ddeabbfeae36a813ffb2a702454": {
+    "assetId": "eip155:56/bep20:0x190b589cf9fb8ddeabbfeae36a813ffb2a702454",
+    "chainId": "eip155:56",
+    "name": "bDollar",
+    "precision": 18,
+    "color": "#FC5004",
+    "icon": "https://assets.coingecko.com/coins/images/13487/thumb/bdollar-yellow.png?1696513248",
+    "symbol": "BDO",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x1912a3504e59d1c1b060bf2d371deb00b70e8796": {
+    "assetId": "eip155:56/bep20:0x1912a3504e59d1c1b060bf2d371deb00b70e8796",
+    "chainId": "eip155:56",
+    "name": "NFTEarth on BNB Smart Chain",
+    "precision": 18,
+    "color": "#E1FBED",
+    "icon": "https://assets.coingecko.com/coins/images/29116/thumb/20230223_224134.jpg?1696528078",
+    "symbol": "NFTE",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x193397bb76868c6873e733ad60d5953843ebc84e": {
+    "assetId": "eip155:56/bep20:0x193397bb76868c6873e733ad60d5953843ebc84e",
+    "chainId": "eip155:56",
+    "name": "MEMETOON",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/31632/thumb/meme.8af7ca91.png?1696530448",
+    "symbol": "MEME",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x197dc4bfc82ad08e3fbaa930a869485236e6a792": {
+    "assetId": "eip155:56/bep20:0x197dc4bfc82ad08e3fbaa930a869485236e6a792",
+    "chainId": "eip155:56",
+    "name": "Kronobit",
+    "precision": 8,
+    "color": "#3CB494",
+    "icon": "https://assets.coingecko.com/coins/images/18083/thumb/logoxx.png?1696517589",
+    "symbol": "KNB",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x19857937848c02afbde8b526610f0f2f89e9960d": {
+    "assetId": "eip155:56/bep20:0x19857937848c02afbde8b526610f0f2f89e9960d",
+    "chainId": "eip155:56",
+    "name": "AmpleSwap",
+    "precision": 18,
+    "color": "#25C9D5",
+    "icon": "https://assets.coingecko.com/coins/images/19475/thumb/ample.PNG?1696518912",
+    "symbol": "AMPLE",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x198abb2d13faa2e52e577d59209b5c23c20cd6b3": {
+    "assetId": "eip155:56/bep20:0x198abb2d13faa2e52e577d59209b5c23c20cd6b3",
+    "chainId": "eip155:56",
+    "name": "Bamboo DeFi on BNB Smart Chain",
+    "precision": 18,
+    "color": "#4D4545",
+    "icon": "https://assets.coingecko.com/coins/images/13856/thumb/LOGO_BAMBOO_PNG.png?1696513602",
+    "symbol": "BAMBOO",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x1991501f1398663f69dd7391c055bb0df6514f76": {
+    "assetId": "eip155:56/bep20:0x1991501f1398663f69dd7391c055bb0df6514f76",
+    "chainId": "eip155:56",
+    "name": "HotDoge  OLD ",
+    "precision": 9,
+    "color": "#D57525",
+    "icon": "https://assets.coingecko.com/coins/images/15404/thumb/525ea2_88a58501323f44c7a806c008ae2b4858_mv2.png?1696515050",
+    "symbol": "HOTDOGE",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x19a4866a85c652eb4a2ed44c42e4cb2863a62d51": {
+    "assetId": "eip155:56/bep20:0x19a4866a85c652eb4a2ed44c42e4cb2863a62d51",
+    "chainId": "eip155:56",
+    "name": "HoDooi com",
+    "precision": 18,
+    "color": "#ECF3F7",
+    "icon": "https://assets.coingecko.com/coins/images/16301/thumb/Monogram_2x-100.jpg?1696515903",
+    "symbol": "HOD",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x19af9dab517746257dba18fcd74f7df5383bdf1b": {
+    "assetId": "eip155:56/bep20:0x19af9dab517746257dba18fcd74f7df5383bdf1b",
+    "chainId": "eip155:56",
+    "name": "Pomo",
+    "precision": 18,
+    "color": "#444444",
+    "icon": "https://assets.coingecko.com/coins/images/25355/thumb/200x200.png?1696524489",
+    "symbol": "POMO",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x19b99162adaab85134e781ac0048c275c31b205a": {
+    "assetId": "eip155:56/bep20:0x19b99162adaab85134e781ac0048c275c31b205a",
+    "chainId": "eip155:56",
+    "name": "Marnotaur",
+    "precision": 18,
+    "color": "#B39982",
+    "icon": "https://assets.coingecko.com/coins/images/18655/thumb/taur.PNG?1696518125",
+    "symbol": "TAUR",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x19c91764a976ac6c1e2c2e4c5856f2939342a814": {
+    "assetId": "eip155:56/bep20:0x19c91764a976ac6c1e2c2e4c5856f2939342a814",
+    "chainId": "eip155:56",
+    "name": "Parachute on BNB Smart Chain",
+    "precision": 18,
+    "color": "#FBC3AF",
+    "icon": "https://assets.coingecko.com/coins/images/7590/thumb/Parachute_Logo.png?1696507850",
+    "symbol": "PAR",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x19cd9b8e42d4ef62c3ea124110d5cfd283ceac43": {
+    "assetId": "eip155:56/bep20:0x19cd9b8e42d4ef62c3ea124110d5cfd283ceac43",
+    "chainId": "eip155:56",
+    "name": "Battle Infinity",
+    "precision": 9,
+    "color": "#1445B4",
+    "icon": "https://assets.coingecko.com/coins/images/27069/thumb/ibat_logo.png?1696526119",
+    "symbol": "IBAT",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x19e6bfc1a6e4b042fb20531244d47e252445df01": {
+    "assetId": "eip155:56/bep20:0x19e6bfc1a6e4b042fb20531244d47e252445df01",
+    "chainId": "eip155:56",
+    "name": "Templar DAO",
+    "precision": 9,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/21001/thumb/93573503.png?1696520385",
+    "symbol": "TEM",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x19ed34d112d0d20db619d728ce96745600abafc3": {
+    "assetId": "eip155:56/bep20:0x19ed34d112d0d20db619d728ce96745600abafc3",
+    "chainId": "eip155:56",
+    "name": "Turan Network",
+    "precision": 9,
+    "color": "#3F4857",
+    "icon": "https://assets.coingecko.com/coins/images/31798/thumb/twitter_dairesiz.png?1696530614",
+    "symbol": "TRN",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x1a076e4633fa139d7b908b88326de603fbe8c199": {
+    "assetId": "eip155:56/bep20:0x1a076e4633fa139d7b908b88326de603fbe8c199",
+    "chainId": "eip155:56",
+    "name": "Football at AlphaVerse",
+    "precision": 18,
+    "color": "#7C24DC",
+    "icon": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAIAAAACACAMAAAD04JH5AAADAFBMVEUtN0h5Jtj///8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADlEnpNAAABAHRSTlP/////AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAf6K/dgAAQItJREFUeNoBgEB/vwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgEBAQEBAQEBAQEBAQAAAgICAgICAgICAgICAgICAgICAgICAQEBAQEBAQEBAQEBAQECAgICAgICAQEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgAAAAAAAAAAAAACAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMBAQEBAQEBAQEBAQAAAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMBAQEBAQEBAQEBAQAAAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMBAQEBAQEBAQEBAQAAAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMBAQEBAQEBAQEBAQAAAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMBAQEBAQEBAQEBAQAAAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMBAQEBAQEBAQEBAQAAAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMBAQEBAQECAgICAgICAAMDAwMDAwMDAwMDAwMDAwMDAwMDAgICAgICAgEBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAgICAgICAgICAgICAgICAgICAgICAQEBAQEBAQEBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwEBAQEBAQEBAQEBAQECAgICAgICAwMDAwMDAwMDAwMDAwMDAwMDAwMDAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAACAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAgICAgICAgMAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAACAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAgICAgICAgMAAAAAAAAAAwMDAwMDAgICAgICAgEBAQEBAQECAgICAgICAAMDAwMDAwMAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAACAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAgICAgICAgMAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAACAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAgICAgICAgMAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAACAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAgICAgICAgMAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAACAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAgICAgICAgMAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAACAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAgICAgICAgMAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAACAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAgICAgICAgMAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAACAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAgICAgICAgMAAAAAAAAAAAAAAAEBAQMDAwMDAwICAgICAgIBAwMDAwMDAwAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAACAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAgICAgICAgMAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAACAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAgICAgICAgMAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAACAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAgICAgICAgMAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAACAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAgICAgICAgMAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAACAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAgICAgICAgMAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAACAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAgICAgICAgMAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAwMDAwMDAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAwMDAwMDAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAMDAwMDAwMAAAAAAAAAAAAAAAEBAQEBAQEBAQEDAwMDAwMDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANfvLxb2ul79AAAAAElFTkSuQmCC",
+    "symbol": "FAV",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x1a131f7b106d58f33eaf0fe5b47db2f2045e5732": {
+    "assetId": "eip155:56/bep20:0x1a131f7b106d58f33eaf0fe5b47db2f2045e5732",
+    "chainId": "eip155:56",
+    "name": "DegenReborn",
+    "precision": 18,
+    "color": "#F8C150",
+    "icon": "https://assets.coingecko.com/coins/images/29696/thumb/logo.png?1696528629",
+    "symbol": "DEGEN",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x1a28ed8472f644e8898a169a644503b779748d6e": {
+    "assetId": "eip155:56/bep20:0x1a28ed8472f644e8898a169a644503b779748d6e",
+    "chainId": "eip155:56",
+    "name": "RAI Finance on BNB Smart Chain",
+    "precision": 18,
+    "color": "#CC94FC",
+    "icon": "https://assets.coingecko.com/coins/images/14686/thumb/sofi.png?1696514359",
+    "symbol": "SOFI",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x1a3057027032a1af433f6f596cab15271e4d8196": {
+    "assetId": "eip155:56/bep20:0x1a3057027032a1af433f6f596cab15271e4d8196",
+    "chainId": "eip155:56",
+    "name": "Yellow Road",
+    "precision": 18,
+    "color": "#D2C999",
+    "icon": "https://assets.coingecko.com/coins/images/14747/thumb/yellowroad.PNG?1696514417",
+    "symbol": "ROAD",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x1a3264f2e7b1cfc6220ec9348d33ccf02af7aaa4": {
+    "assetId": "eip155:56/bep20:0x1a3264f2e7b1cfc6220ec9348d33ccf02af7aaa4",
+    "chainId": "eip155:56",
+    "name": "Dypius on BNB Smart Chain",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/33016/thumb/RS-zDhFE_400x400.jpg?1700157370",
+    "symbol": "DYP",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x1a515bf4e35aa2df67109281de6b3b00ec37675e": {
+    "assetId": "eip155:56/bep20:0x1a515bf4e35aa2df67109281de6b3b00ec37675e",
+    "chainId": "eip155:56",
+    "name": "2G Carbon Coin",
+    "precision": 18,
+    "color": "#103410",
+    "icon": "https://assets.coingecko.com/coins/images/27514/thumb/Ojh3Dm3-_400x400.jpeg?1696526553",
+    "symbol": "2GCC",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x1a57d349aa36e54e5a36fd99d93d27fd42f71491": {
+    "assetId": "eip155:56/bep20:0x1a57d349aa36e54e5a36fd99d93d27fd42f71491",
+    "chainId": "eip155:56",
+    "name": "Unlock Maverick on BNB Smart Chain",
+    "precision": 18,
+    "color": "#E4DDD7",
+    "icon": "https://assets.coingecko.com/coins/images/31264/thumb/clean.jpg?1696530088",
+    "symbol": "UNKMAV",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x1a9b49e9f075c37fe5f86c916bac9deb33556d7e": {
+    "assetId": "eip155:56/bep20:0x1a9b49e9f075c37fe5f86c916bac9deb33556d7e",
+    "chainId": "eip155:56",
+    "name": "ASPO World",
+    "precision": 18,
+    "color": "#FC8171",
+    "icon": "https://assets.coingecko.com/coins/images/20329/thumb/12599.png?1696519731",
+    "symbol": "ASPO",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x1ab6478b47270ff05af11a012ac17b098758e193": {
+    "assetId": "eip155:56/bep20:0x1ab6478b47270ff05af11a012ac17b098758e193",
+    "chainId": "eip155:56",
+    "name": "Flux Protocol on BNB Smart Chain",
+    "precision": 18,
+    "color": "#D67C16",
+    "icon": "https://assets.coingecko.com/coins/images/15002/thumb/logo.dabc411c.png?1696514665",
+    "symbol": "FLUX",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x1ab7e7deda201e5ea820f6c02c65fce7ec6bed32": {
+    "assetId": "eip155:56/bep20:0x1ab7e7deda201e5ea820f6c02c65fce7ec6bed32",
+    "chainId": "eip155:56",
+    "name": "Bot Planet",
+    "precision": 18,
+    "color": "#D414FC",
+    "icon": "https://assets.coingecko.com/coins/images/24650/thumb/McLc4iA.png?1696523820",
+    "symbol": "BOT",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x1ae369a6ab222aff166325b7b87eb9af06c86e57": {
+    "assetId": "eip155:56/bep20:0x1ae369a6ab222aff166325b7b87eb9af06c86e57",
+    "chainId": "eip155:56",
+    "name": "Tenset",
+    "precision": 18,
+    "color": "#040404",
+    "icon": "https://assets.coingecko.com/coins/images/14629/thumb/PNG_Tenset_Sign-back_RGB.png?1696514307",
+    "symbol": "10SET",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x1af3f329e8be154074d8769d1ffa4ee058b1dbc3": {
+    "assetId": "eip155:56/bep20:0x1af3f329e8be154074d8769d1ffa4ee058b1dbc3",
+    "chainId": "eip155:56",
+    "name": "Dai on BNB Smart Chain",
+    "precision": 18,
+    "color": "#FCBD3C",
+    "icon": "https://assets.coingecko.com/coins/images/9956/thumb/Badge_Dai.png?1696509996",
+    "symbol": "DAI",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x1b0805f1b20d3b147d515e9b9d3c9c689b390870": {
+    "assetId": "eip155:56/bep20:0x1b0805f1b20d3b147d515e9b9d3c9c689b390870",
+    "chainId": "eip155:56",
+    "name": "Neutrinos",
+    "precision": 18,
+    "color": "#040404",
+    "icon": "https://assets.coingecko.com/coins/images/29886/thumb/QLDnycl.png?1696528811",
+    "symbol": "NEUTR",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x1b2128abc4119474d16bb0a04200b63b0e68a971": {
+    "assetId": "eip155:56/bep20:0x1b2128abc4119474d16bb0a04200b63b0e68a971",
+    "chainId": "eip155:56",
+    "name": "Connex",
+    "precision": 18,
+    "color": "#6081F5",
+    "icon": "https://assets.coingecko.com/coins/images/31779/thumb/conx-cg.png?1696530597",
+    "symbol": "CONX",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x1b219aca875f8c74c33cff9ff98f3a9b62fcbff5": {
+    "assetId": "eip155:56/bep20:0x1b219aca875f8c74c33cff9ff98f3a9b62fcbff5",
+    "chainId": "eip155:56",
+    "name": "Fins",
+    "precision": 18,
+    "color": "#6386AF",
+    "icon": "https://assets.coingecko.com/coins/images/18568/thumb/fins_200x200.png?1696518046",
+    "symbol": "FINS",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x1b24ebbec03298576337b1805c733cd225c8a6bc": {
+    "assetId": "eip155:56/bep20:0x1b24ebbec03298576337b1805c733cd225c8a6bc",
+    "chainId": "eip155:56",
+    "name": "Astro Cash",
+    "precision": 18,
+    "color": "#412767",
+    "icon": "https://assets.coingecko.com/coins/images/26817/thumb/AStro_cash.PNG?1696525876",
+    "symbol": "ASTRO",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x1b391f9d0fffa86a6088a73ac4ac28d12c9ccfbd": {
+    "assetId": "eip155:56/bep20:0x1b391f9d0fffa86a6088a73ac4ac28d12c9ccfbd",
+    "chainId": "eip155:56",
+    "name": "Sustainable Energy",
+    "precision": 9,
+    "color": "#8CC43C",
+    "icon": "https://assets.coingecko.com/coins/images/15592/thumb/new_logo_200.png?1696515227",
+    "symbol": "SET",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x1b41a1ba7722e6431b1a782327dbe466fe1ee9f9": {
+    "assetId": "eip155:56/bep20:0x1b41a1ba7722e6431b1a782327dbe466fe1ee9f9",
+    "chainId": "eip155:56",
+    "name": "Knit Finance on BNB Smart Chain",
+    "precision": 18,
+    "color": "#1C1B54",
+    "icon": "https://assets.coingecko.com/coins/images/15632/thumb/knit.jpg?1696515264",
+    "symbol": "KFT",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x1b818cecf52e3b47ee47f7c909e023e4d1b3027c": {
+    "assetId": "eip155:56/bep20:0x1b818cecf52e3b47ee47f7c909e023e4d1b3027c",
+    "chainId": "eip155:56",
+    "name": "Xrpcashone",
+    "precision": 18,
+    "color": "#A0B7C9",
+    "icon": "https://assets.coingecko.com/coins/images/31452/thumb/XRPcashone.png?1696530266",
+    "symbol": "XCE",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x1b9dec855e98d1c01426a3ed615dd25d2947290e": {
+    "assetId": "eip155:56/bep20:0x1b9dec855e98d1c01426a3ed615dd25d2947290e",
+    "chainId": "eip155:56",
+    "name": "Pepe AI Token",
+    "precision": 18,
+    "color": "#060805",
+    "icon": "https://assets.coingecko.com/coins/images/30293/thumb/our_logo.png?1696529198",
+    "symbol": "PEPEAI",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x1ba8d3c4c219b124d351f603060663bd1bcd9bbf": {
+    "assetId": "eip155:56/bep20:0x1ba8d3c4c219b124d351f603060663bd1bcd9bbf",
+    "chainId": "eip155:56",
+    "name": "Tornado Cash on BNB Smart Chain",
+    "precision": 18,
+    "color": "#09100C",
+    "icon": "https://assets.coingecko.com/coins/images/13496/thumb/ZINt8NSB_400x400.jpg?1696513257",
+    "symbol": "TORN",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x1baadfd674c641149b0d5a39e697ec877ab47083": {
+    "assetId": "eip155:56/bep20:0x1baadfd674c641149b0d5a39e697ec877ab47083",
+    "chainId": "eip155:56",
+    "name": "CCGDS",
+    "precision": 18,
+    "color": "#0A2837",
+    "icon": "https://assets.coingecko.com/coins/images/29796/thumb/IMG_20230406_224552_782.jpg?1696528726",
+    "symbol": "CCGDS",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x1bb76a939d6b7f5be6b95c4f9f822b02b4d62ced": {
+    "assetId": "eip155:56/bep20:0x1bb76a939d6b7f5be6b95c4f9f822b02b4d62ced",
+    "chainId": "eip155:56",
+    "name": "POP Network on BNB Smart Chain",
+    "precision": 18,
+    "color": "#08B8CC",
+    "icon": "https://assets.coingecko.com/coins/images/7281/thumb/Logo_%28Light_Mode%29_%281%29.png?1696507572",
+    "symbol": "POP",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x1bd55090b8878630e57fae6ebd11fd61d16dfc9f": {
+    "assetId": "eip155:56/bep20:0x1bd55090b8878630e57fae6ebd11fd61d16dfc9f",
+    "chainId": "eip155:56",
+    "name": "ArchLoot on BNB Smart Chain",
+    "precision": 18,
+    "color": "#60E485",
+    "icon": "https://assets.coingecko.com/coins/images/28919/thumb/7.png?1696527894",
+    "symbol": "ALT",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x1bdaf9ddd7658d8049391971d1fd48c0484f66ec": {
+    "assetId": "eip155:56/bep20:0x1bdaf9ddd7658d8049391971d1fd48c0484f66ec",
+    "chainId": "eip155:56",
+    "name": "Cogito Protocol on BNB Smart Chain",
+    "precision": 6,
+    "color": "#C7CCCA",
+    "icon": "https://assets.coingecko.com/coins/images/30731/thumb/CGV.png?1698667079",
+    "symbol": "CGV",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x1bdd3cf7f79cfb8edbb955f20ad99211551ba275": {
+    "assetId": "eip155:56/bep20:0x1bdd3cf7f79cfb8edbb955f20ad99211551ba275",
+    "chainId": "eip155:56",
+    "name": "Stader BNBx",
+    "precision": 18,
+    "color": "#060504",
+    "icon": "https://assets.coingecko.com/coins/images/26842/thumb/BNBx_Logo.png?1696525902",
+    "symbol": "BNBX",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x1beac6df550be0ad146dd99b4726c6bec9c5c6a5": {
+    "assetId": "eip155:56/bep20:0x1beac6df550be0ad146dd99b4726c6bec9c5c6a5",
+    "chainId": "eip155:56",
+    "name": "Piggy",
+    "precision": 18,
+    "color": "#FAE1ED",
+    "icon": "https://assets.coingecko.com/coins/images/18869/thumb/200x200_piggy.png?1696518329",
+    "symbol": "PIGGY",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x1bec41a36356d5574aeb068b599ab7e48dd008b8": {
+    "assetId": "eip155:56/bep20:0x1bec41a36356d5574aeb068b599ab7e48dd008b8",
+    "chainId": "eip155:56",
+    "name": "DogeFood",
+    "precision": 9,
+    "color": "#19A2C8",
+    "icon": "https://assets.coingecko.com/coins/images/22475/thumb/LNbEc9.png?1696521799",
+    "symbol": "DOGEFOOD",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x1bf7aedec439d6bfe38f8f9b20cf3dc99e3571c4": {
+    "assetId": "eip155:56/bep20:0x1bf7aedec439d6bfe38f8f9b20cf3dc99e3571c4",
+    "chainId": "eip155:56",
+    "name": "TRONPAD",
+    "precision": 18,
+    "color": "#B4656F",
+    "icon": "https://assets.coingecko.com/coins/images/16066/thumb/weUUiy33_400x400.jpg?1696515675",
+    "symbol": "TRONPAD",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x1c2127b57c67481d53043abd9d801398c11e221a": {
+    "assetId": "eip155:56/bep20:0x1c2127b57c67481d53043abd9d801398c11e221a",
+    "chainId": "eip155:56",
+    "name": "TALKI",
+    "precision": 18,
+    "color": "#7644B7",
+    "icon": "https://assets.coingecko.com/coins/images/31787/thumb/20003OrPYBw_400x400_%281%29.jpg?1696530604",
+    "symbol": "TAL",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x1c25222994531c4ac35e4d94bbf7552c9aa92e32": {
+    "assetId": "eip155:56/bep20:0x1c25222994531c4ac35e4d94bbf7552c9aa92e32",
+    "chainId": "eip155:56",
+    "name": "Wrapped PKT",
+    "precision": 18,
+    "color": "#4CACE4",
+    "icon": "https://assets.coingecko.com/coins/images/19003/thumb/200x200wpkt-04.png?1696518456",
+    "symbol": "WPKT",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x1c2e57525cec4a791fedd360475d921f1911f104": {
+    "assetId": "eip155:56/bep20:0x1c2e57525cec4a791fedd360475d921f1911f104",
+    "chainId": "eip155:56",
+    "name": "World Pay Token",
+    "precision": 18,
+    "color": "#F2E2AE",
+    "icon": "https://assets.coingecko.com/coins/images/31672/thumb/IMG_20230612_143143_488_%281%29.png?1696530488",
+    "symbol": "WPAY",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x1c310cd730d36c0b34c36bd881cd3cbfac6f17e5": {
+    "assetId": "eip155:56/bep20:0x1c310cd730d36c0b34c36bd881cd3cbfac6f17e5",
+    "chainId": "eip155:56",
+    "name": "zkSVM",
+    "precision": 18,
+    "color": "#B5DECE",
+    "icon": "https://assets.coingecko.com/coins/images/29853/thumb/zkSVM_v.png?1696528779",
+    "symbol": "ZKSVM",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x1c5a65ededa96e7daf0715d978cc643184fbbd6c": {
+    "assetId": "eip155:56/bep20:0x1c5a65ededa96e7daf0715d978cc643184fbbd6c",
+    "chainId": "eip155:56",
+    "name": "Warrior Empires",
+    "precision": 18,
+    "color": "#653A31",
+    "icon": "https://assets.coingecko.com/coins/images/29237/thumb/Untitled_design_%2817%29.png?1696528194",
+    "symbol": "CHAOS",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x1c796c140de269e255372ea687ef7644bab87935": {
+    "assetId": "eip155:56/bep20:0x1c796c140de269e255372ea687ef7644bab87935",
+    "chainId": "eip155:56",
+    "name": "Demole",
+    "precision": 18,
+    "color": "#1F1D1D",
+    "icon": "https://assets.coingecko.com/coins/images/19195/thumb/dmlg.png?1696518643",
+    "symbol": "DMLG",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x1cc1aca0dae2d6c4a0e8ae7b4f2d01eabbc435ee": {
+    "assetId": "eip155:56/bep20:0x1cc1aca0dae2d6c4a0e8ae7b4f2d01eabbc435ee",
+    "chainId": "eip155:56",
+    "name": "StrongHands Finance on BNB Smart Chain",
+    "precision": 18,
+    "color": "#3DAB47",
+    "icon": "https://assets.coingecko.com/coins/images/20158/thumb/ISHND_512x512px.png?1696519571",
+    "symbol": "ISHND",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x1cdee2f21c066848a8a135e19f5f302ca29f1f69": {
+    "assetId": "eip155:56/bep20:0x1cdee2f21c066848a8a135e19f5f302ca29f1f69",
+    "chainId": "eip155:56",
+    "name": "Levolution on BNB Smart Chain",
+    "precision": 18,
+    "color": "#92929C",
+    "icon": "https://assets.coingecko.com/coins/images/7370/thumb/L_Icon_Blue_200x200.png?1696507652",
+    "symbol": "LEVL",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x1ce0c2827e2ef14d5c4f29a091d735a204794041": {
+    "assetId": "eip155:56/bep20:0x1ce0c2827e2ef14d5c4f29a091d735a204794041",
+    "chainId": "eip155:56",
+    "name": "Binance Peg Avalanche",
+    "precision": 18,
+    "color": "#EC4647",
+    "icon": "https://assets.coingecko.com/coins/images/18674/thumb/avax_logo_1.png?1696518143",
+    "symbol": "AVAX",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x1ce440d1a64eea6aa1db2a5aa51c9b326930957c": {
+    "assetId": "eip155:56/bep20:0x1ce440d1a64eea6aa1db2a5aa51c9b326930957c",
+    "chainId": "eip155:56",
+    "name": "A2DAO on BNB Smart Chain",
+    "precision": 18,
+    "color": "#94146C",
+    "icon": "https://assets.coingecko.com/coins/images/14509/thumb/Logo.jpg?1696514195",
+    "symbol": "ATD",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x1cfd6813a59d7b90c41dd5990ed99c3bf2eb8f55": {
+    "assetId": "eip155:56/bep20:0x1cfd6813a59d7b90c41dd5990ed99c3bf2eb8f55",
+    "chainId": "eip155:56",
+    "name": "The Corgi of PolkaBridge",
+    "precision": 18,
+    "color": "#C89F67",
+    "icon": "https://assets.coingecko.com/coins/images/16069/thumb/corbi.PNG?1696515678",
+    "symbol": "CORGIB",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x1d0ac23f03870f768ca005c84cbb6fb82aa884fd": {
+    "assetId": "eip155:56/bep20:0x1d0ac23f03870f768ca005c84cbb6fb82aa884fd",
+    "chainId": "eip155:56",
+    "name": "Galeon",
+    "precision": 18,
+    "color": "#CEECF6",
+    "icon": "https://assets.coingecko.com/coins/images/24261/thumb/Logo-Galeon-Coinmarketcap.png?1696523445",
+    "symbol": "GALEON",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x1d1cb8997570e73949930c01fe5796c88d7336c6": {
+    "assetId": "eip155:56/bep20:0x1d1cb8997570e73949930c01fe5796c88d7336c6",
+    "chainId": "eip155:56",
+    "name": "PolkaBridge on BNB Smart Chain",
+    "precision": 18,
+    "color": "#F48EC4",
+    "icon": "https://assets.coingecko.com/coins/images/13744/thumb/symbol-whitebg200x200.png?1696513488",
+    "symbol": "PBR",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x1d229b958d5ddfca92146585a8711aecbe56f095": {
+    "assetId": "eip155:56/bep20:0x1d229b958d5ddfca92146585a8711aecbe56f095",
+    "chainId": "eip155:56",
+    "name": "ZOO Crypto World",
+    "precision": 18,
+    "color": "#68AAFA",
+    "icon": "https://assets.coingecko.com/coins/images/17269/thumb/zoo.PNG?1696516824",
+    "symbol": "ZOO",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x1d27d2b52da2f93ae29aa69fbfe65e7087a2cbaa": {
+    "assetId": "eip155:56/bep20:0x1d27d2b52da2f93ae29aa69fbfe65e7087a2cbaa",
+    "chainId": "eip155:56",
+    "name": "Zeknd Superchain",
+    "precision": 18,
+    "color": "#646464",
+    "icon": "https://assets.coingecko.com/coins/images/30868/thumb/Zeknd_logo_%281%29.png?1696529715",
+    "symbol": "OPZEKND",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x1d2f0da169ceb9fc7b3144628db156f3f6c60dbe": {
+    "assetId": "eip155:56/bep20:0x1d2f0da169ceb9fc7b3144628db156f3f6c60dbe",
+    "chainId": "eip155:56",
+    "name": "Binance Peg XRP",
+    "precision": 18,
+    "color": "#F4F7F4",
+    "icon": "https://assets.coingecko.com/coins/images/15458/thumb/ryyrCapt_400x400.jpg?1696515105",
+    "symbol": "XRP",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x1d3437e570e93581bd94b2fd8fbf202d4a65654a": {
+    "assetId": "eip155:56/bep20:0x1d3437e570e93581bd94b2fd8fbf202d4a65654a",
+    "chainId": "eip155:56",
+    "name": "NanoByte on BNB Smart Chain",
+    "precision": 18,
+    "color": "#C8BCED",
+    "icon": "https://assets.coingecko.com/coins/images/23698/thumb/WpcmdLW.png?1696522899",
+    "symbol": "NBT",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x1d4268a58ee7ec2cc2af5d70a2fd2b3a896527a2": {
+    "assetId": "eip155:56/bep20:0x1d4268a58ee7ec2cc2af5d70a2fd2b3a896527a2",
+    "chainId": "eip155:56",
+    "name": "Arken Finance on BNB Smart Chain",
+    "precision": 18,
+    "color": "#FC8035",
+    "icon": "https://assets.coingecko.com/coins/images/26137/thumb/arken.png?1696525225",
+    "symbol": "ARKEN",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x1d6cbdc6b29c6afbae65444a1f65ba9252b8ca83": {
+    "assetId": "eip155:56/bep20:0x1d6cbdc6b29c6afbae65444a1f65ba9252b8ca83",
+    "chainId": "eip155:56",
+    "name": "TOR",
+    "precision": 18,
+    "color": "#ECDBC9",
+    "icon": "https://assets.coingecko.com/coins/images/23609/thumb/tor.png?1696522816",
+    "symbol": "TOR",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x1d84850c9716c5130b114f0795a4552036b55bd4": {
+    "assetId": "eip155:56/bep20:0x1d84850c9716c5130b114f0795a4552036b55bd4",
+    "chainId": "eip155:56",
+    "name": "Anubit",
+    "precision": 18,
+    "color": "#83BEF4",
+    "icon": "https://assets.coingecko.com/coins/images/28773/thumb/anubit-200px.png?1696527752",
+    "symbol": "ANB",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x1d8dee9cb6fb142ea4d9df025cc31461c129aa19": {
+    "assetId": "eip155:56/bep20:0x1d8dee9cb6fb142ea4d9df025cc31461c129aa19",
+    "chainId": "eip155:56",
+    "name": "MemesHub",
+    "precision": 9,
+    "color": "#2A2A24",
+    "icon": "https://assets.coingecko.com/coins/images/32076/thumb/B5715FCA-B040-48C4-B027-56214CCCE1E0.jpeg?1696530873",
+    "symbol": "MHT",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x1d8e589379cf74a276952b56856033ad0d489fb3": {
+    "assetId": "eip155:56/bep20:0x1d8e589379cf74a276952b56856033ad0d489fb3",
+    "chainId": "eip155:56",
+    "name": "MilkAI on BNB Smart Chain",
+    "precision": 18,
+    "color": "#45402F",
+    "icon": "https://assets.coingecko.com/coins/images/29055/thumb/MilkAI.jpeg?1696528022",
+    "symbol": "MILKAI",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x1da87b114f35e1dc91f72bf57fc07a768ad40bb0": {
+    "assetId": "eip155:56/bep20:0x1da87b114f35e1dc91f72bf57fc07a768ad40bb0",
+    "chainId": "eip155:56",
+    "name": "Equalizer on BNB Smart Chain",
+    "precision": 18,
+    "color": "#121654",
+    "icon": "https://assets.coingecko.com/coins/images/14741/thumb/X2p5mb2f_400x400.png?1696514410",
+    "symbol": "EQZ",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x1dacbcd9b3fc2d6a341dca3634439d12bc71ca4d": {
+    "assetId": "eip155:56/bep20:0x1dacbcd9b3fc2d6a341dca3634439d12bc71ca4d",
+    "chainId": "eip155:56",
+    "name": "Bovineverse BVT",
+    "precision": 18,
+    "color": "#9C24DC",
+    "icon": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAIAAAACACAMAAAD04JH5AAADAFBMVEUtN0idJtj///8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATv2OOAAABAHRSTlP/////AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAf6K/dgAAQItJREFUeNoBgEB/vwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAgICAgICAgICAgICAgICAgICAgICAQEBAQEBAQEBAQEBAQECAgICAgICAAAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgEBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgAAAAAAAAAAAAACAgICAgICAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMAAAAAAAAAAAACAgICAgICAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMAAAAAAAAAAAACAgICAgICAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMAAAAAAAAAAAACAgICAgICAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMAAAAAAAAAAAACAgICAgICAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMAAAAAAAAAAAACAgICAgICAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMAAAAAAAAAAAACAgICAgICAwMDAwMDAwMDAwMDAwMDAwMDAwMDAgICAgICAgEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQEBAwMDAwMDAwMDAwMDAwICAgICAgIDAwMDAwMDAwMDAwMDAwMAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAgICAgICAgICAgICAgICAgICAgICAQMDAwMDAwMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwMDAwMDAwMDAwMDAwMDAwMDAwMDAgICAgICAgEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAACAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAgICAgICAgMAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAwMDAwMDAgICAgICAgAAAAAAAAACAgICAgICAAMDAwMDAwMAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAAAAAAAAgICAgICAgMAAAAAAAACAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAAAAAAAAgICAgICAgMAAAAAAAACAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAAAAAAAAgICAgICAgMAAAAAAAACAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAAAAAAAAgICAgICAgMAAAAAAAACAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAAAAAAAAgICAgICAgMAAAAAAAACAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAAAAAAAAgICAgICAgMAAAAAAAACAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAgICAgICAgICAgICAgICAgICAgICAAMDAwMDAwMAAAAAAAAAAAAAAAAAAAMDAwMDAwICAgICAgIAAwMDAwMDAwAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAgICAgICAgICAgICAgICAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAICAgICAgIDAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAgICAgICAgICAgICAgICAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAICAgICAgIDAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAgICAgICAgICAgICAgICAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAICAgICAgIDAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAgICAgICAgICAgICAgICAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAICAgICAgIDAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAgICAgICAgICAgICAgICAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAICAgICAgIDAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAgICAgICAgICAgICAgICAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAICAgICAgIDAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADAwMDAwMDAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEDAwMDAwMDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOp5LRYib5c4AAAAAElFTkSuQmCC",
+    "symbol": "BVT",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x1dc84fc11e48ae640d48044f22a603bbe914a612": {
+    "assetId": "eip155:56/bep20:0x1dc84fc11e48ae640d48044f22a603bbe914a612",
+    "chainId": "eip155:56",
+    "name": "LocalTrade",
+    "precision": 9,
+    "color": "#1C242E",
+    "icon": "https://assets.coingecko.com/coins/images/22838/thumb/odbAFHBFZOoBqBWusCYcMjubLI8GJOArvJtuAWzDBRw3bZf2vRmJogFe1sOaIKfGtQmLTcRSzSDskopEHk3Gkpq6gYmE4IPJjMTxAppDTH4s7878Ht-LjC-ejUOD6krZ55SvvZtyZSfiZoxPE_aQGO62-m_B2tpQrFXlJk4orXx49TP-ggeZ8pc3-3j97fRqDegEm1F89eq3gL.jpg?1696522139",
+    "symbol": "LTT",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x1e2c4fb7ede391d116e6b41cd0608260e8801d59": {
+    "assetId": "eip155:56/bep20:0x1e2c4fb7ede391d116e6b41cd0608260e8801d59",
+    "chainId": "eip155:56",
+    "name": "Backed CSPX Core S P 500 on BNB Smart Chain",
+    "precision": 18,
+    "color": "#CCCCD2",
+    "icon": "https://assets.coingecko.com/coins/images/31891/thumb/b-CSPX-200x200.png?1696530702",
+    "symbol": "BCSPX",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x1e30bbee322b3b11c60cb434a47f1605c2a99483": {
+    "assetId": "eip155:56/bep20:0x1e30bbee322b3b11c60cb434a47f1605c2a99483",
+    "chainId": "eip155:56",
+    "name": "AIEarn",
+    "precision": 18,
+    "color": "#EFF2F4",
+    "icon": "https://assets.coingecko.com/coins/images/31985/thumb/AIE.jpg?1696530788",
+    "symbol": "AIE",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x1e3c6c53f9f60bf8aae0d7774c21fa6b1afddc57": {
+    "assetId": "eip155:56/bep20:0x1e3c6c53f9f60bf8aae0d7774c21fa6b1afddc57",
+    "chainId": "eip155:56",
+    "name": "xShrap on BNB Smart Chain",
+    "precision": 18,
+    "color": "#0474E2",
+    "icon": "https://assets.coingecko.com/coins/images/29346/thumb/xshrapnel.png?1696528295",
+    "symbol": "XSHRAP",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x1e446cbea52badeb614fbe4ab7610f737995fb44": {
+    "assetId": "eip155:56/bep20:0x1e446cbea52badeb614fbe4ab7610f737995fb44",
+    "chainId": "eip155:56",
+    "name": "Saturna",
+    "precision": 9,
+    "color": "#CF59BE",
+    "icon": "https://assets.coingecko.com/coins/images/15545/thumb/dkejn0.png?1696515186",
+    "symbol": "SAT",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x1e553688199d99d063c0300a12395f7cfedb03e1": {
+    "assetId": "eip155:56/bep20:0x1e553688199d99d063c0300a12395f7cfedb03e1",
+    "chainId": "eip155:56",
+    "name": "REDANCOIN on BNB Smart Chain",
+    "precision": 8,
+    "color": "#245C94",
+    "icon": "https://assets.coingecko.com/coins/images/8292/thumb/REDAN.png?1696508493",
+    "symbol": "REDAN",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x1e7e0efb87e609b87f12f1cea1dac48569da2328": {
+    "assetId": "eip155:56/bep20:0x1e7e0efb87e609b87f12f1cea1dac48569da2328",
+    "chainId": "eip155:56",
+    "name": "Matic Launchpad",
+    "precision": 18,
+    "color": "#090606",
+    "icon": "https://assets.coingecko.com/coins/images/24421/thumb/ILN63o4w_400x400.jpg?1696523603",
+    "symbol": "MATICPAD",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x1e8150ea46e2a7fbb795459198fbb4b35715196c": {
+    "assetId": "eip155:56/bep20:0x1e8150ea46e2a7fbb795459198fbb4b35715196c",
+    "chainId": "eip155:56",
+    "name": "Shih Tzu on BNB Smart Chain",
+    "precision": 18,
+    "color": "#80503A",
+    "icon": "https://assets.coingecko.com/coins/images/15309/thumb/shit.PNG?1696514959",
+    "symbol": "SHIH",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x1eaffd6b9ef0f45d663f3fbf402226c98609600e": {
+    "assetId": "eip155:56/bep20:0x1eaffd6b9ef0f45d663f3fbf402226c98609600e",
+    "chainId": "eip155:56",
+    "name": "Storepay",
+    "precision": 18,
+    "color": "#0D54E4",
+    "icon": "https://assets.coingecko.com/coins/images/28601/thumb/spc.png?1696527587",
+    "symbol": "SPC",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x1ebc21f65ffed4836e51b9c5d680b28c01ed0e8d": {
+    "assetId": "eip155:56/bep20:0x1ebc21f65ffed4836e51b9c5d680b28c01ed0e8d",
+    "chainId": "eip155:56",
+    "name": "NeoCortexAI",
+    "precision": 18,
+    "color": "#040404",
+    "icon": "https://assets.coingecko.com/coins/images/31111/thumb/NCORAI.jpg?1696529941",
+    "symbol": "NCORAI",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x1ee098cbaf1f846d5df1993f7e2d10afb35a878d": {
+    "assetId": "eip155:56/bep20:0x1ee098cbaf1f846d5df1993f7e2d10afb35a878d",
+    "chainId": "eip155:56",
+    "name": "Sable",
+    "precision": 18,
+    "color": "#E5E5DE",
+    "icon": "https://assets.coingecko.com/coins/images/30989/thumb/SableFinance_Coin-08.png?1696529827",
+    "symbol": "SABLE",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x1ef72a1df5e4d165f84fc43b20d56caa7dad46e1": {
+    "assetId": "eip155:56/bep20:0x1ef72a1df5e4d165f84fc43b20d56caa7dad46e1",
+    "chainId": "eip155:56",
+    "name": "AMMYI Coin",
+    "precision": 18,
+    "color": "#846C3C",
+    "icon": "https://assets.coingecko.com/coins/images/14469/thumb/AMMYI.png?1696514155",
+    "symbol": "AMI",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x1f1c90aeb2fd13ea972f0a71e35c0753848e3db0": {
+    "assetId": "eip155:56/bep20:0x1f1c90aeb2fd13ea972f0a71e35c0753848e3db0",
+    "chainId": "eip155:56",
+    "name": "Cheelee",
+    "precision": 18,
+    "color": "#CF140E",
+    "icon": "https://assets.coingecko.com/coins/images/28573/thumb/CHEEL_%D1%82%D0%BE%D0%BD%D0%BA%D0%B0%D1%8F_%D0%BE%D0%B1%D0%B2%D0%BE%D0%B4%D0%BA%D0%B0_%283%29.png?1696527561",
+    "symbol": "CHEEL",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x1f36fb2d91d9951cf58ae4c1956c0b77e224f1e9": {
+    "assetId": "eip155:56/bep20:0x1f36fb2d91d9951cf58ae4c1956c0b77e224f1e9",
+    "chainId": "eip155:56",
+    "name": "VCGamers on BNB Smart Chain",
+    "precision": 18,
+    "color": "#F5BC16",
+    "icon": "https://assets.coingecko.com/coins/images/22371/thumb/VCG-Token-Logo-PNG.png?1696521714",
+    "symbol": "VCG",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x1f39dd2bf5a27e2d4ed691dcf933077371777cb0": {
+    "assetId": "eip155:56/bep20:0x1f39dd2bf5a27e2d4ed691dcf933077371777cb0",
+    "chainId": "eip155:56",
+    "name": "SnowCrash",
+    "precision": 18,
+    "color": "#D3CCE3",
+    "icon": "https://assets.coingecko.com/coins/images/17993/thumb/Nora-200x200.png?1696517510",
+    "symbol": "NORA",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x1f3af095cda17d63cad238358837321e95fc5915": {
+    "assetId": "eip155:56/bep20:0x1f3af095cda17d63cad238358837321e95fc5915",
+    "chainId": "eip155:56",
+    "name": "Mint Club",
+    "precision": 18,
+    "color": "#161917",
+    "icon": "https://assets.coingecko.com/coins/images/17174/thumb/mint.PNG?1696516732",
+    "symbol": "MINT",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x1f534d2b1ee2933f1fdf8e4b63a44b2249d77eaf": {
+    "assetId": "eip155:56/bep20:0x1f534d2b1ee2933f1fdf8e4b63a44b2249d77eaf",
+    "chainId": "eip155:56",
+    "name": "0 exchange on BNB Smart Chain",
+    "precision": 18,
+    "color": "#181F2D",
+    "icon": "https://assets.coingecko.com/coins/images/13706/thumb/0.exchange_%28logo%29.jpg?1696513452",
+    "symbol": "ZERO",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x1f76aadeaba6a6a39fae849c20c5c5638058b4c2": {
+    "assetId": "eip155:56/bep20:0x1f76aadeaba6a6a39fae849c20c5c5638058b4c2",
+    "chainId": "eip155:56",
+    "name": "TrumpCEO",
+    "precision": 9,
+    "color": "#383444",
+    "icon": "https://assets.coingecko.com/coins/images/29942/thumb/492AE6EA-453A-460E-B2CC-84C2D55D9D9C.png?1696528869",
+    "symbol": "TRUMPCEO",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x1f7e8fe01aeba6fdaea85161746f4d53dc9bda4f": {
+    "assetId": "eip155:56/bep20:0x1f7e8fe01aeba6fdaea85161746f4d53dc9bda4f",
+    "chainId": "eip155:56",
+    "name": "GGTKN",
+    "precision": 18,
+    "color": "#34CCFC",
+    "icon": "https://assets.coingecko.com/coins/images/26275/thumb/ggtokenofficiallogo.png?1696525358",
+    "symbol": "GGTKN",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x1f88e9956c8f8f64c8d5fef5ed8a818e2237112c": {
+    "assetId": "eip155:56/bep20:0x1f88e9956c8f8f64c8d5fef5ed8a818e2237112c",
+    "chainId": "eip155:56",
+    "name": "YouCoin",
+    "precision": 18,
+    "color": "#5EB496",
+    "icon": "https://assets.coingecko.com/coins/images/29841/thumb/ucoin.jpg?1696528768",
+    "symbol": "UCON",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x1fa4a73a3f0133f0025378af00236f3abdee5d63": {
+    "assetId": "eip155:56/bep20:0x1fa4a73a3f0133f0025378af00236f3abdee5d63",
+    "chainId": "eip155:56",
+    "name": "Wrapped Near",
+    "precision": 18,
+    "color": "#1E1E1E",
+    "icon": "https://assets.coingecko.com/coins/images/18280/thumb/EX4mrWMW_400x400.jpg?1696517773",
+    "symbol": "WNEAR",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x1fc71fe3e333d5262828f3d348c12c7e52306b8a": {
+    "assetId": "eip155:56/bep20:0x1fc71fe3e333d5262828f3d348c12c7e52306b8a",
+    "chainId": "eip155:56",
+    "name": "Glory Token",
+    "precision": 18,
+    "color": "#F4BC94",
+    "icon": "https://assets.coingecko.com/coins/images/29854/thumb/Logo_icon_200x200.png?1696528780",
+    "symbol": "GLR",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x1fd991fb6c3102873ba68a4e6e6a87b3a5c10271": {
+    "assetId": "eip155:56/bep20:0x1fd991fb6c3102873ba68a4e6e6a87b3a5c10271",
+    "chainId": "eip155:56",
+    "name": "Atlantis Loans",
+    "precision": 18,
+    "color": "#147CEC",
+    "icon": "https://assets.coingecko.com/coins/images/19362/thumb/atl.png?1696518802",
+    "symbol": "ATL",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x1ffd0b47127fdd4097e54521c9e2c7f0d66aafc5": {
+    "assetId": "eip155:56/bep20:0x1ffd0b47127fdd4097e54521c9e2c7f0d66aafc5",
+    "chainId": "eip155:56",
+    "name": "Autobahn Network on BNB Smart Chain",
+    "precision": 18,
+    "color": "#5176ED",
+    "icon": "https://assets.coingecko.com/coins/images/12432/thumb/txl.png?1696512252",
+    "symbol": "TXL",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x2002f7c235fedc8acbfbbf0479527eb59d8f5dc7": {
+    "assetId": "eip155:56/bep20:0x2002f7c235fedc8acbfbbf0479527eb59d8f5dc7",
+    "chainId": "eip155:56",
+    "name": "LuckyCoin",
+    "precision": 8,
+    "color": "#47443D",
+    "icon": "https://assets.coingecko.com/coins/images/32460/thumb/lkc.jpg?1698241877",
+    "symbol": "LKC",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x200c234721b5e549c3693ccc93cf191f90dc2af9": {
+    "assetId": "eip155:56/bep20:0x200c234721b5e549c3693ccc93cf191f90dc2af9",
+    "chainId": "eip155:56",
+    "name": "Drunk Robots on BNB Smart Chain",
+    "precision": 18,
+    "color": "#B6B6B6",
+    "icon": "https://assets.coingecko.com/coins/images/24376/thumb/metal.png?1696523559",
+    "symbol": "METAL",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x201bc9f242f74c47bbd898a5dc99cdcd81a21943": {
+    "assetId": "eip155:56/bep20:0x201bc9f242f74c47bbd898a5dc99cdcd81a21943",
+    "chainId": "eip155:56",
+    "name": "IguVerse IGU",
+    "precision": 18,
+    "color": "#04CDD4",
+    "icon": "https://assets.coingecko.com/coins/images/29112/thumb/IGU_500x500.png?1696528074",
+    "symbol": "IGU",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x20300079735163a58d9e9512d05ea1ed8d8fa87c": {
+    "assetId": "eip155:56/bep20:0x20300079735163a58d9e9512d05ea1ed8d8fa87c",
+    "chainId": "eip155:56",
+    "name": "World AI",
+    "precision": 18,
+    "color": "#2E2E2F",
+    "icon": "https://assets.coingecko.com/coins/images/32228/thumb/WORLDAI.jpg?1696931789",
+    "symbol": "WORLDAI",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x205afd08cefe438377a0abc5a20cb4462e1a8c5c": {
+    "assetId": "eip155:56/bep20:0x205afd08cefe438377a0abc5a20cb4462e1a8c5c",
+    "chainId": "eip155:56",
+    "name": "OBRok",
+    "precision": 9,
+    "color": "#5B4695",
+    "icon": "https://assets.coingecko.com/coins/images/22078/thumb/logo_-_2021-12-29T130335.005.png?1696521422",
+    "symbol": "OBROK",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x20b4620a767d6dccbb9314104d5cf0d08d1f7045": {
+    "assetId": "eip155:56/bep20:0x20b4620a767d6dccbb9314104d5cf0d08d1f7045",
+    "chainId": "eip155:56",
+    "name": "Kilopi",
+    "precision": 6,
+    "color": "#DCECF0",
+    "icon": "https://assets.coingecko.com/coins/images/29496/thumb/logo_kilopi_200sq.png?1696528442",
+    "symbol": "LOP",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x20c64dee8fda5269a78f2d5bdba861ca1d83df7a": {
+    "assetId": "eip155:56/bep20:0x20c64dee8fda5269a78f2d5bdba861ca1d83df7a",
+    "chainId": "eip155:56",
+    "name": "Backed HIGH   High Yield Corp Bond on BNB Smart Chain",
+    "precision": 18,
+    "color": "#474C57",
+    "icon": "https://assets.coingecko.com/coins/images/31868/thumb/b-HIGH-200x200.png?1696530680",
+    "symbol": "BHIGH",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x20d39a5130f799b95b55a930e5b7ebc589ea9ed8": {
+    "assetId": "eip155:56/bep20:0x20d39a5130f799b95b55a930e5b7ebc589ea9ed8",
+    "chainId": "eip155:56",
+    "name": "Heroes   Empires",
+    "precision": 18,
+    "color": "#EAB40E",
+    "icon": "https://assets.coingecko.com/coins/images/18903/thumb/he.png?1696518361",
+    "symbol": "HE",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x20dd734594dadc69df313cd143b34a70a3d9214e": {
+    "assetId": "eip155:56/bep20:0x20dd734594dadc69df313cd143b34a70a3d9214e",
+    "chainId": "eip155:56",
+    "name": "Origen DEFI",
+    "precision": 18,
+    "color": "#E6E6E6",
+    "icon": "https://assets.coingecko.com/coins/images/29561/thumb/200x200.png?1696528501",
+    "symbol": "ORIGEN",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x20de22029ab63cf9a7cf5feb2b737ca1ee4c82a6": {
+    "assetId": "eip155:56/bep20:0x20de22029ab63cf9a7cf5feb2b737ca1ee4c82a6",
+    "chainId": "eip155:56",
+    "name": "Tranchess",
+    "precision": 18,
+    "color": "#242424",
+    "icon": "https://assets.coingecko.com/coins/images/16964/thumb/logo_transparent_bg_200x200.png?1696516530",
+    "symbol": "CHESS",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x20ee7b720f4e4c4ffcb00c4065cdae55271aecca": {
+    "assetId": "eip155:56/bep20:0x20ee7b720f4e4c4ffcb00c4065cdae55271aecca",
+    "chainId": "eip155:56",
+    "name": "APENFT on BNB Smart Chain",
+    "precision": 6,
+    "color": "#C8C8C8",
+    "icon": "https://assets.coingecko.com/coins/images/15687/thumb/apenft.jpg?1696515316",
+    "symbol": "NFT",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x20f663cea80face82acdfa3aae6862d246ce0333": {
+    "assetId": "eip155:56/bep20:0x20f663cea80face82acdfa3aae6862d246ce0333",
+    "chainId": "eip155:56",
+    "name": "Drip Network",
+    "precision": 18,
+    "color": "#33A2DC",
+    "icon": "https://assets.coingecko.com/coins/images/21340/thumb/11093.png?1696520707",
+    "symbol": "DRIP",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x21004b11939359e7e962db6675d56f50353df29c": {
+    "assetId": "eip155:56/bep20:0x21004b11939359e7e962db6675d56f50353df29c",
+    "chainId": "eip155:56",
+    "name": "EternalFlow",
+    "precision": 18,
+    "color": "#313FAF",
+    "icon": "https://assets.coingecko.com/coins/images/21536/thumb/EFTLogoWP.png?1696520895",
+    "symbol": "EFT",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x211fa9e7e390c29b0ab1a9248949a0ab716c4154": {
+    "assetId": "eip155:56/bep20:0x211fa9e7e390c29b0ab1a9248949a0ab716c4154",
+    "chainId": "eip155:56",
+    "name": "Mother of Memes",
+    "precision": 9,
+    "color": "#EDF0F0",
+    "icon": "https://assets.coingecko.com/coins/images/22388/thumb/bQ1PGpaR_400x400.jpg?1696521732",
+    "symbol": "MOM",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x211ffbe424b90e25a15531ca322adf1559779e45": {
+    "assetId": "eip155:56/bep20:0x211ffbe424b90e25a15531ca322adf1559779e45",
+    "chainId": "eip155:56",
+    "name": "BUX",
+    "precision": 18,
+    "color": "#96E4C4",
+    "icon": "https://assets.coingecko.com/coins/images/2316/thumb/BUXC.png?1696503204",
+    "symbol": "BUX",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x2136cd209bb3d8e4c008ec2791b5d6790b5e33a9": {
+    "assetId": "eip155:56/bep20:0x2136cd209bb3d8e4c008ec2791b5d6790b5e33a9",
+    "chainId": "eip155:56",
+    "name": "Able Finance",
+    "precision": 8,
+    "color": "#04CC65",
+    "icon": "https://assets.coingecko.com/coins/images/17819/thumb/aac9bfb0-f27f-48f3-9b3e-ec090e10d3e1.png?1696517339",
+    "symbol": "ABLE",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x213fd3c787b6c452f50fd91f14e12ddf04a7ab4a": {
+    "assetId": "eip155:56/bep20:0x213fd3c787b6c452f50fd91f14e12ddf04a7ab4a",
+    "chainId": "eip155:56",
+    "name": "ZodiacsV2",
+    "precision": 18,
+    "color": "#1D192D",
+    "icon": "https://assets.coingecko.com/coins/images/22589/thumb/LUl0lEMr_400x400.jpg?1696521907",
+    "symbol": "ZDCV2",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x2167afa1c658dc5c4ec975f4af608ff075a8b8ae": {
+    "assetId": "eip155:56/bep20:0x2167afa1c658dc5c4ec975f4af608ff075a8b8ae",
+    "chainId": "eip155:56",
+    "name": "Evai",
+    "precision": 8,
+    "color": "#1AEFFC",
+    "icon": "https://assets.coingecko.com/coins/images/25313/thumb/EVAI_LOGO.png?1696524450",
+    "symbol": "EV",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x2170ed0880ac9a755fd29b2688956bd959f933f8": {
+    "assetId": "eip155:56/bep20:0x2170ed0880ac9a755fd29b2688956bd959f933f8",
+    "chainId": "eip155:56",
+    "name": "WETH on BNB Smart Chain",
+    "precision": 18,
+    "color": "#393838",
+    "icon": "https://assets.coingecko.com/coins/images/2518/thumb/weth.png?1696503332",
+    "symbol": "WETH",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x2189455051a1c1e6190276f84f73ec6fb2fe62df": {
+    "assetId": "eip155:56/bep20:0x2189455051a1c1e6190276f84f73ec6fb2fe62df",
+    "chainId": "eip155:56",
+    "name": "BitConey",
+    "precision": 8,
+    "color": "#C4D1D4",
+    "icon": "https://assets.coingecko.com/coins/images/28672/thumb/BITCONEY_TOKEN_LOGO-200x200.png?1696527656",
+    "symbol": "BITCONEY",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x21adb1c644663069e83059ac3f9d9ca1133d29e4": {
+    "assetId": "eip155:56/bep20:0x21adb1c644663069e83059ac3f9d9ca1133d29e4",
+    "chainId": "eip155:56",
+    "name": "Eggplant Finance",
+    "precision": 18,
+    "color": "#671D78",
+    "icon": "https://assets.coingecko.com/coins/images/15481/thumb/eggp.png?1696515126",
+    "symbol": "EGGP",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x21c7e9ed228242dfd527f456dbf66fee2af67e31": {
+    "assetId": "eip155:56/bep20:0x21c7e9ed228242dfd527f456dbf66fee2af67e31",
+    "chainId": "eip155:56",
+    "name": "CriptoVille Coins 2",
+    "precision": 18,
+    "color": "#0F2B42",
+    "icon": "https://assets.coingecko.com/coins/images/28614/thumb/cvlc2.png?1696527599",
+    "symbol": "CVLC2",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x21d5fa5ecf2605c0e835ae054af9bba0468e5951": {
+    "assetId": "eip155:56/bep20:0x21d5fa5ecf2605c0e835ae054af9bba0468e5951",
+    "chainId": "eip155:56",
+    "name": "Trava Capital",
+    "precision": 9,
+    "color": "#0A9DBD",
+    "icon": "https://assets.coingecko.com/coins/images/24270/thumb/Logo_Travacapitai_4x.png?1696523453",
+    "symbol": "TOD",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x21f1ce0fcf1e9e39f8e79b7762801e8096d9f6cd": {
+    "assetId": "eip155:56/bep20:0x21f1ce0fcf1e9e39f8e79b7762801e8096d9f6cd",
+    "chainId": "eip155:56",
+    "name": "BCPAY FinTech",
+    "precision": 8,
+    "color": "#EFF9F2",
+    "icon": "https://assets.coingecko.com/coins/images/18342/thumb/bcpay.jpg?1696517832",
+    "symbol": "BCPAY",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x220e6a613f00c79025d5611b73639e045b186ff8": {
+    "assetId": "eip155:56/bep20:0x220e6a613f00c79025d5611b73639e045b186ff8",
+    "chainId": "eip155:56",
+    "name": "Dhabicoin",
+    "precision": 18,
+    "color": "#958251",
+    "icon": "https://assets.coingecko.com/coins/images/22803/thumb/Ia0yVef.png?1696522106",
+    "symbol": "DBC",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x22168882276e5d5e1da694343b41dd7726eeb288": {
+    "assetId": "eip155:56/bep20:0x22168882276e5d5e1da694343b41dd7726eeb288",
+    "chainId": "eip155:56",
+    "name": "WallStreetBets DApp on BNB Smart Chain",
+    "precision": 18,
+    "color": "#BD95A2",
+    "icon": "https://assets.coingecko.com/coins/images/15093/thumb/Pe1mrDu.png?1696514751",
+    "symbol": "WSB",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x2222227e22102fe3322098e4cbfe18cfebd57c95": {
+    "assetId": "eip155:56/bep20:0x2222227e22102fe3322098e4cbfe18cfebd57c95",
+    "chainId": "eip155:56",
+    "name": "Alien Worlds on BNB Smart Chain",
+    "precision": 4,
+    "color": "#574877",
+    "icon": "https://assets.coingecko.com/coins/images/14676/thumb/kY-C4o7RThfWrDQsLCAG4q4clZhBDDfJQVhWUEKxXAzyQYMj4Jmq1zmFwpRqxhAJFPOa0AsW_PTSshoPuMnXNwq3rU7Imp15QimXTjlXMx0nC088mt1rIwRs75GnLLugWjSllxgzvQ9YrP4tBgclK4_rb17hjnusGj_c0u2fx0AvVokjSNB-v2poTj0xT9BZRCbzRE3-lF1.jpg?1696514350",
+    "symbol": "TLM",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x222cf80a8514f8ce551c06d1b8d01db3678688ad": {
+    "assetId": "eip155:56/bep20:0x222cf80a8514f8ce551c06d1b8d01db3678688ad",
+    "chainId": "eip155:56",
+    "name": "SpaceDawgs on BNB Smart Chain",
+    "precision": 9,
+    "color": "#1F2D3F",
+    "icon": "https://assets.coingecko.com/coins/images/17076/thumb/twitter-facebook-Instagram-pfp.png?1696516638",
+    "symbol": "DAWGS",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x2235e79086dd23135119366da45851c741874e5b": {
+    "assetId": "eip155:56/bep20:0x2235e79086dd23135119366da45851c741874e5b",
+    "chainId": "eip155:56",
+    "name": "Credefi on BNB Smart Chain",
+    "precision": 18,
+    "color": "#234579",
+    "icon": "https://assets.coingecko.com/coins/images/21396/thumb/e1QbZ4qQ_400x400.jpg?1696520760",
+    "symbol": "CREDI",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x22517fa2a5341453f1f9ebd5ecb8620a90dc8e4b": {
+    "assetId": "eip155:56/bep20:0x22517fa2a5341453f1f9ebd5ecb8620a90dc8e4b",
+    "chainId": "eip155:56",
+    "name": "Vanilla Network",
+    "precision": 18,
+    "color": "#E0E0DD",
+    "icon": "https://assets.coingecko.com/coins/images/13223/thumb/vanilla_network_logo.jpeg?1696513002",
+    "symbol": "VNLA",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x22648c12acd87912ea1710357b1302c6a4154ebc": {
+    "assetId": "eip155:56/bep20:0x22648c12acd87912ea1710357b1302c6a4154ebc",
+    "chainId": "eip155:56",
+    "name": "XAYA on BNB Smart Chain",
+    "precision": 8,
+    "color": "#EC2824",
+    "icon": "https://assets.coingecko.com/coins/images/2091/thumb/xaya200x200.png?1696503058",
+    "symbol": "WCHI",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x227a3ef4d41d0215123f3197faa087bf71d2236a": {
+    "assetId": "eip155:56/bep20:0x227a3ef4d41d0215123f3197faa087bf71d2236a",
+    "chainId": "eip155:56",
+    "name": "Space Corsair Key",
+    "precision": 18,
+    "color": "#20ACCB",
+    "icon": "https://assets.coingecko.com/coins/images/24371/thumb/sck.png?1696523555",
+    "symbol": "SCK",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x2290c6bd9560e6498dfdf10f9ecb17997ca131f2": {
+    "assetId": "eip155:56/bep20:0x2290c6bd9560e6498dfdf10f9ecb17997ca131f2",
+    "chainId": "eip155:56",
+    "name": "Monsterra on BNB Smart Chain",
+    "precision": 18,
+    "color": "#F7DB87",
+    "icon": "https://assets.coingecko.com/coins/images/24377/thumb/MSTR.png?1696523560",
+    "symbol": "MSTR",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x22965477be64bc6ce4b2b1053210d6e99b444768": {
+    "assetId": "eip155:56/bep20:0x22965477be64bc6ce4b2b1053210d6e99b444768",
+    "chainId": "eip155:56",
+    "name": "CRYPTO STREET V2",
+    "precision": 18,
+    "color": "#31A792",
+    "icon": "https://assets.coingecko.com/coins/images/32049/thumb/CSTLOGOFINAL.png?1696530846",
+    "symbol": "CSTV2",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x22a213852cee93eb6d41601133414d180c5684c2": {
+    "assetId": "eip155:56/bep20:0x22a213852cee93eb6d41601133414d180c5684c2",
+    "chainId": "eip155:56",
+    "name": "0xMonero on BNB Smart Chain",
+    "precision": 18,
+    "color": "#54FCDC",
+    "icon": "https://assets.coingecko.com/coins/images/11035/thumb/0xmnr.PNG?1696510979",
+    "symbol": "0XMR",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x22d8a55d029a6a6fdcb1e205df3db496933dcf8d": {
+    "assetId": "eip155:56/bep20:0x22d8a55d029a6a6fdcb1e205df3db496933dcf8d",
+    "chainId": "eip155:56",
+    "name": "The Real World",
+    "precision": 18,
+    "color": "#3E3631",
+    "icon": "https://assets.coingecko.com/coins/images/32486/thumb/TRW.jpg?1698291845",
+    "symbol": "TRW",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x22fda23aed456f2de139c6240f0776ef031c8b6b": {
+    "assetId": "eip155:56/bep20:0x22fda23aed456f2de139c6240f0776ef031c8b6b",
+    "chainId": "eip155:56",
+    "name": "Demeter USD",
+    "precision": 18,
+    "color": "#6D5DD4",
+    "icon": "https://assets.coingecko.com/coins/images/18459/thumb/DUSD-200.png?1696517946",
+    "symbol": "DUSD",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x23125108bc4c63e4677b2e253fa498ccb4b3298b": {
+    "assetId": "eip155:56/bep20:0x23125108bc4c63e4677b2e253fa498ccb4b3298b",
+    "chainId": "eip155:56",
+    "name": "Buff Doge Coin",
+    "precision": 9,
+    "color": "#BD9E3F",
+    "icon": "https://assets.coingecko.com/coins/images/18516/thumb/BUFF_KOIN.png?1696517997",
+    "symbol": "DOGECOIN",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x232fb065d9d24c34708eedbf03724f2e95abe768": {
+    "assetId": "eip155:56/bep20:0x232fb065d9d24c34708eedbf03724f2e95abe768",
+    "chainId": "eip155:56",
+    "name": "Sheesha Finance  BEP20 ",
+    "precision": 18,
+    "color": "#6A84D2",
+    "icon": "https://assets.coingecko.com/coins/images/15105/thumb/MLBmh4z0.png?1696514763",
+    "symbol": "SHEESHA",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x23316e6b09e8f4f67b95d53b4f1e59d1fb518f29": {
+    "assetId": "eip155:56/bep20:0x23316e6b09e8f4f67b95d53b4f1e59d1fb518f29",
+    "chainId": "eip155:56",
+    "name": "MedicalVeda on BNB Smart Chain",
+    "precision": 8,
+    "color": "#4EC4CC",
+    "icon": "https://assets.coingecko.com/coins/images/13069/thumb/medicalveda_new_logo_final_%281%29.png?1696512858",
+    "symbol": "MVEDA",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x23396cf899ca06c4472205fc903bdb4de249d6fc": {
+    "assetId": "eip155:56/bep20:0x23396cf899ca06c4472205fc903bdb4de249d6fc",
+    "chainId": "eip155:56",
+    "name": "Wrapped USTC on BNB Smart Chain",
+    "precision": 18,
+    "color": "#4374D9",
+    "icon": "https://assets.coingecko.com/coins/images/15462/thumb/ust.png?1696515108",
+    "symbol": "USTC",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x235d650fc6d9eb7d4bac77e128265295a0054304": {
+    "assetId": "eip155:56/bep20:0x235d650fc6d9eb7d4bac77e128265295a0054304",
+    "chainId": "eip155:56",
+    "name": "KWAI",
+    "precision": 18,
+    "color": "#F78408",
+    "icon": "https://assets.coingecko.com/coins/images/28599/thumb/KWAI_Logo.jpg?1696527586",
+    "symbol": "KWAI",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x237ace23ab2c36a004aa5e4fb134fe5c1cedf06c": {
+    "assetId": "eip155:56/bep20:0x237ace23ab2c36a004aa5e4fb134fe5c1cedf06c",
+    "chainId": "eip155:56",
+    "name": "CEO",
+    "precision": 18,
+    "color": "#B07C57",
+    "icon": "https://assets.coingecko.com/coins/images/29210/thumb/IMG-20230225-WA0002.png?1696528169",
+    "symbol": "CEO",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x238d02ee3f80fbf5e381f049616025c186889b68": {
+    "assetId": "eip155:56/bep20:0x238d02ee3f80fbf5e381f049616025c186889b68",
+    "chainId": "eip155:56",
+    "name": "Metars Genesis",
+    "precision": 18,
+    "color": "#EDF5F4",
+    "icon": "https://assets.coingecko.com/coins/images/26625/thumb/PRmUU8O1_400x400.jpeg?1696525698",
+    "symbol": "MRS",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x238f5cc8bd082895d1f832cef967e7bb7ba4f992": {
+    "assetId": "eip155:56/bep20:0x238f5cc8bd082895d1f832cef967e7bb7ba4f992",
+    "chainId": "eip155:56",
+    "name": "QatarGrow",
+    "precision": 18,
+    "color": "#7A5426",
+    "icon": "https://assets.coingecko.com/coins/images/28312/thumb/photo_2022-11-07_08-53-10.png?1696527317",
+    "symbol": "QATARGROW",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x239ec95667e37929d33066a8df8ddc9444dbcbca": {
+    "assetId": "eip155:56/bep20:0x239ec95667e37929d33066a8df8ddc9444dbcbca",
+    "chainId": "eip155:56",
+    "name": "DfiStarter",
+    "precision": 18,
+    "color": "#2CA4DC",
+    "icon": "https://assets.coingecko.com/coins/images/19037/thumb/Dfistarter-LOGO-4-02.png?1696518488",
+    "symbol": "DFI",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x23b8683ff98f9e4781552dfe6f12aa32814924e8": {
+    "assetId": "eip155:56/bep20:0x23b8683ff98f9e4781552dfe6f12aa32814924e8",
+    "chainId": "eip155:56",
+    "name": "Jarvis Synthetic Euro on BNB Smart Chain",
+    "precision": 18,
+    "color": "#093796",
+    "icon": "https://assets.coingecko.com/coins/images/15725/thumb/jEUR.png?1696515352",
+    "symbol": "JEUR",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x23c5d1164662758b3799103effe19cc064d897d6": {
+    "assetId": "eip155:56/bep20:0x23c5d1164662758b3799103effe19cc064d897d6",
+    "chainId": "eip155:56",
+    "name": "Aura Network  OLD ",
+    "precision": 6,
+    "color": "#96C9D4",
+    "icon": "https://assets.coingecko.com/coins/images/30364/thumb/aura.jpeg?1696529261",
+    "symbol": "AURA",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x23ce9e926048273ef83be0a3a8ba9cb6d45cd978": {
+    "assetId": "eip155:56/bep20:0x23ce9e926048273ef83be0a3a8ba9cb6d45cd978",
+    "chainId": "eip155:56",
+    "name": "Mines of Dalarnia on BNB Smart Chain",
+    "precision": 6,
+    "color": "#4C1F58",
+    "icon": "https://assets.coingecko.com/coins/images/19837/thumb/dar.png?1696519259",
+    "symbol": "DAR",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x23e3981052d5280c658e5e18d814fa9582bfbc9e": {
+    "assetId": "eip155:56/bep20:0x23e3981052d5280c658e5e18d814fa9582bfbc9e",
+    "chainId": "eip155:56",
+    "name": "Youclout",
+    "precision": 18,
+    "color": "#1C1B51",
+    "icon": "https://assets.coingecko.com/coins/images/18808/thumb/7W5vEIz-_400x400.jpg?1696518270",
+    "symbol": "YCT",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x23e8a70534308a4aaf76fb8c32ec13d17a3bd89e": {
+    "assetId": "eip155:56/bep20:0x23e8a70534308a4aaf76fb8c32ec13d17a3bd89e",
+    "chainId": "eip155:56",
+    "name": "LUSD",
+    "precision": 18,
+    "color": "#E8EBEF",
+    "icon": "https://assets.coingecko.com/coins/images/25223/thumb/lusd_200x200.png?1696524366",
+    "symbol": "LUSD",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x23ec58e45ac5313bcb6681f4f7827b8a8453ac45": {
+    "assetId": "eip155:56/bep20:0x23ec58e45ac5313bcb6681f4f7827b8a8453ac45",
+    "chainId": "eip155:56",
+    "name": "Zenfuse on BNB Smart Chain",
+    "precision": 18,
+    "color": "#0F61E4",
+    "icon": "https://assets.coingecko.com/coins/images/12796/thumb/zenfuse.jpg?1696512590",
+    "symbol": "ZEFU",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x23f07a1c03e7c6d0c88e0e05e79b6e3511073fd5": {
+    "assetId": "eip155:56/bep20:0x23f07a1c03e7c6d0c88e0e05e79b6e3511073fd5",
+    "chainId": "eip155:56",
+    "name": "Crypto Development Services on BNB Smart Chain",
+    "precision": 8,
+    "color": "#996818",
+    "icon": "https://assets.coingecko.com/coins/images/21304/thumb/JhUZ3Rk.png?1696520673",
+    "symbol": "CDS",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x23f9a46a2c06f5249702aad1b9b1fd1b6e6833cf": {
+    "assetId": "eip155:56/bep20:0x23f9a46a2c06f5249702aad1b9b1fd1b6e6833cf",
+    "chainId": "eip155:56",
+    "name": "Nero",
+    "precision": 18,
+    "color": "#CACACA",
+    "icon": "https://assets.coingecko.com/coins/images/29651/thumb/Nero_Black_200x200.png?1696528587",
+    "symbol": "NPT",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x2406dce4da5ab125a18295f4fb9fd36a0f7879a2": {
+    "assetId": "eip155:56/bep20:0x2406dce4da5ab125a18295f4fb9fd36a0f7879a2",
+    "chainId": "eip155:56",
+    "name": "CoinsPaid on BNB Smart Chain",
+    "precision": 18,
+    "color": "#CFCEDD",
+    "icon": "https://assets.coingecko.com/coins/images/18092/thumb/coinspaid.PNG?1696517597",
+    "symbol": "CPD",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x24086eab82dbdaa4771d0a5d66b0d810458b0e86": {
+    "assetId": "eip155:56/bep20:0x24086eab82dbdaa4771d0a5d66b0d810458b0e86",
+    "chainId": "eip155:56",
+    "name": "PepeAI",
+    "precision": 18,
+    "color": "#4A9242",
+    "icon": "https://assets.coingecko.com/coins/images/30248/thumb/pepeai-200.png?1696529157",
+    "symbol": "PEPEAI",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x241c9ef7602f031bef4f14458c3083dcd37b9be5": {
+    "assetId": "eip155:56/bep20:0x241c9ef7602f031bef4f14458c3083dcd37b9be5",
+    "chainId": "eip155:56",
+    "name": "PushSwap",
+    "precision": 19,
+    "color": "#2C8B70",
+    "icon": "https://assets.coingecko.com/coins/images/30885/thumb/Pushwap_Logo_200x200.png?1696529732",
+    "symbol": "PUSH",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x2456493e757fdeedf569781f053998a72adfad03": {
+    "assetId": "eip155:56/bep20:0x2456493e757fdeedf569781f053998a72adfad03",
+    "chainId": "eip155:56",
+    "name": "Definder Network",
+    "precision": 6,
+    "color": "#040404",
+    "icon": "https://assets.coingecko.com/coins/images/2073/thumb/2aSL-Tvl_400x400.jpeg?1696503039",
+    "symbol": "DNT",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x245d9f531757f83064ad808b4c9b220c703a4934": {
+    "assetId": "eip155:56/bep20:0x245d9f531757f83064ad808b4c9b220c703a4934",
+    "chainId": "eip155:56",
+    "name": "Gode Chain",
+    "precision": 6,
+    "color": "#F7E5F4",
+    "icon": "https://assets.coingecko.com/coins/images/25140/thumb/KQkiY5pe_400x400.jpg?1696524289",
+    "symbol": "GODE",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x2466858ab5edad0bb597fe9f008f568b00d25fe3": {
+    "assetId": "eip155:56/bep20:0x2466858ab5edad0bb597fe9f008f568b00d25fe3",
+    "chainId": "eip155:56",
+    "name": "MicroPets",
+    "precision": 18,
+    "color": "#600FA1",
+    "icon": "https://assets.coingecko.com/coins/images/32465/thumb/PETS.jpg?1698243473",
+    "symbol": "PETS",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x24697e20c1921ebd5846c5b025a5fab1a43fe316": {
+    "assetId": "eip155:56/bep20:0x24697e20c1921ebd5846c5b025a5fab1a43fe316",
+    "chainId": "eip155:56",
+    "name": "Zenithereum",
+    "precision": 18,
+    "color": "#C4C4C4",
+    "icon": "https://assets.coingecko.com/coins/images/28987/thumb/Untitled_design_%2811%29.png?1696527960",
+    "symbol": "ZEN-AI",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x24802247bd157d771b7effa205237d8e9269ba8a": {
+    "assetId": "eip155:56/bep20:0x24802247bd157d771b7effa205237d8e9269ba8a",
+    "chainId": "eip155:56",
+    "name": "Thetan Coin",
+    "precision": 18,
+    "color": "#E7A93B",
+    "icon": "https://assets.coingecko.com/coins/images/20959/thumb/coin_ui.png?1696520346",
+    "symbol": "THC",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x24dcd565ba10c64daf1e9faedb0f09a9053c6d07": {
+    "assetId": "eip155:56/bep20:0x24dcd565ba10c64daf1e9faedb0f09a9053c6d07",
+    "chainId": "eip155:56",
+    "name": "BLU",
+    "precision": 18,
+    "color": "#DDE5FC",
+    "icon": "https://assets.coingecko.com/coins/images/30674/thumb/Blu.png?1696529543",
+    "symbol": "BLU",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x24ef78c7092d255ed14a0281ac1800c359af3afe": {
+    "assetId": "eip155:56/bep20:0x24ef78c7092d255ed14a0281ac1800c359af3afe",
+    "chainId": "eip155:56",
+    "name": "Rabbit Wallet on BNB Smart Chain",
+    "precision": 18,
+    "color": "#FC98BC",
+    "icon": "https://assets.coingecko.com/coins/images/29433/thumb/200x200.png?1696528381",
+    "symbol": "RAB",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x250632378e573c6be1ac2f97fcdf00515d0aa91b": {
+    "assetId": "eip155:56/bep20:0x250632378e573c6be1ac2f97fcdf00515d0aa91b",
+    "chainId": "eip155:56",
+    "name": "Binance ETH staking",
+    "precision": 18,
+    "color": "#1A1B1D",
+    "icon": "https://assets.coingecko.com/coins/images/13804/thumb/Binnace.png?1696513551",
+    "symbol": "BETH",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x25382fb31e4b22e0ea09cb0761863df5ad97ed72": {
+    "assetId": "eip155:56/bep20:0x25382fb31e4b22e0ea09cb0761863df5ad97ed72",
+    "chainId": "eip155:56",
+    "name": "Paragen",
+    "precision": 18,
+    "color": "#1A1F6B",
+    "icon": "https://assets.coingecko.com/coins/images/24198/thumb/TH-Y4qWF_400x400.jpg?1696523385",
+    "symbol": "RGEN",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x25574cad6f03ffacd9d08b288e8d5d88997fb2f3": {
+    "assetId": "eip155:56/bep20:0x25574cad6f03ffacd9d08b288e8d5d88997fb2f3",
+    "chainId": "eip155:56",
+    "name": "RedFeg",
+    "precision": 9,
+    "color": "#D0C2CC",
+    "icon": "https://assets.coingecko.com/coins/images/17292/thumb/redfeg.PNG?1696516846",
+    "symbol": "REDFEG",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x2563a4f7c37f2aca9f3222def6849c4156d6f9d2": {
+    "assetId": "eip155:56/bep20:0x2563a4f7c37f2aca9f3222def6849c4156d6f9d2",
+    "chainId": "eip155:56",
+    "name": "get rich with meme",
+    "precision": 9,
+    "color": "#C6C6C6",
+    "icon": "https://assets.coingecko.com/coins/images/32373/thumb/get-rich-meme-logo-project-token-bnb-bsc-_meme_-0x2563A4f7c37F2AcA9f3222DeF6849C4156D6f9D2-200x200.jpg?1698032447",
+    "symbol": "MEMEMEME",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x256be284fea694f1bb11f76d556a28ecb496eee9": {
+    "assetId": "eip155:56/bep20:0x256be284fea694f1bb11f76d556a28ecb496eee9",
+    "chainId": "eip155:56",
+    "name": "Nirvana Meta MNU Chain",
+    "precision": 18,
+    "color": "#8E755B",
+    "icon": "https://assets.coingecko.com/coins/images/28669/thumb/mnu.png?1696527653",
+    "symbol": "MNU",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x256d1fce1b1221e8398f65f9b36033ce50b2d497": {
+    "assetId": "eip155:56/bep20:0x256d1fce1b1221e8398f65f9b36033ce50b2d497",
+    "chainId": "eip155:56",
+    "name": "Alvey Chain on BNB Smart Chain",
+    "precision": 18,
+    "color": "#BCB62D",
+    "icon": "https://assets.coingecko.com/coins/images/26964/thumb/logo200x200.png?1696526019",
+    "symbol": "WALV",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x257a8d1e03d17b8535a182301f15290f11674b53": {
+    "assetId": "eip155:56/bep20:0x257a8d1e03d17b8535a182301f15290f11674b53",
+    "chainId": "eip155:56",
+    "name": "Kawaii Islands",
+    "precision": 18,
+    "color": "#F7EEE8",
+    "icon": "https://assets.coingecko.com/coins/images/18880/thumb/8f4IyY3_%281%29.jpg?1696518339",
+    "symbol": "KWT",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x25a2b2327e9c787e138708b24df58bce4d9ab3f6": {
+    "assetId": "eip155:56/bep20:0x25a2b2327e9c787e138708b24df58bce4d9ab3f6",
+    "chainId": "eip155:56",
+    "name": "GoldenCoin",
+    "precision": 18,
+    "color": "#876B30",
+    "icon": "https://assets.coingecko.com/coins/images/32084/thumb/GLD.jpg?1696530882",
+    "symbol": "GLD",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x25a528af62e56512a19ce8c3cab427807c28cc19": {
+    "assetId": "eip155:56/bep20:0x25a528af62e56512a19ce8c3cab427807c28cc19",
+    "chainId": "eip155:56",
+    "name": "Formation FI on BNB Smart Chain",
+    "precision": 18,
+    "color": "#04041C",
+    "icon": "https://assets.coingecko.com/coins/images/16145/thumb/FORM.png?1696515750",
+    "symbol": "FORM",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x25b24b3c47918b7962b3e49c4f468367f73cc0e0": {
+    "assetId": "eip155:56/bep20:0x25b24b3c47918b7962b3e49c4f468367f73cc0e0",
+    "chainId": "eip155:56",
+    "name": "AXL INU on BNB Smart Chain",
+    "precision": 18,
+    "color": "#1E1F1F",
+    "icon": "https://assets.coingecko.com/coins/images/22191/thumb/Original_Logo-01.png?1696521535",
+    "symbol": "AXL",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x25c30340e6f9f6e521827cf03282943da00c0ece": {
+    "assetId": "eip155:56/bep20:0x25c30340e6f9f6e521827cf03282943da00c0ece",
+    "chainId": "eip155:56",
+    "name": "Pi Protocol on BNB Smart Chain",
+    "precision": 18,
+    "color": "#8AF009",
+    "icon": "https://assets.coingecko.com/coins/images/27476/thumb/LOGO_%281%29.png?1696526514",
+    "symbol": "PIP",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x25d887ce7a35172c62febfd67a1856f20faebb00": {
+    "assetId": "eip155:56/bep20:0x25d887ce7a35172c62febfd67a1856f20faebb00",
+    "chainId": "eip155:56",
+    "name": "Pepe on BNB Smart Chain",
+    "precision": 18,
+    "color": "#4B8E42",
+    "icon": "https://assets.coingecko.com/coins/images/29850/thumb/pepe-token.jpeg?1696528776",
+    "symbol": "PEPE",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x25ee36b6eb10da8225a40462d725b15ed259c51a": {
+    "assetId": "eip155:56/bep20:0x25ee36b6eb10da8225a40462d725b15ed259c51a",
+    "chainId": "eip155:56",
+    "name": "X Project",
+    "precision": 18,
+    "color": "#8C8C8C",
+    "icon": "https://assets.coingecko.com/coins/images/30756/thumb/Frame_12_%281%29.png?1696529625",
+    "symbol": "X-TOKEN",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x261510dd6257494eea1dda7618dbe8a7b87870dd": {
+    "assetId": "eip155:56/bep20:0x261510dd6257494eea1dda7618dbe8a7b87870dd",
+    "chainId": "eip155:56",
+    "name": "Dehero Community",
+    "precision": 12,
+    "color": "#EDA422",
+    "icon": "https://assets.coingecko.com/coins/images/17917/thumb/33b73b5a11f3391dd9ef009985308cf5.png?1696517437",
+    "symbol": "HEROES",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x26165a5a3dd21fa528becf3ff7f114d00a517344": {
+    "assetId": "eip155:56/bep20:0x26165a5a3dd21fa528becf3ff7f114d00a517344",
+    "chainId": "eip155:56",
+    "name": "Meta BSC",
+    "precision": 9,
+    "color": "#C8BDAE",
+    "icon": "https://assets.coingecko.com/coins/images/22243/thumb/RXfj1lF_d.png?1696521588",
+    "symbol": "META",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x264387ad73d19408e34b5d5e13a93174a35cea33": {
+    "assetId": "eip155:56/bep20:0x264387ad73d19408e34b5d5e13a93174a35cea33",
+    "chainId": "eip155:56",
+    "name": "Rare FND",
+    "precision": 18,
+    "color": "#887CDC",
+    "icon": "https://assets.coingecko.com/coins/images/26690/thumb/fnd.png?1696525764",
+    "symbol": "FND",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x2645d5f59d952ef2317c8e0aaa5a61c392ccd44d": {
+    "assetId": "eip155:56/bep20:0x2645d5f59d952ef2317c8e0aaa5a61c392ccd44d",
+    "chainId": "eip155:56",
+    "name": "UniLend Finance on BNB Smart Chain",
+    "precision": 18,
+    "color": "#2B6CEC",
+    "icon": "https://assets.coingecko.com/coins/images/12819/thumb/UniLend_Finance_logo_PNG.png?1696512611",
+    "symbol": "UFT",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x2659cb928f6f705c1e574464361882fd6e92e1f9": {
+    "assetId": "eip155:56/bep20:0x2659cb928f6f705c1e574464361882fd6e92e1f9",
+    "chainId": "eip155:56",
+    "name": "iPulse",
+    "precision": 8,
+    "color": "#A01419",
+    "icon": "https://assets.coingecko.com/coins/images/21902/thumb/Ipulse-con.png?1696521254",
+    "symbol": "PLS",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x267022751e06d97b9ee4e5f26cc1023670bdb349": {
+    "assetId": "eip155:56/bep20:0x267022751e06d97b9ee4e5f26cc1023670bdb349",
+    "chainId": "eip155:56",
+    "name": "Rps League",
+    "precision": 18,
+    "color": "#080609",
+    "icon": "https://assets.coingecko.com/coins/images/20918/thumb/nS5mB7aP_400x400.jpg?1696520308",
+    "symbol": "RPS",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x26734add0650719ea29087fe5cc0aab81b4f237d": {
+    "assetId": "eip155:56/bep20:0x26734add0650719ea29087fe5cc0aab81b4f237d",
+    "chainId": "eip155:56",
+    "name": "STEMX",
+    "precision": 18,
+    "color": "#E0EAF3",
+    "icon": "https://assets.coingecko.com/coins/images/19739/thumb/13702.png?1696519163",
+    "symbol": "STEMX",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x26a1bdfa3bb86b2744c4a42ebfdd205761d13a8a": {
+    "assetId": "eip155:56/bep20:0x26a1bdfa3bb86b2744c4a42ebfdd205761d13a8a",
+    "chainId": "eip155:56",
+    "name": "KAKA NFT World",
+    "precision": 18,
+    "color": "#E4FC04",
+    "icon": "https://assets.coingecko.com/coins/images/20877/thumb/10768.png?1696520270",
+    "symbol": "KAKA",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x26d3163b165be95137cee97241e716b2791a7572": {
+    "assetId": "eip155:56/bep20:0x26d3163b165be95137cee97241e716b2791a7572",
+    "chainId": "eip155:56",
+    "name": "Dibs Share",
+    "precision": 18,
+    "color": "#C4C4C4",
+    "icon": "https://assets.coingecko.com/coins/images/22194/thumb/dshares.png?1696521538",
+    "symbol": "DSHARE",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x26d6e280f9687c463420908740ae59f712419147": {
+    "assetId": "eip155:56/bep20:0x26d6e280f9687c463420908740ae59f712419147",
+    "chainId": "eip155:56",
+    "name": "BakeryTools",
+    "precision": 18,
+    "color": "#C07436",
+    "icon": "https://assets.coingecko.com/coins/images/15184/thumb/tbakelogo-1.png?1696514842",
+    "symbol": "TBAKE",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x26e463f985a25fe6a20ca122410be10bb5782e0e": {
+    "assetId": "eip155:56/bep20:0x26e463f985a25fe6a20ca122410be10bb5782e0e",
+    "chainId": "eip155:56",
+    "name": "Tribe Token on BNB Smart Chain",
+    "precision": 9,
+    "color": "#3581FC",
+    "icon": "https://assets.coingecko.com/coins/images/20294/thumb/tribe.PNG?1696519698",
+    "symbol": "TRIBEX",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x270388e0ca29cfd7c7e73903d9d933a23d1bab39": {
+    "assetId": "eip155:56/bep20:0x270388e0ca29cfd7c7e73903d9d933a23d1bab39",
+    "chainId": "eip155:56",
+    "name": "TradeStars on BNB Smart Chain",
+    "precision": 18,
+    "color": "#1D5772",
+    "icon": "https://assets.coingecko.com/coins/images/15229/thumb/WsO9siKG_400x400.png?1696514884",
+    "symbol": "TSX",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x27348c55a6ca17f0d3cb75049c21a04e08cf6e78": {
+    "assetId": "eip155:56/bep20:0x27348c55a6ca17f0d3cb75049c21a04e08cf6e78",
+    "chainId": "eip155:56",
+    "name": "Octavus Prime",
+    "precision": 18,
+    "color": "#B862BA",
+    "icon": "https://assets.coingecko.com/coins/images/30215/thumb/Octavus_Prime_logo.png?1696529126",
+    "symbol": "OCTAVUS",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x277ae79c42c859ca858d5a92c22222c8b65c6d94": {
+    "assetId": "eip155:56/bep20:0x277ae79c42c859ca858d5a92c22222c8b65c6d94",
+    "chainId": "eip155:56",
+    "name": "Astro Babies",
+    "precision": 18,
+    "color": "#DF970D",
+    "icon": "https://assets.coingecko.com/coins/images/28158/thumb/Untitled_design.png?1696527162",
+    "symbol": "ABB",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x2789604fe261adc1aed3927f41277d8bffe33c36": {
+    "assetId": "eip155:56/bep20:0x2789604fe261adc1aed3927f41277d8bffe33c36",
+    "chainId": "eip155:56",
+    "name": "Catchy",
+    "precision": 9,
+    "color": "#DCDCDC",
+    "icon": "https://assets.coingecko.com/coins/images/20252/thumb/Catchy-200x200.png?1696519660",
+    "symbol": "CATCHY",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x2794dad4077602ed25a88d03781528d1637898b4": {
+    "assetId": "eip155:56/bep20:0x2794dad4077602ed25a88d03781528d1637898b4",
+    "chainId": "eip155:56",
+    "name": "Vite on BNB Smart Chain",
+    "precision": 18,
+    "color": "#0C2CEC",
+    "icon": "https://assets.coingecko.com/coins/images/4513/thumb/Vite.png?1696505098",
+    "symbol": "VITE",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x27ae27110350b98d564b9a3eed31baebc82d878d": {
+    "assetId": "eip155:56/bep20:0x27ae27110350b98d564b9a3eed31baebc82d878d",
+    "chainId": "eip155:56",
+    "name": "CumRocket",
+    "precision": 18,
+    "color": "#F609C2",
+    "icon": "https://assets.coingecko.com/coins/images/15088/thumb/cr.png?1696514747",
+    "symbol": "CUMMIES",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x27d72484f1910f5d0226afa4e03742c9cd2b297a": {
+    "assetId": "eip155:56/bep20:0x27d72484f1910f5d0226afa4e03742c9cd2b297a",
+    "chainId": "eip155:56",
+    "name": "Moonscape",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/21142/thumb/14522.png?1696520520",
+    "symbol": "MSCP",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x2824d8ecded273e296ca57d583d80614093c87d4": {
+    "assetId": "eip155:56/bep20:0x2824d8ecded273e296ca57d583d80614093c87d4",
+    "chainId": "eip155:56",
+    "name": "MetaQ",
+    "precision": 8,
+    "color": "#DCE0E9",
+    "icon": "https://assets.coingecko.com/coins/images/24584/thumb/PoQiwrce8gcDf9KxXDk_fU9WEP7ljoPRJnYounF7pgJi-_Jnt3AFXQqB1lLtKDiezguUYEGvntBGCKMCB22Cecf5AcU9bbFV38Sdihravj6x65pVunbXmrl39hyfqQAUyjum_l5KqJgUcsTtLJTBqdpLiAmcg_igURSkEaef_APdfkYepHZ0tJh8TglKgCzLpAle_F-aNMfmAX4.jpg?1696523759",
+    "symbol": "METAQ",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x28337d750194c17769bf31324512ca4e217174fa": {
+    "assetId": "eip155:56/bep20:0x28337d750194c17769bf31324512ca4e217174fa",
+    "chainId": "eip155:56",
+    "name": "DTNG",
+    "precision": 8,
+    "color": "#2E7CB9",
+    "icon": "https://assets.coingecko.com/coins/images/24128/thumb/dtng.png?1696523319",
+    "symbol": "DTNG",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x284225aa4a0f0477fe900ab9a79befb03940db8d": {
+    "assetId": "eip155:56/bep20:0x284225aa4a0f0477fe900ab9a79befb03940db8d",
+    "chainId": "eip155:56",
+    "name": "DOGE CEO AI",
+    "precision": 9,
+    "color": "#E9E971",
+    "icon": "https://assets.coingecko.com/coins/images/29444/thumb/200x200_copy.png?1696528391",
+    "symbol": "DOGECEO",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x284ac5af363bde6ef5296036af8fb0e9cc347b41": {
+    "assetId": "eip155:56/bep20:0x284ac5af363bde6ef5296036af8fb0e9cc347b41",
+    "chainId": "eip155:56",
+    "name": "The HUSL on BNB Smart Chain",
+    "precision": 18,
+    "color": "#FCD404",
+    "icon": "https://assets.coingecko.com/coins/images/18619/thumb/W8ZIHKU.png?1696518092",
+    "symbol": "HUSL",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x287880ea252b52b63cc5f40a2d3e5a44aa665a76": {
+    "assetId": "eip155:56/bep20:0x287880ea252b52b63cc5f40a2d3e5a44aa665a76",
+    "chainId": "eip155:56",
+    "name": "Alpine F1 Team Fan Token",
+    "precision": 8,
+    "color": "#0E0E0E",
+    "icon": "https://assets.coingecko.com/coins/images/23717/thumb/18112.png?1696522917",
+    "symbol": "ALPINE",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x289f347ac469bc1b7359ed95c87c75ac2c3eb16f": {
+    "assetId": "eip155:56/bep20:0x289f347ac469bc1b7359ed95c87c75ac2c3eb16f",
+    "chainId": "eip155:56",
+    "name": "Feichang Niu",
+    "precision": 18,
+    "color": "#6D361F",
+    "icon": "https://assets.coingecko.com/coins/images/17476/thumb/logo_-_2021-08-02T172142.650.png?1696517018",
+    "symbol": "FCN",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x28a8ececdf311c0a71231775d6ff4b8481c4ef21": {
+    "assetId": "eip155:56/bep20:0x28a8ececdf311c0a71231775d6ff4b8481c4ef21",
+    "chainId": "eip155:56",
+    "name": "Xover",
+    "precision": 9,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/33030/thumb/logo200x200.png?1700347710",
+    "symbol": "XVR",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x28b9aed756de31b6b362aa0f23211d13093ebb79": {
+    "assetId": "eip155:56/bep20:0x28b9aed756de31b6b362aa0f23211d13093ebb79",
+    "chainId": "eip155:56",
+    "name": "LunaGens",
+    "precision": 18,
+    "color": "#455863",
+    "icon": "https://assets.coingecko.com/coins/images/26592/thumb/4-FAECD18-620-B-421-E-A27-E-70-D58-DDCE11-B.png?1696525667",
+    "symbol": "LUNG",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x28ce223853d123b52c74439b10b43366d73fd3b5": {
+    "assetId": "eip155:56/bep20:0x28ce223853d123b52c74439b10b43366d73fd3b5",
+    "chainId": "eip155:56",
+    "name": "Fame MMA",
+    "precision": 18,
+    "color": "#0C0C0C",
+    "icon": "https://assets.coingecko.com/coins/images/25267/thumb/FJTwuXxE_400x400.jpg?1696524407",
+    "symbol": "FAME",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x29132062319aa375e764ef8ef756f2b28c77a9c9": {
+    "assetId": "eip155:56/bep20:0x29132062319aa375e764ef8ef756f2b28c77a9c9",
+    "chainId": "eip155:56",
+    "name": "BlokPad",
+    "precision": 18,
+    "color": "#F9DEF9",
+    "icon": "https://assets.coingecko.com/coins/images/23309/thumb/bpad.PNG?1696522526",
+    "symbol": "BPAD",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x2921872530f53eb8e6fc388676b141ef41ee2d4e": {
+    "assetId": "eip155:56/bep20:0x2921872530f53eb8e6fc388676b141ef41ee2d4e",
+    "chainId": "eip155:56",
+    "name": "Space Soldier",
+    "precision": 9,
+    "color": "#4CA6C7",
+    "icon": "https://assets.coingecko.com/coins/images/15575/thumb/F63vqcy.png?1696515214",
+    "symbol": "SOLDIER",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x293faca2e5d6ac7a0e704eafeda628528b3b3f0a": {
+    "assetId": "eip155:56/bep20:0x293faca2e5d6ac7a0e704eafeda628528b3b3f0a",
+    "chainId": "eip155:56",
+    "name": "LS Coin",
+    "precision": 18,
+    "color": "#04FCB4",
+    "icon": "https://assets.coingecko.com/coins/images/30084/thumb/logo-200.png?1696529008",
+    "symbol": "LSC",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x2947c22608d742af4e8c16d86f90a93969f13f8d": {
+    "assetId": "eip155:56/bep20:0x2947c22608d742af4e8c16d86f90a93969f13f8d",
+    "chainId": "eip155:56",
+    "name": "Cakebot",
+    "precision": 18,
+    "color": "#4624E5",
+    "icon": "https://assets.coingecko.com/coins/images/32503/thumb/CAKEBOT.png?1698413962",
+    "symbol": "CAKEBOT",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x29745314b4d294b7c77cdb411b8aaa95923aae38": {
+    "assetId": "eip155:56/bep20:0x29745314b4d294b7c77cdb411b8aaa95923aae38",
+    "chainId": "eip155:56",
+    "name": "PalmSwap",
+    "precision": 18,
+    "color": "#2C2C34",
+    "icon": "https://assets.coingecko.com/coins/images/27604/thumb/22000.png?1696526635",
+    "symbol": "PALM",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x298632d8ea20d321fab1c9b473df5dbda249b2b6": {
+    "assetId": "eip155:56/bep20:0x298632d8ea20d321fab1c9b473df5dbda249b2b6",
+    "chainId": "eip155:56",
+    "name": "World of Defish",
+    "precision": 18,
+    "color": "#F6DBAD",
+    "icon": "https://assets.coingecko.com/coins/images/22126/thumb/logo.png?1696521473",
+    "symbol": "WOD",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x298eff8af1ecebbb2c034eaa3b9a5d0cc56c59cd": {
+    "assetId": "eip155:56/bep20:0x298eff8af1ecebbb2c034eaa3b9a5d0cc56c59cd",
+    "chainId": "eip155:56",
+    "name": "Phantasma on BNB Smart Chain",
+    "precision": 8,
+    "color": "#16B4EC",
+    "icon": "https://assets.coingecko.com/coins/images/4130/thumb/phantasma.png?1696504758",
+    "symbol": "SOUL",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x299ecc384ded931a8f611b215dbfd370b5e1ccf3": {
+    "assetId": "eip155:56/bep20:0x299ecc384ded931a8f611b215dbfd370b5e1ccf3",
+    "chainId": "eip155:56",
+    "name": "JTS",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/33150/thumb/20231121_164140.png?1700825331",
+    "symbol": "JTS",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x29a1e54de0fce58e1018535d30af77a9d2d940c4": {
+    "assetId": "eip155:56/bep20:0x29a1e54de0fce58e1018535d30af77a9d2d940c4",
+    "chainId": "eip155:56",
+    "name": "Hero Cat",
+    "precision": 18,
+    "color": "#6B78FC",
+    "icon": "https://assets.coingecko.com/coins/images/20905/thumb/hct.png?1696520296",
+    "symbol": "HCT",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x29a5daf6e3fdf964def07706ea1abee7ec03d021": {
+    "assetId": "eip155:56/bep20:0x29a5daf6e3fdf964def07706ea1abee7ec03d021",
+    "chainId": "eip155:56",
+    "name": "Trillioner",
+    "precision": 18,
+    "color": "#5B4C19",
+    "icon": "https://assets.coingecko.com/coins/images/30314/thumb/4_%286%29_%281%29.jpg?1696529215",
+    "symbol": "TLC",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x29a63f4b209c29b4dc47f06ffa896f32667dad2c": {
+    "assetId": "eip155:56/bep20:0x29a63f4b209c29b4dc47f06ffa896f32667dad2c",
+    "chainId": "eip155:56",
+    "name": "Pundi X PURSE",
+    "precision": 18,
+    "color": "#E4E3C2",
+    "icon": "https://assets.coingecko.com/coins/images/20419/thumb/HobiV7k__400x400.jpg?1696519827",
+    "symbol": "PURSE",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x29a75ec2d2b8a57fdc45094dc51fefd147c908d8": {
+    "assetId": "eip155:56/bep20:0x29a75ec2d2b8a57fdc45094dc51fefd147c908d8",
+    "chainId": "eip155:56",
+    "name": "Turex",
+    "precision": 18,
+    "color": "#F74304",
+    "icon": "https://assets.coingecko.com/coins/images/15539/thumb/turex-logo.png?1696515180",
+    "symbol": "TUR",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x29abc4d03d133d8fd1f1c54318428353ce08727e": {
+    "assetId": "eip155:56/bep20:0x29abc4d03d133d8fd1f1c54318428353ce08727e",
+    "chainId": "eip155:56",
+    "name": "KyotoSwap",
+    "precision": 18,
+    "color": "#264A28",
+    "icon": "https://assets.coingecko.com/coins/images/29662/thumb/Frame_79.png?1696528597",
+    "symbol": "KSWAP",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x29c55f1b02a95f0b30e61976835a3eee2359ad92": {
+    "assetId": "eip155:56/bep20:0x29c55f1b02a95f0b30e61976835a3eee2359ad92",
+    "chainId": "eip155:56",
+    "name": "EMP Shares",
+    "precision": 18,
+    "color": "#6A2AA3",
+    "icon": "https://assets.coingecko.com/coins/images/31131/thumb/ESHARES.png?1696529960",
+    "symbol": "ESHAREV2",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x29cabf2a1e5de6f0ebc39ca6fe83c687fe90fb6c": {
+    "assetId": "eip155:56/bep20:0x29cabf2a1e5de6f0ebc39ca6fe83c687fe90fb6c",
+    "chainId": "eip155:56",
+    "name": "Fish Crypto",
+    "precision": 18,
+    "color": "#CFCA2C",
+    "icon": "https://assets.coingecko.com/coins/images/22627/thumb/fico.png?1696521943",
+    "symbol": "FICO",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x29df52dbd2a73ae6f4ee3a397fd7706216af12da": {
+    "assetId": "eip155:56/bep20:0x29df52dbd2a73ae6f4ee3a397fd7706216af12da",
+    "chainId": "eip155:56",
+    "name": "ZilPepe",
+    "precision": 18,
+    "color": "#282F33",
+    "icon": "https://assets.coingecko.com/coins/images/30166/thumb/logo.png?1696529086",
+    "symbol": "ZILPEPE",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x2a17dc11a1828725cdb318e0036acf12727d27a2": {
+    "assetId": "eip155:56/bep20:0x2a17dc11a1828725cdb318e0036acf12727d27a2",
+    "chainId": "eip155:56",
+    "name": "ArenaSwap",
+    "precision": 18,
+    "color": "#AB9970",
+    "icon": "https://assets.coingecko.com/coins/images/17273/thumb/1A08E0A4-6486-4D35-BC0E-436551ECC078.jpg?1696516827",
+    "symbol": "ARENA",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x2a374d02e244aaa175b38ba1ba9ee443d20e7e41": {
+    "assetId": "eip155:56/bep20:0x2a374d02e244aaa175b38ba1ba9ee443d20e7e41",
+    "chainId": "eip155:56",
+    "name": "Peach Inu  BSC ",
+    "precision": 9,
+    "color": "#EAC4C3",
+    "icon": "https://assets.coingecko.com/coins/images/29786/thumb/20230410_202521.png?1696528716",
+    "symbol": "PEACH",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x2a45a892877ef383c5fc93a5206546c97496da9e": {
+    "assetId": "eip155:56/bep20:0x2a45a892877ef383c5fc93a5206546c97496da9e",
+    "chainId": "eip155:56",
+    "name": "X AI",
+    "precision": 9,
+    "color": "#8C8C8C",
+    "icon": "https://assets.coingecko.com/coins/images/31116/thumb/logo_200px.png?1696529946",
+    "symbol": "X",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x2a49840ba994486dd3ceb93e1124308f7226f219": {
+    "assetId": "eip155:56/bep20:0x2a49840ba994486dd3ceb93e1124308f7226f219",
+    "chainId": "eip155:56",
+    "name": "Garfield  BSC ",
+    "precision": 18,
+    "color": "#6CC0D9",
+    "icon": "https://assets.coingecko.com/coins/images/30511/thumb/garfield.jpg?1696529397",
+    "symbol": "GARFIELD",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x2a4dffa1fa0f86ce7f0982f88aecc199fb3476bc": {
+    "assetId": "eip155:56/bep20:0x2a4dffa1fa0f86ce7f0982f88aecc199fb3476bc",
+    "chainId": "eip155:56",
+    "name": "OccamFi on BNB Smart Chain",
+    "precision": 18,
+    "color": "#34394B",
+    "icon": "https://assets.coingecko.com/coins/images/14801/thumb/occfi.PNG?1696514470",
+    "symbol": "OCC",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x2a8557c1ca81573d33771d0f57a975c2388c5f38": {
+    "assetId": "eip155:56/bep20:0x2a8557c1ca81573d33771d0f57a975c2388c5f38",
+    "chainId": "eip155:56",
+    "name": "MetaFishing",
+    "precision": 18,
+    "color": "#ECEFE9",
+    "icon": "https://assets.coingecko.com/coins/images/28307/thumb/2P8unjSE_400x400.jpeg?1696527311",
+    "symbol": "DGC",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x2aaf50869739e317ab80a57bf87caa35f5b60598": {
+    "assetId": "eip155:56/bep20:0x2aaf50869739e317ab80a57bf87caa35f5b60598",
+    "chainId": "eip155:56",
+    "name": "Crosschain IOTX on BNB Smart Chain",
+    "precision": 18,
+    "color": "#CCCDD0",
+    "icon": "https://assets.coingecko.com/coins/images/18331/thumb/iotx.PNG?1696517822",
+    "symbol": "CIOTX",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x2ab0e9e4ee70fff1fb9d67031e44f6410170d00e": {
+    "assetId": "eip155:56/bep20:0x2ab0e9e4ee70fff1fb9d67031e44f6410170d00e",
+    "chainId": "eip155:56",
+    "name": "XEN Crypto  BSC ",
+    "precision": 18,
+    "color": "#C4C4C4",
+    "icon": "https://assets.coingecko.com/coins/images/29726/thumb/bxen.jpg?1696528656",
+    "symbol": "BXEN",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x2abdb5903171071ac29cc0779d7efdf0faf14228": {
+    "assetId": "eip155:56/bep20:0x2abdb5903171071ac29cc0779d7efdf0faf14228",
+    "chainId": "eip155:56",
+    "name": "TruthGPT  BSC ",
+    "precision": 18,
+    "color": "#446CE4",
+    "icon": "https://assets.coingecko.com/coins/images/29885/thumb/LOGO.png?1696528810",
+    "symbol": "TRUTH",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x2b1b730c997d81db2e792b47d0bc42a64ee6aa55": {
+    "assetId": "eip155:56/bep20:0x2b1b730c997d81db2e792b47d0bc42a64ee6aa55",
+    "chainId": "eip155:56",
+    "name": "Edufex",
+    "precision": 18,
+    "color": "#E1E2E2",
+    "icon": "https://assets.coingecko.com/coins/images/18365/thumb/edufex.PNG?1696517858",
+    "symbol": "EDUX",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x2b2ff80c489dad868318a19fd6f258889a026da5": {
+    "assetId": "eip155:56/bep20:0x2b2ff80c489dad868318a19fd6f258889a026da5",
+    "chainId": "eip155:56",
+    "name": "Dexit Network",
+    "precision": 9,
+    "color": "#269AEB",
+    "icon": "https://assets.coingecko.com/coins/images/17611/thumb/Dexit_Logo.png?1696517143",
+    "symbol": "DXT",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x2b618835a1eefcbf41e33497451ca1f3aa62f2d8": {
+    "assetId": "eip155:56/bep20:0x2b618835a1eefcbf41e33497451ca1f3aa62f2d8",
+    "chainId": "eip155:56",
+    "name": "Serey Coin",
+    "precision": 18,
+    "color": "#082B82",
+    "icon": "https://assets.coingecko.com/coins/images/16260/thumb/serey.png?1696515858",
+    "symbol": "SRY",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x2b72867c32cf673f7b02d208b26889fed353b1f8": {
+    "assetId": "eip155:56/bep20:0x2b72867c32cf673f7b02d208b26889fed353b1f8",
+    "chainId": "eip155:56",
+    "name": "Magic Square",
+    "precision": 8,
+    "color": "#B25DB5",
+    "icon": "https://assets.coingecko.com/coins/images/26377/thumb/bafkreictuxcsw472vuroqwv7maumzsa4pfhrdw6tglpme7zfdkce62niau_%281%29.jpg?1696525455",
+    "symbol": "SQR",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x2bb06b3f1953f3579dda3bc6cbbd9c78d7ff1340": {
+    "assetId": "eip155:56/bep20:0x2bb06b3f1953f3579dda3bc6cbbd9c78d7ff1340",
+    "chainId": "eip155:56",
+    "name": "Potfolio",
+    "precision": 9,
+    "color": "#91E7B0",
+    "icon": "https://assets.coingecko.com/coins/images/28839/thumb/200x200potfolio.png?1696527815",
+    "symbol": "PTF",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x2bc8c2ae9dad57948fa4168e56e177a29ae0c0b1": {
+    "assetId": "eip155:56/bep20:0x2bc8c2ae9dad57948fa4168e56e177a29ae0c0b1",
+    "chainId": "eip155:56",
+    "name": "BattleForTEN",
+    "precision": 18,
+    "color": "#BCCCD4",
+    "icon": "https://assets.coingecko.com/coins/images/28355/thumb/BFT_LOGO_200X200.png?1696527359",
+    "symbol": "BFT",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x2bf83d080d8bc4715984e75e5b3d149805d11751": {
+    "assetId": "eip155:56/bep20:0x2bf83d080d8bc4715984e75e5b3d149805d11751",
+    "chainId": "eip155:56",
+    "name": "VinuChain",
+    "precision": 18,
+    "color": "#B7B7B7",
+    "icon": "https://assets.coingecko.com/coins/images/32324/thumb/vinuschain.jpg?1697413654",
+    "symbol": "VC",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x2c0e76dade015bc390a13c1b80cc1bafd9edd326": {
+    "assetId": "eip155:56/bep20:0x2c0e76dade015bc390a13c1b80cc1bafd9edd326",
+    "chainId": "eip155:56",
+    "name": "Halloween Floki",
+    "precision": 18,
+    "color": "#786399",
+    "icon": "https://assets.coingecko.com/coins/images/27615/thumb/1889d663-2d57-47c9-9f48-f8362abe360e.png?1696526646",
+    "symbol": "FLOH",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x2c29d6da871a6b90d7b4ae470079cdf5252df5f8": {
+    "assetId": "eip155:56/bep20:0x2c29d6da871a6b90d7b4ae470079cdf5252df5f8",
+    "chainId": "eip155:56",
+    "name": "Benyke Finance",
+    "precision": 9,
+    "color": "#33250F",
+    "icon": "https://assets.coingecko.com/coins/images/31789/thumb/token-removebg-preview_%282%29.png?1696530606",
+    "symbol": "BENYKE",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x2c717059b366714d267039af8f59125cadce6d8c": {
+    "assetId": "eip155:56/bep20:0x2c717059b366714d267039af8f59125cadce6d8c",
+    "chainId": "eip155:56",
+    "name": "MetaShooter on BNB Smart Chain",
+    "precision": 18,
+    "color": "#060704",
+    "icon": "https://assets.coingecko.com/coins/images/24985/thumb/200x200.png?1696524137",
+    "symbol": "MHUNT",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x2c7df6aa715f77a8ebe2e14c10fabf72d0063015": {
+    "assetId": "eip155:56/bep20:0x2c7df6aa715f77a8ebe2e14c10fabf72d0063015",
+    "chainId": "eip155:56",
+    "name": "Dalma Inu",
+    "precision": 18,
+    "color": "#4D575D",
+    "icon": "https://assets.coingecko.com/coins/images/32584/thumb/t%C3%A9l%C3%A9chargement.png?1698560368",
+    "symbol": "DALMA",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x2c8d970d7c8c878db422c4bcd7d2542104ecfa2c": {
+    "assetId": "eip155:56/bep20:0x2c8d970d7c8c878db422c4bcd7d2542104ecfa2c",
+    "chainId": "eip155:56",
+    "name": "EZZY Game",
+    "precision": 2,
+    "color": "#14A5DF",
+    "icon": "https://assets.coingecko.com/coins/images/30906/thumb/200.png?1696529751",
+    "symbol": "GEZY",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x2c9a336c9c0c0ff42e1e2a346db5787303655680": {
+    "assetId": "eip155:56/bep20:0x2c9a336c9c0c0ff42e1e2a346db5787303655680",
+    "chainId": "eip155:56",
+    "name": "Frog Chain LEAP",
+    "precision": 18,
+    "color": "#69552D",
+    "icon": "https://assets.coingecko.com/coins/images/32435/thumb/LEAP_200x200.png?1698217414",
+    "symbol": "LEAP",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x2cb63fcd1380a8ad0ff5ba16ddcbdf4935154da8": {
+    "assetId": "eip155:56/bep20:0x2cb63fcd1380a8ad0ff5ba16ddcbdf4935154da8",
+    "chainId": "eip155:56",
+    "name": "TopTrade",
+    "precision": 18,
+    "color": "#F4F4FC",
+    "icon": "https://assets.coingecko.com/coins/images/30159/thumb/IMG_20230505_073247_596.jpg?1696529079",
+    "symbol": "TTT",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x2cd14cba3f26254beed1d78158cd2b6f91809600": {
+    "assetId": "eip155:56/bep20:0x2cd14cba3f26254beed1d78158cd2b6f91809600",
+    "chainId": "eip155:56",
+    "name": "Genshiro",
+    "precision": 18,
+    "color": "#E1E1E1",
+    "icon": "https://assets.coingecko.com/coins/images/16444/thumb/genshiro.PNG?1696516041",
+    "symbol": "GENS",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x2cd96e8c3ff6b5e01169f6e3b61d28204e7810bb": {
+    "assetId": "eip155:56/bep20:0x2cd96e8c3ff6b5e01169f6e3b61d28204e7810bb",
+    "chainId": "eip155:56",
+    "name": "Lucky Block on BNB Smart Chain",
+    "precision": 9,
+    "color": "#100C05",
+    "icon": "https://assets.coingecko.com/coins/images/23126/thumb/logo-200x200-LB-09.png?1696522417",
+    "symbol": "LBLOCK",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x2cfc48cdfea0678137854f010b5390c5144c0aa5": {
+    "assetId": "eip155:56/bep20:0x2cfc48cdfea0678137854f010b5390c5144c0aa5",
+    "chainId": "eip155:56",
+    "name": "Scientix",
+    "precision": 18,
+    "color": "#0A0A0A",
+    "icon": "https://assets.coingecko.com/coins/images/18367/thumb/LBNawZoQ_400x400.jpg?1696517860",
+    "symbol": "SCIX",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x2d060ef4d6bf7f9e5edde373ab735513c0e4f944": {
+    "assetId": "eip155:56/bep20:0x2d060ef4d6bf7f9e5edde373ab735513c0e4f944",
+    "chainId": "eip155:56",
+    "name": "Solidus Ai Tech",
+    "precision": 18,
+    "color": "#A8AAAA",
+    "icon": "https://assets.coingecko.com/coins/images/22114/thumb/CMC_200x200_AITECH.png?1696521456",
+    "symbol": "AITECH",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x2d5c9167fdd5c068c8fcb8992e6af639b42fbf70": {
+    "assetId": "eip155:56/bep20:0x2d5c9167fdd5c068c8fcb8992e6af639b42fbf70",
+    "chainId": "eip155:56",
+    "name": "Merge",
+    "precision": 18,
+    "color": "#DE542B",
+    "icon": "https://assets.coingecko.com/coins/images/8769/thumb/Merge_Icon_Colored.png?1696508925",
+    "symbol": "MERGE",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x2d77863f3586e1e4e6d91706b6c8a1e1f628b4ad": {
+    "assetId": "eip155:56/bep20:0x2d77863f3586e1e4e6d91706b6c8a1e1f628b4ad",
+    "chainId": "eip155:56",
+    "name": "Based AI",
+    "precision": 18,
+    "color": "#AAAAB3",
+    "icon": "https://assets.coingecko.com/coins/images/29294/thumb/23753.png?1696528246",
+    "symbol": "BAI",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x2d94172436d869c1e3c094bead272508fab0d9e3": {
+    "assetId": "eip155:56/bep20:0x2d94172436d869c1e3c094bead272508fab0d9e3",
+    "chainId": "eip155:56",
+    "name": "Recharge on BNB Smart Chain",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/18120/thumb/thecharge.PNG?1696517623",
+    "symbol": "RCG",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x2db0d5cb907014c67dc201886624716fb5c71123": {
+    "assetId": "eip155:56/bep20:0x2db0d5cb907014c67dc201886624716fb5c71123",
+    "chainId": "eip155:56",
+    "name": "Ainu",
+    "precision": 9,
+    "color": "#685A41",
+    "icon": "https://assets.coingecko.com/coins/images/17022/thumb/AINU.jpg?1696516585",
+    "symbol": "AINU",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x2dd1b4d4548accea497050619965f91f78b3b532": {
+    "assetId": "eip155:56/bep20:0x2dd1b4d4548accea497050619965f91f78b3b532",
+    "chainId": "eip155:56",
+    "name": "Frax Price Index on BNB Smart Chain",
+    "precision": 18,
+    "color": "#0E0E0E",
+    "icon": "https://assets.coingecko.com/coins/images/24945/thumb/FPI_icon.png?1696524100",
+    "symbol": "FPI",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x2deedc40500078129beeeb3aaf14ea0c6ac264dd": {
+    "assetId": "eip155:56/bep20:0x2deedc40500078129beeeb3aaf14ea0c6ac264dd",
+    "chainId": "eip155:56",
+    "name": "Hinoki Protocol",
+    "precision": 18,
+    "color": "#20231D",
+    "icon": "https://assets.coingecko.com/coins/images/32149/thumb/Hinoki_logo.png?1696597061",
+    "symbol": "HNK",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x2dff88a56767223a5529ea5960da7a3f5f766406": {
+    "assetId": "eip155:56/bep20:0x2dff88a56767223a5529ea5960da7a3f5f766406",
+    "chainId": "eip155:56",
+    "name": "SPACE ID on BNB Smart Chain",
+    "precision": 18,
+    "color": "#1CEAA1",
+    "icon": "https://assets.coingecko.com/coins/images/29468/thumb/sid_token_logo_%28green2%29.png?1696528413",
+    "symbol": "ID",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x2e2ea48c9412e0abb2d6acccec571c6b6411725a": {
+    "assetId": "eip155:56/bep20:0x2e2ea48c9412e0abb2d6acccec571c6b6411725a",
+    "chainId": "eip155:56",
+    "name": "LunaOne",
+    "precision": 9,
+    "color": "#ACA4B9",
+    "icon": "https://assets.coingecko.com/coins/images/28227/thumb/input-onlinepngtools.png?1696527229",
+    "symbol": "XLN",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x2e40565771cf2bf8622c41cdd85701519f22418a": {
+    "assetId": "eip155:56/bep20:0x2e40565771cf2bf8622c41cdd85701519f22418a",
+    "chainId": "eip155:56",
+    "name": "ZCore",
+    "precision": 18,
+    "color": "#CDE6E5",
+    "icon": "https://assets.coingecko.com/coins/images/31008/thumb/Zcore.jpg?1696529845",
+    "symbol": "ZCR",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x2e42c9eac96833c6e16dc71c743cecc114ccd7e3": {
+    "assetId": "eip155:56/bep20:0x2e42c9eac96833c6e16dc71c743cecc114ccd7e3",
+    "chainId": "eip155:56",
+    "name": "MetaCash",
+    "precision": 18,
+    "color": "#57BD56",
+    "icon": "https://assets.coingecko.com/coins/images/22217/thumb/hzBuuMFM_400x400.jpg?1696521559",
+    "symbol": "META",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x2e53414853f058a9bc14e052431008483bd85b4c": {
+    "assetId": "eip155:56/bep20:0x2e53414853f058a9bc14e052431008483bd85b4c",
+    "chainId": "eip155:56",
+    "name": "Grok Codes",
+    "precision": 9,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/32994/thumb/logo_200px.png?1700102402",
+    "symbol": "GROK",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x2e7f28f0d27ffa238fdf7517a3bbe239b8189741": {
+    "assetId": "eip155:56/bep20:0x2e7f28f0d27ffa238fdf7517a3bbe239b8189741",
+    "chainId": "eip155:56",
+    "name": "HoppyInu",
+    "precision": 18,
+    "color": "#659024",
+    "icon": "https://assets.coingecko.com/coins/images/29209/thumb/HOPPYINU_200x200.png?1696528168",
+    "symbol": "HOPPYINU",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x2e8799f0a26d8a9f37a0b4747fa534f039c2d234": {
+    "assetId": "eip155:56/bep20:0x2e8799f0a26d8a9f37a0b4747fa534f039c2d234",
+    "chainId": "eip155:56",
+    "name": "Birb",
+    "precision": 18,
+    "color": "#42B1C7",
+    "icon": "https://assets.coingecko.com/coins/images/26373/thumb/birb-logo.png?1696525451",
+    "symbol": "BIRB",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x2eabcb730ca72f0afcbc9da24d105345cb0852aa": {
+    "assetId": "eip155:56/bep20:0x2eabcb730ca72f0afcbc9da24d105345cb0852aa",
+    "chainId": "eip155:56",
+    "name": "X Social Network on BNB Smart Chain",
+    "precision": 18,
+    "color": "#046DC1",
+    "icon": "https://assets.coingecko.com/coins/images/29214/thumb/log.png?1696528172",
+    "symbol": "X-AI",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x2ed9a5c8c13b93955103b9a7c167b67ef4d568a3": {
+    "assetId": "eip155:56/bep20:0x2ed9a5c8c13b93955103b9a7c167b67ef4d568a3",
+    "chainId": "eip155:56",
+    "name": "Mask Network on BNB Smart Chain",
+    "precision": 18,
+    "color": "#285FD8",
+    "icon": "https://assets.coingecko.com/coins/images/14051/thumb/Mask_Network.jpg?1696513776",
+    "symbol": "MASK",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x2ed9e96edd11a1ff5163599a66fb6f1c77fa9c66": {
+    "assetId": "eip155:56/bep20:0x2ed9e96edd11a1ff5163599a66fb6f1c77fa9c66",
+    "chainId": "eip155:56",
+    "name": "Lead on BNB Smart Chain",
+    "precision": 18,
+    "color": "#F6F1F6",
+    "icon": "https://assets.coingecko.com/coins/images/12384/thumb/lead.jpg?1696512207",
+    "symbol": "LEAD",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x2ee8ca014fdab5f5d0436c866937d32ef97373b0": {
+    "assetId": "eip155:56/bep20:0x2ee8ca014fdab5f5d0436c866937d32ef97373b0",
+    "chainId": "eip155:56",
+    "name": "Crimson Network",
+    "precision": 18,
+    "color": "#4A1695",
+    "icon": "https://assets.coingecko.com/coins/images/29211/thumb/26-FFDE23-A9-B4-43-A6-8-A4-F-5-B6242-A8-EAC5.jpg?1696528170",
+    "symbol": "CRIMSON",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x2efdff1e566202f82e774bb7add18c56cbb9427d": {
+    "assetId": "eip155:56/bep20:0x2efdff1e566202f82e774bb7add18c56cbb9427d",
+    "chainId": "eip155:56",
+    "name": "ZakumiFi",
+    "precision": 17,
+    "color": "#D4A07B",
+    "icon": "https://assets.coingecko.com/coins/images/28138/thumb/Logo-Zakumi.png?1696527145",
+    "symbol": "ZAFI",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x2f053e33bd590830858161d42c67e9e8a9390019": {
+    "assetId": "eip155:56/bep20:0x2f053e33bd590830858161d42c67e9e8a9390019",
+    "chainId": "eip155:56",
+    "name": "Vention",
+    "precision": 18,
+    "color": "#0484F4",
+    "icon": "https://assets.coingecko.com/coins/images/17497/thumb/logo-black-200.png?1696517037",
+    "symbol": "VENTION",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x2f0c6e147974bfbf7da557b88643d74c324053a2": {
+    "assetId": "eip155:56/bep20:0x2f0c6e147974bfbf7da557b88643d74c324053a2",
+    "chainId": "eip155:56",
+    "name": "CatCoin Token",
+    "precision": 0,
+    "color": "#5B585C",
+    "icon": "https://assets.coingecko.com/coins/images/23569/thumb/17318.png?1696522778",
+    "symbol": "CATS",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x2f11eeee0bf21e7661a22dbbbb9068f4ad191b86": {
+    "assetId": "eip155:56/bep20:0x2f11eeee0bf21e7661a22dbbbb9068f4ad191b86",
+    "chainId": "eip155:56",
+    "name": "Backed NIU Technologies on BNB Smart Chain",
+    "precision": 18,
+    "color": "#EC8898",
+    "icon": "https://assets.coingecko.com/coins/images/31869/thumb/b-NIU-200x200.png?1696530681",
+    "symbol": "BNIU",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x2f123cf3f37ce3328cc9b5b8415f9ec5109b45e7": {
+    "assetId": "eip155:56/bep20:0x2f123cf3f37ce3328cc9b5b8415f9ec5109b45e7",
+    "chainId": "eip155:56",
+    "name": "Backed GOVIES 0 6 months EURO on BNB Smart Chain",
+    "precision": 18,
+    "color": "#ADB4B6",
+    "icon": "https://assets.coingecko.com/coins/images/31870/thumb/b-C3-M-200x200.png?1696530682",
+    "symbol": "BC3M",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x2f29bc0ffaf9bff337b31cbe6cb5fb3bf12e5840": {
+    "assetId": "eip155:56/bep20:0x2f29bc0ffaf9bff337b31cbe6cb5fb3bf12e5840",
+    "chainId": "eip155:56",
+    "name": "DOLA on BNB Smart Chain",
+    "precision": 18,
+    "color": "#151D54",
+    "icon": "https://assets.coingecko.com/coins/images/14287/thumb/dola.png?1696513984",
+    "symbol": "DOLA",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x2f4e9c97aaffd67d98a640062d90e355b4a1c539": {
+    "assetId": "eip155:56/bep20:0x2f4e9c97aaffd67d98a640062d90e355b4a1c539",
+    "chainId": "eip155:56",
+    "name": "Afrostar",
+    "precision": 9,
+    "color": "#E9E5D1",
+    "icon": "https://assets.coingecko.com/coins/images/19784/thumb/afrostar.PNG?1696519206",
+    "symbol": "AFRO",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x2f5fb3d3ab21bde07c5aa389e92366651b406c30": {
+    "assetId": "eip155:56/bep20:0x2f5fb3d3ab21bde07c5aa389e92366651b406c30",
+    "chainId": "eip155:56",
+    "name": "BlocX  OLD ",
+    "precision": 9,
+    "color": "#0482BC",
+    "icon": "https://assets.coingecko.com/coins/images/31236/thumb/logo200x200.png?1696530062",
+    "symbol": "BLX",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x2fa5daf6fe0708fbd63b1a7d1592577284f52256": {
+    "assetId": "eip155:56/bep20:0x2fa5daf6fe0708fbd63b1a7d1592577284f52256",
+    "chainId": "eip155:56",
+    "name": "Unmarshal on BNB Smart Chain",
+    "precision": 18,
+    "color": "#D2F8E8",
+    "icon": "https://assets.coingecko.com/coins/images/14554/thumb/img_circle_256x256.png?1696514237",
+    "symbol": "MARSH",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x2fc00683e0b83a5472cefaf083babe3be9e7dfa6": {
+    "assetId": "eip155:56/bep20:0x2fc00683e0b83a5472cefaf083babe3be9e7dfa6",
+    "chainId": "eip155:56",
+    "name": "Tarmex",
+    "precision": 18,
+    "color": "#12B4AE",
+    "icon": "https://assets.coingecko.com/coins/images/32339/thumb/Tarmex.jpg?1697459583",
+    "symbol": "TARM",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x2fc9e0f34d86f65b495de7ee3bb5cbeac7f92b04": {
+    "assetId": "eip155:56/bep20:0x2fc9e0f34d86f65b495de7ee3bb5cbeac7f92b04",
+    "chainId": "eip155:56",
+    "name": "SeamlessSwap",
+    "precision": 18,
+    "color": "#C1B96D",
+    "icon": "https://assets.coingecko.com/coins/images/20836/thumb/h9aSYw1B_400x400.jpg?1696520228",
+    "symbol": "SEAMLESS",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x2fd2799e83a723b19026a979899dfb70bbf6bf6b": {
+    "assetId": "eip155:56/bep20:0x2fd2799e83a723b19026a979899dfb70bbf6bf6b",
+    "chainId": "eip155:56",
+    "name": "Jaiho Crypto",
+    "precision": 9,
+    "color": "#FCF2E4",
+    "icon": "https://assets.coingecko.com/coins/images/20311/thumb/jaiho.PNG?1696519714",
+    "symbol": "JAIHO",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x2fe8d24bbc8749c4ebe2854253d45c11797fb639": {
+    "assetId": "eip155:56/bep20:0x2fe8d24bbc8749c4ebe2854253d45c11797fb639",
+    "chainId": "eip155:56",
+    "name": "Miggy",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/32843/thumb/0x2fe8d24bbc8749c4ebe2854253d45c11797fb639.jpg?1699589434",
+    "symbol": "MIGGY",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x2ff0b946a6782190c4fe5d4971cfe79f0b6e4df2": {
+    "assetId": "eip155:56/bep20:0x2ff0b946a6782190c4fe5d4971cfe79f0b6e4df2",
+    "chainId": "eip155:56",
+    "name": "Mysterium on BNB Smart Chain",
+    "precision": 18,
+    "color": "#46245C",
+    "icon": "https://assets.coingecko.com/coins/images/757/thumb/mysterium.png?1696501911",
+    "symbol": "MYST",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x2ff3d0f6990a40261c66e1ff2017acbc282eb6d0": {
+    "assetId": "eip155:56/bep20:0x2ff3d0f6990a40261c66e1ff2017acbc282eb6d0",
+    "chainId": "eip155:56",
+    "name": "Venus SXP",
+    "precision": 8,
+    "color": "#121516",
+    "icon": "https://assets.coingecko.com/coins/images/13918/thumb/sxp.png?1696513659",
+    "symbol": "VSXP",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x2ff90b0c29ededdaf11c847925ea4a17789e88c3": {
+    "assetId": "eip155:56/bep20:0x2ff90b0c29ededdaf11c847925ea4a17789e88c3",
+    "chainId": "eip155:56",
+    "name": "Ginoa",
+    "precision": 18,
+    "color": "#14DCEC",
+    "icon": "https://assets.coingecko.com/coins/images/24033/thumb/gintoken.png?1696523225",
+    "symbol": "GINOA",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x2ffee7b4df74f7c6508a4af4d6d91058da5420d0": {
+    "assetId": "eip155:56/bep20:0x2ffee7b4df74f7c6508a4af4d6d91058da5420d0",
+    "chainId": "eip155:56",
+    "name": "ChainCade",
+    "precision": 9,
+    "color": "#DF2168",
+    "icon": "https://assets.coingecko.com/coins/images/17001/thumb/chaincade.png?1696516566",
+    "symbol": "CHAINCADE",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x3019bf2a2ef8040c242c9a4c5c4bd4c81678b2a1": {
+    "assetId": "eip155:56/bep20:0x3019bf2a2ef8040c242c9a4c5c4bd4c81678b2a1",
+    "chainId": "eip155:56",
+    "name": "STEPN on BNB Smart Chain",
+    "precision": 8,
+    "color": "#D9BA69",
+    "icon": "https://assets.coingecko.com/coins/images/23597/thumb/gmt.png?1696522804",
+    "symbol": "GMT",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x301af3eff0c904dc5ddd06faa808f653474f7fcc": {
+    "assetId": "eip155:56/bep20:0x301af3eff0c904dc5ddd06faa808f653474f7fcc",
+    "chainId": "eip155:56",
+    "name": "Unbound Finance on BNB Smart Chain",
+    "precision": 18,
+    "color": "#EAF2F5",
+    "icon": "https://assets.coingecko.com/coins/images/21412/thumb/Unbound_icon_png.png?1696520776",
+    "symbol": "UNB",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x3022d80e02075f5a2a442a318229487f9ea66d82": {
+    "assetId": "eip155:56/bep20:0x3022d80e02075f5a2a442a318229487f9ea66d82",
+    "chainId": "eip155:56",
+    "name": "Cells Token",
+    "precision": 18,
+    "color": "#C5E8C1",
+    "icon": "https://assets.coingecko.com/coins/images/30218/thumb/logo200.png?1696529129",
+    "symbol": "CELLS",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x3028b4395f98777123c7da327010c40f3c7cc4ef": {
+    "assetId": "eip155:56/bep20:0x3028b4395f98777123c7da327010c40f3c7cc4ef",
+    "chainId": "eip155:56",
+    "name": "Auctus on BNB Smart Chain",
+    "precision": 18,
+    "color": "#040404",
+    "icon": "https://assets.coingecko.com/coins/images/2165/thumb/Auc_Discord_Avatar1.png?1696503126",
+    "symbol": "AUC",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x30318737756db8239859fc697426016eab525f35": {
+    "assetId": "eip155:56/bep20:0x30318737756db8239859fc697426016eab525f35",
+    "chainId": "eip155:56",
+    "name": "SHIBA WRESTLER AI",
+    "precision": 9,
+    "color": "#CFC7D6",
+    "icon": "https://assets.coingecko.com/coins/images/32259/thumb/logo-incl-wrestling-SWWEAI-shiba-inu-tiken-crypto-eth-armi-200x200-0x30318737756Db8239859fc697426016eAB525f35.png?1697029025",
+    "symbol": "SWWEAI",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x304fc73e86601a61a6c6db5b0eafea587622acdc": {
+    "assetId": "eip155:56/bep20:0x304fc73e86601a61a6c6db5b0eafea587622acdc",
+    "chainId": "eip155:56",
+    "name": "CoTrader on BNB Smart Chain",
+    "precision": 18,
+    "color": "#17DAE4",
+    "icon": "https://assets.coingecko.com/coins/images/4205/thumb/logo_black.png?1696504825",
+    "symbol": "COT",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x3051cfb958dcd408fba70256073adba943fdf552": {
+    "assetId": "eip155:56/bep20:0x3051cfb958dcd408fba70256073adba943fdf552",
+    "chainId": "eip155:56",
+    "name": "TheForce Trade",
+    "precision": 18,
+    "color": "#3A3A3A",
+    "icon": "https://assets.coingecko.com/coins/images/15490/thumb/force.PNG?1696515135",
+    "symbol": "FOC",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x305bbd18f9a3b55047740843889521722dab1fde": {
+    "assetId": "eip155:56/bep20:0x305bbd18f9a3b55047740843889521722dab1fde",
+    "chainId": "eip155:56",
+    "name": "Arora",
+    "precision": 9,
+    "color": "#DAE7EF",
+    "icon": "https://assets.coingecko.com/coins/images/28654/thumb/cg_200x200.png?1696527638",
+    "symbol": "AROR",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x30807d3b851a31d62415b8bb7af7dca59390434a": {
+    "assetId": "eip155:56/bep20:0x30807d3b851a31d62415b8bb7af7dca59390434a",
+    "chainId": "eip155:56",
+    "name": "RadioShack on BNB Smart Chain",
+    "precision": 18,
+    "color": "#F5E7E0",
+    "icon": "https://assets.coingecko.com/coins/images/25307/thumb/ZVoPiysPJq6dPIZm_Se-6vjmsBepwhHlTQfdYZRILbHyVVTRUYCO-wmJJ4zT10HXCGv1j-ZyWr2u2sBaVlap5Y-ILqeXZuIquWdBDxxG0E0qDpgH7omLqYdgWWLSM_TUK9d1PiiYdu6bERdCDaucgFjlqwmhVQK4uV4jyUiXzchVUnu8Qt6SnxlNxz88G0mQ_tfiwkFv_vKqtgb1CcPycVZVz9.jpg?1696524444",
+    "symbol": "RADIO",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x308fc5cdd559be5cb62b08a26a4699bbef4a888f": {
+    "assetId": "eip155:56/bep20:0x308fc5cdd559be5cb62b08a26a4699bbef4a888f",
+    "chainId": "eip155:56",
+    "name": "Decentralized Community Investment Prot",
+    "precision": 9,
+    "color": "#040404",
+    "icon": "https://assets.coingecko.com/coins/images/17274/thumb/DCIP200.png?1696516828",
+    "symbol": "DCIP",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x30b5e345c79255101b8af22a19805a6fb96ddebb": {
+    "assetId": "eip155:56/bep20:0x30b5e345c79255101b8af22a19805a6fb96ddebb",
+    "chainId": "eip155:56",
+    "name": "REV3AL",
+    "precision": 18,
+    "color": "#6DC2B5",
+    "icon": "https://assets.coingecko.com/coins/images/26121/thumb/rev3l.png?1696525211",
+    "symbol": "REV3L",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x30dcf96a8a0c742aa1f534fac79e99d320c97901": {
+    "assetId": "eip155:56/bep20:0x30dcf96a8a0c742aa1f534fac79e99d320c97901",
+    "chainId": "eip155:56",
+    "name": "Sourceless",
+    "precision": 13,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/25931/thumb/https___s3.us-east-2.amazonaws.com_nomics-api_static_images_currencies_STR6.png?1696525010",
+    "symbol": "STR",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x3107c0a1126268ca303f8d99c712392fa596e6d7": {
+    "assetId": "eip155:56/bep20:0x3107c0a1126268ca303f8d99c712392fa596e6d7",
+    "chainId": "eip155:56",
+    "name": "Gem Exchange and Trading on BNB Smart Chain",
+    "precision": 18,
+    "color": "#6A6DDF",
+    "icon": "https://assets.coingecko.com/coins/images/12226/thumb/a.png?1696512059",
+    "symbol": "GXT",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x311e85452ec46d03d056317b979d444ea717dc7e": {
+    "assetId": "eip155:56/bep20:0x311e85452ec46d03d056317b979d444ea717dc7e",
+    "chainId": "eip155:56",
+    "name": "Vitteey",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/24796/thumb/vity.png?1696523955",
+    "symbol": "VITY",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x3125d4767d4e85434f7873f5c5dd59a86e850d44": {
+    "assetId": "eip155:56/bep20:0x3125d4767d4e85434f7873f5c5dd59a86e850d44",
+    "chainId": "eip155:56",
+    "name": "Green Foundation",
+    "precision": 18,
+    "color": "#069B45",
+    "icon": "https://assets.coingecko.com/coins/images/31031/thumb/Logo_200x200.png?1696529867",
+    "symbol": "TRIPX",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x314593fa9a2fa16432913dbccc96104541d32d11": {
+    "assetId": "eip155:56/bep20:0x314593fa9a2fa16432913dbccc96104541d32d11",
+    "chainId": "eip155:56",
+    "name": "DexKit on BNB Smart Chain",
+    "precision": 18,
+    "color": "#ECECEC",
+    "icon": "https://assets.coingecko.com/coins/images/13187/thumb/7739.png?1696512969",
+    "symbol": "KIT",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x31471e0791fcdbe82fbf4c44943255e923f1b794": {
+    "assetId": "eip155:56/bep20:0x31471e0791fcdbe82fbf4c44943255e923f1b794",
+    "chainId": "eip155:56",
+    "name": "Plant vs Undead",
+    "precision": 18,
+    "color": "#9CDC44",
+    "icon": "https://assets.coingecko.com/coins/images/17461/thumb/token-200x200.png?1696517004",
+    "symbol": "PVU",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x31491c35c094a0336f4859dd94ab9466709dec45": {
+    "assetId": "eip155:56/bep20:0x31491c35c094a0336f4859dd94ab9466709dec45",
+    "chainId": "eip155:56",
+    "name": "COLLIE INU on BNB Smart Chain",
+    "precision": 18,
+    "color": "#775848",
+    "icon": "https://assets.coingecko.com/coins/images/27365/thumb/Logo_New_200.png?1696526409",
+    "symbol": "COLLIE",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x315be92aba5c3aaaf82b0c0c613838342c1416e7": {
+    "assetId": "eip155:56/bep20:0x315be92aba5c3aaaf82b0c0c613838342c1416e7",
+    "chainId": "eip155:56",
+    "name": "BlueBenx",
+    "precision": 7,
+    "color": "#1166E8",
+    "icon": "https://assets.coingecko.com/coins/images/27460/thumb/B3S1F8VA_400x400.jpeg?1696526500",
+    "symbol": "BENX",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x316622977073bbc3df32e7d2a9b3c77596a0a603": {
+    "assetId": "eip155:56/bep20:0x316622977073bbc3df32e7d2a9b3c77596a0a603",
+    "chainId": "eip155:56",
+    "name": "Jarvis Brazilian Real on BNB Smart Chain",
+    "precision": 18,
+    "color": "#E7D821",
+    "icon": "https://assets.coingecko.com/coins/images/31446/thumb/03674260-1AE8-44C7-A78A-B44686BA1CD5.png?1696530260",
+    "symbol": "JBRL",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x317eb4ad9cfac6232f0046831322e895507bcbeb": {
+    "assetId": "eip155:56/bep20:0x317eb4ad9cfac6232f0046831322e895507bcbeb",
+    "chainId": "eip155:56",
+    "name": "Tidex",
+    "precision": 18,
+    "color": "#E8E8E9",
+    "icon": "https://assets.coingecko.com/coins/images/3137/thumb/1.png?1696503861",
+    "symbol": "TDX",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x3192ccddf1cdce4ff055ebc80f3f0231b86a7e30": {
+    "assetId": "eip155:56/bep20:0x3192ccddf1cdce4ff055ebc80f3f0231b86a7e30",
+    "chainId": "eip155:56",
+    "name": "InsurAce on BNB Smart Chain",
+    "precision": 18,
+    "color": "#DAEDD0",
+    "icon": "https://assets.coingecko.com/coins/images/14226/thumb/insur.png?1696513941",
+    "symbol": "INSUR",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x3194e783fdbaff5edacb71afb6e4c8d7aa67ac61": {
+    "assetId": "eip155:56/bep20:0x3194e783fdbaff5edacb71afb6e4c8d7aa67ac61",
+    "chainId": "eip155:56",
+    "name": "Bananace",
+    "precision": 18,
+    "color": "#E7C444",
+    "icon": "https://assets.coingecko.com/coins/images/30586/thumb/IMG-9193-2_%281%29.jpg?1696529449",
+    "symbol": "NANA",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x31acfce536b824ad0739e8d7b27cefaa4b8e4673": {
+    "assetId": "eip155:56/bep20:0x31acfce536b824ad0739e8d7b27cefaa4b8e4673",
+    "chainId": "eip155:56",
+    "name": "Lockness",
+    "precision": 18,
+    "color": "#5B44DB",
+    "icon": "https://assets.coingecko.com/coins/images/20176/thumb/lockness_bubles.png?1696519588",
+    "symbol": "LKN",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x31b79e34b32239f0c3604db4a451ce9256b92919": {
+    "assetId": "eip155:56/bep20:0x31b79e34b32239f0c3604db4a451ce9256b92919",
+    "chainId": "eip155:56",
+    "name": "Baby Aptos",
+    "precision": 9,
+    "color": "#2C4A40",
+    "icon": "https://assets.coingecko.com/coins/images/29883/thumb/baptos_new_200.png?1696528808",
+    "symbol": "BAPTOS",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x31c573d1a50a745b01862edaf2ae72017cea036a": {
+    "assetId": "eip155:56/bep20:0x31c573d1a50a745b01862edaf2ae72017cea036a",
+    "chainId": "eip155:56",
+    "name": "Souls of Meta",
+    "precision": 9,
+    "color": "#F2EFCA",
+    "icon": "https://assets.coingecko.com/coins/images/25515/thumb/soulsofmeta.7527682e.jpg?1696524648",
+    "symbol": "SOM",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x31d0a7ada4d4c131eb612db48861211f63e57610": {
+    "assetId": "eip155:56/bep20:0x31d0a7ada4d4c131eb612db48861211f63e57610",
+    "chainId": "eip155:56",
+    "name": "Starter xyz on BNB Smart Chain",
+    "precision": 18,
+    "color": "#272025",
+    "icon": "https://assets.coingecko.com/coins/images/14301/thumb/logo_poly_sym.png?1696513997",
+    "symbol": "START",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x31de61d9a39cb9f479570bd3dc3ac93bc0402cdb": {
+    "assetId": "eip155:56/bep20:0x31de61d9a39cb9f479570bd3dc3ac93bc0402cdb",
+    "chainId": "eip155:56",
+    "name": "NFTPunk Finance",
+    "precision": 9,
+    "color": "#162E2E",
+    "icon": "https://assets.coingecko.com/coins/images/15544/thumb/200x200%281%29.png?1696515185",
+    "symbol": "NFTPUNK",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x31e4efe290973ebe91b3a875a7994f650942d28f": {
+    "assetId": "eip155:56/bep20:0x31e4efe290973ebe91b3a875a7994f650942d28f",
+    "chainId": "eip155:56",
+    "name": "Shrapnel on BNB Smart Chain",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/32793/thumb/shrapnel.png?1699441661",
+    "symbol": "SHRAP",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x31e5e2b990cc9f03540b488fdc78d3806826f161": {
+    "assetId": "eip155:56/bep20:0x31e5e2b990cc9f03540b488fdc78d3806826f161",
+    "chainId": "eip155:56",
+    "name": "MetaMecha",
+    "precision": 18,
+    "color": "#5E4C7D",
+    "icon": "https://assets.coingecko.com/coins/images/31034/thumb/mm_icon_200-200.png?1696529870",
+    "symbol": "MM",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x31fda9ddc2352516a2901a2e4bf569d2cb6bb623": {
+    "assetId": "eip155:56/bep20:0x31fda9ddc2352516a2901a2e4bf569d2cb6bb623",
+    "chainId": "eip155:56",
+    "name": "Scratch Meme Coin on BNB Smart Chain",
+    "precision": 18,
+    "color": "#CF961D",
+    "icon": "https://assets.coingecko.com/coins/images/31323/thumb/logo_%283%29.png?1696530142",
+    "symbol": "SCRATS",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x3203c9e46ca618c8c1ce5dc67e7e9d75f5da2377": {
+    "assetId": "eip155:56/bep20:0x3203c9e46ca618c8c1ce5dc67e7e9d75f5da2377",
+    "chainId": "eip155:56",
+    "name": "Mobox",
+    "precision": 18,
+    "color": "#B4C8F9",
+    "icon": "https://assets.coingecko.com/coins/images/14751/thumb/mobox.PNG?1696514420",
+    "symbol": "MBOX",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x320d31183100280ccdf69366cd56180ea442a3e8": {
+    "assetId": "eip155:56/bep20:0x320d31183100280ccdf69366cd56180ea442a3e8",
+    "chainId": "eip155:56",
+    "name": "Lightcoin on BNB Smart Chain",
+    "precision": 8,
+    "color": "#503BB6",
+    "icon": "https://assets.coingecko.com/coins/images/16381/thumb/lhc.PNG?1696515979",
+    "symbol": "LHC",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x320f6c1304e1a2a50a0febb62ba6a9700043d152": {
+    "assetId": "eip155:56/bep20:0x320f6c1304e1a2a50a0febb62ba6a9700043d152",
+    "chainId": "eip155:56",
+    "name": "Pomerium Community Meme Token",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/32880/thumb/Logo.png?1699711684",
+    "symbol": "PME",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x3220ccbbc29d727bde85b7333d31b21e0d6bc6f4": {
+    "assetId": "eip155:56/bep20:0x3220ccbbc29d727bde85b7333d31b21e0d6bc6f4",
+    "chainId": "eip155:56",
+    "name": "Pup Doge",
+    "precision": 9,
+    "color": "#E4A535",
+    "icon": "https://assets.coingecko.com/coins/images/17473/thumb/pupdoge.PNG?1696517015",
+    "symbol": "PUPDOGE",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x3235b13708f178af6f110de7177ed5de10c1093d": {
+    "assetId": "eip155:56/bep20:0x3235b13708f178af6f110de7177ed5de10c1093d",
+    "chainId": "eip155:56",
+    "name": "Mongol NFT on BNB Smart Chain",
+    "precision": 18,
+    "color": "#E2E2E2",
+    "icon": "https://assets.coingecko.com/coins/images/23718/thumb/swI93LWg_400x400.jpg?1696522918",
+    "symbol": "MNFT",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x323665443cef804a3b5206103304bd4872ea4253": {
+    "assetId": "eip155:56/bep20:0x323665443cef804a3b5206103304bd4872ea4253",
+    "chainId": "eip155:56",
+    "name": "Verified USD on BNB Smart Chain",
+    "precision": 6,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/32948/thumb/usdv_%281%29.png?1699933314",
+    "symbol": "USDV",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x3244b3b6030f374bafa5f8f80ec2f06aaf104b64": {
+    "assetId": "eip155:56/bep20:0x3244b3b6030f374bafa5f8f80ec2f06aaf104b64",
+    "chainId": "eip155:56",
+    "name": "HeroFi ROFI",
+    "precision": 18,
+    "color": "#C7F2E2",
+    "icon": "https://assets.coingecko.com/coins/images/21296/thumb/herofi_logo.jpg?1696520665",
+    "symbol": "ROFI",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x32767ca0b39a1261e4ba392a605f7fab37d059c7": {
+    "assetId": "eip155:56/bep20:0x32767ca0b39a1261e4ba392a605f7fab37d059c7",
+    "chainId": "eip155:56",
+    "name": "Viva Classic",
+    "precision": 9,
+    "color": "#4B2274",
+    "icon": "https://assets.coingecko.com/coins/images/25293/thumb/EeIoXr_0_400x400.jpg?1696524432",
+    "symbol": "VIVA",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x328fd053c4bb968875afd9ad0af36fcf4a0bdda9": {
+    "assetId": "eip155:56/bep20:0x328fd053c4bb968875afd9ad0af36fcf4a0bdda9",
+    "chainId": "eip155:56",
+    "name": "AGII",
+    "precision": 18,
+    "color": "#244CDC",
+    "icon": "https://assets.coingecko.com/coins/images/32371/thumb/AGII.png?1699534856",
+    "symbol": "AGII",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x32d12029f62260e239b5b5c8f0bea9cb382cfdd6": {
+    "assetId": "eip155:56/bep20:0x32d12029f62260e239b5b5c8f0bea9cb382cfdd6",
+    "chainId": "eip155:56",
+    "name": "Homeros on BNB Smart Chain",
+    "precision": 18,
+    "color": "#D6E6F0",
+    "icon": "https://assets.coingecko.com/coins/images/11048/thumb/g1jAE5knZSlNUdLN8fEAQFMI4mTXCuNdrjj3i77rWhsIQADp3VWH2BHTkH7-oWwExxJk7Fu545LPeT3gMNzGlCZ63oX3-9sTjiqlSDo3fRLwHmhUgjD_jtKTl1AJ_F_UOOpsTqob9CxiWHXsSTlz0zODxOrjnqpMe4_cPT_C4EskSEVee_oooTasTQ6ONrv85Zcvc8Eeb8cHLsV.jpg?1696510991",
+    "symbol": "HMR",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x32d7da6a7cf25ed1b86e1b0ee9a62b0252d46b16": {
+    "assetId": "eip155:56/bep20:0x32d7da6a7cf25ed1b86e1b0ee9a62b0252d46b16",
+    "chainId": "eip155:56",
+    "name": "Ginza Network",
+    "precision": 18,
+    "color": "#DAAA64",
+    "icon": "https://assets.coingecko.com/coins/images/19906/thumb/GDZGB-Qw_400x400.png?1696519326",
+    "symbol": "GINZA",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x32f1518baace69e85b9e5ff844ebd617c52573ac": {
+    "assetId": "eip155:56/bep20:0x32f1518baace69e85b9e5ff844ebd617c52573ac",
+    "chainId": "eip155:56",
+    "name": "Dexsport",
+    "precision": 18,
+    "color": "#8646E8",
+    "icon": "https://assets.coingecko.com/coins/images/20583/thumb/desu.png?1696519990",
+    "symbol": "DESU",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x330f4fe5ef44b4d0742fe8bed8ca5e29359870df": {
+    "assetId": "eip155:56/bep20:0x330f4fe5ef44b4d0742fe8bed8ca5e29359870df",
+    "chainId": "eip155:56",
+    "name": "Jade Currency",
+    "precision": 18,
+    "color": "#AAA466",
+    "icon": "https://assets.coingecko.com/coins/images/10072/thumb/photo_2021-05-31_15.02.34.jpeg?1696510103",
+    "symbol": "JADE",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x33333ee26a7d02e41c33828b42fb1e0889143477": {
+    "assetId": "eip155:56/bep20:0x33333ee26a7d02e41c33828b42fb1e0889143477",
+    "chainId": "eip155:56",
+    "name": "Topshelf Finance on BNB Smart Chain",
+    "precision": 18,
+    "color": "#959AF8",
+    "icon": "https://assets.coingecko.com/coins/images/21580/thumb/b-MDs-Uqg-Q-400x400.jpg?1696520940",
+    "symbol": "LIQR",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x333761e0cdc40156169ce494bd5e13b33b576679": {
+    "assetId": "eip155:56/bep20:0x333761e0cdc40156169ce494bd5e13b33b576679",
+    "chainId": "eip155:56",
+    "name": "Dragon",
+    "precision": 18,
+    "color": "#54525A",
+    "icon": "https://assets.coingecko.com/coins/images/32360/thumb/IMG_0383.png?1698025842",
+    "symbol": "DRAGON",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x334b3ecb4dca3593bccc3c7ebd1a1c1d1780fbf1": {
+    "assetId": "eip155:56/bep20:0x334b3ecb4dca3593bccc3c7ebd1a1c1d1780fbf1",
+    "chainId": "eip155:56",
+    "name": "Venus DAI",
+    "precision": 8,
+    "color": "#F5F2EE",
+    "icon": "https://assets.coingecko.com/coins/images/13920/thumb/venus_dai.png?1696513660",
+    "symbol": "VDAI",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x33678c7b2a58480ef599ce73ad0d002dc6b6f7dc": {
+    "assetId": "eip155:56/bep20:0x33678c7b2a58480ef599ce73ad0d002dc6b6f7dc",
+    "chainId": "eip155:56",
+    "name": "Pepe CEO",
+    "precision": 18,
+    "color": "#372C26",
+    "icon": "https://assets.coingecko.com/coins/images/29409/thumb/ceo.png?1696528359",
+    "symbol": "PEO",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x336f374198c872ba760e85af9c6331c3c5a535d3": {
+    "assetId": "eip155:56/bep20:0x336f374198c872ba760e85af9c6331c3c5a535d3",
+    "chainId": "eip155:56",
+    "name": "Lif3 on BNB Smart Chain",
+    "precision": 18,
+    "color": "#E8EAF0",
+    "icon": "https://assets.coingecko.com/coins/images/31291/thumb/Tokens.png?1696530112",
+    "symbol": "LIF3",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x336f5a68fd46a25056a6c1d9c06072c691486acc": {
+    "assetId": "eip155:56/bep20:0x336f5a68fd46a25056a6c1d9c06072c691486acc",
+    "chainId": "eip155:56",
+    "name": "Mimir on BNB Smart Chain",
+    "precision": 18,
+    "color": "#F7F9FA",
+    "icon": "https://assets.coingecko.com/coins/images/19551/thumb/xaq5Xlzg_400x400.jpg?1696518984",
+    "symbol": "MIMIR",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x33714356e2a3e216d055440eb24d0e23458b1b85": {
+    "assetId": "eip155:56/bep20:0x33714356e2a3e216d055440eb24d0e23458b1b85",
+    "chainId": "eip155:56",
+    "name": "SafeZone",
+    "precision": 18,
+    "color": "#9C841B",
+    "icon": "https://assets.coingecko.com/coins/images/28204/thumb/ykjBAkw9_400x400.jpeg?1696527206",
+    "symbol": "SAFEZONE",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x33840024177a7daca3468912363bed8b425015c5": {
+    "assetId": "eip155:56/bep20:0x33840024177a7daca3468912363bed8b425015c5",
+    "chainId": "eip155:56",
+    "name": "Ebox on BNB Smart Chain",
+    "precision": 18,
+    "color": "#FC6C04",
+    "icon": "https://assets.coingecko.com/coins/images/14528/thumb/ebox.png?1696514213",
+    "symbol": "EBOX",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x339c72829ab7dd45c3c52f965e7abe358dd8761e": {
+    "assetId": "eip155:56/bep20:0x339c72829ab7dd45c3c52f965e7abe358dd8761e",
+    "chainId": "eip155:56",
+    "name": "Wanaka Farm",
+    "precision": 18,
+    "color": "#CCECDF",
+    "icon": "https://assets.coingecko.com/coins/images/18020/thumb/wanaka.PNG?1696517536",
+    "symbol": "WANA",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x33a3d962955a3862c8093d1273344719f03ca17c": {
+    "assetId": "eip155:56/bep20:0x33a3d962955a3862c8093d1273344719f03ca17c",
+    "chainId": "eip155:56",
+    "name": "Spore on BNB Smart Chain",
+    "precision": 9,
+    "color": "#374777",
+    "icon": "https://assets.coingecko.com/coins/images/14470/thumb/SPORE.png?1696514157",
+    "symbol": "SPORE",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x33aa7797ac6cb8b4652b68e33e5add8ad1218a8d": {
+    "assetId": "eip155:56/bep20:0x33aa7797ac6cb8b4652b68e33e5add8ad1218a8d",
+    "chainId": "eip155:56",
+    "name": "Aquanee",
+    "precision": 18,
+    "color": "#2A60E4",
+    "icon": "https://assets.coingecko.com/coins/images/25771/thumb/aqdc.png?1696524858",
+    "symbol": "AQDC",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x33be7644c0e489b3a0c639d103392d4f3e338158": {
+    "assetId": "eip155:56/bep20:0x33be7644c0e489b3a0c639d103392d4f3e338158",
+    "chainId": "eip155:56",
+    "name": "Marvelous NFTs on BNB Smart Chain",
+    "precision": 18,
+    "color": "#0F0B05",
+    "icon": "https://assets.coingecko.com/coins/images/22613/thumb/mnft.png?1696521929",
+    "symbol": "MNFT",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x33d08d8c7a168333a85285a68c0042b39fc3741d": {
+    "assetId": "eip155:56/bep20:0x33d08d8c7a168333a85285a68c0042b39fc3741d",
+    "chainId": "eip155:56",
+    "name": "AIOZ Network on BNB Smart Chain",
+    "precision": 18,
+    "color": "#F4F4F4",
+    "icon": "https://assets.coingecko.com/coins/images/14631/thumb/aioz-logo-200.png?1696514309",
+    "symbol": "AIOZ",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x33e0b24aaea62500ca79d33e26efe576bbf5bacf": {
+    "assetId": "eip155:56/bep20:0x33e0b24aaea62500ca79d33e26efe576bbf5bacf",
+    "chainId": "eip155:56",
+    "name": "2049",
+    "precision": 18,
+    "color": "#E4E4E4",
+    "icon": "https://assets.coingecko.com/coins/images/31716/thumb/1000002373.jpg?1696530537",
+    "symbol": "2049",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x3405ff989f8bb8efd6c85ad6b29219d3383a5fb0": {
+    "assetId": "eip155:56/bep20:0x3405ff989f8bb8efd6c85ad6b29219d3383a5fb0",
+    "chainId": "eip155:56",
+    "name": "Metaverse Kombat",
+    "precision": 18,
+    "color": "#54470B",
+    "icon": "https://assets.coingecko.com/coins/images/30180/thumb/Untitled_design_%282%29.png?1696529099",
+    "symbol": "MVK",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x340724464cf51a551106cc6657606ee7d87b28b9": {
+    "assetId": "eip155:56/bep20:0x340724464cf51a551106cc6657606ee7d87b28b9",
+    "chainId": "eip155:56",
+    "name": "Satoshi Island",
+    "precision": 18,
+    "color": "#1B7DA6",
+    "icon": "https://assets.coingecko.com/coins/images/26975/thumb/2KstL9si_400x400.jpeg?1696526029",
+    "symbol": "STC",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x3439baa16ad653f644fb9f1781113d80590542a5": {
+    "assetId": "eip155:56/bep20:0x3439baa16ad653f644fb9f1781113d80590542a5",
+    "chainId": "eip155:56",
+    "name": "CloudCoin Finance",
+    "precision": 18,
+    "color": "#7F91A9",
+    "icon": "https://assets.coingecko.com/coins/images/31304/thumb/ccfi_token_alpha_v2_1880x1880px_72dpi_small.png?1696530123",
+    "symbol": "CCFI",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x347dc3036defc7ac9b28f4d83c65502827693414": {
+    "assetId": "eip155:56/bep20:0x347dc3036defc7ac9b28f4d83c65502827693414",
+    "chainId": "eip155:56",
+    "name": "Meme AI",
+    "precision": 9,
+    "color": "#CCD4DC",
+    "icon": "https://assets.coingecko.com/coins/images/29481/thumb/memeai_200.png?1696528425",
+    "symbol": "MEMEAI",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x347e430b7cd1235e216be58ffa13394e5009e6e2": {
+    "assetId": "eip155:56/bep20:0x347e430b7cd1235e216be58ffa13394e5009e6e2",
+    "chainId": "eip155:56",
+    "name": "Gaia Everworld on BNB Smart Chain",
+    "precision": 18,
+    "color": "#084882",
+    "icon": "https://assets.coingecko.com/coins/images/19629/thumb/gaia.png?1696519058",
+    "symbol": "GAIA",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x3496212ec43cc49f5151ec4405efd4975e036f89": {
+    "assetId": "eip155:56/bep20:0x3496212ec43cc49f5151ec4405efd4975e036f89",
+    "chainId": "eip155:56",
+    "name": "LiveGreen Coin",
+    "precision": 18,
+    "color": "#94C366",
+    "icon": "https://assets.coingecko.com/coins/images/28197/thumb/lgclogo_final-200px.png?1696527200",
+    "symbol": "LGC",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x3498cfa7d24f7a7d9702cfc33e5fe14226ffcc99": {
+    "assetId": "eip155:56/bep20:0x3498cfa7d24f7a7d9702cfc33e5fe14226ffcc99",
+    "chainId": "eip155:56",
+    "name": "Red Falcon",
+    "precision": 18,
+    "color": "#D8D8E1",
+    "icon": "https://assets.coingecko.com/coins/images/28722/thumb/23100.png?1696527703",
+    "symbol": "RFN",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x34a279ece38f260a28c8872f416319e9b6aa428e": {
+    "assetId": "eip155:56/bep20:0x34a279ece38f260a28c8872f416319e9b6aa428e",
+    "chainId": "eip155:56",
+    "name": "Staked Ethos Reserve Note on BNB Smart Chain",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/31522/thumb/stERN.png?1696530332",
+    "symbol": "STERN",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x34ba3af693d6c776d73c7fa67e2b2e79be8ef4ed": {
+    "assetId": "eip155:56/bep20:0x34ba3af693d6c776d73c7fa67e2b2e79be8ef4ed",
+    "chainId": "eip155:56",
+    "name": "Shambala",
+    "precision": 18,
+    "color": "#D7B2ED",
+    "icon": "https://assets.coingecko.com/coins/images/19635/thumb/shambala.PNG?1696519063",
+    "symbol": "BALA",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x34c1433f5c547beb6174d0bbba8da7fdc4e81c1c": {
+    "assetId": "eip155:56/bep20:0x34c1433f5c547beb6174d0bbba8da7fdc4e81c1c",
+    "chainId": "eip155:56",
+    "name": "HEdpAY on BNB Smart Chain",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/7496/thumb/icon_hedpay.png?1696507765",
+    "symbol": "HDP",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x34e4a7454cae15990850166a8771cb8408b62a26": {
+    "assetId": "eip155:56/bep20:0x34e4a7454cae15990850166a8771cb8408b62a26",
+    "chainId": "eip155:56",
+    "name": "Felix",
+    "precision": 9,
+    "color": "#0B2D4E",
+    "icon": "https://assets.coingecko.com/coins/images/23492/thumb/Felix.jpeg?1696522702",
+    "symbol": "FLX",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x34e942859469c9db9c22f4eaf866e2c2401bb795": {
+    "assetId": "eip155:56/bep20:0x34e942859469c9db9c22f4eaf866e2c2401bb795",
+    "chainId": "eip155:56",
+    "name": "CoinMooner",
+    "precision": 18,
+    "color": "#BCB6CC",
+    "icon": "https://assets.coingecko.com/coins/images/19537/thumb/coinmooner.PNG?1696518970",
+    "symbol": "MOONER",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x350494bcc94efb5c6080f6a6f0043da27be2ad2c": {
+    "assetId": "eip155:56/bep20:0x350494bcc94efb5c6080f6a6f0043da27be2ad2c",
+    "chainId": "eip155:56",
+    "name": "DFS Mafia V2",
+    "precision": 9,
+    "color": "#252522",
+    "icon": "https://assets.coingecko.com/coins/images/27931/thumb/dfsm.png?1696526950",
+    "symbol": "DFSM",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x35156b404c3f9bdaf45ab65ba315419bcde3775c": {
+    "assetId": "eip155:56/bep20:0x35156b404c3f9bdaf45ab65ba315419bcde3775c",
+    "chainId": "eip155:56",
+    "name": "Chihiro Inu on BNB Smart Chain",
+    "precision": 9,
+    "color": "#9494BC",
+    "icon": "https://assets.coingecko.com/coins/images/19721/thumb/chiro200x200.png?1696519146",
+    "symbol": "CHIRO",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x35207068e057a01861a654463c01b04cc111e760": {
+    "assetId": "eip155:56/bep20:0x35207068e057a01861a654463c01b04cc111e760",
+    "chainId": "eip155:56",
+    "name": "Elo Inu",
+    "precision": 9,
+    "color": "#453424",
+    "icon": "https://assets.coingecko.com/coins/images/21570/thumb/5gLcVCKI.png?1696520930",
+    "symbol": "ELOINU",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x3523d58d8036b1c5c9a13493143c97aefc5ad422": {
+    "assetId": "eip155:56/bep20:0x3523d58d8036b1c5c9a13493143c97aefc5ad422",
+    "chainId": "eip155:56",
+    "name": "The Killbox Game",
+    "precision": 18,
+    "color": "#FCB610",
+    "icon": "https://assets.coingecko.com/coins/images/20828/thumb/icon_abe_token-200.png?1696520221",
+    "symbol": "KBOX",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x3542a28854c5243656fa5cfa1a2811a32e28c1c8": {
+    "assetId": "eip155:56/bep20:0x3542a28854c5243656fa5cfa1a2811a32e28c1c8",
+    "chainId": "eip155:56",
+    "name": "CAPITAL ROCK",
+    "precision": 18,
+    "color": "#856818",
+    "icon": "https://assets.coingecko.com/coins/images/31690/thumb/600-x-600.png?1696530508",
+    "symbol": "CR",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x3548e7c2af658957692ec0397eed431e85bf952b": {
+    "assetId": "eip155:56/bep20:0x3548e7c2af658957692ec0397eed431e85bf952b",
+    "chainId": "eip155:56",
+    "name": "GPT AI",
+    "precision": 9,
+    "color": "#090909",
+    "icon": "https://assets.coingecko.com/coins/images/29501/thumb/NW5Qz5wR_400x400.jpg?1696528446",
+    "symbol": "AI",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x35bedbf9291b22218a0da863170dcc9329ef2563": {
+    "assetId": "eip155:56/bep20:0x35bedbf9291b22218a0da863170dcc9329ef2563",
+    "chainId": "eip155:56",
+    "name": "Tap Fantasy",
+    "precision": 18,
+    "color": "#C48F46",
+    "icon": "https://assets.coingecko.com/coins/images/23854/thumb/17718.png?1696523055",
+    "symbol": "TAP",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x35da89a339de2c78f8fb1c5e1a9a9c6539e2fa8a": {
+    "assetId": "eip155:56/bep20:0x35da89a339de2c78f8fb1c5e1a9a9c6539e2fa8a",
+    "chainId": "eip155:56",
+    "name": "Utility Net",
+    "precision": 18,
+    "color": "#EDF5F8",
+    "icon": "https://assets.coingecko.com/coins/images/32016/thumb/unc.jpg?1696530814",
+    "symbol": "UNC",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x35de111558f691f77f791fb0c08b2d6b931a9d47": {
+    "assetId": "eip155:56/bep20:0x35de111558f691f77f791fb0c08b2d6b931a9d47",
+    "chainId": "eip155:56",
+    "name": "Chain Games on BNB Smart Chain",
+    "precision": 18,
+    "color": "#4656E9",
+    "icon": "https://assets.coingecko.com/coins/images/12257/thumb/chain-pfp-logo.png?1696512087",
+    "symbol": "CHAIN",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x35f3ffffcb622bc9f64fa561d74e983fd488d90c": {
+    "assetId": "eip155:56/bep20:0x35f3ffffcb622bc9f64fa561d74e983fd488d90c",
+    "chainId": "eip155:56",
+    "name": "PirateCash on BNB Smart Chain",
+    "precision": 8,
+    "color": "#C0C0C0",
+    "icon": "https://assets.coingecko.com/coins/images/7155/thumb/logo_%281%29.png?1696507453",
+    "symbol": "PIRATE",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x3606f220daeaeb3d47ac1923a8ce2a61205c88cd": {
+    "assetId": "eip155:56/bep20:0x3606f220daeaeb3d47ac1923a8ce2a61205c88cd",
+    "chainId": "eip155:56",
+    "name": "Race Kingdom",
+    "precision": 18,
+    "color": "#C7A5FC",
+    "icon": "https://assets.coingecko.com/coins/images/26472/thumb/Race_Kingdom_Logo.png?1696525545",
+    "symbol": "ATOZ",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x3619d82d01ac32d7bf2cb106533611cdbd758dcf": {
+    "assetId": "eip155:56/bep20:0x3619d82d01ac32d7bf2cb106533611cdbd758dcf",
+    "chainId": "eip155:56",
+    "name": "ZUZUAI",
+    "precision": 18,
+    "color": "#F4F4F4",
+    "icon": "https://assets.coingecko.com/coins/images/32261/thumb/ZUZU_LOGO.jpg?1697029471",
+    "symbol": "ZUZUAI",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x361c60b7c2828fcab80988d00d1d542c83387b50": {
+    "assetId": "eip155:56/bep20:0x361c60b7c2828fcab80988d00d1d542c83387b50",
+    "chainId": "eip155:56",
+    "name": "DeFiChain on BNB Smart Chain",
+    "precision": 18,
+    "color": "#FC04B4",
+    "icon": "https://assets.coingecko.com/coins/images/11757/thumb/symbol-defi-blockchain_200.png?1696511638",
+    "symbol": "DFI",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x3623f2b63d8f50b477849d29e7c9a6625331e89d": {
+    "assetId": "eip155:56/bep20:0x3623f2b63d8f50b477849d29e7c9a6625331e89d",
+    "chainId": "eip155:56",
+    "name": "Whole Earth Coin",
+    "precision": 18,
+    "color": "#BD923A",
+    "icon": "https://assets.coingecko.com/coins/images/16313/thumb/WEC_logo.png?1696515914",
+    "symbol": "WEC",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x36530092b1413c21ab7e5203197cf76d4d598888": {
+    "assetId": "eip155:56/bep20:0x36530092b1413c21ab7e5203197cf76d4d598888",
+    "chainId": "eip155:56",
+    "name": "ShopNEXT Reward Token",
+    "precision": 18,
+    "color": "#FCF8E6",
+    "icon": "https://assets.coingecko.com/coins/images/28662/thumb/STE_Logo.png?1696527647",
+    "symbol": "STE",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x365b475bc0eaf3c92f6b248b3f09d10f55ec900d": {
+    "assetId": "eip155:56/bep20:0x365b475bc0eaf3c92f6b248b3f09d10f55ec900d",
+    "chainId": "eip155:56",
+    "name": "CORGI CEO",
+    "precision": 9,
+    "color": "#8ABCD7",
+    "icon": "https://assets.coingecko.com/coins/images/29526/thumb/200x200.png?1696528469",
+    "symbol": "CORGICEO",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x366d71ab095735b7dae83ce2b82d5262ef655f10": {
+    "assetId": "eip155:56/bep20:0x366d71ab095735b7dae83ce2b82d5262ef655f10",
+    "chainId": "eip155:56",
+    "name": "Anypad",
+    "precision": 18,
+    "color": "#6CAFCC",
+    "icon": "https://assets.coingecko.com/coins/images/18385/thumb/vxBgiYKj_400x400.png?1696517876",
+    "symbol": "APAD",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x368ce786ea190f32439074e8d22e12ecb718b44c": {
+    "assetId": "eip155:56/bep20:0x368ce786ea190f32439074e8d22e12ecb718b44c",
+    "chainId": "eip155:56",
+    "name": "Epik Prime on BNB Smart Chain",
+    "precision": 18,
+    "color": "#E9DFEF",
+    "icon": "https://assets.coingecko.com/coins/images/17907/thumb/EPIK_Prime_LOGO.jpg?1696517427",
+    "symbol": "EPIK",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x36953b5ec00a13edceceb3af258d034913d2a79d": {
+    "assetId": "eip155:56/bep20:0x36953b5ec00a13edceceb3af258d034913d2a79d",
+    "chainId": "eip155:56",
+    "name": "ManuFactory",
+    "precision": 18,
+    "color": "#975F47",
+    "icon": "https://assets.coingecko.com/coins/images/21677/thumb/logo1_%288%29.png?1696521033",
+    "symbol": "MNFT",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x36a8fcb1f8bca02dc74eb34281de3b9143eae8e3": {
+    "assetId": "eip155:56/bep20:0x36a8fcb1f8bca02dc74eb34281de3b9143eae8e3",
+    "chainId": "eip155:56",
+    "name": "Ember on BNB Smart Chain",
+    "precision": 18,
+    "color": "#040405",
+    "icon": "https://assets.coingecko.com/coins/images/28480/thumb/Ember_Logo.jpg?1696527474",
+    "symbol": "EMBER",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x36bfbb1d5b3c9b336f3d64976599b6020ca805f1": {
+    "assetId": "eip155:56/bep20:0x36bfbb1d5b3c9b336f3d64976599b6020ca805f1",
+    "chainId": "eip155:56",
+    "name": "Planet Sandbox",
+    "precision": 18,
+    "color": "#D9F8E2",
+    "icon": "https://assets.coingecko.com/coins/images/18804/thumb/PS_logo_shape_%282%29.png?1696518266",
+    "symbol": "PSB",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x36d29fe3376874c3bea7a180cff6b89e1b2bfc9f": {
+    "assetId": "eip155:56/bep20:0x36d29fe3376874c3bea7a180cff6b89e1b2bfc9f",
+    "chainId": "eip155:56",
+    "name": "RUSHCMC",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/32742/thumb/Clown-Pennywise-logo03.png?1699247719",
+    "symbol": "RUSHCMC",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x36dbcbca106353d49e1e0e8974492ffb862a0c92": {
+    "assetId": "eip155:56/bep20:0x36dbcbca106353d49e1e0e8974492ffb862a0c92",
+    "chainId": "eip155:56",
+    "name": "SafeMeme",
+    "precision": 9,
+    "color": "#0F63B7",
+    "icon": "https://assets.coingecko.com/coins/images/15529/thumb/safememe.png?1696515171",
+    "symbol": "SME",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x36f1f32c728c3f330409ec1f0928fa3ab3c8a76f": {
+    "assetId": "eip155:56/bep20:0x36f1f32c728c3f330409ec1f0928fa3ab3c8a76f",
+    "chainId": "eip155:56",
+    "name": "Adroverse",
+    "precision": 18,
+    "color": "#F7F9F1",
+    "icon": "https://assets.coingecko.com/coins/images/24556/thumb/92mtj657_400x400.jpg?1696523732",
+    "symbol": "ADR",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x36f69c5ad047a0b689ed833c8ac410caefc24792": {
+    "assetId": "eip155:56/bep20:0x36f69c5ad047a0b689ed833c8ac410caefc24792",
+    "chainId": "eip155:56",
+    "name": "LayerGPT",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/32649/thumb/Frame_6_%281%29.png?1698895015",
+    "symbol": "LGPT",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x36f84ee7f720312443c02389a08185e3ecf0ebed": {
+    "assetId": "eip155:56/bep20:0x36f84ee7f720312443c02389a08185e3ecf0ebed",
+    "chainId": "eip155:56",
+    "name": "Meta Launcher",
+    "precision": 18,
+    "color": "#070404",
+    "icon": "https://assets.coingecko.com/coins/images/29331/thumb/logo_circle.png?1696528281",
+    "symbol": "MTLA",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x371c7ec6d8039ff7933a2aa28eb827ffe1f52f07": {
+    "assetId": "eip155:56/bep20:0x371c7ec6d8039ff7933a2aa28eb827ffe1f52f07",
+    "chainId": "eip155:56",
+    "name": "JOE on BNB Smart Chain",
+    "precision": 18,
+    "color": "#C06861",
+    "icon": "https://assets.coingecko.com/coins/images/17569/thumb/traderjoe.png?1696517104",
+    "symbol": "JOE",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x3735f21175ff2292f3b05e105852e8ee90b36af9": {
+    "assetId": "eip155:56/bep20:0x3735f21175ff2292f3b05e105852e8ee90b36af9",
+    "chainId": "eip155:56",
+    "name": "DreamPad Capital",
+    "precision": 18,
+    "color": "#1B1C1C",
+    "icon": "https://assets.coingecko.com/coins/images/29801/thumb/JCmWx56h_400x400.png?1696528730",
+    "symbol": "DREAMPAD",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x373e768f79c820aa441540d254dca6d045c6d25b": {
+    "assetId": "eip155:56/bep20:0x373e768f79c820aa441540d254dca6d045c6d25b",
+    "chainId": "eip155:56",
+    "name": "DeRace on BNB Smart Chain",
+    "precision": 18,
+    "color": "#141414",
+    "icon": "https://assets.coingecko.com/coins/images/17438/thumb/DERC_logo_coingecko.png?1696516984",
+    "symbol": "DERC",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x37407d1cabc422155a148bc7a3a0587c64225ea2": {
+    "assetId": "eip155:56/bep20:0x37407d1cabc422155a148bc7a3a0587c64225ea2",
+    "chainId": "eip155:56",
+    "name": "Meta FPS",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/29993/thumb/Logo200x200.png?1696528918",
+    "symbol": "MFPS",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x374ca32fd7934c5d43240e1e73fa9b2283468609": {
+    "assetId": "eip155:56/bep20:0x374ca32fd7934c5d43240e1e73fa9b2283468609",
+    "chainId": "eip155:56",
+    "name": "Equilibria Finance on BNB Smart Chain",
+    "precision": 18,
+    "color": "#060A08",
+    "icon": "https://assets.coingecko.com/coins/images/30645/thumb/QLLK8pmR_400x400.jpg?1696529516",
+    "symbol": "EQB",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x3757232b55e60da4a8793183ac030cfce4c3865d": {
+    "assetId": "eip155:56/bep20:0x3757232b55e60da4a8793183ac030cfce4c3865d",
+    "chainId": "eip155:56",
+    "name": "YDragon on BNB Smart Chain",
+    "precision": 18,
+    "color": "#E34E3C",
+    "icon": "https://assets.coingecko.com/coins/images/17807/thumb/icon.png?1696517328",
+    "symbol": "YDR",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x3764bc0de9b6a68c67929130aaec16b6060cab8c": {
+    "assetId": "eip155:56/bep20:0x3764bc0de9b6a68c67929130aaec16b6060cab8c",
+    "chainId": "eip155:56",
+    "name": "Xido Finance on BNB Smart Chain",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/16161/thumb/KJw4clj.png?1696515765",
+    "symbol": "XIDO",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x377c6e37633e390aef9afb4f5e0b16689351eed4": {
+    "assetId": "eip155:56/bep20:0x377c6e37633e390aef9afb4f5e0b16689351eed4",
+    "chainId": "eip155:56",
+    "name": "ZYX on BNB Smart Chain",
+    "precision": 18,
+    "color": "#FCCC04",
+    "icon": "https://assets.coingecko.com/coins/images/11964/thumb/zyx.png?1696511823",
+    "symbol": "ZYX",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x37807d4fbeb84124347b8899dd99616090d3e304": {
+    "assetId": "eip155:56/bep20:0x37807d4fbeb84124347b8899dd99616090d3e304",
+    "chainId": "eip155:56",
+    "name": "Lunr on BNB Smart Chain",
+    "precision": 4,
+    "color": "#11CCA4",
+    "icon": "https://assets.coingecko.com/coins/images/19256/thumb/lunr.png?1696518701",
+    "symbol": "LUNR",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x3780e00d4c60887af38345ccd44f7617dbfb10a0": {
+    "assetId": "eip155:56/bep20:0x3780e00d4c60887af38345ccd44f7617dbfb10a0",
+    "chainId": "eip155:56",
+    "name": "Dogecoin 2 0",
+    "precision": 9,
+    "color": "#304244",
+    "icon": "https://assets.coingecko.com/coins/images/17539/thumb/k4NUHHaO_400x400.jpg?1696517076",
+    "symbol": "DOGE2",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x37ac4d6140e54304d77437a5c11924f61a2d976f": {
+    "assetId": "eip155:56/bep20:0x37ac4d6140e54304d77437a5c11924f61a2d976f",
+    "chainId": "eip155:56",
+    "name": "SparkPoint Fuel",
+    "precision": 18,
+    "color": "#202C46",
+    "icon": "https://assets.coingecko.com/coins/images/13564/thumb/SFUEL.png?1696513318",
+    "symbol": "SFUEL",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x37ac5f3bfd18a164fc6cf0f0f0ecd334d9179d57": {
+    "assetId": "eip155:56/bep20:0x37ac5f3bfd18a164fc6cf0f0f0ecd334d9179d57",
+    "chainId": "eip155:56",
+    "name": "Vulture Peak",
+    "precision": 18,
+    "color": "#1C9EF4",
+    "icon": "https://assets.coingecko.com/coins/images/23729/thumb/vulture_logo_final-05.png?1696522929",
+    "symbol": "VPK",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x37e5da11b6a4dc6d2f7abe232cdd30b0b8fc63b1": {
+    "assetId": "eip155:56/bep20:0x37e5da11b6a4dc6d2f7abe232cdd30b0b8fc63b1",
+    "chainId": "eip155:56",
+    "name": "Bull BTC Club",
+    "precision": 18,
+    "color": "#111111",
+    "icon": "https://assets.coingecko.com/coins/images/28030/thumb/bbc.png?1696527045",
+    "symbol": "BBC",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x382ec3f9f2e79b03abf0127f3aa985b148cef6d7": {
+    "assetId": "eip155:56/bep20:0x382ec3f9f2e79b03abf0127f3aa985b148cef6d7",
+    "chainId": "eip155:56",
+    "name": "Zenland on BNB Smart Chain",
+    "precision": 18,
+    "color": "#5FA7FC",
+    "icon": "https://assets.coingecko.com/coins/images/29477/thumb/tokenicon200px.png?1696528421",
+    "symbol": "ZENF",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x3837e18b901629fcb200e0ad9c2f2441804bd6c8": {
+    "assetId": "eip155:56/bep20:0x3837e18b901629fcb200e0ad9c2f2441804bd6c8",
+    "chainId": "eip155:56",
+    "name": "Caketools",
+    "precision": 18,
+    "color": "#D6AA23",
+    "icon": "https://assets.coingecko.com/coins/images/20620/thumb/caketools-round-200.png?1696520025",
+    "symbol": "CKT",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x383e64ac8808dce10a39f0dda8a0484f44e68f5a": {
+    "assetId": "eip155:56/bep20:0x383e64ac8808dce10a39f0dda8a0484f44e68f5a",
+    "chainId": "eip155:56",
+    "name": "Paywong",
+    "precision": 16,
+    "color": "#844CFC",
+    "icon": "https://assets.coingecko.com/coins/images/29979/thumb/logo200x200-oval.png?1696528904",
+    "symbol": "PWG",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x3843f234b35a311e195608d32283a68284b3c44d": {
+    "assetId": "eip155:56/bep20:0x3843f234b35a311e195608d32283a68284b3c44d",
+    "chainId": "eip155:56",
+    "name": "La Peseta  OLD ",
+    "precision": 9,
+    "color": "#2D2D2D",
+    "icon": "https://assets.coingecko.com/coins/images/21645/thumb/VB_hrqI7_400x400.jpg?1696521004",
+    "symbol": "PTA",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x388d819724dd6d71760a38f00dc01d310d879771": {
+    "assetId": "eip155:56/bep20:0x388d819724dd6d71760a38f00dc01d310d879771",
+    "chainId": "eip155:56",
+    "name": "JustMoney on BNB Smart Chain",
+    "precision": 8,
+    "color": "#F2AA04",
+    "icon": "https://assets.coingecko.com/coins/images/25450/thumb/jm.png?1696524581",
+    "symbol": "JM",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x38b967d090fe06f7927a2b65cc57987c8594766b": {
+    "assetId": "eip155:56/bep20:0x38b967d090fe06f7927a2b65cc57987c8594766b",
+    "chainId": "eip155:56",
+    "name": "Infinity Protocol",
+    "precision": 18,
+    "color": "#044CAC",
+    "icon": "https://assets.coingecko.com/coins/images/28291/thumb/200x200.png?1696527290",
+    "symbol": "INFINITY",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x38fab266089aaf3bc2f11b791213840ea3d587c7": {
+    "assetId": "eip155:56/bep20:0x38fab266089aaf3bc2f11b791213840ea3d587c7",
+    "chainId": "eip155:56",
+    "name": "Aquachain",
+    "precision": 18,
+    "color": "#2CA0FC",
+    "icon": "https://assets.coingecko.com/coins/images/5596/thumb/aqua.png?1696506061",
+    "symbol": "AQUA",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x38ffa52c7628f5ccf871472e40c462e4483215c9": {
+    "assetId": "eip155:56/bep20:0x38ffa52c7628f5ccf871472e40c462e4483215c9",
+    "chainId": "eip155:56",
+    "name": "SwirlToken  OLD ",
+    "precision": 9,
+    "color": "#FC6C0C",
+    "icon": "https://assets.coingecko.com/coins/images/22575/thumb/swirl200.png?1696521893",
+    "symbol": "SWIRL",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x3901a1296e4f409d6fb1736a44aee597141f1a03": {
+    "assetId": "eip155:56/bep20:0x3901a1296e4f409d6fb1736a44aee597141f1a03",
+    "chainId": "eip155:56",
+    "name": "World Cause Coin",
+    "precision": 18,
+    "color": "#F9F8E5",
+    "icon": "https://assets.coingecko.com/coins/images/32347/thumb/world.jpg?1697471191",
+    "symbol": "CAUSE",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x391088b4594e41c003463c7e3a56a8ba00b8e7a9": {
+    "assetId": "eip155:56/bep20:0x391088b4594e41c003463c7e3a56a8ba00b8e7a9",
+    "chainId": "eip155:56",
+    "name": "PodFast",
+    "precision": 18,
+    "color": "#D4D2D2",
+    "icon": "https://assets.coingecko.com/coins/images/29408/thumb/Currency_Symbol_Round_250px_%281%29.png?1696528358",
+    "symbol": "FAST",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x3910db0600ea925f63c36ddb1351ab6e2c6eb102": {
+    "assetId": "eip155:56/bep20:0x3910db0600ea925f63c36ddb1351ab6e2c6eb102",
+    "chainId": "eip155:56",
+    "name": "Spartan Protocol",
+    "precision": 18,
+    "color": "#FB2414",
+    "icon": "https://assets.coingecko.com/coins/images/12638/thumb/coin_sparta_black_bg.png?1696512446",
+    "symbol": "SPARTA",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x39132daa2082e12ac33a08478a74362e3c394357": {
+    "assetId": "eip155:56/bep20:0x39132daa2082e12ac33a08478a74362e3c394357",
+    "chainId": "eip155:56",
+    "name": "CakeBot",
+    "precision": 9,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/32900/thumb/coinsniper_logo.png?1699800530",
+    "symbol": "CAKEBOT",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x3916984fa787d89b648ccd8d60b5ff07e0e8e4f4": {
+    "assetId": "eip155:56/bep20:0x3916984fa787d89b648ccd8d60b5ff07e0e8e4f4",
+    "chainId": "eip155:56",
+    "name": "Pube Finance",
+    "precision": 9,
+    "color": "#525252",
+    "icon": "https://assets.coingecko.com/coins/images/15425/thumb/2618620f.jpg?1696515070",
+    "symbol": "PUBE",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x393d87e44c7b1f5ba521b351532c24ece253b849": {
+    "assetId": "eip155:56/bep20:0x393d87e44c7b1f5ba521b351532c24ece253b849",
+    "chainId": "eip155:56",
+    "name": "Blind Boxes on BNB Smart Chain",
+    "precision": 18,
+    "color": "#090909",
+    "icon": "https://assets.coingecko.com/coins/images/14537/thumb/BLES-Logo-BW.png?1696514221",
+    "symbol": "BLES",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x3944ac66b9b9b40a6474022d6962b6caa001b5e3": {
+    "assetId": "eip155:56/bep20:0x3944ac66b9b9b40a6474022d6962b6caa001b5e3",
+    "chainId": "eip155:56",
+    "name": "Elpis Battle",
+    "precision": 18,
+    "color": "#35CA28",
+    "icon": "https://assets.coingecko.com/coins/images/20642/thumb/B%E1%BA%A3n_sao_c%E1%BB%A7a_token_EBA.png?1696520045",
+    "symbol": "EBA",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x394bba8f309f3462b31238b3fd04b83f71a98848": {
+    "assetId": "eip155:56/bep20:0x394bba8f309f3462b31238b3fd04b83f71a98848",
+    "chainId": "eip155:56",
+    "name": "Pocoland",
+    "precision": 18,
+    "color": "#E8B416",
+    "icon": "https://assets.coingecko.com/coins/images/18293/thumb/poco.PNG?1696517785",
+    "symbol": "POCO",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x39703a67bac0e39f9244d97f4c842d15fbad9c1f": {
+    "assetId": "eip155:56/bep20:0x39703a67bac0e39f9244d97f4c842d15fbad9c1f",
+    "chainId": "eip155:56",
+    "name": "The Three Kingdoms",
+    "precision": 18,
+    "color": "#9B814A",
+    "icon": "https://assets.coingecko.com/coins/images/18948/thumb/TTK_-_Square_Icon_01.png?1696518404",
+    "symbol": "TTK",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x39ae8eefb05138f418bb27659c21632dc1ddab10": {
+    "assetId": "eip155:56/bep20:0x39ae8eefb05138f418bb27659c21632dc1ddab10",
+    "chainId": "eip155:56",
+    "name": "KardiaChain",
+    "precision": 18,
+    "color": "#070707",
+    "icon": "https://assets.coingecko.com/coins/images/7942/thumb/kai.png?1696508172",
+    "symbol": "KAI",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x39b548bb66d6e2400b4288b25f4837f55fbed3e5": {
+    "assetId": "eip155:56/bep20:0x39b548bb66d6e2400b4288b25f4837f55fbed3e5",
+    "chainId": "eip155:56",
+    "name": "Baby YooshiApe",
+    "precision": 18,
+    "color": "#DC2434",
+    "icon": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAIAAAACACAMAAAD04JH5AAADAFBMVEUtN0jYJjf///8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAN1DP1AAABAHRSTlP/////AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAf6K/dgAAQItJREFUeNoBgEB/vwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAgICAgICAgICAgICAQEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgICAgICAgICAgICAgICAAAAAAAAAAAAAAAAAAACAgICAgICAQEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgEBAQEBAQECAgICAgICAgICAgICAgICAgIAAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgICAgICAgICAgICAgICAwAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAgICAgICAgICAgIDAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgICAgICAgICAgICAgICAwAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAgICAgICAgICAgIDAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgICAgICAgICAgICAgICAwAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAgICAgICAgICAgIDAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgICAgICAgICAgICAgICAwAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAgICAgICAgICAgIDAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgICAgICAgICAgICAgICAwAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAgICAgICAgICAgIDAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgICAgICAgICAgICAgICAwAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAgICAgICAgICAgIDAAMDAwMDAwMDAwMDAgICAgICAgEBAQEBAQECAgICAgICAQMDAwMDAwMDAwMDAwMDAwMDAwMDAgICAgICAgAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQEBAwMDAwMDAwMDAwMDAwICAgIDAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQEBAQEBAQAAAAAAAAAAAAICAgIDAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQEBAQEBAQAAAAAAAAAAAAICAgIDAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQEBAQEBAQAAAAAAAAAAAAICAgIDAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQEBAQEBAQAAAAAAAAAAAAICAgIDAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQEBAQEBAQAAAAAAAAAAAAICAgIDAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQEBAQEBAQAAAAAAAAAAAAICAgIDAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAMDAwMDAwMAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQEBAQEBAQAAAAAAAAAAAAICAgIDAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQEBAQEBAQAAAAAAAAAAAAICAgIDAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQEBAQEBAQAAAAAAAAAAAAICAgIDAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQEBAQEBAQAAAAAAAAAAAAICAgIDAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQEBAQEBAQAAAAAAAAAAAAICAgIDAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQEBAQEBAQAAAAAAAAAAAAICAgIDAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQEBAQEBAQAAAAAAAAAAAAICAgIDAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQEBAwMDAwMDAgICAgICAgICAgICAgICAgICAgICAAAAAAAAAAAAAAAAAAACAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMBAQEBAQEBAQEBAQAAAAAAAAAAAAICAgIDAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQEBAQEBAQEBAgICAgICAgICAgICAgICAgICAgICAwAAAAAAAAAAAAAAAAACAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMBAQEBAQEBAQEBAQAAAAAAAAAAAAICAgIDAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQEBAQEBAQEBAgICAgICAgICAgICAgICAgICAgICAwAAAAAAAAAAAAAAAAACAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMBAQEBAQEBAQEBAQAAAAAAAAAAAAICAgIDAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQEBAQEBAQEBAgICAgICAgICAgICAgICAgICAgICAwAAAAAAAAAAAAAAAAACAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMBAQEBAQEBAQEBAQAAAAAAAAAAAAICAgIDAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQEBAQEBAQEBAgICAgICAgICAgICAgICAgICAgICAwAAAAAAAAAAAAAAAAACAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMBAQEBAQEBAQEBAQAAAAAAAAAAAAICAgIDAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQEBAQEBAQEBAgICAgICAgICAgICAgICAgICAgICAwAAAAAAAAAAAAAAAAACAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMBAQEBAQEBAQEBAQAAAAAAAAAAAAICAgIDAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQEBAQEBAQEBAgICAgICAgICAgICAgICAgICAgICAwAAAAAAAAAAAAAAAAACAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMBAQEBAQEBAQEBAQAAAAAAAAAAAAICAgIDAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQEBAQEBAQEBAQMDAwMDAwMDAwMDAwMDAwMDAwMDAgICAgICAgAAAAAAAAACAgICAgICAwMDAwMDAwMDAwMDAwMDAwMDAwMDAgICAgICAgMBAQEBAQEBAQEBAQAAAAAAAAAAAAICAgIDAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQEBAQEBAQAAAAAAAAAAAAICAgIDAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQEBAQEBAQAAAAAAAAAAAAICAgIDAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQEBAQEBAQAAAAAAAAAAAAICAgIDAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQEBAQEBAQAAAAAAAAAAAAICAgIDAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQEBAQEBAQAAAAAAAAAAAAICAgIDAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgICAgICAgMAAAAAAAACAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQEBAQEBAQAAAAAAAAAAAAICAgIDAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgICAgICAgMAAAAAAAACAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQEBAQEBAQAAAAAAAAAAAAICAgIDAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAgICAgICAgMAAAAAAAACAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQEBAQEBAQAAAAAAAAAAAAICAgIDAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAgICAgICAgMAAAAAAAACAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQEBAQEBAQAAAAAAAAAAAAICAgIDAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAgICAgICAgMAAAAAAAACAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQEBAQEBAQAAAAAAAAAAAAICAgIDAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAgICAgICAgMAAAAAAAACAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQEBAQEBAQAAAAAAAAAAAAICAgIDAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAgICAgICAgMAAAAAAAACAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQEBAQEBAQAAAAAAAAAAAAICAgIDAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAgICAgICAgMAAAAAAAACAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQEBAQEBAQAAAAAAAAAAAAICAgIDAgICAgICAgICAgICAQMDAwMDAwMBAQEBAQEBAwMDAwMDAgICAgICAgICAgICAgICAgICAgICAAMDAwMDAwMAAAAAAAACAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAgICAgICAgICAgIDAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgICAgICAgICAgICAgICAwAAAAAAAAAAAAAAAAACAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAgICAgICAgICAgIDAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgICAgICAgICAgICAgICAwAAAAAAAAAAAAAAAAACAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAgICAgICAgICAgIDAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgICAgICAgICAgICAgICAwAAAAAAAAAAAAAAAAACAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAgICAgICAgICAgIDAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgICAgICAgICAgICAgICAwAAAAAAAAAAAAAAAAACAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAgICAgICAgICAgIDAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgICAgICAgICAgICAgICAwAAAAAAAAAAAAAAAAACAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAgICAgICAgICAgIDAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgICAgICAgICAgICAgICAwAAAAAAAAAAAAAAAAACAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAgICAgICAgICAgIDAAMDAwMDAwMDAwMDAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAMDAwMDAwMDAwMDAwMDAwMDAwMDAwAAAAAAAAAAAAAAAAAAAwMDAwMDAwAAAAAAAAAAAAAAAAAAAAAAAAEBAQMDAwMDAwMBAQEBAQEBAwMDAwMDAwMDAwMDAwMDAwMDAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOuVMIaWVnE4AAAAAElFTkSuQmCC",
+    "symbol": "BYOOSHIAPE",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x39bff8613defd221b0410ed3d4e5c07512d55f2d": {
+    "assetId": "eip155:56/bep20:0x39bff8613defd221b0410ed3d4e5c07512d55f2d",
+    "chainId": "eip155:56",
+    "name": "Cubiex Power",
+    "precision": 18,
+    "color": "#0D262C",
+    "icon": "https://assets.coingecko.com/coins/images/16183/thumb/Cubiex.jpg?1696515785",
+    "symbol": "CBIX-P",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x39dc1f91fee49c03a0db558254707116101518bf": {
+    "assetId": "eip155:56/bep20:0x39dc1f91fee49c03a0db558254707116101518bf",
+    "chainId": "eip155:56",
+    "name": "Fantaverse",
+    "precision": 18,
+    "color": "#070707",
+    "icon": "https://assets.coingecko.com/coins/images/29539/thumb/ut.png?1696528481",
+    "symbol": "UT",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x3a06212763caf64bf101daa4b0cebb0cd393fa1a": {
+    "assetId": "eip155:56/bep20:0x3a06212763caf64bf101daa4b0cebb0cd393fa1a",
+    "chainId": "eip155:56",
+    "name": "delta theta on BNB Smart Chain",
+    "precision": 18,
+    "color": "#147CF4",
+    "icon": "https://assets.coingecko.com/coins/images/15697/thumb/logo-DT-square.png?1696515325",
+    "symbol": "DLTA",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x3a2927e68749dd6ad0a568d7c05b587863c0bc10": {
+    "assetId": "eip155:56/bep20:0x3a2927e68749dd6ad0a568d7c05b587863c0bc10",
+    "chainId": "eip155:56",
+    "name": "Nunu Spirits on BNB Smart Chain",
+    "precision": 18,
+    "color": "#A0CF41",
+    "icon": "https://assets.coingecko.com/coins/images/24378/thumb/NNT_99cc33.png?1696523561",
+    "symbol": "NNT",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x3a36dc12efaa14a3f692b94f97450594459661b6": {
+    "assetId": "eip155:56/bep20:0x3a36dc12efaa14a3f692b94f97450594459661b6",
+    "chainId": "eip155:56",
+    "name": "Profit Blue",
+    "precision": 18,
+    "color": "#B2982B",
+    "icon": "https://assets.coingecko.com/coins/images/30696/thumb/logo.png?1696529565",
+    "symbol": "BLUE",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x3a599e584075065eaaac768d75eaef85c2f2ff64": {
+    "assetId": "eip155:56/bep20:0x3a599e584075065eaaac768d75eaef85c2f2ff64",
+    "chainId": "eip155:56",
+    "name": "Frutti Dino",
+    "precision": 18,
+    "color": "#7E6F26",
+    "icon": "https://assets.coingecko.com/coins/images/27626/thumb/FDT_color_symbol_200.png?1696526656",
+    "symbol": "FDT",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x3a5fccbdcc2684be588575f063acba78e09aad4a": {
+    "assetId": "eip155:56/bep20:0x3a5fccbdcc2684be588575f063acba78e09aad4a",
+    "chainId": "eip155:56",
+    "name": "VeldoraBSC",
+    "precision": 9,
+    "color": "#470E14",
+    "icon": "https://assets.coingecko.com/coins/images/22737/thumb/CMC-VDORA-LOGO-200x200.png?1696522042",
+    "symbol": "VDORA",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x3a766862fac4fc0d971de3836dfcc99b03f6cedd": {
+    "assetId": "eip155:56/bep20:0x3a766862fac4fc0d971de3836dfcc99b03f6cedd",
+    "chainId": "eip155:56",
+    "name": "Totocat",
+    "precision": 9,
+    "color": "#CBC7BD",
+    "icon": "https://assets.coingecko.com/coins/images/29419/thumb/logo_hd.png?1696528368",
+    "symbol": "TOTOCAT",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x3a7bea5d56bbcdc599827444786c370cf4d62dfa": {
+    "assetId": "eip155:56/bep20:0x3a7bea5d56bbcdc599827444786c370cf4d62dfa",
+    "chainId": "eip155:56",
+    "name": "Contractus",
+    "precision": 9,
+    "color": "#1C242C",
+    "icon": "https://assets.coingecko.com/coins/images/31300/thumb/logo-200-200.png?1696530120",
+    "symbol": "CTUS",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x3a806a3315e35b3f5f46111adb6e2baf4b14a70d": {
+    "assetId": "eip155:56/bep20:0x3a806a3315e35b3f5f46111adb6e2baf4b14a70d",
+    "chainId": "eip155:56",
+    "name": "Libera Financial on BNB Smart Chain",
+    "precision": 18,
+    "color": "#4AAEA9",
+    "icon": "https://assets.coingecko.com/coins/images/26194/thumb/20791.png?1696525280",
+    "symbol": "LIBERA",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x3a986b934724c65741d31119f9613fd6811ee949": {
+    "assetId": "eip155:56/bep20:0x3a986b934724c65741d31119f9613fd6811ee949",
+    "chainId": "eip155:56",
+    "name": "ShibZilla2 0",
+    "precision": 18,
+    "color": "#836351",
+    "icon": "https://assets.coingecko.com/coins/images/31070/thumb/SBZ2.0.jpg?1696529904",
+    "symbol": "SBZ20",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x3a9eed92422abdd7566fba8c34bb74b3f656dbb3": {
+    "assetId": "eip155:56/bep20:0x3a9eed92422abdd7566fba8c34bb74b3f656dbb3",
+    "chainId": "eip155:56",
+    "name": "Kambria on BNB Smart Chain",
+    "precision": 18,
+    "color": "#1CF4C4",
+    "icon": "https://assets.coingecko.com/coins/images/4784/thumb/kambria.png?1696505340",
+    "symbol": "KAT",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x3aa6b9a5306d1cd48b0466cfb130b08a70257e12": {
+    "assetId": "eip155:56/bep20:0x3aa6b9a5306d1cd48b0466cfb130b08a70257e12",
+    "chainId": "eip155:56",
+    "name": "Gorilla Finance",
+    "precision": 18,
+    "color": "#BBBBBB",
+    "icon": "https://assets.coingecko.com/coins/images/29567/thumb/IMG_20230322_210428_858.png?1696528507",
+    "symbol": "GORILLA",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x3ac0f8cecc1fb0ee6c2017a072d52e85b00c6694": {
+    "assetId": "eip155:56/bep20:0x3ac0f8cecc1fb0ee6c2017a072d52e85b00c6694",
+    "chainId": "eip155:56",
+    "name": "KingSpeed",
+    "precision": 18,
+    "color": "#C3DC77",
+    "icon": "https://assets.coingecko.com/coins/images/21246/thumb/attachment.png?1696520619",
+    "symbol": "KSC",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x3ad9594151886ce8538c1ff615efa2385a8c3a88": {
+    "assetId": "eip155:56/bep20:0x3ad9594151886ce8538c1ff615efa2385a8c3a88",
+    "chainId": "eip155:56",
+    "name": "Safemars",
+    "precision": 9,
+    "color": "#B6B2B2",
+    "icon": "https://assets.coingecko.com/coins/images/14451/thumb/MARTIAN.?1696514139",
+    "symbol": "SAFEMARS",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x3aeff4e27e1f9144ed75ba65a80bdfee345f413e": {
+    "assetId": "eip155:56/bep20:0x3aeff4e27e1f9144ed75ba65a80bdfee345f413e",
+    "chainId": "eip155:56",
+    "name": "BUMooN",
+    "precision": 9,
+    "color": "#CBE1EB",
+    "icon": "https://assets.coingecko.com/coins/images/17570/thumb/bumn-logo-200.png?1696517105",
+    "symbol": "BUMN",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x3b0e967ce7712ec68131a809db4f78ce9490e779": {
+    "assetId": "eip155:56/bep20:0x3b0e967ce7712ec68131a809db4f78ce9490e779",
+    "chainId": "eip155:56",
+    "name": "Souni",
+    "precision": 18,
+    "color": "#3A2716",
+    "icon": "https://assets.coingecko.com/coins/images/24297/thumb/WcOQ_Ees_400x400.jpg?1696523479",
+    "symbol": "SON",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x3b198e26e473b8fab2085b37978e36c9de5d7f68": {
+    "assetId": "eip155:56/bep20:0x3b198e26e473b8fab2085b37978e36c9de5d7f68",
+    "chainId": "eip155:56",
+    "name": "chrono tech on BNB Smart Chain",
+    "precision": 6,
+    "color": "#6484FC",
+    "icon": "https://assets.coingecko.com/coins/images/604/thumb/time-32x32.png?1696501802",
+    "symbol": "TIME",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x3b2cb8b2a9baf200142456c550a328e6c45c176b": {
+    "assetId": "eip155:56/bep20:0x3b2cb8b2a9baf200142456c550a328e6c45c176b",
+    "chainId": "eip155:56",
+    "name": "Forever Burn",
+    "precision": 9,
+    "color": "#0D0507",
+    "icon": "https://assets.coingecko.com/coins/images/28156/thumb/Forever_Burn.jpeg?1696527161",
+    "symbol": "FBURN",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x3b6564b5da73a41d3a66e6558a98fd0e9e1e77ad": {
+    "assetId": "eip155:56/bep20:0x3b6564b5da73a41d3a66e6558a98fd0e9e1e77ad",
+    "chainId": "eip155:56",
+    "name": "Unitus on BNB Smart Chain",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/33178/thumb/IMG_0051.jpeg?1700924333",
+    "symbol": "UTS",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x3b76374cc2dfe28cc373dca6d5024791b2586335": {
+    "assetId": "eip155:56/bep20:0x3b76374cc2dfe28cc373dca6d5024791b2586335",
+    "chainId": "eip155:56",
+    "name": "ADADao",
+    "precision": 18,
+    "color": "#C4C6CD",
+    "icon": "https://assets.coingecko.com/coins/images/24372/thumb/dkw8F6mr_400x400.jpg?1696523556",
+    "symbol": "ADAO",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x3b79a28264fc52c7b4cea90558aa0b162f7faf57": {
+    "assetId": "eip155:56/bep20:0x3b79a28264fc52c7b4cea90558aa0b162f7faf57",
+    "chainId": "eip155:56",
+    "name": "Public Index Network on BNB Smart Chain",
+    "precision": 18,
+    "color": "#BC5456",
+    "icon": "https://assets.coingecko.com/coins/images/241/thumb/pin.jpeg?1696501594",
+    "symbol": "PIN",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x3b95702dd0ce375462f131f805f9ee6e1563f8d5": {
+    "assetId": "eip155:56/bep20:0x3b95702dd0ce375462f131f805f9ee6e1563f8d5",
+    "chainId": "eip155:56",
+    "name": "This is Fine",
+    "precision": 18,
+    "color": "#F2D427",
+    "icon": "https://assets.coingecko.com/coins/images/31851/thumb/IMG_0371.png?1696530665",
+    "symbol": "FINE",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x3bb55ba11f1a220c7c1e15b56e6cf9c69519c50f": {
+    "assetId": "eip155:56/bep20:0x3bb55ba11f1a220c7c1e15b56e6cf9c69519c50f",
+    "chainId": "eip155:56",
+    "name": "King Dog Inu",
+    "precision": 9,
+    "color": "#88704B",
+    "icon": "https://assets.coingecko.com/coins/images/23703/thumb/200.png?1696522904",
+    "symbol": "KINGDOG",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x3bb9496e98f8a3bbd17cd91b63ba9b79643db820": {
+    "assetId": "eip155:56/bep20:0x3bb9496e98f8a3bbd17cd91b63ba9b79643db820",
+    "chainId": "eip155:56",
+    "name": "Bull Run",
+    "precision": 18,
+    "color": "#F2F0F0",
+    "icon": "https://assets.coingecko.com/coins/images/31511/thumb/photo_2023-08-23_22-10-43.png?1696530321",
+    "symbol": "BULL",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x3bc5ac0dfdc871b365d159f728dd1b9a0b5481e8": {
+    "assetId": "eip155:56/bep20:0x3bc5ac0dfdc871b365d159f728dd1b9a0b5481e8",
+    "chainId": "eip155:56",
+    "name": "Stader on BNB Smart Chain",
+    "precision": 18,
+    "color": "#080808",
+    "icon": "https://assets.coingecko.com/coins/images/20658/thumb/SD_Token_Logo.png?1696520060",
+    "symbol": "SD",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x3bfad48181c9e88e1dd9c1b48887e33e2653db4d": {
+    "assetId": "eip155:56/bep20:0x3bfad48181c9e88e1dd9c1b48887e33e2653db4d",
+    "chainId": "eip155:56",
+    "name": "ViCat",
+    "precision": 7,
+    "color": "#8A754E",
+    "icon": "https://assets.coingecko.com/coins/images/26125/thumb/ViCat_Logo_200x200.PNG?1696525214",
+    "symbol": "VICAT",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x3c0fe6c4acd3a21615a51372d2a430eb68ccde43": {
+    "assetId": "eip155:56/bep20:0x3c0fe6c4acd3a21615a51372d2a430eb68ccde43",
+    "chainId": "eip155:56",
+    "name": "Red Floki CEO",
+    "precision": 9,
+    "color": "#743A41",
+    "icon": "https://assets.coingecko.com/coins/images/30039/thumb/FcOcx_B7_400x400.jpg?1696528962",
+    "symbol": "REDFLOKICEO",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x3c1748d647e6a56b37b66fcd2b5626d0461d3aa0": {
+    "assetId": "eip155:56/bep20:0x3c1748d647e6a56b37b66fcd2b5626d0461d3aa0",
+    "chainId": "eip155:56",
+    "name": "DinoX on BNB Smart Chain",
+    "precision": 18,
+    "color": "#DE7C04",
+    "icon": "https://assets.coingecko.com/coins/images/17321/thumb/asset_icon_dnxc_200.png?1696516875",
+    "symbol": "DNXC",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x3c2e501b08cf5c16061468c96b19b32bae451da3": {
+    "assetId": "eip155:56/bep20:0x3c2e501b08cf5c16061468c96b19b32bae451da3",
+    "chainId": "eip155:56",
+    "name": "EverReflect",
+    "precision": 18,
+    "color": "#4C688D",
+    "icon": "https://assets.coingecko.com/coins/images/22903/thumb/evrf.png?1696522199",
+    "symbol": "EVRF",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x3c45a24d36ab6fc1925533c1f57bc7e1b6fba8a4": {
+    "assetId": "eip155:56/bep20:0x3c45a24d36ab6fc1925533c1f57bc7e1b6fba8a4",
+    "chainId": "eip155:56",
+    "name": "OptionRoom",
+    "precision": 18,
+    "color": "#EEF0FC",
+    "icon": "https://assets.coingecko.com/coins/images/13889/thumb/option_room_logo.png?1696513633",
+    "symbol": "ROOM",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x3c6dad0475d3a1696b359dc04c99fd401be134da": {
+    "assetId": "eip155:56/bep20:0x3c6dad0475d3a1696b359dc04c99fd401be134da",
+    "chainId": "eip155:56",
+    "name": "Saito on BNB Smart Chain",
+    "precision": 18,
+    "color": "#F41E3C",
+    "icon": "https://assets.coingecko.com/coins/images/14750/thumb/SAITO.png?1696514419",
+    "symbol": "SAITO",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x3c70260eee0a2bfc4b375feb810325801f289fbd": {
+    "assetId": "eip155:56/bep20:0x3c70260eee0a2bfc4b375feb810325801f289fbd",
+    "chainId": "eip155:56",
+    "name": "Omni Consumer Protocol",
+    "precision": 18,
+    "color": "#303030",
+    "icon": "https://assets.coingecko.com/coins/images/15243/thumb/ocp-200px.png?1696514897",
+    "symbol": "OCP",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x3c730718c97a77562866b5d29b33228c019eac68": {
+    "assetId": "eip155:56/bep20:0x3c730718c97a77562866b5d29b33228c019eac68",
+    "chainId": "eip155:56",
+    "name": "BNB Diamond",
+    "precision": 9,
+    "color": "#C8C6D1",
+    "icon": "https://assets.coingecko.com/coins/images/15354/thumb/J6gLEc0.png?1696515004",
+    "symbol": "BNBD",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x3ca994d9f723736381d44388bc8dd1e7ee8c1653": {
+    "assetId": "eip155:56/bep20:0x3ca994d9f723736381d44388bc8dd1e7ee8c1653",
+    "chainId": "eip155:56",
+    "name": "Samurai Legends",
+    "precision": 9,
+    "color": "#282F34",
+    "icon": "https://assets.coingecko.com/coins/images/24440/thumb/e20nuH89_400x400.png?1696523621",
+    "symbol": "SMG",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x3cb26f04223e948b8d810a7bd170620afbd42e67": {
+    "assetId": "eip155:56/bep20:0x3cb26f04223e948b8d810a7bd170620afbd42e67",
+    "chainId": "eip155:56",
+    "name": "Areon Network",
+    "precision": 18,
+    "color": "#0A070D",
+    "icon": "https://assets.coingecko.com/coins/images/28764/thumb/photo_2023-01-04_22-48-03.jpg?1696527743",
+    "symbol": "AREA",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x3cc20cf966b25be8538a8bc70e53c720c7133f35": {
+    "assetId": "eip155:56/bep20:0x3cc20cf966b25be8538a8bc70e53c720c7133f35",
+    "chainId": "eip155:56",
+    "name": "Genesis Wink",
+    "precision": 18,
+    "color": "#2D68A6",
+    "icon": "https://assets.coingecko.com/coins/images/28772/thumb/g_3d.png?1696527751",
+    "symbol": "GWINK",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x3cd55356433c89e50dc51ab07ee0fa0a95623d53": {
+    "assetId": "eip155:56/bep20:0x3cd55356433c89e50dc51ab07ee0fa0a95623d53",
+    "chainId": "eip155:56",
+    "name": "Staked Frax Ether on BNB Smart Chain",
+    "precision": 18,
+    "color": "#B4B4B4",
+    "icon": "https://assets.coingecko.com/coins/images/28285/thumb/sfrxETH_icon.png?1696527285",
+    "symbol": "SFRXETH",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x3cef8d4cc106a169902ea985cec2dc6ab055ad4c": {
+    "assetId": "eip155:56/bep20:0x3cef8d4cc106a169902ea985cec2dc6ab055ad4c",
+    "chainId": "eip155:56",
+    "name": "Crypto AI",
+    "precision": 9,
+    "color": "#3E2573",
+    "icon": "https://assets.coingecko.com/coins/images/29817/thumb/logo_200px.png?1696528745",
+    "symbol": "CAI",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x3cf04a59b7bfd6299be4a2104b6e1ca1334750e3": {
+    "assetId": "eip155:56/bep20:0x3cf04a59b7bfd6299be4a2104b6e1ca1334750e3",
+    "chainId": "eip155:56",
+    "name": "Proton Protocol",
+    "precision": 18,
+    "color": "#0A2555",
+    "icon": "https://assets.coingecko.com/coins/images/29586/thumb/logo.png?1696528526",
+    "symbol": "PROTON",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x3d04edc843e74935c09f54cc4b2fe1870e347ac9": {
+    "assetId": "eip155:56/bep20:0x3d04edc843e74935c09f54cc4b2fe1870e347ac9",
+    "chainId": "eip155:56",
+    "name": "Curio Governance on BNB Smart Chain",
+    "precision": 18,
+    "color": "#80DFD7",
+    "icon": "https://assets.coingecko.com/coins/images/13607/thumb/QLwpua7.png?1696513357",
+    "symbol": "CGT",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x3d0e93bfcb8fb46331ea8c98b6ab8c575ab424c3": {
+    "assetId": "eip155:56/bep20:0x3d0e93bfcb8fb46331ea8c98b6ab8c575ab424c3",
+    "chainId": "eip155:56",
+    "name": "Smash Cash",
+    "precision": 18,
+    "color": "#7433B6",
+    "icon": "https://assets.coingecko.com/coins/images/21286/thumb/30537055.png?1696520656",
+    "symbol": "SMASH",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x3d17e0abd8d2f023970d8df8b43776a1a2bd737c": {
+    "assetId": "eip155:56/bep20:0x3d17e0abd8d2f023970d8df8b43776a1a2bd737c",
+    "chainId": "eip155:56",
+    "name": "PEPE Chain",
+    "precision": 9,
+    "color": "#2A3E1E",
+    "icon": "https://assets.coingecko.com/coins/images/30276/thumb/logo.png?1696529182",
+    "symbol": "PEPECHAIN",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x3d473c3ef4cd4c909b020f48477a2ee2617a8e3c": {
+    "assetId": "eip155:56/bep20:0x3d473c3ef4cd4c909b020f48477a2ee2617a8e3c",
+    "chainId": "eip155:56",
+    "name": "RigoBlock on BNB Smart Chain",
+    "precision": 18,
+    "color": "#F1BC40",
+    "icon": "https://assets.coingecko.com/coins/images/1532/thumb/Symbol-RigoblockRGB.png?1696502572",
+    "symbol": "GRG",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x3da4f9e86deef7c50a8b167493f26e894edcd7d5": {
+    "assetId": "eip155:56/bep20:0x3da4f9e86deef7c50a8b167493f26e894edcd7d5",
+    "chainId": "eip155:56",
+    "name": "TriipMiles",
+    "precision": 18,
+    "color": "#44C4CC",
+    "icon": "https://assets.coingecko.com/coins/images/12185/thumb/fOf8ZxL.png?1696512021",
+    "symbol": "TIIM",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x3da6755bb5cba4c7228272eed00e258b4aa7a5f3": {
+    "assetId": "eip155:56/bep20:0x3da6755bb5cba4c7228272eed00e258b4aa7a5f3",
+    "chainId": "eip155:56",
+    "name": "WORLDWIDE",
+    "precision": 18,
+    "color": "#D9C47C",
+    "icon": "https://assets.coingecko.com/coins/images/31862/thumb/Final_Logo_TP1.png?1696530675",
+    "symbol": "WORLD",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x3da932456d082cba208feb0b096d49b202bf89c8": {
+    "assetId": "eip155:56/bep20:0x3da932456d082cba208feb0b096d49b202bf89c8",
+    "chainId": "eip155:56",
+    "name": "Dego Finance on BNB Smart Chain",
+    "precision": 18,
+    "color": "#FC906E",
+    "icon": "https://assets.coingecko.com/coins/images/12503/thumb/c185FKx.png?1696512318",
+    "symbol": "DEGO",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x3dcb18569425930954feb191122e574b87f66abd": {
+    "assetId": "eip155:56/bep20:0x3dcb18569425930954feb191122e574b87f66abd",
+    "chainId": "eip155:56",
+    "name": "Orion Money on BNB Smart Chain",
+    "precision": 18,
+    "color": "#04BC74",
+    "icon": "https://assets.coingecko.com/coins/images/18630/thumb/YtrqPIWc.png?1696518102",
+    "symbol": "ORION",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x3e07a8a8f260edeeca24139b6767a073918e8674": {
+    "assetId": "eip155:56/bep20:0x3e07a8a8f260edeeca24139b6767a073918e8674",
+    "chainId": "eip155:56",
+    "name": "Catge Coin",
+    "precision": 9,
+    "color": "#D7AC59",
+    "icon": "https://assets.coingecko.com/coins/images/16045/thumb/Pics-Art-05-16-06-08-53.png?1696515655",
+    "symbol": "CATGE",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x3e098c23dcfbbe0a3f468a6bed1cf1a59dc1770d": {
+    "assetId": "eip155:56/bep20:0x3e098c23dcfbbe0a3f468a6bed1cf1a59dc1770d",
+    "chainId": "eip155:56",
+    "name": "BountyKinds YU",
+    "precision": 18,
+    "color": "#211735",
+    "icon": "https://assets.coingecko.com/coins/images/30454/thumb/YU_TOKEN_%281%29.png?1696529341",
+    "symbol": "YU",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x3e24bbb2c9a0f2faecfdbdca20bba6f35b73c4cb": {
+    "assetId": "eip155:56/bep20:0x3e24bbb2c9a0f2faecfdbdca20bba6f35b73c4cb",
+    "chainId": "eip155:56",
+    "name": "DELOT IO on BNB Smart Chain",
+    "precision": 18,
+    "color": "#EFF0F8",
+    "icon": "https://assets.coingecko.com/coins/images/25561/thumb/Logo_200.png?1696524694",
+    "symbol": "DELOT",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x3e3b357061103dc040759ac7dceeaba9901043ad": {
+    "assetId": "eip155:56/bep20:0x3e3b357061103dc040759ac7dceeaba9901043ad",
+    "chainId": "eip155:56",
+    "name": "CloutContracts on BNB Smart Chain",
+    "precision": 0,
+    "color": "#5CE4E4",
+    "icon": "https://assets.coingecko.com/coins/images/19072/thumb/200.png?1696518522",
+    "symbol": "CCS",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x3e61c7fb137765e7cfcc4399d2d7d5bc1838d6b1": {
+    "assetId": "eip155:56/bep20:0x3e61c7fb137765e7cfcc4399d2d7d5bc1838d6b1",
+    "chainId": "eip155:56",
+    "name": "Maxx on BNB Smart Chain",
+    "precision": 18,
+    "color": "#4C547C",
+    "icon": "https://assets.coingecko.com/coins/images/30488/thumb/D9E6AF16-95F9-4550-87B5-E60C50DB1E02.png?1696529375",
+    "symbol": "MAXX",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x3e7f1039896454b9cb27c53cc7383e1ab9d9512a": {
+    "assetId": "eip155:56/bep20:0x3e7f1039896454b9cb27c53cc7383e1ab9d9512a",
+    "chainId": "eip155:56",
+    "name": "MetFi",
+    "precision": 18,
+    "color": "#66D9B6",
+    "icon": "https://assets.coingecko.com/coins/images/29676/thumb/logo-200.png?1696528611",
+    "symbol": "METFI",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x3e81aa8d6813ec9d7e6ddb4e523fb1601a0e86f3": {
+    "assetId": "eip155:56/bep20:0x3e81aa8d6813ec9d7e6ddb4e523fb1601a0e86f3",
+    "chainId": "eip155:56",
+    "name": "Mr  Mint",
+    "precision": 18,
+    "color": "#966C94",
+    "icon": "https://assets.coingecko.com/coins/images/31940/thumb/MrMint_200x200.png?1696530747",
+    "symbol": "MNT",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x3e89a5e7cf9dfcff5a9aedf19ab6246c6b506582": {
+    "assetId": "eip155:56/bep20:0x3e89a5e7cf9dfcff5a9aedf19ab6246c6b506582",
+    "chainId": "eip155:56",
+    "name": "SquadFund",
+    "precision": 9,
+    "color": "#437AFC",
+    "icon": "https://assets.coingecko.com/coins/images/29904/thumb/squad_fund_3_copy_7.png?1696528833",
+    "symbol": "SQF",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x3eac3819403ff5aec83dc87c93e3ec3951183799": {
+    "assetId": "eip155:56/bep20:0x3eac3819403ff5aec83dc87c93e3ec3951183799",
+    "chainId": "eip155:56",
+    "name": "Bee Token",
+    "precision": 18,
+    "color": "#FCE8D5",
+    "icon": "https://assets.coingecko.com/coins/images/25941/thumb/logoBeeco.png?1696525020",
+    "symbol": "BGC",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x3ee2200efb3400fabb9aacf31297cbdd1d435d47": {
+    "assetId": "eip155:56/bep20:0x3ee2200efb3400fabb9aacf31297cbdd1d435d47",
+    "chainId": "eip155:56",
+    "name": "Binance Peg Cardano",
+    "precision": 18,
+    "color": "#6D94B7",
+    "icon": "https://assets.coingecko.com/coins/images/15455/thumb/ZE8LxNBf_400x400.jpg?1696515099",
+    "symbol": "ADA",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x3efe3bee4dbeb77d260bc12aeb62072cf6e68478": {
+    "assetId": "eip155:56/bep20:0x3efe3bee4dbeb77d260bc12aeb62072cf6e68478",
+    "chainId": "eip155:56",
+    "name": "BabyKitty",
+    "precision": 9,
+    "color": "#BE7648",
+    "icon": "https://assets.coingecko.com/coins/images/22127/thumb/2021-12-26-12-51-04-1-1.png?1696521474",
+    "symbol": "BABYKITTY",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x3f56e0c36d275367b8c502090edf38289b3dea0d": {
+    "assetId": "eip155:56/bep20:0x3f56e0c36d275367b8c502090edf38289b3dea0d",
+    "chainId": "eip155:56",
+    "name": "MAI on BNB Smart Chain",
+    "precision": 18,
+    "color": "#F1C5C5",
+    "icon": "https://assets.coingecko.com/coins/images/15264/thumb/mimatic-red.png?1696514916",
+    "symbol": "MIMATIC",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x3f6b3595ecf70735d3f48d69b09c4e4506db3f47": {
+    "assetId": "eip155:56/bep20:0x3f6b3595ecf70735d3f48d69b09c4e4506db3f47",
+    "chainId": "eip155:56",
+    "name": "GameStation on BNB Smart Chain",
+    "precision": 18,
+    "color": "#8097CF",
+    "icon": "https://assets.coingecko.com/coins/images/19584/thumb/game_station.PNG?1696519015",
+    "symbol": "GAMER",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x3f8a14f5a3ee2f4a3ed61ccf5eea3c9535c090c8": {
+    "assetId": "eip155:56/bep20:0x3f8a14f5a3ee2f4a3ed61ccf5eea3c9535c090c8",
+    "chainId": "eip155:56",
+    "name": "LoopSwap",
+    "precision": 18,
+    "color": "#FC4408",
+    "icon": "https://assets.coingecko.com/coins/images/24300/thumb/5D7QqYm.png?1696523482",
+    "symbol": "LSWAP",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x3fa52142b7836468aed78753e6325b2aee7ddafe": {
+    "assetId": "eip155:56/bep20:0x3fa52142b7836468aed78753e6325b2aee7ddafe",
+    "chainId": "eip155:56",
+    "name": "ShieldTokenCoin",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/32866/thumb/ShieldTokenCoin200x200.png?1699670492",
+    "symbol": "0STC",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x3fcca8648651e5b974dd6d3e50f61567779772a8": {
+    "assetId": "eip155:56/bep20:0x3fcca8648651e5b974dd6d3e50f61567779772a8",
+    "chainId": "eip155:56",
+    "name": "Moonpot",
+    "precision": 18,
+    "color": "#7584BE",
+    "icon": "https://assets.coingecko.com/coins/images/17517/thumb/moonpot.PNG?1696517055",
+    "symbol": "POTS",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x400613f184d1207f5c07a67d67040a4e23e92feb": {
+    "assetId": "eip155:56/bep20:0x400613f184d1207f5c07a67d67040a4e23e92feb",
+    "chainId": "eip155:56",
+    "name": "UpDog",
+    "precision": 9,
+    "color": "#16511B",
+    "icon": "https://assets.coingecko.com/coins/images/15369/thumb/wKA2xZr.png?1696515017",
+    "symbol": "UPDOG",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x40079f576625b764e191af9c38ecb2e19d69b675": {
+    "assetId": "eip155:56/bep20:0x40079f576625b764e191af9c38ecb2e19d69b675",
+    "chainId": "eip155:56",
+    "name": "Goge DAO",
+    "precision": 18,
+    "color": "#DFA474",
+    "icon": "https://assets.coingecko.com/coins/images/20631/thumb/14766.png?1696520035",
+    "symbol": "GOGE",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x40225c6277b29bf9056b4acb7ee1512cbff11671": {
+    "assetId": "eip155:56/bep20:0x40225c6277b29bf9056b4acb7ee1512cbff11671",
+    "chainId": "eip155:56",
+    "name": "Buying com on BNB Smart Chain",
+    "precision": 18,
+    "color": "#293941",
+    "icon": "https://assets.coingecko.com/coins/images/5290/thumb/buying_200x200.png?1696505788",
+    "symbol": "BUY",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x40235f0575bf12c0e13fd4ec41fece7ea2a98011": {
+    "assetId": "eip155:56/bep20:0x40235f0575bf12c0e13fd4ec41fece7ea2a98011",
+    "chainId": "eip155:56",
+    "name": "MerryChristmas  OLD ",
+    "precision": 18,
+    "color": "#C0A8A0",
+    "icon": "https://assets.coingecko.com/coins/images/28558/thumb/My_project-1_%283%29.png?1696527548",
+    "symbol": "HOHOHO",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x4027d91ecd3140e53ae743d657549adfeebb27ab": {
+    "assetId": "eip155:56/bep20:0x4027d91ecd3140e53ae743d657549adfeebb27ab",
+    "chainId": "eip155:56",
+    "name": "Chain of Legends",
+    "precision": 18,
+    "color": "#584E5D",
+    "icon": "https://assets.coingecko.com/coins/images/26440/thumb/logo1.png?1696525513",
+    "symbol": "CLEG",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x404f83279c36e3e0e2771b7ae9f9b0b2b50ee27c": {
+    "assetId": "eip155:56/bep20:0x404f83279c36e3e0e2771b7ae9f9b0b2b50ee27c",
+    "chainId": "eip155:56",
+    "name": "Agro Global Token",
+    "precision": 18,
+    "color": "#149C14",
+    "icon": "https://assets.coingecko.com/coins/images/21511/thumb/200x200.png?1696520870",
+    "symbol": "AGRO",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x405be90996e7f995a08c2fbd8d8822ef5b03466c": {
+    "assetId": "eip155:56/bep20:0x405be90996e7f995a08c2fbd8d8822ef5b03466c",
+    "chainId": "eip155:56",
+    "name": "Jetset",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/25295/thumb/lAsTdP6-_400x400.jpg?1696524434",
+    "symbol": "JTS",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x408cefb5f92f0e47fc12e9840cc50529fc986226": {
+    "assetId": "eip155:56/bep20:0x408cefb5f92f0e47fc12e9840cc50529fc986226",
+    "chainId": "eip155:56",
+    "name": "ASENIX",
+    "precision": 18,
+    "color": "#6594A4",
+    "icon": "https://assets.coingecko.com/coins/images/31503/thumb/enix.jpg?1696530314",
+    "symbol": "ENIX",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x409e215738e31d8ab252016369c2dd9c2008fee0": {
+    "assetId": "eip155:56/bep20:0x409e215738e31d8ab252016369c2dd9c2008fee0",
+    "chainId": "eip155:56",
+    "name": "Pawthereum on BNB Smart Chain",
+    "precision": 9,
+    "color": "#FC65B4",
+    "icon": "https://assets.coingecko.com/coins/images/19275/thumb/pawth.png?1696518718",
+    "symbol": "PAWTH",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x40af3827f39d0eacbf4a168f8d4ee67c121d11c9": {
+    "assetId": "eip155:56/bep20:0x40af3827f39d0eacbf4a168f8d4ee67c121d11c9",
+    "chainId": "eip155:56",
+    "name": "TrueUSD on BNB Smart Chain",
+    "precision": 18,
+    "color": "#1C5BFC",
+    "icon": "https://assets.coingecko.com/coins/images/3449/thumb/tusd.png?1696504140",
+    "symbol": "TUSD",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x40c8225329bd3e28a043b029e0d07a5344d2c27c": {
+    "assetId": "eip155:56/bep20:0x40c8225329bd3e28a043b029e0d07a5344d2c27c",
+    "chainId": "eip155:56",
+    "name": "AgeOfGods",
+    "precision": 18,
+    "color": "#7C766E",
+    "icon": "https://assets.coingecko.com/coins/images/22133/thumb/aog.PNG?1696521479",
+    "symbol": "AOG",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x40e51e0ec04283e300f12f6bb98da157bb22036e": {
+    "assetId": "eip155:56/bep20:0x40e51e0ec04283e300f12f6bb98da157bb22036e",
+    "chainId": "eip155:56",
+    "name": "bloXmove on BNB Smart Chain",
+    "precision": 18,
+    "color": "#449464",
+    "icon": "https://assets.coingecko.com/coins/images/19310/thumb/blxm_200x200.png?1696518752",
+    "symbol": "BLXM",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x40f906e19b14100d5247686e08053c4873c66192": {
+    "assetId": "eip155:56/bep20:0x40f906e19b14100d5247686e08053c4873c66192",
+    "chainId": "eip155:56",
+    "name": "SugarBounce",
+    "precision": 18,
+    "color": "#F7E9EE",
+    "icon": "https://assets.coingecko.com/coins/images/21487/thumb/sugarbounce.PNG?1696520847",
+    "symbol": "TIP",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x40fed5691e547885cabd7a2990de719dcc8497fc": {
+    "assetId": "eip155:56/bep20:0x40fed5691e547885cabd7a2990de719dcc8497fc",
+    "chainId": "eip155:56",
+    "name": "Safe Haven on BNB Smart Chain",
+    "precision": 18,
+    "color": "#AE2CD5",
+    "icon": "https://assets.coingecko.com/coins/images/2584/thumb/safehaven.png?1696503388",
+    "symbol": "SHA",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x41065e3428188ba6eb27fbdde8526ae3af8e3830": {
+    "assetId": "eip155:56/bep20:0x41065e3428188ba6eb27fbdde8526ae3af8e3830",
+    "chainId": "eip155:56",
+    "name": "Swash on BNB Smart Chain",
+    "precision": 18,
+    "color": "#D2F9D9",
+    "icon": "https://assets.coingecko.com/coins/images/18774/thumb/Swash_CMC_light.png?1696878896",
+    "symbol": "SWASH",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x410a56541bd912f9b60943fcb344f1e3d6f09567": {
+    "assetId": "eip155:56/bep20:0x410a56541bd912f9b60943fcb344f1e3d6f09567",
+    "chainId": "eip155:56",
+    "name": "Minto",
+    "precision": 18,
+    "color": "#6CD9C1",
+    "icon": "https://assets.coingecko.com/coins/images/21819/thumb/MNVvqe2n_400x400.png?1696521171",
+    "symbol": "BTCMT",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x414f9e74ba3a9d0acce65182809492f41ac671e0": {
+    "assetId": "eip155:56/bep20:0x414f9e74ba3a9d0acce65182809492f41ac671e0",
+    "chainId": "eip155:56",
+    "name": "Jarvis Reward on BNB Smart Chain",
+    "precision": 18,
+    "color": "#54FC74",
+    "icon": "https://assets.coingecko.com/coins/images/10390/thumb/cfeii0y.png?1696510389",
+    "symbol": "JRT",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x416947e6fc78f158fd9b775fa846b72d768879c2": {
+    "assetId": "eip155:56/bep20:0x416947e6fc78f158fd9b775fa846b72d768879c2",
+    "chainId": "eip155:56",
+    "name": "Ouro Governance Share",
+    "precision": 18,
+    "color": "#25504A",
+    "icon": "https://assets.coingecko.com/coins/images/21369/thumb/ogs.png?1696520735",
+    "symbol": "OGS",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x417e99871cdc1a48cc313be8b586667d54b46494": {
+    "assetId": "eip155:56/bep20:0x417e99871cdc1a48cc313be8b586667d54b46494",
+    "chainId": "eip155:56",
+    "name": "Espento USD",
+    "precision": 18,
+    "color": "#B7DFF4",
+    "icon": "https://assets.coingecko.com/coins/images/32148/thumb/espentoEusd.png?1696596921",
+    "symbol": "EUSD",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x41912648442e1800d90f5e76b4c3a45eba1fab49": {
+    "assetId": "eip155:56/bep20:0x41912648442e1800d90f5e76b4c3a45eba1fab49",
+    "chainId": "eip155:56",
+    "name": "JerryInu",
+    "precision": 9,
+    "color": "#F8B50D",
+    "icon": "https://assets.coingecko.com/coins/images/30705/thumb/IMG_20230604_033819_839.png?1696529577",
+    "symbol": "JERRYINU",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x419264d79b92b8de3c710ab0cd3406cd11990e02": {
+    "assetId": "eip155:56/bep20:0x419264d79b92b8de3c710ab0cd3406cd11990e02",
+    "chainId": "eip155:56",
+    "name": "Blockscape",
+    "precision": 9,
+    "color": "#045CB9",
+    "icon": "https://assets.coingecko.com/coins/images/29914/thumb/BLC_logo.jpg?1696528842",
+    "symbol": "BLC",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x4197c6ef3879a08cd51e5560da5064b773aa1d29": {
+    "assetId": "eip155:56/bep20:0x4197c6ef3879a08cd51e5560da5064b773aa1d29",
+    "chainId": "eip155:56",
+    "name": "ACryptoS  OLD ",
+    "precision": 18,
+    "color": "#AC6830",
+    "icon": "https://assets.coingecko.com/coins/images/13276/thumb/acryptos_32.png?1696513049",
+    "symbol": "ACS",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x41b2f7acc00035f9b1cec868b5054a6238c0a910": {
+    "assetId": "eip155:56/bep20:0x41b2f7acc00035f9b1cec868b5054a6238c0a910",
+    "chainId": "eip155:56",
+    "name": "Kochi Ken",
+    "precision": 18,
+    "color": "#29130F",
+    "icon": "https://assets.coingecko.com/coins/images/29296/thumb/Kochi.jpeg?1696528248",
+    "symbol": "KOCHI",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x41f831c60c7051cffa756ab5f9fee81a670ecde0": {
+    "assetId": "eip155:56/bep20:0x41f831c60c7051cffa756ab5f9fee81a670ecde0",
+    "chainId": "eip155:56",
+    "name": "Baby Lambo Inu",
+    "precision": 18,
+    "color": "#483455",
+    "icon": "https://assets.coingecko.com/coins/images/23252/thumb/BabyLamboInuLogo.png?1696522472",
+    "symbol": "BLINU",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x421f9d1b2147f534e3aefc6af95edd4cf2430874": {
+    "assetId": "eip155:56/bep20:0x421f9d1b2147f534e3aefc6af95edd4cf2430874",
+    "chainId": "eip155:56",
+    "name": "Wrestling Shiba",
+    "precision": 9,
+    "color": "#E7E1DE",
+    "icon": "https://assets.coingecko.com/coins/images/28361/thumb/IMG_20221130_044817_342.jpg?1696527364",
+    "symbol": "WWE",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x422e3af98bc1de5a1838be31a56f75db4ad43730": {
+    "assetId": "eip155:56/bep20:0x422e3af98bc1de5a1838be31a56f75db4ad43730",
+    "chainId": "eip155:56",
+    "name": "CoinWind on BNB Smart Chain",
+    "precision": 18,
+    "color": "#4898F5",
+    "icon": "https://assets.coingecko.com/coins/images/15766/thumb/logo.c3d2c062.png?1696515390",
+    "symbol": "COW",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x4238e5ccc619dcc8c00ade4cfc5d3d9020b24898": {
+    "assetId": "eip155:56/bep20:0x4238e5ccc619dcc8c00ade4cfc5d3d9020b24898",
+    "chainId": "eip155:56",
+    "name": "AI Trader",
+    "precision": 18,
+    "color": "#3E9FF1",
+    "icon": "https://assets.coingecko.com/coins/images/29618/thumb/ait.png?1696528554",
+    "symbol": "AIT",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x42414624c55a9cba80789f47c8f9828a7974e40f": {
+    "assetId": "eip155:56/bep20:0x42414624c55a9cba80789f47c8f9828a7974e40f",
+    "chainId": "eip155:56",
+    "name": "Doge KaKi",
+    "precision": 18,
+    "color": "#E2374F",
+    "icon": "https://assets.coingecko.com/coins/images/29202/thumb/DOGEKAKI.jpg?1696528161",
+    "symbol": "KAKI",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x424b5fb011f6fc0ab7d6c8914ba2bd3f0d3ce1e2": {
+    "assetId": "eip155:56/bep20:0x424b5fb011f6fc0ab7d6c8914ba2bd3f0d3ce1e2",
+    "chainId": "eip155:56",
+    "name": "SaxumDAO",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/33012/thumb/WhatsApp_Image_2023-11-14_at_12.37.55.jpeg?1700124487",
+    "symbol": "SXM",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x4268b8f0b87b6eae5d897996e6b845ddbd99adf3": {
+    "assetId": "eip155:56/bep20:0x4268b8f0b87b6eae5d897996e6b845ddbd99adf3",
+    "chainId": "eip155:56",
+    "name": "Bridged USD Coin  Axelar  on BNB Smart Chain",
+    "precision": 6,
+    "color": "#2C78CD",
+    "icon": "https://assets.coingecko.com/coins/images/26476/thumb/uausdc_D_3x.png?1696525548",
+    "symbol": "AXLUSDC",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x426c1c971fb00caaf1883bd801323a8becb0c919": {
+    "assetId": "eip155:56/bep20:0x426c1c971fb00caaf1883bd801323a8becb0c919",
+    "chainId": "eip155:56",
+    "name": "Alaska Gold Rush",
+    "precision": 18,
+    "color": "#0A0907",
+    "icon": "https://assets.coingecko.com/coins/images/29911/thumb/O5Z-nlcb_400x400.jpg?1696528840",
+    "symbol": "CARAT",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x426c72701833fddbdfc06c944737c6031645c708": {
+    "assetId": "eip155:56/bep20:0x426c72701833fddbdfc06c944737c6031645c708",
+    "chainId": "eip155:56",
+    "name": "Defina Finance",
+    "precision": 18,
+    "color": "#060504",
+    "icon": "https://assets.coingecko.com/coins/images/18970/thumb/favicon.png?1696518424",
+    "symbol": "FINA",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x42907d9f7e3d4291c801bbd1f601066eb1dfa956": {
+    "assetId": "eip155:56/bep20:0x42907d9f7e3d4291c801bbd1f601066eb1dfa956",
+    "chainId": "eip155:56",
+    "name": "Bless Global Credit",
+    "precision": 18,
+    "color": "#FC74C4",
+    "icon": "https://assets.coingecko.com/coins/images/28977/thumb/blec_logo.png?1696527950",
+    "symbol": "BLEC",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x42981d0bfbaf196529376ee702f2a9eb9092fcb5": {
+    "assetId": "eip155:56/bep20:0x42981d0bfbaf196529376ee702f2a9eb9092fcb5",
+    "chainId": "eip155:56",
+    "name": "SafeMoon",
+    "precision": 9,
+    "color": "#E2F5F5",
+    "icon": "https://assets.coingecko.com/coins/images/21863/thumb/photo_2021-12-22_14.43.36.jpeg?1696521217",
+    "symbol": "SFM",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x42a7da71a6b553d20ac656cc33540ac784e68072": {
+    "assetId": "eip155:56/bep20:0x42a7da71a6b553d20ac656cc33540ac784e68072",
+    "chainId": "eip155:56",
+    "name": "Bumblebot",
+    "precision": 18,
+    "color": "#131413",
+    "icon": "https://assets.coingecko.com/coins/images/29654/thumb/Bumblebot.png?1696528589",
+    "symbol": "BUMBLE",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x42be29132756ddd6e8b3b94584ca0bab20545eec": {
+    "assetId": "eip155:56/bep20:0x42be29132756ddd6e8b3b94584ca0bab20545eec",
+    "chainId": "eip155:56",
+    "name": "Bali Token",
+    "precision": 18,
+    "color": "#A57829",
+    "icon": "https://assets.coingecko.com/coins/images/21989/thumb/logo.jpg?1696521337",
+    "symbol": "BLI",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x42c1613dd2236cfd60b5cbec846b5ead71be99df": {
+    "assetId": "eip155:56/bep20:0x42c1613dd2236cfd60b5cbec846b5ead71be99df",
+    "chainId": "eip155:56",
+    "name": "Walter Inu",
+    "precision": 18,
+    "color": "#898786",
+    "icon": "https://assets.coingecko.com/coins/images/23429/thumb/Walter-Bigger-Circle-Logo.jpg?1696522641",
+    "symbol": "WINU",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x42f6f551ae042cbe50c739158b4f0cac0edb9096": {
+    "assetId": "eip155:56/bep20:0x42f6f551ae042cbe50c739158b4f0cac0edb9096",
+    "chainId": "eip155:56",
+    "name": "Nerve Finance",
+    "precision": 18,
+    "color": "#362C6F",
+    "icon": "https://assets.coingecko.com/coins/images/14233/thumb/nerve_finance_logo.png?1696513947",
+    "symbol": "NRV",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x432b4f994760ea0c5f48baab6217e82a2b7f2c55": {
+    "assetId": "eip155:56/bep20:0x432b4f994760ea0c5f48baab6217e82a2b7f2c55",
+    "chainId": "eip155:56",
+    "name": "FirstHare",
+    "precision": 9,
+    "color": "#C8724A",
+    "icon": "https://assets.coingecko.com/coins/images/22788/thumb/17453.png?1696522090",
+    "symbol": "FIRSTHARE",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x4338665cbb7b2485a8855a139b75d5e34ab0db94": {
+    "assetId": "eip155:56/bep20:0x4338665cbb7b2485a8855a139b75d5e34ab0db94",
+    "chainId": "eip155:56",
+    "name": "Binance Peg Litecoin",
+    "precision": 18,
+    "color": "#3D5F94",
+    "icon": "https://assets.coingecko.com/coins/images/15456/thumb/LrysCc5Q_400x400.jpg?1696515103",
+    "symbol": "LTC",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x433fce7dfbec729a79999eaf056cb073b2153eba": {
+    "assetId": "eip155:56/bep20:0x433fce7dfbec729a79999eaf056cb073b2153eba",
+    "chainId": "eip155:56",
+    "name": "CoinWealth on BNB Smart Chain",
+    "precision": 6,
+    "color": "#143C5C",
+    "icon": "https://assets.coingecko.com/coins/images/23769/thumb/cw_logo-4955f59a5c8079f246fa07ac71b2541870ca7d906ca1d9c26d74a3870fafef2f_%281%29.png?1696522970",
+    "symbol": "CNW",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x436c52a8cee41d5e9c5e6f4cb146e66d552fb700": {
+    "assetId": "eip155:56/bep20:0x436c52a8cee41d5e9c5e6f4cb146e66d552fb700",
+    "chainId": "eip155:56",
+    "name": "EQIFi on BNB Smart Chain",
+    "precision": 18,
+    "color": "#164D69",
+    "icon": "https://assets.coingecko.com/coins/images/17490/thumb/EQIFI_Logo_Color.png?1696517031",
+    "symbol": "EQX",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x4374f26f0148a6331905edf4cd33b89d8eed78d1": {
+    "assetId": "eip155:56/bep20:0x4374f26f0148a6331905edf4cd33b89d8eed78d1",
+    "chainId": "eip155:56",
+    "name": "Yoshi exchange",
+    "precision": 18,
+    "color": "#3CD3A4",
+    "icon": "https://assets.coingecko.com/coins/images/19355/thumb/YOSHI_200.png?1696518795",
+    "symbol": "YOSHI",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x438fc473ba340d0734e2d05acdf5bee775d1b0a4": {
+    "assetId": "eip155:56/bep20:0x438fc473ba340d0734e2d05acdf5bee775d1b0a4",
+    "chainId": "eip155:56",
+    "name": "GOAL Token",
+    "precision": 18,
+    "color": "#BCBCBC",
+    "icon": "https://assets.coingecko.com/coins/images/20197/thumb/Goal_Token_200_x_200.png?1696519608",
+    "symbol": "GOAL",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x43933924ac01bc7bf19fe9fe5dc53b27124eaf34": {
+    "assetId": "eip155:56/bep20:0x43933924ac01bc7bf19fe9fe5dc53b27124eaf34",
+    "chainId": "eip155:56",
+    "name": "Starship AI",
+    "precision": 18,
+    "color": "#D0D5CA",
+    "icon": "https://assets.coingecko.com/coins/images/31857/thumb/20230819_113514.png?1696530670",
+    "symbol": "SPAI",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x4399ae7538c33ca24edd4c28c5dd7ce9a80acf81": {
+    "assetId": "eip155:56/bep20:0x4399ae7538c33ca24edd4c28c5dd7ce9a80acf81",
+    "chainId": "eip155:56",
+    "name": "Phantom Protocol on BNB Smart Chain",
+    "precision": 18,
+    "color": "#242A2D",
+    "icon": "https://assets.coingecko.com/coins/images/18253/thumb/phm.PNG?1696517748",
+    "symbol": "PHM",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x43a0c5eb1763a211aa3c05849a617f2ee0452767": {
+    "assetId": "eip155:56/bep20:0x43a0c5eb1763a211aa3c05849a617f2ee0452767",
+    "chainId": "eip155:56",
+    "name": "PokeDX",
+    "precision": 9,
+    "color": "#E19A87",
+    "icon": "https://assets.coingecko.com/coins/images/19075/thumb/200x200_%2834%29.png?1696518524",
+    "symbol": "PDX",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x43a167b15a6f24913a8b4d35488b36ac15d39200": {
+    "assetId": "eip155:56/bep20:0x43a167b15a6f24913a8b4d35488b36ac15d39200",
+    "chainId": "eip155:56",
+    "name": "PumaPay on BNB Smart Chain",
+    "precision": 18,
+    "color": "#5628C8",
+    "icon": "https://assets.coingecko.com/coins/images/2307/thumb/pumapay_dark_rounded_256x256.png?1696503200",
+    "symbol": "PMA",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x43a8a925c1930a313d283359184a64c51a2bc0e9": {
+    "assetId": "eip155:56/bep20:0x43a8a925c1930a313d283359184a64c51a2bc0e9",
+    "chainId": "eip155:56",
+    "name": "Navis",
+    "precision": 9,
+    "color": "#191917",
+    "icon": "https://assets.coingecko.com/coins/images/30019/thumb/nvslogo1-min.png?1696528943",
+    "symbol": "NVS",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x43a8cab15d06d3a5fe5854d714c37e7e9246f170": {
+    "assetId": "eip155:56/bep20:0x43a8cab15d06d3a5fe5854d714c37e7e9246f170",
+    "chainId": "eip155:56",
+    "name": "Orbs on BNB Smart Chain",
+    "precision": 18,
+    "color": "#6E809F",
+    "icon": "https://assets.coingecko.com/coins/images/4630/thumb/Orbs.jpg?1696505200",
+    "symbol": "ORBS",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x43b35e89d15b91162dea1c51133c4c93bdd1c4af": {
+    "assetId": "eip155:56/bep20:0x43b35e89d15b91162dea1c51133c4c93bdd1c4af",
+    "chainId": "eip155:56",
+    "name": "Sakai Vault",
+    "precision": 18,
+    "color": "#54C694",
+    "icon": "https://assets.coingecko.com/coins/images/29128/thumb/96264149-D876-4069-BFE1-9346-A01-E85-B6.jpg?1696528089",
+    "symbol": "SAKAI",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x43bee29430a2dda4bc053dd5669a56efd6e0556a": {
+    "assetId": "eip155:56/bep20:0x43bee29430a2dda4bc053dd5669a56efd6e0556a",
+    "chainId": "eip155:56",
+    "name": "DogeZilla Ai",
+    "precision": 18,
+    "color": "#885E47",
+    "icon": "https://assets.coingecko.com/coins/images/29352/thumb/Dogezila_ai_logo.PNG?1696528300",
+    "symbol": "DAI",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x43f102bbd52259f2cfd0ef82e8807e3610ae3e40": {
+    "assetId": "eip155:56/bep20:0x43f102bbd52259f2cfd0ef82e8807e3610ae3e40",
+    "chainId": "eip155:56",
+    "name": "Save Baby Doge",
+    "precision": 9,
+    "color": "#EDE9E6",
+    "icon": "https://assets.coingecko.com/coins/images/16923/thumb/BABYDOGE.png?1696516494",
+    "symbol": "BABYDOGE",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x43f5b29d63cedc5a7c1724dbb1d698fde05ada21": {
+    "assetId": "eip155:56/bep20:0x43f5b29d63cedc5a7c1724dbb1d698fde05ada21",
+    "chainId": "eip155:56",
+    "name": "Fodl Finance on BNB Smart Chain",
+    "precision": 18,
+    "color": "#FC685D",
+    "icon": "https://assets.coingecko.com/coins/images/19040/thumb/Fodl_Symbol_Gradient.png?1696518491",
+    "symbol": "FODL",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x440758df68a045db3f2517257f27330a12438656": {
+    "assetId": "eip155:56/bep20:0x440758df68a045db3f2517257f27330a12438656",
+    "chainId": "eip155:56",
+    "name": "Froggies",
+    "precision": 18,
+    "color": "#2F4A5A",
+    "icon": "https://assets.coingecko.com/coins/images/30575/thumb/bAwE66My_400x400.jpg?1696529440",
+    "symbol": "FRGST",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x441bb79f2da0daf457bad3d401edb68535fb3faa": {
+    "assetId": "eip155:56/bep20:0x441bb79f2da0daf457bad3d401edb68535fb3faa",
+    "chainId": "eip155:56",
+    "name": "Hey Reborn  NEW ",
+    "precision": 18,
+    "color": "#FCF4E6",
+    "icon": "https://assets.coingecko.com/coins/images/29364/thumb/rb.png?1696528312",
+    "symbol": "RB",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x4437743ac02957068995c48e08465e0ee1769fbe": {
+    "assetId": "eip155:56/bep20:0x4437743ac02957068995c48e08465e0ee1769fbe",
+    "chainId": "eip155:56",
+    "name": "Fortress Loans",
+    "precision": 18,
+    "color": "#F1C00C",
+    "icon": "https://assets.coingecko.com/coins/images/15036/thumb/FTS_logo_200x200.png?1696514695",
+    "symbol": "FTS",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x443cab9583b83eaa7a712c9d64525e57e2a7eb3f": {
+    "assetId": "eip155:56/bep20:0x443cab9583b83eaa7a712c9d64525e57e2a7eb3f",
+    "chainId": "eip155:56",
+    "name": "Torum",
+    "precision": 18,
+    "color": "#EFC6DF",
+    "icon": "https://assets.coingecko.com/coins/images/18393/thumb/torum-transparent-cmc.png?1696517884",
+    "symbol": "XTM",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x444444444444c1a66f394025ac839a535246fcc8": {
+    "assetId": "eip155:56/bep20:0x444444444444c1a66f394025ac839a535246fcc8",
+    "chainId": "eip155:56",
+    "name": "Genius on BNB Smart Chain",
+    "precision": 9,
+    "color": "#0F073F",
+    "icon": "https://assets.coingecko.com/coins/images/28621/thumb/GENI200x200.png?1696527606",
+    "symbol": "GENI",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x4444a19c8bb86e9bdbc023709a363bbce91af33e": {
+    "assetId": "eip155:56/bep20:0x4444a19c8bb86e9bdbc023709a363bbce91af33e",
+    "chainId": "eip155:56",
+    "name": "CryptoTanks",
+    "precision": 18,
+    "color": "#040404",
+    "icon": "https://assets.coingecko.com/coins/images/21966/thumb/LN-MRxWg_400x400.jpg?1696521314",
+    "symbol": "TANK",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x44754455564474a89358b2c2265883df993b12f0": {
+    "assetId": "eip155:56/bep20:0x44754455564474a89358b2c2265883df993b12f0",
+    "chainId": "eip155:56",
+    "name": "ZeroSwap on BNB Smart Chain",
+    "precision": 18,
+    "color": "#0AA1C1",
+    "icon": "https://assets.coingecko.com/coins/images/12861/thumb/logo.?1696512650",
+    "symbol": "ZEE",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x44969fdfeeab1d7f6e500a5a8f1aeebd74785aef": {
+    "assetId": "eip155:56/bep20:0x44969fdfeeab1d7f6e500a5a8f1aeebd74785aef",
+    "chainId": "eip155:56",
+    "name": "BitCash",
+    "precision": 18,
+    "color": "#494DA5",
+    "icon": "https://assets.coingecko.com/coins/images/7895/thumb/B_GPCvVG_400x400.jpg?1696508126",
+    "symbol": "BITC",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x44c4eddef663fc65e93987a153c31314cc4c9eb1": {
+    "assetId": "eip155:56/bep20:0x44c4eddef663fc65e93987a153c31314cc4c9eb1",
+    "chainId": "eip155:56",
+    "name": "MultiMoney Global",
+    "precision": 18,
+    "color": "#CED3D5",
+    "icon": "https://assets.coingecko.com/coins/images/32145/thumb/HAt-DKMF3-200x200.png?1696595912",
+    "symbol": "MMGT",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x44c99ca267c2b2646ceec72e898273085ab87ca5": {
+    "assetId": "eip155:56/bep20:0x44c99ca267c2b2646ceec72e898273085ab87ca5",
+    "chainId": "eip155:56",
+    "name": "Raptor Finance",
+    "precision": 18,
+    "color": "#62BD9B",
+    "icon": "https://assets.coingecko.com/coins/images/25265/thumb/Vy7-XGjj_400x400.jpg?1696524405",
+    "symbol": "RPTR",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x44ec807ce2f4a6f2737a92e985f318d035883e47": {
+    "assetId": "eip155:56/bep20:0x44ec807ce2f4a6f2737a92e985f318d035883e47",
+    "chainId": "eip155:56",
+    "name": "Hashflow on BNB Smart Chain",
+    "precision": 18,
+    "color": "#C6C9CC",
+    "icon": "https://assets.coingecko.com/coins/images/26136/thumb/hashflow-icon-cmc.png?1696525224",
+    "symbol": "HFT",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x44ece1031e5b5e2d9169546cc10ea5c95ba96237": {
+    "assetId": "eip155:56/bep20:0x44ece1031e5b5e2d9169546cc10ea5c95ba96237",
+    "chainId": "eip155:56",
+    "name": "AmazingTeamDAO",
+    "precision": 18,
+    "color": "#E9DAB1",
+    "icon": "https://assets.coingecko.com/coins/images/25064/thumb/EXlV29q.jpg?1696524214",
+    "symbol": "AMAZINGTEAM",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x44f0e42ea6fd05f8fc5a03697438487d04632dc5": {
+    "assetId": "eip155:56/bep20:0x44f0e42ea6fd05f8fc5a03697438487d04632dc5",
+    "chainId": "eip155:56",
+    "name": "PayBit",
+    "precision": 18,
+    "color": "#F6F9F7",
+    "icon": "https://assets.coingecko.com/coins/images/28671/thumb/photo_2022-12-29_14-10-52.jpg?1696527655",
+    "symbol": "PAYBIT",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x44f5909e97e1cbf5fbbdf0fc92fd83cde5d5c58a": {
+    "assetId": "eip155:56/bep20:0x44f5909e97e1cbf5fbbdf0fc92fd83cde5d5c58a",
+    "chainId": "eip155:56",
+    "name": "Acria AI on BNB Smart Chain",
+    "precision": 18,
+    "color": "#0B0B0B",
+    "icon": "https://assets.coingecko.com/coins/images/28598/thumb/image002.png?1696527585",
+    "symbol": "ACRIA",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x4505e2ae4f9c512fd2e7e4d99c99dc94e0e93ccb": {
+    "assetId": "eip155:56/bep20:0x4505e2ae4f9c512fd2e7e4d99c99dc94e0e93ccb",
+    "chainId": "eip155:56",
+    "name": "Mudra MDR",
+    "precision": 18,
+    "color": "#0494F4",
+    "icon": "https://assets.coingecko.com/coins/images/26145/thumb/MudraLogo200x200.png?1696525233",
+    "symbol": "MDR",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x4507cef57c46789ef8d1a19ea45f4216bae2b528": {
+    "assetId": "eip155:56/bep20:0x4507cef57c46789ef8d1a19ea45f4216bae2b528",
+    "chainId": "eip155:56",
+    "name": "TokenFi on BNB Smart Chain",
+    "precision": 9,
+    "color": "#040404",
+    "icon": "https://assets.coingecko.com/coins/images/32507/thumb/MAIN_TokenFi_logo_icon.png?1698918427",
+    "symbol": "TOKEN",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x450dcf93160a30be156a4600802c91bf64dffd2e": {
+    "assetId": "eip155:56/bep20:0x450dcf93160a30be156a4600802c91bf64dffd2e",
+    "chainId": "eip155:56",
+    "name": "CorgiCoin",
+    "precision": 18,
+    "color": "#E9D4C2",
+    "icon": "https://assets.coingecko.com/coins/images/16096/thumb/BMfphzgF_400x400.png?1622881650",
+    "symbol": "CORGI",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x45289007706e7ee7b42b1fa506661d97740edfb4": {
+    "assetId": "eip155:56/bep20:0x45289007706e7ee7b42b1fa506661d97740edfb4",
+    "chainId": "eip155:56",
+    "name": "FLOKI CEO",
+    "precision": 9,
+    "color": "#CFDEE2",
+    "icon": "https://assets.coingecko.com/coins/images/29199/thumb/IMG_20230225_005553_020.jpg?1696528159",
+    "symbol": "FLOKICEO",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x454b90716a9435e7161a9aea5cf00e0acbe565ae": {
+    "assetId": "eip155:56/bep20:0x454b90716a9435e7161a9aea5cf00e0acbe565ae",
+    "chainId": "eip155:56",
+    "name": "Source Protocol",
+    "precision": 9,
+    "color": "#34AAFC",
+    "icon": "https://assets.coingecko.com/coins/images/25898/thumb/80368b_7b0a30441d7c4134a35067553ef6de3e_mv2_%281%29.png?1696524979",
+    "symbol": "SRCX",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x4550003152f12014558e5ce025707e4dd841100f": {
+    "assetId": "eip155:56/bep20:0x4550003152f12014558e5ce025707e4dd841100f",
+    "chainId": "eip155:56",
+    "name": "Kaizen Finance on BNB Smart Chain",
+    "precision": 18,
+    "color": "#FCCFCF",
+    "icon": "https://assets.coingecko.com/coins/images/24396/thumb/PKl5OVRv_400x400.png?1696523579",
+    "symbol": "KZEN",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x45808ce43eb2d7685ff0242631f0feb6f3d8701a": {
+    "assetId": "eip155:56/bep20:0x45808ce43eb2d7685ff0242631f0feb6f3d8701a",
+    "chainId": "eip155:56",
+    "name": "Ekta on BNB Smart Chain",
+    "precision": 18,
+    "color": "#CA665C",
+    "icon": "https://assets.coingecko.com/coins/images/22350/thumb/token.jpg?1696521693",
+    "symbol": "EKTA",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x459fab6be3b07558e28fecb07b64a481d0e8c6a3": {
+    "assetId": "eip155:56/bep20:0x459fab6be3b07558e28fecb07b64a481d0e8c6a3",
+    "chainId": "eip155:56",
+    "name": "FlokiTer",
+    "precision": 18,
+    "color": "#3B5759",
+    "icon": "https://assets.coingecko.com/coins/images/29568/thumb/FlokiTerOfficialLogo-removebg.png?1696528508",
+    "symbol": "FAI",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x45d0f429790bec7ad4b68330b1051c7b8fe9d8af": {
+    "assetId": "eip155:56/bep20:0x45d0f429790bec7ad4b68330b1051c7b8fe9d8af",
+    "chainId": "eip155:56",
+    "name": "Bunscake",
+    "precision": 18,
+    "color": "#D4957D",
+    "icon": "https://assets.coingecko.com/coins/images/19826/thumb/bunscake.PNG?1696519249",
+    "symbol": "BSCAKE",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x45d51acc587574536cb292500d35dd3060796c63": {
+    "assetId": "eip155:56/bep20:0x45d51acc587574536cb292500d35dd3060796c63",
+    "chainId": "eip155:56",
+    "name": "SincroniX",
+    "precision": 18,
+    "color": "#84E03C",
+    "icon": "https://assets.coingecko.com/coins/images/29637/thumb/logo.png?1696528574",
+    "symbol": "SNX",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x45f7967926e95fd161e56ed66b663c9114c5226f": {
+    "assetId": "eip155:56/bep20:0x45f7967926e95fd161e56ed66b663c9114c5226f",
+    "chainId": "eip155:56",
+    "name": "Tokoin on BNB Smart Chain",
+    "precision": 18,
+    "color": "#149CF4",
+    "icon": "https://assets.coingecko.com/coins/images/8807/thumb/TOKOIN_LOGO_%28no_text%29.png?1696508959",
+    "symbol": "TOKO",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x464863745ed3af8b9f8871f1082211c55f8f884d": {
+    "assetId": "eip155:56/bep20:0x464863745ed3af8b9f8871f1082211c55f8f884d",
+    "chainId": "eip155:56",
+    "name": "CryptoTycoon",
+    "precision": 18,
+    "color": "#966852",
+    "icon": "https://assets.coingecko.com/coins/images/15882/thumb/ctt.PNG?1696515497",
+    "symbol": "CTT",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x464fdb8affc9bac185a7393fd4298137866dcfb8": {
+    "assetId": "eip155:56/bep20:0x464fdb8affc9bac185a7393fd4298137866dcfb8",
+    "chainId": "eip155:56",
+    "name": "Realm on BNB Smart Chain",
+    "precision": 18,
+    "color": "#223B57",
+    "icon": "https://assets.coingecko.com/coins/images/18366/thumb/realm.PNG?1696517859",
+    "symbol": "REALM",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x465707181acba42ed01268a33f0507e320a154bd": {
+    "assetId": "eip155:56/bep20:0x465707181acba42ed01268a33f0507e320a154bd",
+    "chainId": "eip155:56",
+    "name": "Step",
+    "precision": 18,
+    "color": "#D5F413",
+    "icon": "https://assets.coingecko.com/coins/images/22352/thumb/fOag4nRa_400x400.jpg?1696521695",
+    "symbol": "STEP",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x4673f018cc6d401aad0402bdbf2abcbf43dd69f3": {
+    "assetId": "eip155:56/bep20:0x4673f018cc6d401aad0402bdbf2abcbf43dd69f3",
+    "chainId": "eip155:56",
+    "name": "French Connection Finance",
+    "precision": 18,
+    "color": "#2D9C8D",
+    "icon": "https://assets.coingecko.com/coins/images/19089/thumb/transparent_background.png?1696518542",
+    "symbol": "FCF",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x4691937a7508860f876c9c0a2a617e7d9e945d4b": {
+    "assetId": "eip155:56/bep20:0x4691937a7508860f876c9c0a2a617e7d9e945d4b",
+    "chainId": "eip155:56",
+    "name": "WOO Network on BNB Smart Chain",
+    "precision": 18,
+    "color": "#E1E4E6",
+    "icon": "https://assets.coingecko.com/coins/images/12921/thumb/WOO_Logos_2023_Profile_Pic_WOO.png?1696512709",
+    "symbol": "WOO",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x469acf8e1f29c1b5db99394582464fad45a1fc6f": {
+    "assetId": "eip155:56/bep20:0x469acf8e1f29c1b5db99394582464fad45a1fc6f",
+    "chainId": "eip155:56",
+    "name": "Himo World",
+    "precision": 18,
+    "color": "#E07B1C",
+    "icon": "https://assets.coingecko.com/coins/images/23000/thumb/16726.png?1696522295",
+    "symbol": "HIMO",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x46d502fac9aea7c5bc7b13c8ec9d02378c33d36f": {
+    "assetId": "eip155:56/bep20:0x46d502fac9aea7c5bc7b13c8ec9d02378c33d36f",
+    "chainId": "eip155:56",
+    "name": "WolfSafePoorPeople",
+    "precision": 0,
+    "color": "#40A030",
+    "icon": "https://assets.coingecko.com/coins/images/17090/thumb/wspplogo.png?1696516652",
+    "symbol": "WSPP",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x46f063d5dcf1378e4ca3dca992450cacf64603eb": {
+    "assetId": "eip155:56/bep20:0x46f063d5dcf1378e4ca3dca992450cacf64603eb",
+    "chainId": "eip155:56",
+    "name": "Box DAO",
+    "precision": 18,
+    "color": "#A1B0E2",
+    "icon": "https://assets.coingecko.com/coins/images/32505/thumb/logo_1__200x200.png?1698313308",
+    "symbol": "B-DAO",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x46f275321107d7c49cf80216371abf1a1599c36f": {
+    "assetId": "eip155:56/bep20:0x46f275321107d7c49cf80216371abf1a1599c36f",
+    "chainId": "eip155:56",
+    "name": "TG DAO",
+    "precision": 18,
+    "color": "#051644",
+    "icon": "https://assets.coingecko.com/coins/images/22834/thumb/JjRiXuqw_400x400.jpg?1696522135",
+    "symbol": "TGDAO",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x471ea49dd8e60e697f4cac262b5fafcc307506e4": {
+    "assetId": "eip155:56/bep20:0x471ea49dd8e60e697f4cac262b5fafcc307506e4",
+    "chainId": "eip155:56",
+    "name": "Kommunitas on BNB Smart Chain",
+    "precision": 8,
+    "color": "#D9F0F6",
+    "icon": "https://assets.coingecko.com/coins/images/17483/thumb/1_f1S3h57YLT1e1cl8g7RJpw_2x.jpeg?1696517024",
+    "symbol": "KOM",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x474021845c4643113458ea4414bdb7fb74a01a77": {
+    "assetId": "eip155:56/bep20:0x474021845c4643113458ea4414bdb7fb74a01a77",
+    "chainId": "eip155:56",
+    "name": "Uno Re on BNB Smart Chain",
+    "precision": 18,
+    "color": "#F67270",
+    "icon": "https://assets.coingecko.com/coins/images/15073/thumb/c0vbqVE.png?1696514732",
+    "symbol": "UNO",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x4756cd85cd07769c2ce07a73497f208d56d48ec1": {
+    "assetId": "eip155:56/bep20:0x4756cd85cd07769c2ce07a73497f208d56d48ec1",
+    "chainId": "eip155:56",
+    "name": "DOGECOLA",
+    "precision": 18,
+    "color": "#C86C27",
+    "icon": "https://assets.coingecko.com/coins/images/17371/thumb/11271.png?1696516921",
+    "symbol": "DOGECOLA",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x475bfaa1848591ae0e6ab69600f48d828f61a80e": {
+    "assetId": "eip155:56/bep20:0x475bfaa1848591ae0e6ab69600f48d828f61a80e",
+    "chainId": "eip155:56",
+    "name": "Everdome",
+    "precision": 18,
+    "color": "#652E6C",
+    "icon": "https://assets.coingecko.com/coins/images/23267/thumb/Ix-ms0fq_400x400.jpg?1696522487",
+    "symbol": "DOME",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x475ff948688ab846ca4455a6eee0b756d3fbcbca": {
+    "assetId": "eip155:56/bep20:0x475ff948688ab846ca4455a6eee0b756d3fbcbca",
+    "chainId": "eip155:56",
+    "name": "papa2049",
+    "precision": 18,
+    "color": "#E9F1DF",
+    "icon": "https://assets.coingecko.com/coins/images/31881/thumb/IMG_20230920_113939_558.jpg?1696530692",
+    "symbol": "PAPA2049",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x477bc8d23c634c154061869478bce96be6045d12": {
+    "assetId": "eip155:56/bep20:0x477bc8d23c634c154061869478bce96be6045d12",
+    "chainId": "eip155:56",
+    "name": "Seedify fund on BNB Smart Chain",
+    "precision": 18,
+    "color": "#51BEFC",
+    "icon": "https://assets.coingecko.com/coins/images/14614/thumb/Favicon_Icon.png?1696514292",
+    "symbol": "SFUND",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x47bead2563dcbf3bf2c9407fea4dc236faba485a": {
+    "assetId": "eip155:56/bep20:0x47bead2563dcbf3bf2c9407fea4dc236faba485a",
+    "chainId": "eip155:56",
+    "name": "SXP on BNB Smart Chain",
+    "precision": 18,
+    "color": "#FC633E",
+    "icon": "https://assets.coingecko.com/coins/images/9368/thumb/swipe.png?1696509466",
+    "symbol": "SXP",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x47c454ca6be2f6def6f32b638c80f91c9c3c5949": {
+    "assetId": "eip155:56/bep20:0x47c454ca6be2f6def6f32b638c80f91c9c3c5949",
+    "chainId": "eip155:56",
+    "name": "Games for a Living",
+    "precision": 18,
+    "color": "#C610AC",
+    "icon": "https://assets.coingecko.com/coins/images/29430/thumb/token.png?1696528378",
+    "symbol": "GFAL",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x47c9bcef4fe2dbcdf3abf508f147f1bbe8d4fef2": {
+    "assetId": "eip155:56/bep20:0x47c9bcef4fe2dbcdf3abf508f147f1bbe8d4fef2",
+    "chainId": "eip155:56",
+    "name": "Flurry Finance on BNB Smart Chain",
+    "precision": 18,
+    "color": "#0CA1FC",
+    "icon": "https://assets.coingecko.com/coins/images/16235/thumb/flurry_logo_only_200x200.png?1696515836",
+    "symbol": "FLURRY",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x47db24e17c0c4622523449a239b3de746e2b0b23": {
+    "assetId": "eip155:56/bep20:0x47db24e17c0c4622523449a239b3de746e2b0b23",
+    "chainId": "eip155:56",
+    "name": "PixelVerse on BNB Smart Chain",
+    "precision": 18,
+    "color": "#28171A",
+    "icon": "https://assets.coingecko.com/coins/images/19934/thumb/pixelverse.PNG?1696519352",
+    "symbol": "PIXEL",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x47fd014706081068448b89fc6baca2730977216a": {
+    "assetId": "eip155:56/bep20:0x47fd014706081068448b89fc6baca2730977216a",
+    "chainId": "eip155:56",
+    "name": "Pepe the Frog",
+    "precision": 9,
+    "color": "#82925E",
+    "icon": "https://assets.coingecko.com/coins/images/29893/thumb/pepenewlogo.PNG?1696528817",
+    "symbol": "PEPEBNB",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x4803ac6b79f9582f69c4fa23c72cb76dd1e46d8d": {
+    "assetId": "eip155:56/bep20:0x4803ac6b79f9582f69c4fa23c72cb76dd1e46d8d",
+    "chainId": "eip155:56",
+    "name": "TopManager",
+    "precision": 18,
+    "color": "#C883FC",
+    "icon": "https://assets.coingecko.com/coins/images/22490/thumb/TMT-200.png?1696521813",
+    "symbol": "TMT",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x48077400faf11183c043feb5184a13ea628bb0db": {
+    "assetId": "eip155:56/bep20:0x48077400faf11183c043feb5184a13ea628bb0db",
+    "chainId": "eip155:56",
+    "name": "Coinzix Token",
+    "precision": 18,
+    "color": "#24CC9C",
+    "icon": "https://assets.coingecko.com/coins/images/27886/thumb/logo_coinzix_200x200_transparent_png.png?1696526903",
+    "symbol": "ZIX",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x4819c2e71ebdd5e3c91d8b735ccea8fd37f89be5": {
+    "assetId": "eip155:56/bep20:0x4819c2e71ebdd5e3c91d8b735ccea8fd37f89be5",
+    "chainId": "eip155:56",
+    "name": "CEASports",
+    "precision": 18,
+    "color": "#D7FBF4",
+    "icon": "https://assets.coingecko.com/coins/images/28528/thumb/Logo_Ceasports_new.png?1696527520",
+    "symbol": "CSPT",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x4823a096382f4fa583b55d563afb9f9a58c72fc0": {
+    "assetId": "eip155:56/bep20:0x4823a096382f4fa583b55d563afb9f9a58c72fc0",
+    "chainId": "eip155:56",
+    "name": "Arabic",
+    "precision": 18,
+    "color": "#F4941E",
+    "icon": "https://assets.coingecko.com/coins/images/19549/thumb/abic.png?1696518982",
+    "symbol": "ABIC",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x482e6bd0a178f985818c5dfb9ac77918e8412fba": {
+    "assetId": "eip155:56/bep20:0x482e6bd0a178f985818c5dfb9ac77918e8412fba",
+    "chainId": "eip155:56",
+    "name": "Colizeum on BNB Smart Chain",
+    "precision": 18,
+    "color": "#D1D0D1",
+    "icon": "https://assets.coingecko.com/coins/images/24448/thumb/AB0cGpnx_400x400.jpg?1696523629",
+    "symbol": "ZEUM",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x48378891d6e459ca9a56b88b406e8f4eab2e39bf": {
+    "assetId": "eip155:56/bep20:0x48378891d6e459ca9a56b88b406e8f4eab2e39bf",
+    "chainId": "eip155:56",
+    "name": "Furio",
+    "precision": 18,
+    "color": "#F46C27",
+    "icon": "https://assets.coingecko.com/coins/images/26035/thumb/furio.png?1696525112",
+    "symbol": "FUR",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x4841181ae4079072ebe83a29b718388a387169e3": {
+    "assetId": "eip155:56/bep20:0x4841181ae4079072ebe83a29b718388a387169e3",
+    "chainId": "eip155:56",
+    "name": "Salmonation",
+    "precision": 9,
+    "color": "#FB7607",
+    "icon": "https://assets.coingecko.com/coins/images/24408/thumb/256x256.png?1696523590",
+    "symbol": "SUI",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x484312a0aaeae3ae36a74ff3e294246f35dddf4f": {
+    "assetId": "eip155:56/bep20:0x484312a0aaeae3ae36a74ff3e294246f35dddf4f",
+    "chainId": "eip155:56",
+    "name": "Baby Shark Tank",
+    "precision": 9,
+    "color": "#B2AC83",
+    "icon": "https://assets.coingecko.com/coins/images/15390/thumb/IqTGmFXy_400x400.jpg?1696515037",
+    "symbol": "BASHTANK",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x4861ba0ce919fee66b41c85a08a7476557914275": {
+    "assetId": "eip155:56/bep20:0x4861ba0ce919fee66b41c85a08a7476557914275",
+    "chainId": "eip155:56",
+    "name": "Continuum Finance",
+    "precision": 18,
+    "color": "#1C6CFC",
+    "icon": "https://assets.coingecko.com/coins/images/24338/thumb/LMWqfjP6_400x400.png?1696523523",
+    "symbol": "CTN",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x489580eb70a50515296ef31e8179ff3e77e24965": {
+    "assetId": "eip155:56/bep20:0x489580eb70a50515296ef31e8179ff3e77e24965",
+    "chainId": "eip155:56",
+    "name": "DappRadar on BNB Smart Chain",
+    "precision": 18,
+    "color": "#1073FC",
+    "icon": "https://assets.coingecko.com/coins/images/20894/thumb/radar.png?1696520286",
+    "symbol": "RADAR",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x48a356df5140ed37034afada32d03b74d4271d6a": {
+    "assetId": "eip155:56/bep20:0x48a356df5140ed37034afada32d03b74d4271d6a",
+    "chainId": "eip155:56",
+    "name": "Armour Wallet",
+    "precision": 18,
+    "color": "#457B85",
+    "icon": "https://assets.coingecko.com/coins/images/30068/thumb/200X200.jpg?1696528990",
+    "symbol": "ARMOUR",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x48b19b7605429acaa8ea734117f39726a9aab1f9": {
+    "assetId": "eip155:56/bep20:0x48b19b7605429acaa8ea734117f39726a9aab1f9",
+    "chainId": "eip155:56",
+    "name": "Etho Protocol on BNB Smart Chain",
+    "precision": 18,
+    "color": "#941C44",
+    "icon": "https://assets.coingecko.com/coins/images/5194/thumb/ether1new-transparent.png?1696505708",
+    "symbol": "ETHO",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x48c684c5c0510a0f0b18b08dcdfdc44adbb0348d": {
+    "assetId": "eip155:56/bep20:0x48c684c5c0510a0f0b18b08dcdfdc44adbb0348d",
+    "chainId": "eip155:56",
+    "name": "DigitalBay",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/33073/thumb/logo.png?1700542070",
+    "symbol": "DBC",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x48ed9372169ef0bf2b901bbe45e52b6a6b8f1ecc": {
+    "assetId": "eip155:56/bep20:0x48ed9372169ef0bf2b901bbe45e52b6a6b8f1ecc",
+    "chainId": "eip155:56",
+    "name": "Crazy Bunny",
+    "precision": 9,
+    "color": "#3B3222",
+    "icon": "https://assets.coingecko.com/coins/images/29706/thumb/IMG_20230404_214539_862.png?1696528638",
+    "symbol": "CRAZYBUNNY",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x491347561cec563ad7d91135f92dbdc700277505": {
+    "assetId": "eip155:56/bep20:0x491347561cec563ad7d91135f92dbdc700277505",
+    "chainId": "eip155:56",
+    "name": "BFX Finance",
+    "precision": 18,
+    "color": "#FCEC6F",
+    "icon": "https://assets.coingecko.com/coins/images/30694/thumb/BFX.png?1696529563",
+    "symbol": "BFX",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x4927b4d730ae6f5a9a9115cf81848a3b9cfad891": {
+    "assetId": "eip155:56/bep20:0x4927b4d730ae6f5a9a9115cf81848a3b9cfad891",
+    "chainId": "eip155:56",
+    "name": "iFortune",
+    "precision": 18,
+    "color": "#FBFCF1",
+    "icon": "https://assets.coingecko.com/coins/images/29035/thumb/LOGO.jpg?1696528004",
+    "symbol": "IFC",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x49324d59327fb799813b902db55b2a118d601547": {
+    "assetId": "eip155:56/bep20:0x49324d59327fb799813b902db55b2a118d601547",
+    "chainId": "eip155:56",
+    "name": "Boss",
+    "precision": 9,
+    "color": "#9136E6",
+    "icon": "https://assets.coingecko.com/coins/images/17927/thumb/XL7jo4j.png?1696517447",
+    "symbol": "BOSS",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x4937e7d93dd8d8e76eb83659f109cdc633ffdee9": {
+    "assetId": "eip155:56/bep20:0x4937e7d93dd8d8e76eb83659f109cdc633ffdee9",
+    "chainId": "eip155:56",
+    "name": "CATCEO",
+    "precision": 9,
+    "color": "#B97873",
+    "icon": "https://assets.coingecko.com/coins/images/29307/thumb/CATCEO_logo_200*200.png?1696528258",
+    "symbol": "CATCEO",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x4950c48ccf576d185eb3a0820728a6cfe435d493": {
+    "assetId": "eip155:56/bep20:0x4950c48ccf576d185eb3a0820728a6cfe435d493",
+    "chainId": "eip155:56",
+    "name": "Angry Birds",
+    "precision": 18,
+    "color": "#E59064",
+    "icon": "https://assets.coingecko.com/coins/images/31991/thumb/brd.jpeg?1696530792",
+    "symbol": "BRD",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x4954e0062e0a7668a2fe3df924cd20e6440a7b77": {
+    "assetId": "eip155:56/bep20:0x4954e0062e0a7668a2fe3df924cd20e6440a7b77",
+    "chainId": "eip155:56",
+    "name": "ByteNext",
+    "precision": 18,
+    "color": "#14A4CC",
+    "icon": "https://assets.coingecko.com/coins/images/16000/thumb/logo.png?1696515612",
+    "symbol": "BNU",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x496cc0b4ee12aa2ac4c42e93067484e7ff50294b": {
+    "assetId": "eip155:56/bep20:0x496cc0b4ee12aa2ac4c42e93067484e7ff50294b",
+    "chainId": "eip155:56",
+    "name": "Metastrike",
+    "precision": 18,
+    "color": "#171410",
+    "icon": "https://assets.coingecko.com/coins/images/22892/thumb/weD5ZQkc_400x400.jpg?1696522189",
+    "symbol": "MTS",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x499954f9c977b74a48d4bb14ba9904bea6cb7b01": {
+    "assetId": "eip155:56/bep20:0x499954f9c977b74a48d4bb14ba9904bea6cb7b01",
+    "chainId": "eip155:56",
+    "name": "Cosanta",
+    "precision": 8,
+    "color": "#B0B0B0",
+    "icon": "https://assets.coingecko.com/coins/images/29313/thumb/cosanta_logo.png?1696528264",
+    "symbol": "COSA",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x499fc0ec9aade85de50af0c17513c7b850eb275f": {
+    "assetId": "eip155:56/bep20:0x499fc0ec9aade85de50af0c17513c7b850eb275f",
+    "chainId": "eip155:56",
+    "name": "AICrew",
+    "precision": 18,
+    "color": "#041919",
+    "icon": "https://assets.coingecko.com/coins/images/31569/thumb/Token_AICR.png?1696530381",
+    "symbol": "AICR",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x49a516bd4406b2d4074c738a58de6db397d0abc9": {
+    "assetId": "eip155:56/bep20:0x49a516bd4406b2d4074c738a58de6db397d0abc9",
+    "chainId": "eip155:56",
+    "name": "IKOLF",
+    "precision": 9,
+    "color": "#A8905D",
+    "icon": "https://assets.coingecko.com/coins/images/26868/thumb/IMG_20220814_132323_400.jpg?1696525927",
+    "symbol": "IKOLF",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x49c7295ff86eabf5bf58c6ebc858db4805738c01": {
+    "assetId": "eip155:56/bep20:0x49c7295ff86eabf5bf58c6ebc858db4805738c01",
+    "chainId": "eip155:56",
+    "name": "Hero Arena",
+    "precision": 18,
+    "color": "#906A4A",
+    "icon": "https://assets.coingecko.com/coins/images/19160/thumb/hera.png?1696518610",
+    "symbol": "HERA",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x49d71842870b5a1e19ee14c8281114be74d5be20": {
+    "assetId": "eip155:56/bep20:0x49d71842870b5a1e19ee14c8281114be74d5be20",
+    "chainId": "eip155:56",
+    "name": "TERATTO",
+    "precision": 18,
+    "color": "#E7E7F7",
+    "icon": "https://assets.coingecko.com/coins/images/32130/thumb/TERACON-LOGO.png?1696588418",
+    "symbol": "TRCON",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x49f2145d6366099e13b10fbf80646c0f377ee7f6": {
+    "assetId": "eip155:56/bep20:0x49f2145d6366099e13b10fbf80646c0f377ee7f6",
+    "chainId": "eip155:56",
+    "name": "FC Porto",
+    "precision": 8,
+    "color": "#A5999E",
+    "icon": "https://assets.coingecko.com/coins/images/20459/thumb/fcp.jpg?1696519864",
+    "symbol": "PORTO",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x4a080377f83d669d7bb83b3184a8a5e61b500608": {
+    "assetId": "eip155:56/bep20:0x4a080377f83d669d7bb83b3184a8a5e61b500608",
+    "chainId": "eip155:56",
+    "name": "Xend Finance on BNB Smart Chain",
+    "precision": 18,
+    "color": "#F3EAE8",
+    "icon": "https://assets.coingecko.com/coins/images/14496/thumb/WeChat_Image_20210325163206.png?1696514181",
+    "symbol": "XEND",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x4a0a3902e091cdb3aec4279a6bfac50297f0a79e": {
+    "assetId": "eip155:56/bep20:0x4a0a3902e091cdb3aec4279a6bfac50297f0a79e",
+    "chainId": "eip155:56",
+    "name": "Vera on BNB Smart Chain",
+    "precision": 18,
+    "color": "#1CB6E4",
+    "icon": "https://assets.coingecko.com/coins/images/18519/thumb/JJXTVFOE_400x400.png?1696518000",
+    "symbol": "VERA",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x4a1ad6a5aee1915c5bc0104bd7e2671ed37aaf0e": {
+    "assetId": "eip155:56/bep20:0x4a1ad6a5aee1915c5bc0104bd7e2671ed37aaf0e",
+    "chainId": "eip155:56",
+    "name": "GreenDex",
+    "precision": 18,
+    "color": "#819A90",
+    "icon": "https://assets.coingecko.com/coins/images/30093/thumb/photo_2023-04-14_23-00-33.jpg?1696529017",
+    "symbol": "GED",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x4a2c860cec6471b9f5f5a336eb4f38bb21683c98": {
+    "assetId": "eip155:56/bep20:0x4a2c860cec6471b9f5f5a336eb4f38bb21683c98",
+    "chainId": "eip155:56",
+    "name": "STEPN Green Satoshi Token on BSC",
+    "precision": 8,
+    "color": "#4B4949",
+    "icon": "https://assets.coingecko.com/coins/images/25484/thumb/gst.png?1696524617",
+    "symbol": "GST-BSC",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x4a5a34212404f30c5ab7eb61b078fa4a55adc5a5": {
+    "assetId": "eip155:56/bep20:0x4a5a34212404f30c5ab7eb61b078fa4a55adc5a5",
+    "chainId": "eip155:56",
+    "name": "Spaceswap MILK2 on BNB Smart Chain",
+    "precision": 18,
+    "color": "#EADBDD",
+    "icon": "https://assets.coingecko.com/coins/images/12771/thumb/milk.png?1696512567",
+    "symbol": "MILK2",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x4a645fb8ae60979edf7f47c5c1a4569b7fb07851": {
+    "assetId": "eip155:56/bep20:0x4a645fb8ae60979edf7f47c5c1a4569b7fb07851",
+    "chainId": "eip155:56",
+    "name": "MEME Token",
+    "precision": 9,
+    "color": "#ECD614",
+    "icon": "https://assets.coingecko.com/coins/images/30244/thumb/1683302825646-e392bbea67a6fcfbfec3a0c14e10ade0.png?1696529153",
+    "symbol": "MEME",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x4a68c250486a116dc8d6a0c5b0677de07cc09c5d": {
+    "assetId": "eip155:56/bep20:0x4a68c250486a116dc8d6a0c5b0677de07cc09c5d",
+    "chainId": "eip155:56",
+    "name": "Poodl",
+    "precision": 9,
+    "color": "#EA2A70",
+    "icon": "https://assets.coingecko.com/coins/images/14405/thumb/poodl-logo200x200.jpg?1696514097",
+    "symbol": "POODL",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x4a76a1eaa365c10bd9b895acab5760d52ff2f7c9": {
+    "assetId": "eip155:56/bep20:0x4a76a1eaa365c10bd9b895acab5760d52ff2f7c9",
+    "chainId": "eip155:56",
+    "name": "Safemoon 1996",
+    "precision": 9,
+    "color": "#091011",
+    "icon": "https://assets.coingecko.com/coins/images/28300/thumb/IMG_20221120_122930_391.jpg?1696527299",
+    "symbol": "SM96",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x4a824ee819955a7d769e03fe36f9e0c3bd3aa60b": {
+    "assetId": "eip155:56/bep20:0x4a824ee819955a7d769e03fe36f9e0c3bd3aa60b",
+    "chainId": "eip155:56",
+    "name": "Kabosu",
+    "precision": 9,
+    "color": "#CD8D40",
+    "icon": "https://assets.coingecko.com/coins/images/15396/thumb/o7LLTW8.png?1696515043",
+    "symbol": "KABOSU",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x4a9a2b2b04549c3927dd2c9668a5ef3fca473623": {
+    "assetId": "eip155:56/bep20:0x4a9a2b2b04549c3927dd2c9668a5ef3fca473623",
+    "chainId": "eip155:56",
+    "name": "dForce on BNB Smart Chain",
+    "precision": 18,
+    "color": "#0E0718",
+    "icon": "https://assets.coingecko.com/coins/images/9709/thumb/xlGxxIjI_400x400.jpg?1696509776",
+    "symbol": "DF",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x4aa22532e3e8b051eae48e60c58426c8553d5df5": {
+    "assetId": "eip155:56/bep20:0x4aa22532e3e8b051eae48e60c58426c8553d5df5",
+    "chainId": "eip155:56",
+    "name": "Telegram Inu",
+    "precision": 9,
+    "color": "#3BA0D3",
+    "icon": "https://assets.coingecko.com/coins/images/27085/thumb/TELEGRAMINU_logo.png?1696526135",
+    "symbol": "TINU",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x4aac18de824ec1b553dbf342829834e4ff3f7a9f": {
+    "assetId": "eip155:56/bep20:0x4aac18de824ec1b553dbf342829834e4ff3f7a9f",
+    "chainId": "eip155:56",
+    "name": "AnchorSwap",
+    "precision": 18,
+    "color": "#313B60",
+    "icon": "https://assets.coingecko.com/coins/images/18909/thumb/anchorswap.PNG?1696518367",
+    "symbol": "ANCHOR",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x4aaf59dee18ecc1bbd2bf68b3f7ba3af47eb9cfc": {
+    "assetId": "eip155:56/bep20:0x4aaf59dee18ecc1bbd2bf68b3f7ba3af47eb9cfc",
+    "chainId": "eip155:56",
+    "name": "YourWallet",
+    "precision": 18,
+    "color": "#0A3D7E",
+    "icon": "https://assets.coingecko.com/coins/images/28882/thumb/logo_200.png?1696527859",
+    "symbol": "YOURWALLET",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x4ac81e3631dcda62109e3117c4cae7bf70bbbbd2": {
+    "assetId": "eip155:56/bep20:0x4ac81e3631dcda62109e3117c4cae7bf70bbbbd2",
+    "chainId": "eip155:56",
+    "name": "SavePlanetEarth",
+    "precision": 9,
+    "color": "#6DA259",
+    "icon": "https://assets.coingecko.com/coins/images/19759/thumb/spe.png?1696519182",
+    "symbol": "SPE",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x4adc604a0261e3d340745533964fff6bb130f3c3": {
+    "assetId": "eip155:56/bep20:0x4adc604a0261e3d340745533964fff6bb130f3c3",
+    "chainId": "eip155:56",
+    "name": "Pesabase",
+    "precision": 18,
+    "color": "#BE8134",
+    "icon": "https://assets.coingecko.com/coins/images/25437/thumb/PESA1.jpg?1696524570",
+    "symbol": "PESA",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x4afc8c2be6a0783ea16e16066fde140d15979296": {
+    "assetId": "eip155:56/bep20:0x4afc8c2be6a0783ea16e16066fde140d15979296",
+    "chainId": "eip155:56",
+    "name": "Hare  OLD ",
+    "precision": 9,
+    "color": "#0FBEEB",
+    "icon": "https://assets.coingecko.com/coins/images/16327/thumb/200ico.png?1696515928",
+    "symbol": "HARE",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x4b0f1812e5df2a09796481ff14017e6005508003": {
+    "assetId": "eip155:56/bep20:0x4b0f1812e5df2a09796481ff14017e6005508003",
+    "chainId": "eip155:56",
+    "name": "Trust Wallet",
+    "precision": 18,
+    "color": "#3474BC",
+    "icon": "https://assets.coingecko.com/coins/images/11085/thumb/Trust.png?1696511026",
+    "symbol": "TWT",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x4b5c23cac08a567ecf0c1ffca8372a45a5d33743": {
+    "assetId": "eip155:56/bep20:0x4b5c23cac08a567ecf0c1ffca8372a45a5d33743",
+    "chainId": "eip155:56",
+    "name": "Harvest Finance on BNB Smart Chain",
+    "precision": 18,
+    "color": "#7C6B4E",
+    "icon": "https://assets.coingecko.com/coins/images/12304/thumb/FARM_200x200.png?1696512134",
+    "symbol": "FARM",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x4b5decb9327b4d511a58137a1ade61434aacdd43": {
+    "assetId": "eip155:56/bep20:0x4b5decb9327b4d511a58137a1ade61434aacdd43",
+    "chainId": "eip155:56",
+    "name": "Poken on BNB Smart Chain",
+    "precision": 18,
+    "color": "#081B26",
+    "icon": "https://assets.coingecko.com/coins/images/21574/thumb/G10VNBAR_400x400.jpg?1696520934",
+    "symbol": "PKN",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x4b6000f9163de2e3f0a01ec37e06e1469dbbce9d": {
+    "assetId": "eip155:56/bep20:0x4b6000f9163de2e3f0a01ec37e06e1469dbbce9d",
+    "chainId": "eip155:56",
+    "name": "KeyFi on BNB Smart Chain",
+    "precision": 18,
+    "color": "#1458B4",
+    "icon": "https://assets.coingecko.com/coins/images/15098/thumb/keyfi_logo.jpg?1696514756",
+    "symbol": "KEYFI",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x4b6b3d425f82248996d77ecc3f3df1e500aac1db": {
+    "assetId": "eip155:56/bep20:0x4b6b3d425f82248996d77ecc3f3df1e500aac1db",
+    "chainId": "eip155:56",
+    "name": "LiquidDriver on BNB Smart Chain",
+    "precision": 18,
+    "color": "#0C103F",
+    "icon": "https://assets.coingecko.com/coins/images/15782/thumb/LQDR_Glowing_Icon.png?1696515405",
+    "symbol": "LQDR",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x4b71bd5e1db6cce4179e175a3a2033e4f17b7432": {
+    "assetId": "eip155:56/bep20:0x4b71bd5e1db6cce4179e175a3a2033e4f17b7432",
+    "chainId": "eip155:56",
+    "name": "Gameology",
+    "precision": 9,
+    "color": "#C4C6C8",
+    "icon": "https://assets.coingecko.com/coins/images/16364/thumb/CRfFHQ7.png?1696515963",
+    "symbol": "GMY",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x4b8285ab433d8f69cb48d5ad62b415ed1a221e4f": {
+    "assetId": "eip155:56/bep20:0x4b8285ab433d8f69cb48d5ad62b415ed1a221e4f",
+    "chainId": "eip155:56",
+    "name": "MagicCraft on BNB Smart Chain",
+    "precision": 9,
+    "color": "#CDC7DE",
+    "icon": "https://assets.coingecko.com/coins/images/21318/thumb/mcrt.png?1696520686",
+    "symbol": "MCRT",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x4b85a666dec7c959e88b97814e46113601b07e57": {
+    "assetId": "eip155:56/bep20:0x4b85a666dec7c959e88b97814e46113601b07e57",
+    "chainId": "eip155:56",
+    "name": "GoCrypto on BNB Smart Chain",
+    "precision": 18,
+    "color": "#FAE304",
+    "icon": "https://assets.coingecko.com/coins/images/3181/thumb/gocrypto.png?1696503902",
+    "symbol": "GOC",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x4b87f578d6fabf381f43bd2197fbb2a877da6ef8": {
+    "assetId": "eip155:56/bep20:0x4b87f578d6fabf381f43bd2197fbb2a877da6ef8",
+    "chainId": "eip155:56",
+    "name": "The Big Five",
+    "precision": 9,
+    "color": "#DED8CC",
+    "icon": "https://assets.coingecko.com/coins/images/27429/thumb/photo_2022-08-01_16-49-53.jpg?1696526470",
+    "symbol": "BFT",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x4ba0057f784858a48fe351445c672ff2a3d43515": {
+    "assetId": "eip155:56/bep20:0x4ba0057f784858a48fe351445c672ff2a3d43515",
+    "chainId": "eip155:56",
+    "name": "KALM on BNB Smart Chain",
+    "precision": 18,
+    "color": "#050505",
+    "icon": "https://assets.coingecko.com/coins/images/15849/thumb/kalmar.png?1696515466",
+    "symbol": "KALM",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x4bd17003473389a42daf6a0a729f6fdb328bbbd7": {
+    "assetId": "eip155:56/bep20:0x4bd17003473389a42daf6a0a729f6fdb328bbbd7",
+    "chainId": "eip155:56",
+    "name": "Vai",
+    "precision": 18,
+    "color": "#D7ECCF",
+    "icon": "https://assets.coingecko.com/coins/images/13861/thumb/VAI_logo.png?1696513607",
+    "symbol": "VAI",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x4bd46424b82194a2887516ecfeb1599a9531da0d": {
+    "assetId": "eip155:56/bep20:0x4bd46424b82194a2887516ecfeb1599a9531da0d",
+    "chainId": "eip155:56",
+    "name": "PAPA BEAR  Old ",
+    "precision": 18,
+    "color": "#992B07",
+    "icon": "https://assets.coingecko.com/coins/images/31813/thumb/200.png?1696530627",
+    "symbol": "PAPA",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x4be63a9b26ee89b9a3a13fd0aa1d0b2427c135f8": {
+    "assetId": "eip155:56/bep20:0x4be63a9b26ee89b9a3a13fd0aa1d0b2427c135f8",
+    "chainId": "eip155:56",
+    "name": "XCarnival",
+    "precision": 18,
+    "color": "#E07C45",
+    "icon": "https://assets.coingecko.com/coins/images/19232/thumb/82644942.png?1696518678",
+    "symbol": "XCV",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x4c0415a6e340eccebff58131799c6c4127cc39fa": {
+    "assetId": "eip155:56/bep20:0x4c0415a6e340eccebff58131799c6c4127cc39fa",
+    "chainId": "eip155:56",
+    "name": "Xdoge",
+    "precision": 18,
+    "color": "#ED9F44",
+    "icon": "https://assets.coingecko.com/coins/images/19222/thumb/token3.png?1696518669",
+    "symbol": "XDOGE",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x4c0a71fc073266602e3c0628215308383029bf30": {
+    "assetId": "eip155:56/bep20:0x4c0a71fc073266602e3c0628215308383029bf30",
+    "chainId": "eip155:56",
+    "name": "Family Over Everything",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/32689/thumb/IMG_20231101_085537_677.jpg?1698939208",
+    "symbol": "FOE",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x4c403b1879aa6a79ba9c599a393ccc5d9fd2e788": {
+    "assetId": "eip155:56/bep20:0x4c403b1879aa6a79ba9c599a393ccc5d9fd2e788",
+    "chainId": "eip155:56",
+    "name": "Artificial Intelligence",
+    "precision": 9,
+    "color": "#66A7E3",
+    "icon": "https://assets.coingecko.com/coins/images/20632/thumb/200x200.png?1696520036",
+    "symbol": "AI",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x4c48cca6153db911002f965d22fdefcd95f33be9": {
+    "assetId": "eip155:56/bep20:0x4c48cca6153db911002f965d22fdefcd95f33be9",
+    "chainId": "eip155:56",
+    "name": "The Essential Coin",
+    "precision": 18,
+    "color": "#31302B",
+    "icon": "https://assets.coingecko.com/coins/images/21913/thumb/The-Essential-Coin-200x200.png?1696521264",
+    "symbol": "ESC",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x4c496592fd52c2810651b4862cc9fe13940fea31": {
+    "assetId": "eip155:56/bep20:0x4c496592fd52c2810651b4862cc9fe13940fea31",
+    "chainId": "eip155:56",
+    "name": "Baby Alvey",
+    "precision": 9,
+    "color": "#87CDDE",
+    "icon": "https://assets.coingecko.com/coins/images/28438/thumb/logo_200.png?1696527434",
+    "symbol": "BALVEY",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x4c561c1ef2109fc6b230304b114671f72820421b": {
+    "assetId": "eip155:56/bep20:0x4c561c1ef2109fc6b230304b114671f72820421b",
+    "chainId": "eip155:56",
+    "name": "Froggy",
+    "precision": 18,
+    "color": "#D6AF48",
+    "icon": "https://assets.coingecko.com/coins/images/31951/thumb/photo_2023-09-26_08.48.04-removebg-preview_%281%29.png?1696530757",
+    "symbol": "FROGGY",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x4c61d70c0089d708040919aac7bdd600da72bc81": {
+    "assetId": "eip155:56/bep20:0x4c61d70c0089d708040919aac7bdd600da72bc81",
+    "chainId": "eip155:56",
+    "name": "HYME",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/33183/thumb/HYME.jpg?1700926551",
+    "symbol": "HYME",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x4c769928971548eb71a3392eaf66bedc8bef4b80": {
+    "assetId": "eip155:56/bep20:0x4c769928971548eb71a3392eaf66bedc8bef4b80",
+    "chainId": "eip155:56",
+    "name": "HarryPotterObamaSonic10Inu",
+    "precision": 9,
+    "color": "#D7D6DE",
+    "icon": "https://assets.coingecko.com/coins/images/21453/thumb/PYNP2xv.jpeg?1696520815",
+    "symbol": "BITCOIN",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x4c882ec256823ee773b25b414d36f92ef58a7c0c": {
+    "assetId": "eip155:56/bep20:0x4c882ec256823ee773b25b414d36f92ef58a7c0c",
+    "chainId": "eip155:56",
+    "name": "pSTAKE Finance on BNB Smart Chain",
+    "precision": 18,
+    "color": "#070707",
+    "icon": "https://assets.coingecko.com/coins/images/23931/thumb/PSTAKE_Dark.png?1696523129",
+    "symbol": "PSTAKE",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x4c8a3a1025ab87ef184cb7f0691a5a371fe783a6": {
+    "assetId": "eip155:56/bep20:0x4c8a3a1025ab87ef184cb7f0691a5a371fe783a6",
+    "chainId": "eip155:56",
+    "name": "Rake in",
+    "precision": 6,
+    "color": "#69C99F",
+    "icon": "https://assets.coingecko.com/coins/images/29456/thumb/rakein2.png?1696528403",
+    "symbol": "RAKE",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x4c906b99a2f45a47c8570b7a41ffe940f71676af": {
+    "assetId": "eip155:56/bep20:0x4c906b99a2f45a47c8570b7a41ffe940f71676af",
+    "chainId": "eip155:56",
+    "name": "OpiPets",
+    "precision": 18,
+    "color": "#61556C",
+    "icon": "https://assets.coingecko.com/coins/images/28806/thumb/OP_LOGO.png?1696527783",
+    "symbol": "OPIP",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x4c97c901b5147f8c1c7ce3c5cf3eb83b44f244fe": {
+    "assetId": "eip155:56/bep20:0x4c97c901b5147f8c1c7ce3c5cf3eb83b44f244fe",
+    "chainId": "eip155:56",
+    "name": "Mound",
+    "precision": 18,
+    "color": "#040404",
+    "icon": "https://assets.coingecko.com/coins/images/17922/thumb/token-mnd.83a59964.png?1696517442",
+    "symbol": "MND",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x4ccf2e74b29cd6ab63f0125e0e78832e3571261c": {
+    "assetId": "eip155:56/bep20:0x4ccf2e74b29cd6ab63f0125e0e78832e3571261c",
+    "chainId": "eip155:56",
+    "name": "Blithe",
+    "precision": 18,
+    "color": "#ECE1FC",
+    "icon": "https://assets.coingecko.com/coins/images/28318/thumb/20221109-200354.png?1696527324",
+    "symbol": "BLT",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x4cda4daad72340b28925ccd6fa78db631267d3c4": {
+    "assetId": "eip155:56/bep20:0x4cda4daad72340b28925ccd6fa78db631267d3c4",
+    "chainId": "eip155:56",
+    "name": "Baby Doge Cash",
+    "precision": 9,
+    "color": "#EA9F38",
+    "icon": "https://assets.coingecko.com/coins/images/16846/thumb/babydogecash-cmc-logo.png?1696516414",
+    "symbol": "BABYDOGECASH",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x4ce5f6bf8e996ae54709c75865709aca5127dd54": {
+    "assetId": "eip155:56/bep20:0x4ce5f6bf8e996ae54709c75865709aca5127dd54",
+    "chainId": "eip155:56",
+    "name": "Amateras",
+    "precision": 18,
+    "color": "#F6C2C2",
+    "icon": "https://assets.coingecko.com/coins/images/21759/thumb/logo.png?1696521114",
+    "symbol": "AMT",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x4d1e90ab966ae26c778b2f9f365aa40abb13f53c": {
+    "assetId": "eip155:56/bep20:0x4d1e90ab966ae26c778b2f9f365aa40abb13f53c",
+    "chainId": "eip155:56",
+    "name": "STA",
+    "precision": 8,
+    "color": "#E4C05D",
+    "icon": "https://assets.coingecko.com/coins/images/26189/thumb/200x200.png?1696525276",
+    "symbol": "STA",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x4d2d32d8652058bf98c772953e1df5c5c85d9f45": {
+    "assetId": "eip155:56/bep20:0x4d2d32d8652058bf98c772953e1df5c5c85d9f45",
+    "chainId": "eip155:56",
+    "name": "DAO Maker on BNB Smart Chain",
+    "precision": 18,
+    "color": "#44A8FC",
+    "icon": "https://assets.coingecko.com/coins/images/13915/thumb/4.png?1696513656",
+    "symbol": "DAO",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x4d3dc895a9edb234dfa3e303a196c009dc918f84": {
+    "assetId": "eip155:56/bep20:0x4d3dc895a9edb234dfa3e303a196c009dc918f84",
+    "chainId": "eip155:56",
+    "name": "Zeebu on BNB Smart Chain",
+    "precision": 18,
+    "color": "#2A6BE0",
+    "icon": "https://assets.coingecko.com/coins/images/31145/thumb/200x200_Front_token.png?1696529974",
+    "symbol": "ZBU",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x4d496efc21754481fe7a9f3f0f758785ade8e1d3": {
+    "assetId": "eip155:56/bep20:0x4d496efc21754481fe7a9f3f0f758785ade8e1d3",
+    "chainId": "eip155:56",
+    "name": "Santa Inu",
+    "precision": 18,
+    "color": "#BF171D",
+    "icon": "https://assets.coingecko.com/coins/images/20647/thumb/wzP7T0v1_400x400.jpg?1696520050",
+    "symbol": "SANINU",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x4d4af26f52c7e96a5f42d7a70caa43f2dab5acb4": {
+    "assetId": "eip155:56/bep20:0x4d4af26f52c7e96a5f42d7a70caa43f2dab5acb4",
+    "chainId": "eip155:56",
+    "name": "Metal Friends",
+    "precision": 18,
+    "color": "#161616",
+    "icon": "https://assets.coingecko.com/coins/images/28441/thumb/VI9Adz37_400x400.jpeg?1696527437",
+    "symbol": "MTLS",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x4d4d883f920f7c0c36a1be71a02aa0cde2aa22d1": {
+    "assetId": "eip155:56/bep20:0x4d4d883f920f7c0c36a1be71a02aa0cde2aa22d1",
+    "chainId": "eip155:56",
+    "name": "Opticash on BNB Smart Chain",
+    "precision": 18,
+    "color": "#B0CC2D",
+    "icon": "https://assets.coingecko.com/coins/images/29362/thumb/opticash_logo_256*256.jpg?1696528310",
+    "symbol": "OPCH",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x4d61577d8fd2208a0afb814ea089fdeae19ed202": {
+    "assetId": "eip155:56/bep20:0x4d61577d8fd2208a0afb814ea089fdeae19ed202",
+    "chainId": "eip155:56",
+    "name": "VFOX",
+    "precision": 18,
+    "color": "#2C0404",
+    "icon": "https://assets.coingecko.com/coins/images/15363/thumb/vfox2.png?1696515012",
+    "symbol": "VFOX",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x4d6b129db8a502b85fedc3443fa4f58b50327238": {
+    "assetId": "eip155:56/bep20:0x4d6b129db8a502b85fedc3443fa4f58b50327238",
+    "chainId": "eip155:56",
+    "name": "Envoy on BNB Smart Chain",
+    "precision": 18,
+    "color": "#E4B8F0",
+    "icon": "https://assets.coingecko.com/coins/images/19631/thumb/env.png?1696519059",
+    "symbol": "ENV",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x4d7fa587ec8e50bd0e9cd837cb4da796f47218a1": {
+    "assetId": "eip155:56/bep20:0x4d7fa587ec8e50bd0e9cd837cb4da796f47218a1",
+    "chainId": "eip155:56",
+    "name": "SAFE AnWang ",
+    "precision": 18,
+    "color": "#1B4C84",
+    "icon": "https://assets.coingecko.com/coins/images/26604/thumb/logo.png?1696525678",
+    "symbol": "SAFE",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x4d993ec7b44276615bb2f6f20361ab34fbf0ec49": {
+    "assetId": "eip155:56/bep20:0x4d993ec7b44276615bb2f6f20361ab34fbf0ec49",
+    "chainId": "eip155:56",
+    "name": "BrandPad Finance",
+    "precision": 9,
+    "color": "#39184E",
+    "icon": "https://assets.coingecko.com/coins/images/19532/thumb/brandpad.PNG?1696518966",
+    "symbol": "BRAND",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x4d9f39f7cb7c7444335077223ceef33dbb58096f": {
+    "assetId": "eip155:56/bep20:0x4d9f39f7cb7c7444335077223ceef33dbb58096f",
+    "chainId": "eip155:56",
+    "name": "Cradle of Sins",
+    "precision": 18,
+    "color": "#512B78",
+    "icon": "https://assets.coingecko.com/coins/images/30007/thumb/200x200_Cos.png?1696528931",
+    "symbol": "COS",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x4da8265be61b9da59c8e207bfcbc075f1d611f36": {
+    "assetId": "eip155:56/bep20:0x4da8265be61b9da59c8e207bfcbc075f1d611f36",
+    "chainId": "eip155:56",
+    "name": "Rin Finance Coin",
+    "precision": 9,
+    "color": "#CA9F4A",
+    "icon": "https://assets.coingecko.com/coins/images/25332/thumb/rifico_logo_png_1.png?1696524467",
+    "symbol": "RIFICO",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x4da996c5fe84755c80e108cf96fe705174c5e36a": {
+    "assetId": "eip155:56/bep20:0x4da996c5fe84755c80e108cf96fe705174c5e36a",
+    "chainId": "eip155:56",
+    "name": "WOWswap on BNB Smart Chain",
+    "precision": 18,
+    "color": "#F0B82C",
+    "icon": "https://assets.coingecko.com/coins/images/14101/thumb/Group-423.png?1696513823",
+    "symbol": "WOW",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x4db2495afad4c0e481ffc40fdaf66e13a786b619": {
+    "assetId": "eip155:56/bep20:0x4db2495afad4c0e481ffc40fdaf66e13a786b619",
+    "chainId": "eip155:56",
+    "name": "Arix on BNB Smart Chain",
+    "precision": 18,
+    "color": "#A12C8E",
+    "icon": "https://assets.coingecko.com/coins/images/13485/thumb/ARIX.png?1696513245",
+    "symbol": "ARIX",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x4dcaaa68170053afbbde15774931adba09272a55": {
+    "assetId": "eip155:56/bep20:0x4dcaaa68170053afbbde15774931adba09272a55",
+    "chainId": "eip155:56",
+    "name": "Dpad Finance",
+    "precision": 8,
+    "color": "#0A10A6",
+    "icon": "https://assets.coingecko.com/coins/images/24312/thumb/0vrp38DQ_400x400.jpg?1696523493",
+    "symbol": "DPAD",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x4dd1984a706e1c2c227bea67ad2f92dbde30afce": {
+    "assetId": "eip155:56/bep20:0x4dd1984a706e1c2c227bea67ad2f92dbde30afce",
+    "chainId": "eip155:56",
+    "name": "BasketCoin",
+    "precision": 18,
+    "color": "#E0EFF6",
+    "icon": "https://assets.coingecko.com/coins/images/14766/thumb/logo.jpg?1696514436",
+    "symbol": "BSKT",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x4dfad9a4cba318efc53743b803588b113f8a84bd": {
+    "assetId": "eip155:56/bep20:0x4dfad9a4cba318efc53743b803588b113f8a84bd",
+    "chainId": "eip155:56",
+    "name": "Chihuahua",
+    "precision": 9,
+    "color": "#452738",
+    "icon": "https://assets.coingecko.com/coins/images/15651/thumb/chihua.PNG?1696515283",
+    "symbol": "HUA",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x4e0fe270b856eebb91fb4b4364312be59f499a3f": {
+    "assetId": "eip155:56/bep20:0x4e0fe270b856eebb91fb4b4364312be59f499a3f",
+    "chainId": "eip155:56",
+    "name": "Dafi Protocol on BNB Smart Chain",
+    "precision": 18,
+    "color": "#34343C",
+    "icon": "https://assets.coingecko.com/coins/images/14428/thumb/Dafi_Black_Icon.png?1696514118",
+    "symbol": "DAFI",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x4e1a724b0588fa971263c8ac5f78ca215c7d09dd": {
+    "assetId": "eip155:56/bep20:0x4e1a724b0588fa971263c8ac5f78ca215c7d09dd",
+    "chainId": "eip155:56",
+    "name": "Moonft",
+    "precision": 18,
+    "color": "#DCE0F3",
+    "icon": "https://assets.coingecko.com/coins/images/32383/thumb/MTC-cg.png?1698042095",
+    "symbol": "MTC",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x4e1b16ef22935a575a6811d4616f98c4077e4408": {
+    "assetId": "eip155:56/bep20:0x4e1b16ef22935a575a6811d4616f98c4077e4408",
+    "chainId": "eip155:56",
+    "name": "KelVPN on BNB Smart Chain",
+    "precision": 18,
+    "color": "#E43B56",
+    "icon": "https://assets.coingecko.com/coins/images/14851/thumb/logokelvpn200x200.png?1696514517",
+    "symbol": "KEL",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x4e22ab2bbcb3e7f74249c87f62bb35ef92c3d964": {
+    "assetId": "eip155:56/bep20:0x4e22ab2bbcb3e7f74249c87f62bb35ef92c3d964",
+    "chainId": "eip155:56",
+    "name": "Black Phoenix",
+    "precision": 18,
+    "color": "#E4E4E4",
+    "icon": "https://assets.coingecko.com/coins/images/16948/thumb/photo_2021-05-11_01-35-19.jpg?1696516516",
+    "symbol": "BPX",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x4e2434294a722329b6b64e0c2fca51b2533d7015": {
+    "assetId": "eip155:56/bep20:0x4e2434294a722329b6b64e0c2fca51b2533d7015",
+    "chainId": "eip155:56",
+    "name": "PEPE FLOKI",
+    "precision": 18,
+    "color": "#99D328",
+    "icon": "https://assets.coingecko.com/coins/images/30195/thumb/logo200.jpg?1696529110",
+    "symbol": "PEPEF",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x4e53522932608e61b6bd8d50cf15a5501054db4e": {
+    "assetId": "eip155:56/bep20:0x4e53522932608e61b6bd8d50cf15a5501054db4e",
+    "chainId": "eip155:56",
+    "name": "Aboat Token",
+    "precision": 18,
+    "color": "#6193D6",
+    "icon": "https://assets.coingecko.com/coins/images/30132/thumb/aboat.jpg?1696529053",
+    "symbol": "ABOAT",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x4e5ab517719a2bdbafefc22c712d7b5bc5f5544e": {
+    "assetId": "eip155:56/bep20:0x4e5ab517719a2bdbafefc22c712d7b5bc5f5544e",
+    "chainId": "eip155:56",
+    "name": "Brick",
+    "precision": 18,
+    "color": "#24E9FC",
+    "icon": "https://assets.coingecko.com/coins/images/16741/thumb/TILE1.png?1696516314",
+    "symbol": "BRICK",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x4e5ef3493bcfb5e7548913c3f2a40623be7d7f98": {
+    "assetId": "eip155:56/bep20:0x4e5ef3493bcfb5e7548913c3f2a40623be7d7f98",
+    "chainId": "eip155:56",
+    "name": "Cash Driver",
+    "precision": 9,
+    "color": "#4B9F77",
+    "icon": "https://assets.coingecko.com/coins/images/28293/thumb/20221123_013230.jpg?1696527292",
+    "symbol": "CD",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x4e6415a5727ea08aae4580057187923aec331227": {
+    "assetId": "eip155:56/bep20:0x4e6415a5727ea08aae4580057187923aec331227",
+    "chainId": "eip155:56",
+    "name": "Refinable",
+    "precision": 18,
+    "color": "#8C8C94",
+    "icon": "https://assets.coingecko.com/coins/images/14925/thumb/profilepic_square.png?1696514586",
+    "symbol": "FINE",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x4e7f408be2d4e9d60f49a64b89bb619c84c7c6f5": {
+    "assetId": "eip155:56/bep20:0x4e7f408be2d4e9d60f49a64b89bb619c84c7c6f5",
+    "chainId": "eip155:56",
+    "name": "Perpetual Protocol on BNB Smart Chain",
+    "precision": 18,
+    "color": "#3BEAAA",
+    "icon": "https://assets.coingecko.com/coins/images/12381/thumb/60d18e06844a844ad75901a9_mark_only_03.png?1696512205",
+    "symbol": "PERP",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x4eae52907dba9c370e9ee99f0ce810602a4f2c63": {
+    "assetId": "eip155:56/bep20:0x4eae52907dba9c370e9ee99f0ce810602a4f2c63",
+    "chainId": "eip155:56",
+    "name": "KaBoSu",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/32622/thumb/BSC0231022120311.png?1698760321",
+    "symbol": "KABOSU",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x4eba92c8bbc2ee5c3a907474acdbe36286815626": {
+    "assetId": "eip155:56/bep20:0x4eba92c8bbc2ee5c3a907474acdbe36286815626",
+    "chainId": "eip155:56",
+    "name": "Adadex",
+    "precision": 18,
+    "color": "#428DAC",
+    "icon": "https://assets.coingecko.com/coins/images/32197/thumb/ADADEX.jpg?1696745714",
+    "symbol": "ADEX",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x4ee438be38f8682abb089f2bfea48851c5e71eaf": {
+    "assetId": "eip155:56/bep20:0x4ee438be38f8682abb089f2bfea48851c5e71eaf",
+    "chainId": "eip155:56",
+    "name": "Cryptonovae on BNB Smart Chain",
+    "precision": 18,
+    "color": "#FC2C64",
+    "icon": "https://assets.coingecko.com/coins/images/14693/thumb/yae.png?1696514365",
+    "symbol": "YAE",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x4ef285c8cbe52267c022c39da98b97ca4b7e2ff9": {
+    "assetId": "eip155:56/bep20:0x4ef285c8cbe52267c022c39da98b97ca4b7e2ff9",
+    "chainId": "eip155:56",
+    "name": "ORE Network on BNB Smart Chain",
+    "precision": 18,
+    "color": "#04D8CF",
+    "icon": "https://assets.coingecko.com/coins/images/18917/thumb/ORE_FullColor.png?1696518374",
+    "symbol": "ORE",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x4efab39b14167da54aebed2094a61aa1fd384056": {
+    "assetId": "eip155:56/bep20:0x4efab39b14167da54aebed2094a61aa1fd384056",
+    "chainId": "eip155:56",
+    "name": "Leopard",
+    "precision": 9,
+    "color": "#F9DCB3",
+    "icon": "https://assets.coingecko.com/coins/images/16270/thumb/IMG_20210430_200245_458.jpg?1696515868",
+    "symbol": "LEOPARD",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x4f0ed527e8a95ecaa132af214dfd41f30b361600": {
+    "assetId": "eip155:56/bep20:0x4f0ed527e8a95ecaa132af214dfd41f30b361600",
+    "chainId": "eip155:56",
+    "name": "vBSWAP",
+    "precision": 18,
+    "color": "#5676E4",
+    "icon": "https://assets.coingecko.com/coins/images/14133/thumb/vbswap_22.png?1696513854",
+    "symbol": "VBSWAP",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x4f1960e29b2ca581a38c5c474e123f420f8092db": {
+    "assetId": "eip155:56/bep20:0x4f1960e29b2ca581a38c5c474e123f420f8092db",
+    "chainId": "eip155:56",
+    "name": "UBXS",
+    "precision": 6,
+    "color": "#D1F0F5",
+    "icon": "https://assets.coingecko.com/coins/images/22558/thumb/logo_200x200.png?1696521877",
+    "symbol": "UBXS",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x4f1a6fc6a7b65dc7ebc4eb692dc3641be997c2f2": {
+    "assetId": "eip155:56/bep20:0x4f1a6fc6a7b65dc7ebc4eb692dc3641be997c2f2",
+    "chainId": "eip155:56",
+    "name": "Santa Coin",
+    "precision": 9,
+    "color": "#E9B142",
+    "icon": "https://assets.coingecko.com/coins/images/19654/thumb/eXsu0oNf_400x400.jpg?1696519082",
+    "symbol": "SANTA",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x4f3266a56589357b4f8082918b14b923693e57f0": {
+    "assetId": "eip155:56/bep20:0x4f3266a56589357b4f8082918b14b923693e57f0",
+    "chainId": "eip155:56",
+    "name": "Liquid Collectibles",
+    "precision": 18,
+    "color": "#FAE4E8",
+    "icon": "https://assets.coingecko.com/coins/images/19772/thumb/AjjErjeF_400x400.png?1696519194",
+    "symbol": "LICO",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x4f5f7a7dca8ba0a7983381d23dfc5eaf4be9c79a": {
+    "assetId": "eip155:56/bep20:0x4f5f7a7dca8ba0a7983381d23dfc5eaf4be9c79a",
+    "chainId": "eip155:56",
+    "name": "Seek Tiger",
+    "precision": 10,
+    "color": "#F4B404",
+    "icon": "https://assets.coingecko.com/coins/images/24628/thumb/50d6850967efa02b20fb24c6c7ba518.png?1696523799",
+    "symbol": "STI",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x4f745c0c7da552a348c384da1a5baeb28f2c607c": {
+    "assetId": "eip155:56/bep20:0x4f745c0c7da552a348c384da1a5baeb28f2c607c",
+    "chainId": "eip155:56",
+    "name": "Xpansion Game",
+    "precision": 18,
+    "color": "#219AFC",
+    "icon": "https://assets.coingecko.com/coins/images/21539/thumb/15997.png?1696520898",
+    "symbol": "XPS",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x4f8b986ecffe7bed5dbeb2b49310fb00ca85a539": {
+    "assetId": "eip155:56/bep20:0x4f8b986ecffe7bed5dbeb2b49310fb00ca85a539",
+    "chainId": "eip155:56",
+    "name": " REKT on BNB Smart Chain",
+    "precision": 18,
+    "color": "#E6DEE1",
+    "icon": "https://assets.coingecko.com/coins/images/32252/thumb/rekt.png?1696998751",
+    "symbol": "REKT",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x4fa7163e153419e0e1064e418dd7a99314ed27b6": {
+    "assetId": "eip155:56/bep20:0x4fa7163e153419e0e1064e418dd7a99314ed27b6",
+    "chainId": "eip155:56",
+    "name": "Hot Cross on BNB Smart Chain",
+    "precision": 18,
+    "color": "#A8CCCC",
+    "icon": "https://assets.coingecko.com/coins/images/15706/thumb/Hotcross.png?1696515334",
+    "symbol": "HOTCROSS",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x4fde90e783abaa07996eff44f10edb132de15dd4": {
+    "assetId": "eip155:56/bep20:0x4fde90e783abaa07996eff44f10edb132de15dd4",
+    "chainId": "eip155:56",
+    "name": "ShibAI Labs",
+    "precision": 18,
+    "color": "#502559",
+    "icon": "https://assets.coingecko.com/coins/images/28947/thumb/ShibAI-Labs-Logo-PNG.png?1696527921",
+    "symbol": "SLAB",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x4ffa143ce16a24215e8df96c0cef5677a7b91ee4": {
+    "assetId": "eip155:56/bep20:0x4ffa143ce16a24215e8df96c0cef5677a7b91ee4",
+    "chainId": "eip155:56",
+    "name": "Regent Coin",
+    "precision": 18,
+    "color": "#694C1F",
+    "icon": "https://assets.coingecko.com/coins/images/31303/thumb/Regent_logo.png?1696530123",
+    "symbol": "REGENT",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x5012c90f14d190607662ca8344120812aaa2639d": {
+    "assetId": "eip155:56/bep20:0x5012c90f14d190607662ca8344120812aaa2639d",
+    "chainId": "eip155:56",
+    "name": "Penpie on BNB Smart Chain",
+    "precision": 18,
+    "color": "#2F8294",
+    "icon": "https://assets.coingecko.com/coins/images/30760/thumb/PNP_Token.png?1696529629",
+    "symbol": "PNP",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x502b8136c48977b975a6c62b08ac4e15dabc8172": {
+    "assetId": "eip155:56/bep20:0x502b8136c48977b975a6c62b08ac4e15dabc8172",
+    "chainId": "eip155:56",
+    "name": "Child Support",
+    "precision": 9,
+    "color": "#070910",
+    "icon": "https://assets.coingecko.com/coins/images/30414/thumb/child_support.jpg?1696529303",
+    "symbol": "CS",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x509a51394cc4d6bb474fefb2994b8975a55a6e79": {
+    "assetId": "eip155:56/bep20:0x509a51394cc4d6bb474fefb2994b8975a55a6e79",
+    "chainId": "eip155:56",
+    "name": "Fufu",
+    "precision": 18,
+    "color": "#CD5FAD",
+    "icon": "https://assets.coingecko.com/coins/images/18812/thumb/fufu_icon_RGB.png?1696518274",
+    "symbol": "FUFU",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x50a9eb8a53f2c2993f46b354bd5f24f1c880bf24": {
+    "assetId": "eip155:56/bep20:0x50a9eb8a53f2c2993f46b354bd5f24f1c880bf24",
+    "chainId": "eip155:56",
+    "name": "TeleTreon",
+    "precision": 9,
+    "color": "#41201C",
+    "icon": "https://assets.coingecko.com/coins/images/29809/thumb/Teletron_SYM_N_200x200.png?1696528738",
+    "symbol": "TTN",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x50ba8bf9e34f0f83f96a340387d1d3888ba4b3b5": {
+    "assetId": "eip155:56/bep20:0x50ba8bf9e34f0f83f96a340387d1d3888ba4b3b5",
+    "chainId": "eip155:56",
+    "name": "RugZombie",
+    "precision": 18,
+    "color": "#272C16",
+    "icon": "https://assets.coingecko.com/coins/images/18670/thumb/MKHznEfH_400x400.jpg?1696518140",
+    "symbol": "ZMBE",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x50c34995a273075a80c23625f69f40d56ce414de": {
+    "assetId": "eip155:56/bep20:0x50c34995a273075a80c23625f69f40d56ce414de",
+    "chainId": "eip155:56",
+    "name": "SELFCrypto",
+    "precision": 18,
+    "color": "#8C14DC",
+    "icon": "https://assets.coingecko.com/coins/images/30805/thumb/Isotype_1_200x200.png?1696529663",
+    "symbol": "SELF",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x50d809c74e0b8e49e7b4c65bb3109abe3ff4c1c1": {
+    "assetId": "eip155:56/bep20:0x50d809c74e0b8e49e7b4c65bb3109abe3ff4c1c1",
+    "chainId": "eip155:56",
+    "name": "Cub Finance",
+    "precision": 18,
+    "color": "#131415",
+    "icon": "https://assets.coingecko.com/coins/images/14743/thumb/cub.png?1696514413",
+    "symbol": "CUB",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x50de6856358cc35f3a9a57eaaa34bd4cb707d2cd": {
+    "assetId": "eip155:56/bep20:0x50de6856358cc35f3a9a57eaaa34bd4cb707d2cd",
+    "chainId": "eip155:56",
+    "name": "Razor Network on BNB Smart Chain",
+    "precision": 18,
+    "color": "#E2EDF4",
+    "icon": "https://assets.coingecko.com/coins/images/13797/thumb/icon.png?1696513545",
+    "symbol": "RAZOR",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x50e756a22ff5cee3559d18b9d9576bc38f09fa7c": {
+    "assetId": "eip155:56/bep20:0x50e756a22ff5cee3559d18b9d9576bc38f09fa7c",
+    "chainId": "eip155:56",
+    "name": "MetaWars",
+    "precision": 18,
+    "color": "#D4BCB8",
+    "icon": "https://assets.coingecko.com/coins/images/19534/thumb/13105.png?1696518967",
+    "symbol": "WARS",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x50ea9c9f88aeab9f554b8ffb4d7a1017957e866a": {
+    "assetId": "eip155:56/bep20:0x50ea9c9f88aeab9f554b8ffb4d7a1017957e866a",
+    "chainId": "eip155:56",
+    "name": "Fox Trading on BNB Smart Chain",
+    "precision": 18,
+    "color": "#FCB44E",
+    "icon": "https://assets.coingecko.com/coins/images/5182/thumb/foxtrading-logo.png?1547040619",
+    "symbol": "FOXT",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x510975eda48a97e0ca228dd04d1217292487bea6": {
+    "assetId": "eip155:56/bep20:0x510975eda48a97e0ca228dd04d1217292487bea6",
+    "chainId": "eip155:56",
+    "name": "PROJECT XENO on BNB Smart Chain",
+    "precision": 18,
+    "color": "#C4C4C4",
+    "icon": "https://assets.coingecko.com/coins/images/29000/thumb/gxe.png?1696527972",
+    "symbol": "GXE",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x510ca7d22a84599e7d0f15f09e674056a6255389": {
+    "assetId": "eip155:56/bep20:0x510ca7d22a84599e7d0f15f09e674056a6255389",
+    "chainId": "eip155:56",
+    "name": "LABSV2",
+    "precision": 18,
+    "color": "#EDF4F6",
+    "icon": "https://assets.coingecko.com/coins/images/14401/thumb/CMC_logo.jpg?1696514094",
+    "symbol": "LABSV2",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x5138868ed1814be113227b8c6025cdc46d9d1d16": {
+    "assetId": "eip155:56/bep20:0x5138868ed1814be113227b8c6025cdc46d9d1d16",
+    "chainId": "eip155:56",
+    "name": "Forge Finance",
+    "precision": 18,
+    "color": "#E84938",
+    "icon": "https://assets.coingecko.com/coins/images/24533/thumb/io0E0FB2_400x400.jpg?1696523711",
+    "symbol": "FORGE",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x515e62a3ac560fd5df08536d08336e63aed3b182": {
+    "assetId": "eip155:56/bep20:0x515e62a3ac560fd5df08536d08336e63aed3b182",
+    "chainId": "eip155:56",
+    "name": "SMP Finance",
+    "precision": 18,
+    "color": "#5DAE43",
+    "icon": "https://assets.coingecko.com/coins/images/30891/thumb/20230913_091919.jpg?1696529737",
+    "symbol": "SMPF",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x517396bd11d750e4417b82f2b0fcfa62a4f2bb96": {
+    "assetId": "eip155:56/bep20:0x517396bd11d750e4417b82f2b0fcfa62a4f2bb96",
+    "chainId": "eip155:56",
+    "name": "ITEMVERSE",
+    "precision": 18,
+    "color": "#F2FBF6",
+    "icon": "https://assets.coingecko.com/coins/images/26716/thumb/%ED%86%A0%ED%81%B0%ED%8B%B0%EC%BB%A4%28%EC%8B%AC%EB%B2%8C%29.jpg?1696525786",
+    "symbol": "ITEM",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x518445f0db93863e5e93a7f70617c05afa8048f1": {
+    "assetId": "eip155:56/bep20:0x518445f0db93863e5e93a7f70617c05afa8048f1",
+    "chainId": "eip155:56",
+    "name": "BITT on BNB Smart Chain",
+    "precision": 18,
+    "color": "#F48C24",
+    "icon": "https://assets.coingecko.com/coins/images/13783/thumb/BITT_Logo_256pixels.png?1696513523",
+    "symbol": "BITT",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x518afa06aeca8dd0946b89a565e51f5a91d81176": {
+    "assetId": "eip155:56/bep20:0x518afa06aeca8dd0946b89a565e51f5a91d81176",
+    "chainId": "eip155:56",
+    "name": "CRB Coin on BNB Smart Chain",
+    "precision": 8,
+    "color": "#047EE1",
+    "icon": "https://assets.coingecko.com/coins/images/19399/thumb/crb.png?1696518838",
+    "symbol": "CRB",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x51ba0b044d96c3abfca52b64d733603ccc4f0d4d": {
+    "assetId": "eip155:56/bep20:0x51ba0b044d96c3abfca52b64d733603ccc4f0d4d",
+    "chainId": "eip155:56",
+    "name": "SuperVerse on BNB Smart Chain",
+    "precision": 18,
+    "color": "#04ECFC",
+    "icon": "https://assets.coingecko.com/coins/images/14040/thumb/SuperVerse_Logo_200x200.png?1696513766",
+    "symbol": "SUPER",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x51e6ac1533032e72e92094867fd5921e3ea1bfa0": {
+    "assetId": "eip155:56/bep20:0x51e6ac1533032e72e92094867fd5921e3ea1bfa0",
+    "chainId": "eip155:56",
+    "name": "LUCA",
+    "precision": 18,
+    "color": "#C0C2C9",
+    "icon": "https://assets.coingecko.com/coins/images/21278/thumb/luca.PNG?1696520648",
+    "symbol": "LUCA",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x51e72dd1f2628295cc2ef931cb64fdbdc3a0c599": {
+    "assetId": "eip155:56/bep20:0x51e72dd1f2628295cc2ef931cb64fdbdc3a0c599",
+    "chainId": "eip155:56",
+    "name": "Wrapped Kaspa on BNB Smart Chain",
+    "precision": 8,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/31037/thumb/WKAS-256-black-ETH-3.png?1696529872",
+    "symbol": "KAS",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x51e7b598c9155b9dccb04eb42519f6eec9c841e9": {
+    "assetId": "eip155:56/bep20:0x51e7b598c9155b9dccb04eb42519f6eec9c841e9",
+    "chainId": "eip155:56",
+    "name": "Bitlocus on BNB Smart Chain",
+    "precision": 6,
+    "color": "#5EBD8F",
+    "icon": "https://assets.coingecko.com/coins/images/20913/thumb/btl.png?1696520304",
+    "symbol": "BTL",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x520ebccc63e4d0804b35cda25978beb7159bf0cc": {
+    "assetId": "eip155:56/bep20:0x520ebccc63e4d0804b35cda25978beb7159bf0cc",
+    "chainId": "eip155:56",
+    "name": "Lego Coin V2",
+    "precision": 9,
+    "color": "#783AB5",
+    "icon": "https://assets.coingecko.com/coins/images/27545/thumb/jP0kpqR6_400x400.jpeg?1696526582",
+    "symbol": "LEGO",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x522348779dcb2911539e76a1042aa922f9c47ee3": {
+    "assetId": "eip155:56/bep20:0x522348779dcb2911539e76a1042aa922f9c47ee3",
+    "chainId": "eip155:56",
+    "name": "Bomb Money",
+    "precision": 18,
+    "color": "#6A6435",
+    "icon": "https://assets.coingecko.com/coins/images/21406/thumb/CD9qxg9l_400x400.jpg?1696520769",
+    "symbol": "BOMB",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x52242cbab41e290e9e17ccc50cc437bb60020a9d": {
+    "assetId": "eip155:56/bep20:0x52242cbab41e290e9e17ccc50cc437bb60020a9d",
+    "chainId": "eip155:56",
+    "name": "Wrapped NCG on BNB Smart Chain",
+    "precision": 18,
+    "color": "#06B4B4",
+    "icon": "https://assets.coingecko.com/coins/images/17747/thumb/WNCG_Color.png?1696517274",
+    "symbol": "WNCG",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x5224f552f110ec78e6e0468138950ae5f3040942": {
+    "assetId": "eip155:56/bep20:0x5224f552f110ec78e6e0468138950ae5f3040942",
+    "chainId": "eip155:56",
+    "name": "Anomus Coin on BNB Smart Chain",
+    "precision": 18,
+    "color": "#420FDA",
+    "icon": "https://assets.coingecko.com/coins/images/20865/thumb/w07_TWqn_400x400.png?1696520259",
+    "symbol": "ANOM",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x522d0f9f3eff479a5b256bb1c1108f47b8e1a153": {
+    "assetId": "eip155:56/bep20:0x522d0f9f3eff479a5b256bb1c1108f47b8e1a153",
+    "chainId": "eip155:56",
+    "name": "IguVerse IGUP",
+    "precision": 18,
+    "color": "#0479EC",
+    "icon": "https://assets.coingecko.com/coins/images/28434/thumb/IGUP_500x500.png?1696527431",
+    "symbol": "IGUP",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x523821d20a283d955f6205b4c9252779cd0f964b": {
+    "assetId": "eip155:56/bep20:0x523821d20a283d955f6205b4c9252779cd0f964b",
+    "chainId": "eip155:56",
+    "name": "Okcash on BNB Smart Chain",
+    "precision": 18,
+    "color": "#0C1C34",
+    "icon": "https://assets.coingecko.com/coins/images/274/thumb/ok-logo-200px.png?1696501624",
+    "symbol": "OK",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x52419258e3fa44deac7e670eadd4c892b480a805": {
+    "assetId": "eip155:56/bep20:0x52419258e3fa44deac7e670eadd4c892b480a805",
+    "chainId": "eip155:56",
+    "name": "StarShip",
+    "precision": 9,
+    "color": "#0496D2",
+    "icon": "https://assets.coingecko.com/coins/images/15580/thumb/starship.png?1696515219",
+    "symbol": "STARSHIP",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x524df384bffb18c0c8f3f43d012011f8f9795579": {
+    "assetId": "eip155:56/bep20:0x524df384bffb18c0c8f3f43d012011f8f9795579",
+    "chainId": "eip155:56",
+    "name": "YAY Network on BNB Smart Chain",
+    "precision": 18,
+    "color": "#F0ABE9",
+    "icon": "https://assets.coingecko.com/coins/images/18251/thumb/Av_%281%29.png?1696517746",
+    "symbol": "YAY",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x52721d159cd90dd76014f73c1440e4ff983420ac": {
+    "assetId": "eip155:56/bep20:0x52721d159cd90dd76014f73c1440e4ff983420ac",
+    "chainId": "eip155:56",
+    "name": "Troll Face",
+    "precision": 9,
+    "color": "#1FEA0F",
+    "icon": "https://assets.coingecko.com/coins/images/30246/thumb/photo_2023-05-04_16-06-17.jpg?1696529155",
+    "symbol": "TROLL",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x5275e602238c85b204413116c1057aff5c60b282": {
+    "assetId": "eip155:56/bep20:0x5275e602238c85b204413116c1057aff5c60b282",
+    "chainId": "eip155:56",
+    "name": "VINCI",
+    "precision": 18,
+    "color": "#93A5EC",
+    "icon": "https://assets.coingecko.com/coins/images/30643/thumb/IMG_6935.png?1696529514",
+    "symbol": "VINCI",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x529a1468a91fa4ee0d65ee2b4b66fe4f6a55154f": {
+    "assetId": "eip155:56/bep20:0x529a1468a91fa4ee0d65ee2b4b66fe4f6a55154f",
+    "chainId": "eip155:56",
+    "name": "XertiNet",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/33154/thumb/icon_650.png?1700826039",
+    "symbol": "XERT",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x529c79f6918665ebe250f32eeeaa1d410a0798c6": {
+    "assetId": "eip155:56/bep20:0x529c79f6918665ebe250f32eeeaa1d410a0798c6",
+    "chainId": "eip155:56",
+    "name": "HyperGPT",
+    "precision": 18,
+    "color": "#393C6F",
+    "icon": "https://assets.coingecko.com/coins/images/30428/thumb/favicon.png?1696529317",
+    "symbol": "HGPT",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x52b7c9d984ea17e9ee31159ca3fff3790981b64a": {
+    "assetId": "eip155:56/bep20:0x52b7c9d984ea17e9ee31159ca3fff3790981b64a",
+    "chainId": "eip155:56",
+    "name": "Medamon",
+    "precision": 18,
+    "color": "#244D7E",
+    "icon": "https://assets.coingecko.com/coins/images/25081/thumb/B1-F2-FD78-8375-439-A-B7-B0-88492-B55-F6-FD.png?1696524232",
+    "symbol": "MON",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x52c1751c89fc913ed274d72e8d56dce4ee44a5cf": {
+    "assetId": "eip155:56/bep20:0x52c1751c89fc913ed274d72e8d56dce4ee44a5cf",
+    "chainId": "eip155:56",
+    "name": "Wizarre Scroll",
+    "precision": 18,
+    "color": "#C09F68",
+    "icon": "https://assets.coingecko.com/coins/images/21046/thumb/scroll_200.png?1696520431",
+    "symbol": "SCRL",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x52ce071bd9b1c4b00a0b92d298c512478cad67e8": {
+    "assetId": "eip155:56/bep20:0x52ce071bd9b1c4b00a0b92d298c512478cad67e8",
+    "chainId": "eip155:56",
+    "name": "Compound on BNB Smart Chain",
+    "precision": 18,
+    "color": "#040B0C",
+    "icon": "https://assets.coingecko.com/coins/images/10775/thumb/COMP.png?1696510737",
+    "symbol": "COMP",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x52d134c6db5889fad3542a09eaf7aa90c0fdf9e4": {
+    "assetId": "eip155:56/bep20:0x52d134c6db5889fad3542a09eaf7aa90c0fdf9e4",
+    "chainId": "eip155:56",
+    "name": "Backed IBTA   Treasury Bond 1 3yr on BNB Smart Chain",
+    "precision": 18,
+    "color": "#464C57",
+    "icon": "https://assets.coingecko.com/coins/images/31880/thumb/b-IBTA-200x200.png?1696530692",
+    "symbol": "BIBTA",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x52d88a9a2a20a840d7a336d21e427e9ad093deea": {
+    "assetId": "eip155:56/bep20:0x52d88a9a2a20a840d7a336d21e427e9ad093deea",
+    "chainId": "eip155:56",
+    "name": "Husky Avax on BNB Smart Chain",
+    "precision": 18,
+    "color": "#939393",
+    "icon": "https://assets.coingecko.com/coins/images/17812/thumb/husky.png?1696517332",
+    "symbol": "HUSKY",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x52da44b5e584f730005dac8d2d2acbdee44d4ba3": {
+    "assetId": "eip155:56/bep20:0x52da44b5e584f730005dac8d2d2acbdee44d4ba3",
+    "chainId": "eip155:56",
+    "name": "KingdomX",
+    "precision": 18,
+    "color": "#E0D361",
+    "icon": "https://assets.coingecko.com/coins/images/23411/thumb/kt.png?1696522624",
+    "symbol": "KT",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x52eb6c887a4691f10bee396778603927c23be1fc": {
+    "assetId": "eip155:56/bep20:0x52eb6c887a4691f10bee396778603927c23be1fc",
+    "chainId": "eip155:56",
+    "name": "Golden Ball",
+    "precision": 9,
+    "color": "#EABB34",
+    "icon": "https://assets.coingecko.com/coins/images/20274/thumb/glb.PNG?1696519680",
+    "symbol": "GLB",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x52f24a5e03aee338da5fd9df68d2b6fae1178827": {
+    "assetId": "eip155:56/bep20:0x52f24a5e03aee338da5fd9df68d2b6fae1178827",
+    "chainId": "eip155:56",
+    "name": "Ankr Staked BNB",
+    "precision": 18,
+    "color": "#FBEA1C",
+    "icon": "https://assets.coingecko.com/coins/images/28451/thumb/ankrBNB.png?1696527446",
+    "symbol": "ANKRBNB",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x52f8d048ba279556dd981036e7fa0345b5a90c7a": {
+    "assetId": "eip155:56/bep20:0x52f8d048ba279556dd981036e7fa0345b5a90c7a",
+    "chainId": "eip155:56",
+    "name": "HeroesTD CGC",
+    "precision": 18,
+    "color": "#F8E74D",
+    "icon": "https://assets.coingecko.com/coins/images/22840/thumb/17508.png?1696522141",
+    "symbol": "CGC",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x52f9ca8cac2827d379068b069580f9fd730cc9f3": {
+    "assetId": "eip155:56/bep20:0x52f9ca8cac2827d379068b069580f9fd730cc9f3",
+    "chainId": "eip155:56",
+    "name": "STAN Token",
+    "precision": 9,
+    "color": "#455997",
+    "icon": "https://assets.coingecko.com/coins/images/30277/thumb/STAN.png?1696529183",
+    "symbol": "STAN",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x52fe7b439753092f584917e3efea86a1cfd210f9": {
+    "assetId": "eip155:56/bep20:0x52fe7b439753092f584917e3efea86a1cfd210f9",
+    "chainId": "eip155:56",
+    "name": "Trazable on BNB Smart Chain",
+    "precision": 18,
+    "color": "#303D7C",
+    "icon": "https://assets.coingecko.com/coins/images/24851/thumb/Logo_TRZ-Token_200.png?1696524011",
+    "symbol": "TRZ",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x5304adfd82e5a24b70fe7ac1f45fe50b1ab4cb1d": {
+    "assetId": "eip155:56/bep20:0x5304adfd82e5a24b70fe7ac1f45fe50b1ab4cb1d",
+    "chainId": "eip155:56",
+    "name": "EsportsPro on BNB Smart Chain",
+    "precision": 18,
+    "color": "#B1B2B3",
+    "icon": "https://assets.coingecko.com/coins/images/14187/thumb/logo.jpg?1696513905",
+    "symbol": "ESPRO",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x5335e87930b410b8c5bb4d43c3360aca15ec0c8c": {
+    "assetId": "eip155:56/bep20:0x5335e87930b410b8c5bb4d43c3360aca15ec0c8c",
+    "chainId": "eip155:56",
+    "name": "Overnight fi USDT  on BNB Smart Chain",
+    "precision": 18,
+    "color": "#B3DED0",
+    "icon": "https://assets.coingecko.com/coins/images/30168/thumb/USDT_.png?1696529088",
+    "symbol": "USDT+",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x53607c4a966f79d3ab1750180e770b0bfd493f46": {
+    "assetId": "eip155:56/bep20:0x53607c4a966f79d3ab1750180e770b0bfd493f46",
+    "chainId": "eip155:56",
+    "name": "Sprint",
+    "precision": 18,
+    "color": "#04D4FC",
+    "icon": "https://assets.coingecko.com/coins/images/32190/thumb/SWP.png?1696744315",
+    "symbol": "SWP",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x5392ff4a9bd006dc272c1855af6640e17cc5ec0b": {
+    "assetId": "eip155:56/bep20:0x5392ff4a9bd006dc272c1855af6640e17cc5ec0b",
+    "chainId": "eip155:56",
+    "name": "SafeLaunch",
+    "precision": 18,
+    "color": "#1C1E1D",
+    "icon": "https://assets.coingecko.com/coins/images/16938/thumb/sfex.png?1696516507",
+    "symbol": "SFEX",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x5396734569e26101677eb39c89413f7fa7d8006f": {
+    "assetId": "eip155:56/bep20:0x5396734569e26101677eb39c89413f7fa7d8006f",
+    "chainId": "eip155:56",
+    "name": "Silver Stonks",
+    "precision": 7,
+    "color": "#5C5C5D",
+    "icon": "https://assets.coingecko.com/coins/images/17000/thumb/Logo-Silver-Stonks.png?1696516565",
+    "symbol": "SSTX",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x53b3338e3345758ae88b930e3d9759a95c5ce05c": {
+    "assetId": "eip155:56/bep20:0x53b3338e3345758ae88b930e3d9759a95c5ce05c",
+    "chainId": "eip155:56",
+    "name": "GenshinFlokiInu",
+    "precision": 4,
+    "color": "#D2D3D2",
+    "icon": "https://assets.coingecko.com/coins/images/20292/thumb/sUdVrvb2_400x400.jpg?1696519696",
+    "symbol": "GFLOKI",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x53e4b7aa6caccb9576548be3259e62de4ddd4417": {
+    "assetId": "eip155:56/bep20:0x53e4b7aa6caccb9576548be3259e62de4ddd4417",
+    "chainId": "eip155:56",
+    "name": "DAOLaunch",
+    "precision": 18,
+    "color": "#585858",
+    "icon": "https://assets.coingecko.com/coins/images/20208/thumb/dal.png?1696519618",
+    "symbol": "DAL",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x53e562b9b7e5e94b81f10e96ee70ad06df3d2657": {
+    "assetId": "eip155:56/bep20:0x53e562b9b7e5e94b81f10e96ee70ad06df3d2657",
+    "chainId": "eip155:56",
+    "name": "BabySwap",
+    "precision": 18,
+    "color": "#BE8B35",
+    "icon": "https://assets.coingecko.com/coins/images/16169/thumb/baby.PNG?1696515772",
+    "symbol": "BABY",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x53f0e242ea207b6e9b63e0a53e788267aa99ff9b": {
+    "assetId": "eip155:56/bep20:0x53f0e242ea207b6e9b63e0a53e788267aa99ff9b",
+    "chainId": "eip155:56",
+    "name": "Medping",
+    "precision": 18,
+    "color": "#245C9C",
+    "icon": "https://assets.coingecko.com/coins/images/20971/thumb/MEDPING_LOGO.png?1696520358",
+    "symbol": "MPG",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x54012cdf4119de84218f7eb90eeb87e25ae6ebd7": {
+    "assetId": "eip155:56/bep20:0x54012cdf4119de84218f7eb90eeb87e25ae6ebd7",
+    "chainId": "eip155:56",
+    "name": "Luffy on BNB Smart Chain",
+    "precision": 9,
+    "color": "#BE8F44",
+    "icon": "https://assets.coingecko.com/coins/images/17736/thumb/LUFFY_LOGO.png?1696517262",
+    "symbol": "LUFFY",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x543c7ebb52d56985f63f246a5b3558aff79037d7": {
+    "assetId": "eip155:56/bep20:0x543c7ebb52d56985f63f246a5b3558aff79037d7",
+    "chainId": "eip155:56",
+    "name": "Stabledoc",
+    "precision": 18,
+    "color": "#DCF2CF",
+    "icon": "https://assets.coingecko.com/coins/images/19124/thumb/stabledoc.PNG?1696518575",
+    "symbol": "SDT",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x54523d5fb56803bac758e8b10b321748a77ae9e9": {
+    "assetId": "eip155:56/bep20:0x54523d5fb56803bac758e8b10b321748a77ae9e9",
+    "chainId": "eip155:56",
+    "name": "Dreams Quest",
+    "precision": 18,
+    "color": "#779DC4",
+    "icon": "https://assets.coingecko.com/coins/images/19012/thumb/DQ-token.png?1696518464",
+    "symbol": "DREAMS",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x545356d4d69d8cd1213ee7e339867574738751ca": {
+    "assetId": "eip155:56/bep20:0x545356d4d69d8cd1213ee7e339867574738751ca",
+    "chainId": "eip155:56",
+    "name": "KTX Finance",
+    "precision": 18,
+    "color": "#40DFEF",
+    "icon": "https://assets.coingecko.com/coins/images/30537/thumb/KTX.jpeg?1696529409",
+    "symbol": "KTC",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x545f90dc35ca1e6129f1fed354b3e2df12034261": {
+    "assetId": "eip155:56/bep20:0x545f90dc35ca1e6129f1fed354b3e2df12034261",
+    "chainId": "eip155:56",
+    "name": "NewB Farm",
+    "precision": 18,
+    "color": "#D1AC4B",
+    "icon": "https://assets.coingecko.com/coins/images/16029/thumb/NewB_Token_FA_CMC.png?1696515639",
+    "symbol": "NEWB",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x54626300818e5c5b44db0fcf45ba4943ca89a9e2": {
+    "assetId": "eip155:56/bep20:0x54626300818e5c5b44db0fcf45ba4943ca89a9e2",
+    "chainId": "eip155:56",
+    "name": "CheCoin",
+    "precision": 18,
+    "color": "#42423D",
+    "icon": "https://assets.coingecko.com/coins/images/17399/thumb/hmvUIO89jIpjmOD6astn5S5pTSJqnhc3KowWEcI2.png?1696516947",
+    "symbol": "CHECOIN",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x546dded7c535e192c4132f5c998db017af824d96": {
+    "assetId": "eip155:56/bep20:0x546dded7c535e192c4132f5c998db017af824d96",
+    "chainId": "eip155:56",
+    "name": "Baby Pepe on BNB Smart Chain",
+    "precision": 9,
+    "color": "#52689C",
+    "icon": "https://assets.coingecko.com/coins/images/29990/thumb/200x200.png?1696528915",
+    "symbol": "BABYPEPE",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x5492ef6aeeba1a3896357359ef039a8b11621b45": {
+    "assetId": "eip155:56/bep20:0x5492ef6aeeba1a3896357359ef039a8b11621b45",
+    "chainId": "eip155:56",
+    "name": "Chumbi Valley",
+    "precision": 18,
+    "color": "#F5C94A",
+    "icon": "https://assets.coingecko.com/coins/images/21686/thumb/_CHMB.png?1696521042",
+    "symbol": "CHMB",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x549cc5df432cdbaebc8b9158a6bdfe1cbd0ba16d": {
+    "assetId": "eip155:56/bep20:0x549cc5df432cdbaebc8b9158a6bdfe1cbd0ba16d",
+    "chainId": "eip155:56",
+    "name": "Howl City",
+    "precision": 18,
+    "color": "#2A8A3D",
+    "icon": "https://assets.coingecko.com/coins/images/20344/thumb/hwl.png?1696519751",
+    "symbol": "HWL",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x54c159b71262878bf096b45a3c6a8fd0a3250b10": {
+    "assetId": "eip155:56/bep20:0x54c159b71262878bf096b45a3c6a8fd0a3250b10",
+    "chainId": "eip155:56",
+    "name": "Be Meta Famous",
+    "precision": 18,
+    "color": "#28BDFC",
+    "icon": "https://assets.coingecko.com/coins/images/25192/thumb/Meta_Fame_Token.png?1696524336",
+    "symbol": "BMF",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x54c2c07b3af037567269ad6a168d5bd527867b58": {
+    "assetId": "eip155:56/bep20:0x54c2c07b3af037567269ad6a168d5bd527867b58",
+    "chainId": "eip155:56",
+    "name": "ZUM on BNB Smart Chain",
+    "precision": 9,
+    "color": "#D9BFDA",
+    "icon": "https://assets.coingecko.com/coins/images/9721/thumb/zum256x256.png?1696509787",
+    "symbol": "ZUM",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x54e951e513bc09abaff971641947bc69e31068bd": {
+    "assetId": "eip155:56/bep20:0x54e951e513bc09abaff971641947bc69e31068bd",
+    "chainId": "eip155:56",
+    "name": "OdysseyWallet",
+    "precision": 18,
+    "color": "#D98639",
+    "icon": "https://assets.coingecko.com/coins/images/28944/thumb/2023-01-23_00.04.47.jpg?1696527918",
+    "symbol": "ODYS",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x550d7984b7adfff88815e5528e12e322df6d3b9b": {
+    "assetId": "eip155:56/bep20:0x550d7984b7adfff88815e5528e12e322df6d3b9b",
+    "chainId": "eip155:56",
+    "name": "PandAI",
+    "precision": 6,
+    "color": "#C1C1C1",
+    "icon": "https://assets.coingecko.com/coins/images/29203/thumb/%C5%AFlll.jpeg?1696528162",
+    "symbol": "PANDAI",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x5512014efa6cd57764fa743756f7a6ce3358cc83": {
+    "assetId": "eip155:56/bep20:0x5512014efa6cd57764fa743756f7a6ce3358cc83",
+    "chainId": "eip155:56",
+    "name": "EasyFi V2 on BNB Smart Chain",
+    "precision": 18,
+    "color": "#624A69",
+    "icon": "https://assets.coingecko.com/coins/images/12742/thumb/Logo_Icon.png?1696512540",
+    "symbol": "EZ",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x552594612f935441c01c6854edf111f343c1ca07": {
+    "assetId": "eip155:56/bep20:0x552594612f935441c01c6854edf111f343c1ca07",
+    "chainId": "eip155:56",
+    "name": "Galaxy War",
+    "precision": 18,
+    "color": "#404044",
+    "icon": "https://assets.coingecko.com/coins/images/22166/thumb/e2x7gMJ4_400x400.jpg?1696521510",
+    "symbol": "GWT",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x5546600f77eda1dcf2e8817ef4d617382e7f71f5": {
+    "assetId": "eip155:56/bep20:0x5546600f77eda1dcf2e8817ef4d617382e7f71f5",
+    "chainId": "eip155:56",
+    "name": "Sonar on BNB Smart Chain",
+    "precision": 9,
+    "color": "#DB9648",
+    "icon": "https://assets.coingecko.com/coins/images/16463/thumb/sonar_logo-200.png?1696516058",
+    "symbol": "PING",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x55493e35e33fcf811571707ac5bf1dbcb658bafc": {
+    "assetId": "eip155:56/bep20:0x55493e35e33fcf811571707ac5bf1dbcb658bafc",
+    "chainId": "eip155:56",
+    "name": "FAT CAT",
+    "precision": 9,
+    "color": "#53514D",
+    "icon": "https://assets.coingecko.com/coins/images/29095/thumb/IMG_9113.PNG?1696528058",
+    "symbol": "FATCAT",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x55533be59de022d585a57e29539452d708d4a410": {
+    "assetId": "eip155:56/bep20:0x55533be59de022d585a57e29539452d708d4a410",
+    "chainId": "eip155:56",
+    "name": "Zenc Coin",
+    "precision": 18,
+    "color": "#EDF7F8",
+    "icon": "https://assets.coingecko.com/coins/images/25055/thumb/newzenc-logo.png?1696524206",
+    "symbol": "ZENC",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x55671114d774ee99d653d6c12460c780a67f1d18": {
+    "assetId": "eip155:56/bep20:0x55671114d774ee99d653d6c12460c780a67f1d18",
+    "chainId": "eip155:56",
+    "name": "Pacoca",
+    "precision": 18,
+    "color": "#F4D2BA",
+    "icon": "https://assets.coingecko.com/coins/images/16567/thumb/pacoca.PNG?1696516129",
+    "symbol": "PACOCA",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x557233e794d1a5fbcc6d26dca49147379ea5073c": {
+    "assetId": "eip155:56/bep20:0x557233e794d1a5fbcc6d26dca49147379ea5073c",
+    "chainId": "eip155:56",
+    "name": "Alita",
+    "precision": 18,
+    "color": "#DDE1FA",
+    "icon": "https://assets.coingecko.com/coins/images/17750/thumb/Logo-200x200_%286%29.png?1696517276",
+    "symbol": "ALI",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x557f20ce25b41640ade4a3085d42d7e626d7965a": {
+    "assetId": "eip155:56/bep20:0x557f20ce25b41640ade4a3085d42d7e626d7965a",
+    "chainId": "eip155:56",
+    "name": "LandBox on BNB Smart Chain",
+    "precision": 18,
+    "color": "#2255C4",
+    "icon": "https://assets.coingecko.com/coins/images/14875/thumb/jmKvZDn7_400x400.jpg?1696514539",
+    "symbol": "LAND",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x5587b8e1cfc8ed45a68aeaddcae001251a880cd0": {
+    "assetId": "eip155:56/bep20:0x5587b8e1cfc8ed45a68aeaddcae001251a880cd0",
+    "chainId": "eip155:56",
+    "name": "zkEVMChain  BSC ",
+    "precision": 18,
+    "color": "#598EE0",
+    "icon": "https://assets.coingecko.com/coins/images/32539/thumb/Frame_3.png?1698472697",
+    "symbol": "ZKEVM",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x558ad2b02ce979ca54f88206ed8597c8c740774e": {
+    "assetId": "eip155:56/bep20:0x558ad2b02ce979ca54f88206ed8597c8c740774e",
+    "chainId": "eip155:56",
+    "name": "MetaVerse M",
+    "precision": 18,
+    "color": "#04D45A",
+    "icon": "https://assets.coingecko.com/coins/images/26104/thumb/M.png?1696525195",
+    "symbol": "M",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x55a633b3fce52144222e468a326105aa617cc1cc": {
+    "assetId": "eip155:56/bep20:0x55a633b3fce52144222e468a326105aa617cc1cc",
+    "chainId": "eip155:56",
+    "name": "Truth Seekers",
+    "precision": 18,
+    "color": "#0B2344",
+    "icon": "https://assets.coingecko.com/coins/images/29507/thumb/Truth_Logo.jpg?1696528452",
+    "symbol": "TRUTH",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x55a9ee0bd79fb0fc0ac71a35d6f481fb4bdc9a5c": {
+    "assetId": "eip155:56/bep20:0x55a9ee0bd79fb0fc0ac71a35d6f481fb4bdc9a5c",
+    "chainId": "eip155:56",
+    "name": "OSL AI",
+    "precision": 1,
+    "color": "#334F5B",
+    "icon": "https://assets.coingecko.com/coins/images/30690/thumb/photo_2023-06-05_13-54-02.jpg?1696529559",
+    "symbol": "OSL",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x55d398326f99059ff775485246999027b3197955": {
+    "assetId": "eip155:56/bep20:0x55d398326f99059ff775485246999027b3197955",
+    "chainId": "eip155:56",
+    "name": "Tether on BNB Smart Chain",
+    "precision": 18,
+    "color": "#049494",
+    "icon": "https://assets.coingecko.com/coins/images/325/thumb/Tether.png?1696501661",
+    "symbol": "USDT",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x55f96c7005d7c684a65ee653b07b5fe1507c56ab": {
+    "assetId": "eip155:56/bep20:0x55f96c7005d7c684a65ee653b07b5fe1507c56ab",
+    "chainId": "eip155:56",
+    "name": "Wojak Finance",
+    "precision": 9,
+    "color": "#BEBEC1",
+    "icon": "https://assets.coingecko.com/coins/images/18823/thumb/200x200.png?1696518285",
+    "symbol": "WOJ",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x56083560594e314b5cdd1680ec6a493bb851bbd8": {
+    "assetId": "eip155:56/bep20:0x56083560594e314b5cdd1680ec6a493bb851bbd8",
+    "chainId": "eip155:56",
+    "name": "Transhuman Coin",
+    "precision": 9,
+    "color": "#D8F6DE",
+    "icon": "https://assets.coingecko.com/coins/images/20328/thumb/kdEastmD_400x400.jpg?1696519730",
+    "symbol": "THC",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x56156fb7860d7eb0b4b1a5356c5354b295194a45": {
+    "assetId": "eip155:56/bep20:0x56156fb7860d7eb0b4b1a5356c5354b295194a45",
+    "chainId": "eip155:56",
+    "name": "Sportium",
+    "precision": 18,
+    "color": "#7AF6F9",
+    "icon": "https://assets.coingecko.com/coins/images/20981/thumb/sportium_logo_symbolmark_skyblue.png?1696520367",
+    "symbol": "SPRT",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x5616671d3d989940c67ea57cb9e8d347696826a3": {
+    "assetId": "eip155:56/bep20:0x5616671d3d989940c67ea57cb9e8d347696826a3",
+    "chainId": "eip155:56",
+    "name": "KingU",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/33184/thumb/20231119_210226.png?1700953580",
+    "symbol": "KINGU",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x5621b5a3f4a8008c4ccdd1b942b121c8b1944f1f": {
+    "assetId": "eip155:56/bep20:0x5621b5a3f4a8008c4ccdd1b942b121c8b1944f1f",
+    "chainId": "eip155:56",
+    "name": "Exeedme on BNB Smart Chain",
+    "precision": 18,
+    "color": "#04FC04",
+    "icon": "https://assets.coingecko.com/coins/images/13518/thumb/exeedme.png?1696513279",
+    "symbol": "XED",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x563ca064e41f3b5d80adeecfe49ab375fd7afbef": {
+    "assetId": "eip155:56/bep20:0x563ca064e41f3b5d80adeecfe49ab375fd7afbef",
+    "chainId": "eip155:56",
+    "name": "Rare Ball Potion",
+    "precision": 18,
+    "color": "#DCECD0",
+    "icon": "https://assets.coingecko.com/coins/images/25824/thumb/6295aea8b46cd60001d5ac44_RBS160.png?1696524909",
+    "symbol": "RBP",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x56513627e7cea535b9b5a18da7643a4b21999994": {
+    "assetId": "eip155:56/bep20:0x56513627e7cea535b9b5a18da7643a4b21999994",
+    "chainId": "eip155:56",
+    "name": "Fathom",
+    "precision": 18,
+    "color": "#6D839A",
+    "icon": "https://assets.coingecko.com/coins/images/29848/thumb/Fathom_Logo%28200x200%29.png?1696528775",
+    "symbol": "FATHOM",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x565b72163f17849832a692a3c5928cc502f46d69": {
+    "assetId": "eip155:56/bep20:0x565b72163f17849832a692a3c5928cc502f46d69",
+    "chainId": "eip155:56",
+    "name": "Hunny Finance",
+    "precision": 18,
+    "color": "#9A3A2A",
+    "icon": "https://assets.coingecko.com/coins/images/16043/thumb/hunny-logo.c87da9c4.png?1696515653",
+    "symbol": "HUNNY",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x56672ecb506301b1e32ed28552797037c54d36a9": {
+    "assetId": "eip155:56/bep20:0x56672ecb506301b1e32ed28552797037c54d36a9",
+    "chainId": "eip155:56",
+    "name": "Bismuth",
+    "precision": 8,
+    "color": "#5CA4EC",
+    "icon": "https://assets.coingecko.com/coins/images/974/thumb/bis200px.png?1696502089",
+    "symbol": "BIS",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x566a9eeac9a589bf0825222bca083ecdb9c86c82": {
+    "assetId": "eip155:56/bep20:0x566a9eeac9a589bf0825222bca083ecdb9c86c82",
+    "chainId": "eip155:56",
+    "name": "Libra Protocol",
+    "precision": 18,
+    "color": "#543E74",
+    "icon": "https://assets.coingecko.com/coins/images/29389/thumb/Libra_Protocol.png?1696528340",
+    "symbol": "LBR",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x566cedd201f67e542a6851a2959c1a449a041945": {
+    "assetId": "eip155:56/bep20:0x566cedd201f67e542a6851a2959c1a449a041945",
+    "chainId": "eip155:56",
+    "name": "Opium on BNB Smart Chain",
+    "precision": 18,
+    "color": "#DDAE48",
+    "icon": "https://assets.coingecko.com/coins/images/13758/thumb/opium-token-black_%281%29.png?1696513500",
+    "symbol": "OPIUM",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x567bbef0efdf53355c569b7aedde4c4f7c008014": {
+    "assetId": "eip155:56/bep20:0x567bbef0efdf53355c569b7aedde4c4f7c008014",
+    "chainId": "eip155:56",
+    "name": "redFireAnts",
+    "precision": 18,
+    "color": "#DB7070",
+    "icon": "https://assets.coingecko.com/coins/images/25269/thumb/website-rants-300x300.png?1696524408",
+    "symbol": "RANTS",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x569f4957176ffa0dff76c507604f6a66d4b9c578": {
+    "assetId": "eip155:56/bep20:0x569f4957176ffa0dff76c507604f6a66d4b9c578",
+    "chainId": "eip155:56",
+    "name": "Cryptostone",
+    "precision": 18,
+    "color": "#D5EFEF",
+    "icon": "https://assets.coingecko.com/coins/images/26068/thumb/Cryptostone.png?1696525152",
+    "symbol": "CPS",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x56aa0237244c67b9a854b4efe8479cca0b105289": {
+    "assetId": "eip155:56/bep20:0x56aa0237244c67b9a854b4efe8479cca0b105289",
+    "chainId": "eip155:56",
+    "name": "WalletNow on BNB Smart Chain",
+    "precision": 18,
+    "color": "#BE36BF",
+    "icon": "https://assets.coingecko.com/coins/images/20149/thumb/walletnow.PNG?1696519563",
+    "symbol": "WNOW",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x56b6fb708fc5732dec1afc8d8556423a2edccbd6": {
+    "assetId": "eip155:56/bep20:0x56b6fb708fc5732dec1afc8d8556423a2edccbd6",
+    "chainId": "eip155:56",
+    "name": "Binance Peg EOS",
+    "precision": 18,
+    "color": "#6C6C6C",
+    "icon": "https://assets.coingecko.com/coins/images/15771/thumb/eos-eos-logo.png?1696515395",
+    "symbol": "EOS",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x56d06a78ef8e95d6043341f24759e2834be6f97b": {
+    "assetId": "eip155:56/bep20:0x56d06a78ef8e95d6043341f24759e2834be6f97b",
+    "chainId": "eip155:56",
+    "name": "Degen Zoo on BNB Smart Chain",
+    "precision": 18,
+    "color": "#1D1D17",
+    "icon": "https://assets.coingecko.com/coins/images/29224/thumb/FAGWW5fe_400x400.jpeg?1696528182",
+    "symbol": "DZOO",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x57022edd5c7ed7b6bd870488853fe961dfdd3fb6": {
+    "assetId": "eip155:56/bep20:0x57022edd5c7ed7b6bd870488853fe961dfdd3fb6",
+    "chainId": "eip155:56",
+    "name": "Octaplex Network",
+    "precision": 18,
+    "color": "#0FCCCF",
+    "icon": "https://assets.coingecko.com/coins/images/18013/thumb/octaplex-icon.png?1696517529",
+    "symbol": "PLX",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x570a5d26f7765ecb712c0924e4de545b89fd43df": {
+    "assetId": "eip155:56/bep20:0x570a5d26f7765ecb712c0924e4de545b89fd43df",
+    "chainId": "eip155:56",
+    "name": "Wrapped Solana",
+    "precision": 18,
+    "color": "#05070D",
+    "icon": "https://assets.coingecko.com/coins/images/21629/thumb/solana.jpg?1696520989",
+    "symbol": "SOL",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x5711f19b7b21938d31d07e5736b4660c1159d7d3": {
+    "assetId": "eip155:56/bep20:0x5711f19b7b21938d31d07e5736b4660c1159d7d3",
+    "chainId": "eip155:56",
+    "name": "PrivaCoin",
+    "precision": 18,
+    "color": "#0F0C04",
+    "icon": "https://assets.coingecko.com/coins/images/28140/thumb/PrivaCoin-logo.png?1696527147",
+    "symbol": "PRVC",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x57185189118c7e786cafd5c71f35b16012fa95ad": {
+    "assetId": "eip155:56/bep20:0x57185189118c7e786cafd5c71f35b16012fa95ad",
+    "chainId": "eip155:56",
+    "name": "BEFE",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/33172/thumb/Befe_5.png?1700919971",
+    "symbol": "BEFE",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x571dbcaa3df80dfebf69fefd084dace4a22ea7bf": {
+    "assetId": "eip155:56/bep20:0x571dbcaa3df80dfebf69fefd084dace4a22ea7bf",
+    "chainId": "eip155:56",
+    "name": "Bolic AI",
+    "precision": 18,
+    "color": "#498C76",
+    "icon": "https://assets.coingecko.com/coins/images/32285/thumb/IMG_20231010_185010_404.jpg?1697181781",
+    "symbol": "BOAI",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x572c9ab47977d7d909572f3b8bce076a858a8763": {
+    "assetId": "eip155:56/bep20:0x572c9ab47977d7d909572f3b8bce076a858a8763",
+    "chainId": "eip155:56",
+    "name": "We2net",
+    "precision": 18,
+    "color": "#0CE9F0",
+    "icon": "https://assets.coingecko.com/coins/images/29846/thumb/logo200.png?1696528773",
+    "symbol": "WE2NET",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x57528b45134f09f2e0069334a36a7e14af74745f": {
+    "assetId": "eip155:56/bep20:0x57528b45134f09f2e0069334a36a7e14af74745f",
+    "chainId": "eip155:56",
+    "name": "SugarYield",
+    "precision": 18,
+    "color": "#F0B6D4",
+    "icon": "https://assets.coingecko.com/coins/images/29026/thumb/Safeimagekit-resized-img.png?1696527996",
+    "symbol": "SUGAR",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x5754a836708fe2bbdaf8dd71d13f5d1a59bcec6f": {
+    "assetId": "eip155:56/bep20:0x5754a836708fe2bbdaf8dd71d13f5d1a59bcec6f",
+    "chainId": "eip155:56",
+    "name": "Collective Care",
+    "precision": 18,
+    "color": "#39AC22",
+    "icon": "https://assets.coingecko.com/coins/images/31888/thumb/200_200.png?1696530699",
+    "symbol": "CCT",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x5755e18d86c8a6d7a6e25296782cb84661e6c106": {
+    "assetId": "eip155:56/bep20:0x5755e18d86c8a6d7a6e25296782cb84661e6c106",
+    "chainId": "eip155:56",
+    "name": "SideKick",
+    "precision": 18,
+    "color": "#4CE484",
+    "icon": "https://assets.coingecko.com/coins/images/16295/thumb/kyvXrEK.png?1696515897",
+    "symbol": "SK",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x575c2274460642838bba1fd1b686884d684d44da": {
+    "assetId": "eip155:56/bep20:0x575c2274460642838bba1fd1b686884d684d44da",
+    "chainId": "eip155:56",
+    "name": "FleaMint",
+    "precision": 18,
+    "color": "#141817",
+    "icon": "https://assets.coingecko.com/coins/images/31849/thumb/WhatsApp_Image_2023-09-19_at_15.42.30.jpeg?1696530663",
+    "symbol": "FLMC",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x5774b2fc3e91af89f89141eacf76545e74265982": {
+    "assetId": "eip155:56/bep20:0x5774b2fc3e91af89f89141eacf76545e74265982",
+    "chainId": "eip155:56",
+    "name": "NFTY on BNB Smart Chain",
+    "precision": 18,
+    "color": "#F2E4F0",
+    "icon": "https://assets.coingecko.com/coins/images/18741/thumb/coingecko.png?1696518206",
+    "symbol": "NFTY",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x577ad06f635b402fc2724efd6a53a3a0aed3d155": {
+    "assetId": "eip155:56/bep20:0x577ad06f635b402fc2724efd6a53a3a0aed3d155",
+    "chainId": "eip155:56",
+    "name": "BeFaster Holder Token",
+    "precision": 6,
+    "color": "#D41D27",
+    "icon": "https://assets.coingecko.com/coins/images/13205/thumb/BFHT_Logo_200.png?1696512986",
+    "symbol": "BFHT",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x57a5297f2cb2c0aac9d554660acd6d385ab50c6b": {
+    "assetId": "eip155:56/bep20:0x57a5297f2cb2c0aac9d554660acd6d385ab50c6b",
+    "chainId": "eip155:56",
+    "name": "Venus LTC",
+    "precision": 8,
+    "color": "#131818",
+    "icon": "https://assets.coingecko.com/coins/images/13908/thumb/ltc.png?1696513650",
+    "symbol": "VLTC",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x57ac045f3553882e0e1e4cb44faffdc1bdfee249": {
+    "assetId": "eip155:56/bep20:0x57ac045f3553882e0e1e4cb44faffdc1bdfee249",
+    "chainId": "eip155:56",
+    "name": "Compound Meta",
+    "precision": 9,
+    "color": "#1C2760",
+    "icon": "https://assets.coingecko.com/coins/images/28686/thumb/logo_%283%29.png?1696527669",
+    "symbol": "COMA",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x57bfcf7bb43a3cae0aab981e2585a9e32d069f29": {
+    "assetId": "eip155:56/bep20:0x57bfcf7bb43a3cae0aab981e2585a9e32d069f29",
+    "chainId": "eip155:56",
+    "name": "Real World Assets",
+    "precision": 9,
+    "color": "#F0EAE8",
+    "icon": "https://assets.coingecko.com/coins/images/32300/thumb/IMG_20231011_132228_377.jpg?1697186227",
+    "symbol": "RWA",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x57c81885faad67fc4de892102f6fead3b9215f6b": {
+    "assetId": "eip155:56/bep20:0x57c81885faad67fc4de892102f6fead3b9215f6b",
+    "chainId": "eip155:56",
+    "name": "Zenith Chain on BNB Smart Chain",
+    "precision": 18,
+    "color": "#3C84DC",
+    "icon": "https://assets.coingecko.com/coins/images/21266/thumb/Jqtp-OVG_400x400.png?1696520637",
+    "symbol": "ZENITH",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x57d0e37f5d0ffb04aa03cc8ec75448ad56fb40ca": {
+    "assetId": "eip155:56/bep20:0x57d0e37f5d0ffb04aa03cc8ec75448ad56fb40ca",
+    "chainId": "eip155:56",
+    "name": "Quantum X",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/33031/thumb/quantum.jpg?1700434048",
+    "symbol": "QTX",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x57d2a45653b329fac354b04cead92c4db71cf09f": {
+    "assetId": "eip155:56/bep20:0x57d2a45653b329fac354b04cead92c4db71cf09f",
+    "chainId": "eip155:56",
+    "name": "IBS",
+    "precision": 18,
+    "color": "#0D3D2F",
+    "icon": "https://assets.coingecko.com/coins/images/26003/thumb/a.jpg?1696525080",
+    "symbol": "IBS",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x57effde2759b68d86c544e88f7977e3314144859": {
+    "assetId": "eip155:56/bep20:0x57effde2759b68d86c544e88f7977e3314144859",
+    "chainId": "eip155:56",
+    "name": "TosDis on BNB Smart Chain",
+    "precision": 18,
+    "color": "#1CBCCC",
+    "icon": "https://assets.coingecko.com/coins/images/13745/thumb/Tosdis-black.png?1696513488",
+    "symbol": "DIS",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x57f5c1a40f1e847e50ebdd29cb3dbfef777d2d3e": {
+    "assetId": "eip155:56/bep20:0x57f5c1a40f1e847e50ebdd29cb3dbfef777d2d3e",
+    "chainId": "eip155:56",
+    "name": "ConsciousDao",
+    "precision": 18,
+    "color": "#F5F8F2",
+    "icon": "https://assets.coingecko.com/coins/images/30557/thumb/IMG_20230524_125149_275.jpg?1696529428",
+    "symbol": "CVN",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x580cf2c36b913228dd0194a833f0ead8938f18ae": {
+    "assetId": "eip155:56/bep20:0x580cf2c36b913228dd0194a833f0ead8938f18ae",
+    "chainId": "eip155:56",
+    "name": "Kitty",
+    "precision": 6,
+    "color": "#DFC7F4",
+    "icon": "https://assets.coingecko.com/coins/images/19378/thumb/13019.png?1696518818",
+    "symbol": "KIT",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x580e2b3170aa36e7018ead248298c8cc18b0f019": {
+    "assetId": "eip155:56/bep20:0x580e2b3170aa36e7018ead248298c8cc18b0f019",
+    "chainId": "eip155:56",
+    "name": "Zibu",
+    "precision": 18,
+    "color": "#2E61AF",
+    "icon": "https://assets.coingecko.com/coins/images/28448/thumb/zibu_x200.png?1696527443",
+    "symbol": "ZIBU",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x5829e758859b74426b0b2447e82e19ad8e68e87a": {
+    "assetId": "eip155:56/bep20:0x5829e758859b74426b0b2447e82e19ad8e68e87a",
+    "chainId": "eip155:56",
+    "name": "Apex Coin",
+    "precision": 18,
+    "color": "#08A50A",
+    "icon": "https://assets.coingecko.com/coins/images/31409/thumb/apexlogo-2.png?1696530224",
+    "symbol": "ACX",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x582c12b30f85162fa393e5dbe2573f9f601f9d91": {
+    "assetId": "eip155:56/bep20:0x582c12b30f85162fa393e5dbe2573f9f601f9d91",
+    "chainId": "eip155:56",
+    "name": "MetalSwap on BNB Smart Chain",
+    "precision": 18,
+    "color": "#1B5C74",
+    "icon": "https://assets.coingecko.com/coins/images/22075/thumb/Logo_COIN_-_Gradiente.png?1696521419",
+    "symbol": "XMT",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x5857c96dae9cf8511b08cb07f85753c472d36ea3": {
+    "assetId": "eip155:56/bep20:0x5857c96dae9cf8511b08cb07f85753c472d36ea3",
+    "chainId": "eip155:56",
+    "name": "Fuse on BNB Smart Chain",
+    "precision": 18,
+    "color": "#A4E5AB",
+    "icon": "https://assets.coingecko.com/coins/images/10347/thumb/fuse.png?1696510348",
+    "symbol": "FUSE",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x586fc153cf7e9c029d8c30842c4cb6a86f03b816": {
+    "assetId": "eip155:56/bep20:0x586fc153cf7e9c029d8c30842c4cb6a86f03b816",
+    "chainId": "eip155:56",
+    "name": "BYTZ on BNB Smart Chain",
+    "precision": 8,
+    "color": "#C4B5BD",
+    "icon": "https://assets.coingecko.com/coins/images/4017/thumb/bytz.png?1696504655",
+    "symbol": "BYTZ",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x58759dd469ae5631c42cf8a473992335575b58d7": {
+    "assetId": "eip155:56/bep20:0x58759dd469ae5631c42cf8a473992335575b58d7",
+    "chainId": "eip155:56",
+    "name": "DeHive on BNB Smart Chain",
+    "precision": 18,
+    "color": "#14141C",
+    "icon": "https://assets.coingecko.com/coins/images/14926/thumb/logo_200x200.png?1696514587",
+    "symbol": "DHV",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x58b9cb810a68a7f3e1e4f8cb45d1b9b3c79705e8": {
+    "assetId": "eip155:56/bep20:0x58b9cb810a68a7f3e1e4f8cb45d1b9b3c79705e8",
+    "chainId": "eip155:56",
+    "name": "Connext on BNB Smart Chain",
+    "precision": 18,
+    "color": "#09070B",
+    "icon": "https://assets.coingecko.com/coins/images/31293/thumb/connext.png?1696530113",
+    "symbol": "NEXT",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x58ed5ff234efd928a66e84dd3d61bd809ac07a7f": {
+    "assetId": "eip155:56/bep20:0x58ed5ff234efd928a66e84dd3d61bd809ac07a7f",
+    "chainId": "eip155:56",
+    "name": "FlokiDash",
+    "precision": 9,
+    "color": "#453F3D",
+    "icon": "https://assets.coingecko.com/coins/images/29347/thumb/FlokiDash_200x200.png?1696528296",
+    "symbol": "FLOKIDASH",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x5921dee8556c4593eefcfad3ca5e2f618606483b": {
+    "assetId": "eip155:56/bep20:0x5921dee8556c4593eefcfad3ca5e2f618606483b",
+    "chainId": "eip155:56",
+    "name": "Mettalex on BNB Smart Chain",
+    "precision": 18,
+    "color": "#4A40A6",
+    "icon": "https://assets.coingecko.com/coins/images/12730/thumb/nrEqFTEW_400x400.jpg?1696512529",
+    "symbol": "MTLX",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x59769630b236398c2471eb26e6a529448030d94f": {
+    "assetId": "eip155:56/bep20:0x59769630b236398c2471eb26e6a529448030d94f",
+    "chainId": "eip155:56",
+    "name": "NKYC Token",
+    "precision": 18,
+    "color": "#E7C655",
+    "icon": "https://assets.coingecko.com/coins/images/30337/thumb/NKYC-Logo.png?1696529238",
+    "symbol": "NKYC",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x5989d72a559eb0192f2d20170a43a4bd28a1b174": {
+    "assetId": "eip155:56/bep20:0x5989d72a559eb0192f2d20170a43a4bd28a1b174",
+    "chainId": "eip155:56",
+    "name": "NFTify on BNB Smart Chain",
+    "precision": 18,
+    "color": "#A617AA",
+    "icon": "https://assets.coingecko.com/coins/images/16095/thumb/n1-token-logo-circle-200x200.png?1696515703",
+    "symbol": "N1",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x599beec263fa6ea35055011967597b259fc012a4": {
+    "assetId": "eip155:56/bep20:0x599beec263fa6ea35055011967597b259fc012a4",
+    "chainId": "eip155:56",
+    "name": "FoxGirl",
+    "precision": 18,
+    "color": "#D6965A",
+    "icon": "https://assets.coingecko.com/coins/images/19448/thumb/foxgirl.png?1696518886",
+    "symbol": "FOXGIRL",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x59c46f6edde846ec970eeffe925f6a278902e3d5": {
+    "assetId": "eip155:56/bep20:0x59c46f6edde846ec970eeffe925f6a278902e3d5",
+    "chainId": "eip155:56",
+    "name": "Metaverse World Membership",
+    "precision": 18,
+    "color": "#E5E4E8",
+    "icon": "https://assets.coingecko.com/coins/images/32307/thumb/Untitled_design.png?1697188209",
+    "symbol": "MWM",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x59c49b54d4425c7ff1e49f40958a14d48cc87c26": {
+    "assetId": "eip155:56/bep20:0x59c49b54d4425c7ff1e49f40958a14d48cc87c26",
+    "chainId": "eip155:56",
+    "name": "Tap Fantasy MC",
+    "precision": 18,
+    "color": "#F1DFC1",
+    "icon": "https://assets.coingecko.com/coins/images/26483/thumb/Tap-Fantasy-MC-Logo.png?1696525555",
+    "symbol": "TFMC",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x59f6b2435cd1421f409907ad2d9f811849ca555f": {
+    "assetId": "eip155:56/bep20:0x59f6b2435cd1421f409907ad2d9f811849ca555f",
+    "chainId": "eip155:56",
+    "name": "Tank Battle",
+    "precision": 18,
+    "color": "#2268CC",
+    "icon": "https://assets.coingecko.com/coins/images/22917/thumb/15695.png?1696522214",
+    "symbol": "TBL",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x5a04565ee1c90c84061ad357ae9e2f1c32d57dc6": {
+    "assetId": "eip155:56/bep20:0x5a04565ee1c90c84061ad357ae9e2f1c32d57dc6",
+    "chainId": "eip155:56",
+    "name": "BabyBNBTiger",
+    "precision": 9,
+    "color": "#4F3A2C",
+    "icon": "https://assets.coingecko.com/coins/images/29709/thumb/IMG_20230405_051743_609.png?1696528641",
+    "symbol": "BABYBNBTIG",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x5a29c96fa93ffa8845fb7f8616a03aa85fcc11d6": {
+    "assetId": "eip155:56/bep20:0x5a29c96fa93ffa8845fb7f8616a03aa85fcc11d6",
+    "chainId": "eip155:56",
+    "name": "FRANCE REV FINANCE on BNB Smart Chain",
+    "precision": 8,
+    "color": "#3CCC3E",
+    "icon": "https://assets.coingecko.com/coins/images/22224/thumb/LOGO200_FRF.png?1696521567",
+    "symbol": "FRF",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x5a3010d4d8d3b5fb49f8b6e57fb9e48063f16700": {
+    "assetId": "eip155:56/bep20:0x5a3010d4d8d3b5fb49f8b6e57fb9e48063f16700",
+    "chainId": "eip155:56",
+    "name": "BSCPAD",
+    "precision": 18,
+    "color": "#080509",
+    "icon": "https://assets.coingecko.com/coins/images/14135/thumb/bscpad_logo.jpg?1696513855",
+    "symbol": "BSCPAD",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x5a4fb10e7c4cbb9a2b9d9a942f9a875ebd3489ea": {
+    "assetId": "eip155:56/bep20:0x5a4fb10e7c4cbb9a2b9d9a942f9a875ebd3489ea",
+    "chainId": "eip155:56",
+    "name": "Carbon on BNB Smart Chain",
+    "precision": 18,
+    "color": "#5B2BEC",
+    "icon": "https://assets.coingecko.com/coins/images/13262/thumb/carbon.png?1696513037",
+    "symbol": "CRBN",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x5a726a26edb0df8fd55f03cc30af8a7cea81e78d": {
+    "assetId": "eip155:56/bep20:0x5a726a26edb0df8fd55f03cc30af8a7cea81e78d",
+    "chainId": "eip155:56",
+    "name": "CrossWallet",
+    "precision": 18,
+    "color": "#804DF8",
+    "icon": "https://assets.coingecko.com/coins/images/16460/thumb/AAoUhOw.png?1696516056",
+    "symbol": "CWT",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x5a8261214a6c5fe68a6a4c81aec4f68bcd73ebc1": {
+    "assetId": "eip155:56/bep20:0x5a8261214a6c5fe68a6a4c81aec4f68bcd73ebc1",
+    "chainId": "eip155:56",
+    "name": "ShibFalcon",
+    "precision": 18,
+    "color": "#C0AAA4",
+    "icon": "https://assets.coingecko.com/coins/images/29218/thumb/photo_2023-02-26_11-32-46.jpg?1696528176",
+    "symbol": "SHFLCN",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x5ac52ee5b2a633895292ff6d8a89bb9190451587": {
+    "assetId": "eip155:56/bep20:0x5ac52ee5b2a633895292ff6d8a89bb9190451587",
+    "chainId": "eip155:56",
+    "name": "BSCEX",
+    "precision": 18,
+    "color": "#140F06",
+    "icon": "https://assets.coingecko.com/coins/images/13582/thumb/icon-bscex-200x200.png?1696513335",
+    "symbol": "BSCX",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x5ac5e6af46ef285b3536833e65d245c49b608d9b": {
+    "assetId": "eip155:56/bep20:0x5ac5e6af46ef285b3536833e65d245c49b608d9b",
+    "chainId": "eip155:56",
+    "name": "NIOB",
+    "precision": 18,
+    "color": "#7C4CA4",
+    "icon": "https://assets.coingecko.com/coins/images/24141/thumb/niob.png?1696523332",
+    "symbol": "NIOB",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x5afa2959c98b030716f7c0a4d85e0b0e35f3791b": {
+    "assetId": "eip155:56/bep20:0x5afa2959c98b030716f7c0a4d85e0b0e35f3791b",
+    "chainId": "eip155:56",
+    "name": "ElonXAIDogeMessi69PepeInu",
+    "precision": 9,
+    "color": "#E2DACB",
+    "icon": "https://assets.coingecko.com/coins/images/31586/thumb/logo_200px.png?1696530403",
+    "symbol": "BITCOIN",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x5b17b4d5e4009b5c43e3e3d63a5229f794cba389": {
+    "assetId": "eip155:56/bep20:0x5b17b4d5e4009b5c43e3e3d63a5229f794cba389",
+    "chainId": "eip155:56",
+    "name": "ACryptoSI",
+    "precision": 18,
+    "color": "#C86832",
+    "icon": "https://assets.coingecko.com/coins/images/13307/thumb/acryptos2_32.png?1696513078",
+    "symbol": "ACSI",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x5b180109332b079c44447f52a8adad5b1cd9dcfd": {
+    "assetId": "eip155:56/bep20:0x5b180109332b079c44447f52a8adad5b1cd9dcfd",
+    "chainId": "eip155:56",
+    "name": "Litherium",
+    "precision": 18,
+    "color": "#51B8B3",
+    "icon": "https://assets.coingecko.com/coins/images/20080/thumb/rHeGfsvH_400x400.jpg?1696519497",
+    "symbol": "LITH",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x5b1baec64af6dc54e6e04349315919129a6d3c23": {
+    "assetId": "eip155:56/bep20:0x5b1baec64af6dc54e6e04349315919129a6d3c23",
+    "chainId": "eip155:56",
+    "name": "DNAxCAT",
+    "precision": 18,
+    "color": "#FCE474",
+    "icon": "https://assets.coingecko.com/coins/images/17603/thumb/dxct.png?1696517135",
+    "symbol": "DXCT",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x5b1f874d0b0c5ee17a495cbb70ab8bf64107a3bd": {
+    "assetId": "eip155:56/bep20:0x5b1f874d0b0c5ee17a495cbb70ab8bf64107a3bd",
+    "chainId": "eip155:56",
+    "name": "BinaryX",
+    "precision": 18,
+    "color": "#D3464D",
+    "icon": "https://assets.coingecko.com/coins/images/29176/thumb/RqJfmXQV_400x400.jpg?1696528134",
+    "symbol": "BNX",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x5b41028f250204fae2d96a8b1ffe33e2944dc9a6": {
+    "assetId": "eip155:56/bep20:0x5b41028f250204fae2d96a8b1ffe33e2944dc9a6",
+    "chainId": "eip155:56",
+    "name": "Mutant Pepe",
+    "precision": 18,
+    "color": "#3F932F",
+    "icon": "https://assets.coingecko.com/coins/images/30131/thumb/200x200-MUTANT.png?1696529052",
+    "symbol": "MUTANT",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x5b52bfb8062ce664d74bbcd4cd6dc7df53fd7233": {
+    "assetId": "eip155:56/bep20:0x5b52bfb8062ce664d74bbcd4cd6dc7df53fd7233",
+    "chainId": "eip155:56",
+    "name": "ZENIQ on BNB Smart Chain",
+    "precision": 18,
+    "color": "#B4B4B4",
+    "icon": "https://assets.coingecko.com/coins/images/29284/thumb/zeniq.png?1696528236",
+    "symbol": "ZENIQ",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x5b65cd9feb54f1df3d0c60576003344079f8dc06": {
+    "assetId": "eip155:56/bep20:0x5b65cd9feb54f1df3d0c60576003344079f8dc06",
+    "chainId": "eip155:56",
+    "name": "Uniwhale",
+    "precision": 18,
+    "color": "#067EFC",
+    "icon": "https://assets.coingecko.com/coins/images/29531/thumb/token-256x256.png?1696528473",
+    "symbol": "UNW",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x5b6bf0c7f989de824677cfbd507d9635965e9cd3": {
+    "assetId": "eip155:56/bep20:0x5b6bf0c7f989de824677cfbd507d9635965e9cd3",
+    "chainId": "eip155:56",
+    "name": "Gamium on BNB Smart Chain",
+    "precision": 18,
+    "color": "#171718",
+    "icon": "https://assets.coingecko.com/coins/images/22749/thumb/14304.png?1696522053",
+    "symbol": "GMM",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x5b6dcf557e2abe2323c48445e8cc948910d8c2c9": {
+    "assetId": "eip155:56/bep20:0x5b6dcf557e2abe2323c48445e8cc948910d8c2c9",
+    "chainId": "eip155:56",
+    "name": "Mirror Protocol on BNB Smart Chain",
+    "precision": 18,
+    "color": "#142444",
+    "icon": "https://assets.coingecko.com/coins/images/13295/thumb/mirror_logo_transparent.png?1696513067",
+    "symbol": "MIR",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x5b6ebb33eea2d12eefd4a9b2aeaf733231169684": {
+    "assetId": "eip155:56/bep20:0x5b6ebb33eea2d12eefd4a9b2aeaf733231169684",
+    "chainId": "eip155:56",
+    "name": "WELD on BNB Smart Chain",
+    "precision": 18,
+    "color": "#E2F7F7",
+    "icon": "https://assets.coingecko.com/coins/images/18544/thumb/weld.png?1696518023",
+    "symbol": "WELD",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x5b8650cd999b23cf39ab12e3213fbc8709c7f5cb": {
+    "assetId": "eip155:56/bep20:0x5b8650cd999b23cf39ab12e3213fbc8709c7f5cb",
+    "chainId": "eip155:56",
+    "name": "MaziMatic on BNB Smart Chain",
+    "precision": 18,
+    "color": "#A7E4FC",
+    "icon": "https://assets.coingecko.com/coins/images/30490/thumb/4de906d9d4104a16b4334d8ec8f75284.png?1696529377",
+    "symbol": "MAZI",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x5bacf846595cd00379592f07831f734653e6feb2": {
+    "assetId": "eip155:56/bep20:0x5bacf846595cd00379592f07831f734653e6feb2",
+    "chainId": "eip155:56",
+    "name": "GeoLeaf",
+    "precision": 9,
+    "color": "#070E14",
+    "icon": "https://assets.coingecko.com/coins/images/31928/thumb/20230603_184722_0000.png?1696530736",
+    "symbol": "GLT",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x5bc4e94ce63c5470515cbddc903f813580a2a08d": {
+    "assetId": "eip155:56/bep20:0x5bc4e94ce63c5470515cbddc903f813580a2a08d",
+    "chainId": "eip155:56",
+    "name": "ENTER",
+    "precision": 18,
+    "color": "#A8F885",
+    "icon": "https://assets.coingecko.com/coins/images/31831/thumb/enter_logo_200x200.png?1696530643",
+    "symbol": "ENTER",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x5c0d0111ffc638802c9efccf55934d5c63ab3f79": {
+    "assetId": "eip155:56/bep20:0x5c0d0111ffc638802c9efccf55934d5c63ab3f79",
+    "chainId": "eip155:56",
+    "name": "Dynamic Finance",
+    "precision": 18,
+    "color": "#33363C",
+    "icon": "https://assets.coingecko.com/coins/images/28962/thumb/d-200px.png?1696527935",
+    "symbol": "DYNA",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x5c0d3c165dc46cfd5ec80bbb1bf7cb8631f9d6c7": {
+    "assetId": "eip155:56/bep20:0x5c0d3c165dc46cfd5ec80bbb1bf7cb8631f9d6c7",
+    "chainId": "eip155:56",
+    "name": "Wallet SAFU",
+    "precision": 18,
+    "color": "#F8F5F7",
+    "icon": "https://assets.coingecko.com/coins/images/29092/thumb/IMG_20230216_011917_274.jpg?1696528055",
+    "symbol": "WSAFU",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x5c10e4660ec45a89de85a1fd1b22355b0398fb66": {
+    "assetId": "eip155:56/bep20:0x5c10e4660ec45a89de85a1fd1b22355b0398fb66",
+    "chainId": "eip155:56",
+    "name": "NFTCloud",
+    "precision": 18,
+    "color": "#92744E",
+    "icon": "https://assets.coingecko.com/coins/images/29242/thumb/cloud.png?1696528198",
+    "symbol": "CLOUD",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x5c46c55a699a6359e451b2c99344138420c87261": {
+    "assetId": "eip155:56/bep20:0x5c46c55a699a6359e451b2c99344138420c87261",
+    "chainId": "eip155:56",
+    "name": "iBG Finance  BSC ",
+    "precision": 18,
+    "color": "#CF2837",
+    "icon": "https://assets.coingecko.com/coins/images/18026/thumb/IBG.png?1696517542",
+    "symbol": "IBG",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x5c4bcc4dbaeabc7659f6435bce4e659314ebad87": {
+    "assetId": "eip155:56/bep20:0x5c4bcc4dbaeabc7659f6435bce4e659314ebad87",
+    "chainId": "eip155:56",
+    "name": "NuNet on BNB Smart Chain",
+    "precision": 6,
+    "color": "#1E799A",
+    "icon": "https://assets.coingecko.com/coins/images/20950/thumb/8Zb2W2Wi_400x400.png?1696520338",
+    "symbol": "NTX",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x5c65badf7f97345b7b92776b22255c973234efe7": {
+    "assetId": "eip155:56/bep20:0x5c65badf7f97345b7b92776b22255c973234efe7",
+    "chainId": "eip155:56",
+    "name": "Local Traders",
+    "precision": 18,
+    "color": "#31276F",
+    "icon": "https://assets.coingecko.com/coins/images/27936/thumb/LT-Logo-200x200_%281%29_%281%29.png?1696526955",
+    "symbol": "LCT",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x5c7bb1e6c45b055a7831f0c82740f9677bbf6d43": {
+    "assetId": "eip155:56/bep20:0x5c7bb1e6c45b055a7831f0c82740f9677bbf6d43",
+    "chainId": "eip155:56",
+    "name": "InteractWith",
+    "precision": 18,
+    "color": "#0C90DC",
+    "icon": "https://assets.coingecko.com/coins/images/29587/thumb/Pfp_Transparent_1.png?1696528526",
+    "symbol": "INTER",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x5ca09af27b8a4f1d636380909087536bc7e2d94d": {
+    "assetId": "eip155:56/bep20:0x5ca09af27b8a4f1d636380909087536bc7e2d94d",
+    "chainId": "eip155:56",
+    "name": "Alitas",
+    "precision": 18,
+    "color": "#5C64FC",
+    "icon": "https://assets.coingecko.com/coins/images/16330/thumb/ALT.png?1696515931",
+    "symbol": "ALT",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x5ca42204cdaa70d5c773946e69de942b85ca6706": {
+    "assetId": "eip155:56/bep20:0x5ca42204cdaa70d5c773946e69de942b85ca6706",
+    "chainId": "eip155:56",
+    "name": "Position",
+    "precision": 18,
+    "color": "#1CCD90",
+    "icon": "https://assets.coingecko.com/coins/images/17459/thumb/posi.png?1696517002",
+    "symbol": "POSI",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x5ca4e7294b14ea5745ee2a688990e0cb68503219": {
+    "assetId": "eip155:56/bep20:0x5ca4e7294b14ea5745ee2a688990e0cb68503219",
+    "chainId": "eip155:56",
+    "name": "Green Beli",
+    "precision": 18,
+    "color": "#B19F19",
+    "icon": "https://assets.coingecko.com/coins/images/18776/thumb/Logo-200x200_%288%29.png?1696518240",
+    "symbol": "GRBE",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x5ca718e2c0f2e873b8de38b02ad0497e8ac38ecb": {
+    "assetId": "eip155:56/bep20:0x5ca718e2c0f2e873b8de38b02ad0497e8ac38ecb",
+    "chainId": "eip155:56",
+    "name": "Cyber DAO",
+    "precision": 18,
+    "color": "#8C4CDC",
+    "icon": "https://assets.coingecko.com/coins/images/32143/thumb/cyber200.png?1696592393",
+    "symbol": "C-DAO",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x5d0158a5c3ddf47d4ea4517d8db0d76aa2e87563": {
+    "assetId": "eip155:56/bep20:0x5d0158a5c3ddf47d4ea4517d8db0d76aa2e87563",
+    "chainId": "eip155:56",
+    "name": "Forj on BNB Smart Chain",
+    "precision": 18,
+    "color": "#343474",
+    "icon": "https://assets.coingecko.com/coins/images/13322/thumb/FORJ_twitter_twitter-linked_in_profile_%281%29.png?1696513091",
+    "symbol": "BONDLY",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x5d0e95c15ca50f13fb86938433269d03112409fe": {
+    "assetId": "eip155:56/bep20:0x5d0e95c15ca50f13fb86938433269d03112409fe",
+    "chainId": "eip155:56",
+    "name": "Knight War Spirits",
+    "precision": 18,
+    "color": "#B47D44",
+    "icon": "https://assets.coingecko.com/coins/images/18635/thumb/logo-200x200_game_kn.png?1696518106",
+    "symbol": "KWS",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x5d186e28934c6b0ff5fc2fece15d1f34f78cbd87": {
+    "assetId": "eip155:56/bep20:0x5d186e28934c6b0ff5fc2fece15d1f34f78cbd87",
+    "chainId": "eip155:56",
+    "name": "DLP Duck on BNB Smart Chain",
+    "precision": 18,
+    "color": "#262625",
+    "icon": "https://assets.coingecko.com/coins/images/13440/thumb/DLP_Duck_Token.png?1696513204",
+    "symbol": "DUCK",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x5d2f9a9df1ba3c8c00303d0b4c431897ebc6626a": {
+    "assetId": "eip155:56/bep20:0x5d2f9a9df1ba3c8c00303d0b4c431897ebc6626a",
+    "chainId": "eip155:56",
+    "name": "Ormeus Cash on BNB Smart Chain",
+    "precision": 18,
+    "color": "#24546C",
+    "icon": "https://assets.coingecko.com/coins/images/11798/thumb/Vooo8SX.png?1696511674",
+    "symbol": "OMC",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x5d33e26336c445c71f206dd18b64ce11c2eee3f0": {
+    "assetId": "eip155:56/bep20:0x5d33e26336c445c71f206dd18b64ce11c2eee3f0",
+    "chainId": "eip155:56",
+    "name": "NFTStyle",
+    "precision": 18,
+    "color": "#D26A4A",
+    "icon": "https://assets.coingecko.com/coins/images/19928/thumb/nftstyle.PNG?1696519347",
+    "symbol": "NFTSTYLE",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x5d37abafd5498b0e7af753a2e83bd4f0335aa89f": {
+    "assetId": "eip155:56/bep20:0x5d37abafd5498b0e7af753a2e83bd4f0335aa89f",
+    "chainId": "eip155:56",
+    "name": "WECOIN",
+    "precision": 18,
+    "color": "#245CF4",
+    "icon": "https://assets.coingecko.com/coins/images/30644/thumb/wecoin-logo-200x200.png?1696529515",
+    "symbol": "WECO",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x5d5c5c1d14faf8ff704295b2f502daa9d06799a0": {
+    "assetId": "eip155:56/bep20:0x5d5c5c1d14faf8ff704295b2f502daa9d06799a0",
+    "chainId": "eip155:56",
+    "name": "Novem Gold",
+    "precision": 18,
+    "color": "#AE751E",
+    "icon": "https://assets.coingecko.com/coins/images/11852/thumb/nnn.png?1696511722",
+    "symbol": "NNN",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x5d681b9839e237c4f1dc7d7486e6cb0a12b9654f": {
+    "assetId": "eip155:56/bep20:0x5d681b9839e237c4f1dc7d7486e6cb0a12b9654f",
+    "chainId": "eip155:56",
+    "name": "iOWN",
+    "precision": 18,
+    "color": "#0484CC",
+    "icon": "https://assets.coingecko.com/coins/images/8270/thumb/iOWN-Lion-Face.png?1696508473",
+    "symbol": "IOWN",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x5d684adaf3fcfe9cfb5cede3abf02f0cdd1012e3": {
+    "assetId": "eip155:56/bep20:0x5d684adaf3fcfe9cfb5cede3abf02f0cdd1012e3",
+    "chainId": "eip155:56",
+    "name": "Lien on BNB Smart Chain",
+    "precision": 8,
+    "color": "#4CFCE4",
+    "icon": "https://assets.coingecko.com/coins/images/12224/thumb/Lien.png?1696512057",
+    "symbol": "LIEN",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x5db5efaea47662677f2d401504520ce2ea866638": {
+    "assetId": "eip155:56/bep20:0x5db5efaea47662677f2d401504520ce2ea866638",
+    "chainId": "eip155:56",
+    "name": "BlockChainCoinX on BNB Smart Chain",
+    "precision": 4,
+    "color": "#D6D6D6",
+    "icon": "https://assets.coingecko.com/coins/images/32276/thumb/xccxx.png?1697180263",
+    "symbol": "XCCX",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x5dc2085fe510bbaaba2119d71b09c25098caca3f": {
+    "assetId": "eip155:56/bep20:0x5dc2085fe510bbaaba2119d71b09c25098caca3f",
+    "chainId": "eip155:56",
+    "name": "RYI Unity",
+    "precision": 9,
+    "color": "#1B3A61",
+    "icon": "https://assets.coingecko.com/coins/images/14512/thumb/9fe7dc47-100d-4d9d-bfb0-63ed1aabc658.png?1697995305",
+    "symbol": "RYIU",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x5dcc2cfcaf202a9373005fa65905a7169c6c53d5": {
+    "assetId": "eip155:56/bep20:0x5dcc2cfcaf202a9373005fa65905a7169c6c53d5",
+    "chainId": "eip155:56",
+    "name": "Warp Cash",
+    "precision": 18,
+    "color": "#161616",
+    "icon": "https://assets.coingecko.com/coins/images/28895/thumb/Logo_warp_black_200x200.png?1696527871",
+    "symbol": "WARP",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x5dd1e31e1a0e2e077ac98d2a4b781f418ca50387": {
+    "assetId": "eip155:56/bep20:0x5dd1e31e1a0e2e077ac98d2a4b781f418ca50387",
+    "chainId": "eip155:56",
+    "name": "Zelwin on BNB Smart Chain",
+    "precision": 18,
+    "color": "#FCC40C",
+    "icon": "https://assets.coingecko.com/coins/images/11547/thumb/5614.png?1696511447",
+    "symbol": "ZLW",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x5ddb331c3ba48a1d68cbf50dd3bc7aac407dc115": {
+    "assetId": "eip155:56/bep20:0x5ddb331c3ba48a1d68cbf50dd3bc7aac407dc115",
+    "chainId": "eip155:56",
+    "name": "NanoMeter Bitcoin",
+    "precision": 9,
+    "color": "#FCB42C",
+    "icon": "https://assets.coingecko.com/coins/images/20059/thumb/logo_-_2021-11-09T161322.006.png?1696519477",
+    "symbol": "NMBTC",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x5de3939b2f811a61d830e6f52d13b066881412ab": {
+    "assetId": "eip155:56/bep20:0x5de3939b2f811a61d830e6f52d13b066881412ab",
+    "chainId": "eip155:56",
+    "name": "XPR Network on BNB Smart Chain",
+    "precision": 4,
+    "color": "#D5C6F7",
+    "icon": "https://assets.coingecko.com/coins/images/10941/thumb/XPR.jpg?1696510891",
+    "symbol": "XPR",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x5e4769e64c104f23adfa64a606645fa489dbcf40": {
+    "assetId": "eip155:56/bep20:0x5e4769e64c104f23adfa64a606645fa489dbcf40",
+    "chainId": "eip155:56",
+    "name": "SafeWard AI",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/33139/thumb/ZinDmHvx_400x400.jpg?1700810625",
+    "symbol": "SWI",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x5e57f24415f37c7d304e85df9b4c36bc08789794": {
+    "assetId": "eip155:56/bep20:0x5e57f24415f37c7d304e85df9b4c36bc08789794",
+    "chainId": "eip155:56",
+    "name": "Barter on BNB Smart Chain",
+    "precision": 8,
+    "color": "#EEC87E",
+    "icon": "https://assets.coingecko.com/coins/images/13401/thumb/BRTR.png?1696513163",
+    "symbol": "BRTR",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x5e5c9001aa81332d405d993ffd1468751d659d1e": {
+    "assetId": "eip155:56/bep20:0x5e5c9001aa81332d405d993ffd1468751d659d1e",
+    "chainId": "eip155:56",
+    "name": "Baby Doge Inu",
+    "precision": 9,
+    "color": "#DFD9CF",
+    "icon": "https://assets.coingecko.com/coins/images/17012/thumb/KEtLxnLH_400x400.jpg?1696516576",
+    "symbol": "BABYDOGEINU",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x5e7f472b9481c80101b22d0ba4ef4253aa61dabc": {
+    "assetId": "eip155:56/bep20:0x5e7f472b9481c80101b22d0ba4ef4253aa61dabc",
+    "chainId": "eip155:56",
+    "name": "Hero Blaze  Three Kingdoms",
+    "precision": 18,
+    "color": "#F87961",
+    "icon": "https://assets.coingecko.com/coins/images/26432/thumb/iShot_2022-07-16_09.59.28.png?1696525506",
+    "symbol": "MUDOL2",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x5e7fc3844463745fca858f85d6b90d9a03fcbe93": {
+    "assetId": "eip155:56/bep20:0x5e7fc3844463745fca858f85d6b90d9a03fcbe93",
+    "chainId": "eip155:56",
+    "name": "Safe Nebula",
+    "precision": 8,
+    "color": "#E38E99",
+    "icon": "https://assets.coingecko.com/coins/images/16944/thumb/SNB-Logo-400x400.png?1696516513",
+    "symbol": "SNB",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x5e90253fbae4dab78aa351f4e6fed08a64ab5590": {
+    "assetId": "eip155:56/bep20:0x5e90253fbae4dab78aa351f4e6fed08a64ab5590",
+    "chainId": "eip155:56",
+    "name": "Bonfire",
+    "precision": 9,
+    "color": "#F78A05",
+    "icon": "https://assets.coingecko.com/coins/images/15020/thumb/Logo_-_2021-04-27T062421.226.png?1696514682",
+    "symbol": "BONFIRE",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x5e95a952a7f79f978585afd54a053af0f51372fa": {
+    "assetId": "eip155:56/bep20:0x5e95a952a7f79f978585afd54a053af0f51372fa",
+    "chainId": "eip155:56",
+    "name": "SB Group",
+    "precision": 9,
+    "color": "#F3E1B5",
+    "icon": "https://assets.coingecko.com/coins/images/29221/thumb/SB_Group.png?1696528179",
+    "symbol": "SBG",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x5ecc4b299e23f526980c33fe35eff531a54aedb1": {
+    "assetId": "eip155:56/bep20:0x5ecc4b299e23f526980c33fe35eff531a54aedb1",
+    "chainId": "eip155:56",
+    "name": "TigerCash on BNB Smart Chain",
+    "precision": 18,
+    "color": "#A86985",
+    "icon": "https://assets.coingecko.com/coins/images/4956/thumb/tigercash-logo.png?1696505493",
+    "symbol": "TCH",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x5ece3f1542c4e1a06767457e4d8286bea772fc41": {
+    "assetId": "eip155:56/bep20:0x5ece3f1542c4e1a06767457e4d8286bea772fc41",
+    "chainId": "eip155:56",
+    "name": "Porta",
+    "precision": 18,
+    "color": "#A15AD5",
+    "icon": "https://assets.coingecko.com/coins/images/14844/thumb/Kianite.png?1696514511",
+    "symbol": "KIAN",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x5f0388ebc2b94fa8e123f404b79ccf5f40b29176": {
+    "assetId": "eip155:56/bep20:0x5f0388ebc2b94fa8e123f404b79ccf5f40b29176",
+    "chainId": "eip155:56",
+    "name": "Venus BCH",
+    "precision": 8,
+    "color": "#F6F4F4",
+    "icon": "https://assets.coingecko.com/coins/images/13922/thumb/vbch.png?1696513662",
+    "symbol": "VBCH",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x5f113f7ef20ff111fd130e83d8e97fd1e0e2518f": {
+    "assetId": "eip155:56/bep20:0x5f113f7ef20ff111fd130e83d8e97fd1e0e2518f",
+    "chainId": "eip155:56",
+    "name": "AiMalls",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/32710/thumb/AIT.png?1698988556",
+    "symbol": "AIT",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x5f26fa0c2ee5d3c0323d861d0c503f31ac212662": {
+    "assetId": "eip155:56/bep20:0x5f26fa0c2ee5d3c0323d861d0c503f31ac212662",
+    "chainId": "eip155:56",
+    "name": "Chronicle on BNB Smart Chain",
+    "precision": 18,
+    "color": "#04E4CB",
+    "icon": "https://assets.coingecko.com/coins/images/18413/thumb/xnl_logo.png?1696517903",
+    "symbol": "XNL",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x5f2f6c4c491b690216e0f8ea753ff49ef4e36ba6": {
+    "assetId": "eip155:56/bep20:0x5f2f6c4c491b690216e0f8ea753ff49ef4e36ba6",
+    "chainId": "eip155:56",
+    "name": "Metaland Shares",
+    "precision": 18,
+    "color": "#AFB59F",
+    "icon": "https://assets.coingecko.com/coins/images/25665/thumb/I3pUwLZp_400x400.jpg?1696524794",
+    "symbol": "MLS",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x5f320c3b8f82acfe8f2bb1c85d63aa66a7ff524f": {
+    "assetId": "eip155:56/bep20:0x5f320c3b8f82acfe8f2bb1c85d63aa66a7ff524f",
+    "chainId": "eip155:56",
+    "name": "Nelore Coin",
+    "precision": 9,
+    "color": "#061D1B",
+    "icon": "https://assets.coingecko.com/coins/images/26208/thumb/NLC.jpg?1696525294",
+    "symbol": "NLC",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x5f39dd1bb6db20f3e792c4489f514794cac6392c": {
+    "assetId": "eip155:56/bep20:0x5f39dd1bb6db20f3e792c4489f514794cac6392c",
+    "chainId": "eip155:56",
+    "name": "PlayNity on BNB Smart Chain",
+    "precision": 6,
+    "color": "#128FCF",
+    "icon": "https://assets.coingecko.com/coins/images/21479/thumb/ply.png?1696520840",
+    "symbol": "PLY",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x5f4bde007dc06b867f86ebfe4802e34a1ffeed63": {
+    "assetId": "eip155:56/bep20:0x5f4bde007dc06b867f86ebfe4802e34a1ffeed63",
+    "chainId": "eip155:56",
+    "name": "Highstreet on BNB Smart Chain",
+    "precision": 18,
+    "color": "#04D7E3",
+    "icon": "https://assets.coingecko.com/coins/images/18973/thumb/logosq200200Coingecko.png?1696518427",
+    "symbol": "HIGH",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x5f50411cde3eec27b0eac21691b4e500c69a5a2e": {
+    "assetId": "eip155:56/bep20:0x5f50411cde3eec27b0eac21691b4e500c69a5a2e",
+    "chainId": "eip155:56",
+    "name": "Singularity",
+    "precision": 18,
+    "color": "#040404",
+    "icon": "https://assets.coingecko.com/coins/images/22071/thumb/sgly_square.png?1696521415",
+    "symbol": "SGLY",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x5f54b428f08bcf68c8c1dc07db9971040e5997ec": {
+    "assetId": "eip155:56/bep20:0x5f54b428f08bcf68c8c1dc07db9971040e5997ec",
+    "chainId": "eip155:56",
+    "name": "BlockRock",
+    "precision": 18,
+    "color": "#E4C41C",
+    "icon": "https://assets.coingecko.com/coins/images/27846/thumb/Logo-200x200-1.png?1696526866",
+    "symbol": "BRO",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x5f588efaf8eb57e3837486e834fc5a4e07768d98": {
+    "assetId": "eip155:56/bep20:0x5f588efaf8eb57e3837486e834fc5a4e07768d98",
+    "chainId": "eip155:56",
+    "name": "MVL on BNB Smart Chain",
+    "precision": 18,
+    "color": "#0C2C3E",
+    "icon": "https://assets.coingecko.com/coins/images/3476/thumb/mass-vehicle-ledger.png?1696504164",
+    "symbol": "MVL",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x5f84ce30dc3cf7909101c69086c50de191895883": {
+    "assetId": "eip155:56/bep20:0x5f84ce30dc3cf7909101c69086c50de191895883",
+    "chainId": "eip155:56",
+    "name": "Venus Reward",
+    "precision": 18,
+    "color": "#FADB4B",
+    "icon": "https://assets.coingecko.com/coins/images/15734/thumb/vrt-venus-token.png?1696515360",
+    "symbol": "VRT",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x5fb4968fc85868df3ad2d6e59883a10570f01d18": {
+    "assetId": "eip155:56/bep20:0x5fb4968fc85868df3ad2d6e59883a10570f01d18",
+    "chainId": "eip155:56",
+    "name": "Share on BNB Smart Chain",
+    "precision": 18,
+    "color": "#E0F2F6",
+    "icon": "https://assets.coingecko.com/coins/images/3609/thumb/74586729_2443914875881351_2785018663453851648_n.png?1696504289",
+    "symbol": "SHR",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x5fc6179fcf814fcd4344ee03376ba717a95992b6": {
+    "assetId": "eip155:56/bep20:0x5fc6179fcf814fcd4344ee03376ba717a95992b6",
+    "chainId": "eip155:56",
+    "name": "Victorum",
+    "precision": 18,
+    "color": "#434343",
+    "icon": "https://assets.coingecko.com/coins/images/17391/thumb/Victorum-logo200X200.png?1696516940",
+    "symbol": "VCC",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x5fdab5bdbad5277b383b3482d085f4bfef68828c": {
+    "assetId": "eip155:56/bep20:0x5fdab5bdbad5277b383b3482d085f4bfef68828c",
+    "chainId": "eip155:56",
+    "name": "DeFiHorse",
+    "precision": 18,
+    "color": "#6B4AB9",
+    "icon": "https://assets.coingecko.com/coins/images/24293/thumb/uxwvJpWa_400x400.jpg?1696523475",
+    "symbol": "DFH",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x5fe80d2cd054645b9419657d3d10d26391780a7b": {
+    "assetId": "eip155:56/bep20:0x5fe80d2cd054645b9419657d3d10d26391780a7b",
+    "chainId": "eip155:56",
+    "name": "MUX Protocol on BNB Smart Chain",
+    "precision": 18,
+    "color": "#6ACFD8",
+    "icon": "https://assets.coingecko.com/coins/images/11796/thumb/mux.jpg?1696511672",
+    "symbol": "MCB",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x5fead99998788ac1bca768796483d899f1aef4c4": {
+    "assetId": "eip155:56/bep20:0x5fead99998788ac1bca768796483d899f1aef4c4",
+    "chainId": "eip155:56",
+    "name": "Jindo Inu",
+    "precision": 18,
+    "color": "#C7A489",
+    "icon": "https://assets.coingecko.com/coins/images/15521/thumb/_POP28D3_400x400.jpg?1696515164",
+    "symbol": "JIND",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x602ba546a7b06e0fc7f58fd27eb6996ecc824689": {
+    "assetId": "eip155:56/bep20:0x602ba546a7b06e0fc7f58fd27eb6996ecc824689",
+    "chainId": "eip155:56",
+    "name": "PinkSale",
+    "precision": 18,
+    "color": "#FCEBF3",
+    "icon": "https://assets.coingecko.com/coins/images/17377/thumb/4cC4Fgs.png?1696516927",
+    "symbol": "PINKSALE",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x60322971a672b81bcce5947706d22c19daecf6fb": {
+    "assetId": "eip155:56/bep20:0x60322971a672b81bcce5947706d22c19daecf6fb",
+    "chainId": "eip155:56",
+    "name": "MarsDAO",
+    "precision": 18,
+    "color": "#FC5C04",
+    "icon": "https://assets.coingecko.com/coins/images/24126/thumb/mdao.png?1696523317",
+    "symbol": "MDAO",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x603c7f932ed1fc6575303d8fb018fdcbb0f39a95": {
+    "assetId": "eip155:56/bep20:0x603c7f932ed1fc6575303d8fb018fdcbb0f39a95",
+    "chainId": "eip155:56",
+    "name": "ApeSwap on BNB Smart Chain",
+    "precision": 18,
+    "color": "#FCF4E3",
+    "icon": "https://assets.coingecko.com/coins/images/14870/thumb/banana.png?1696514534",
+    "symbol": "BANANA",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x606379220ab266bbe4b0fef8469e6e602f295a84": {
+    "assetId": "eip155:56/bep20:0x606379220ab266bbe4b0fef8469e6e602f295a84",
+    "chainId": "eip155:56",
+    "name": "Glow Token",
+    "precision": 18,
+    "color": "#040505",
+    "icon": "https://assets.coingecko.com/coins/images/29003/thumb/output-onlinepngtools.png?1696527975",
+    "symbol": "GLOW",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x6067490d05f3cf2fdffc0e353b1f5fd6e5ccdf70": {
+    "assetId": "eip155:56/bep20:0x6067490d05f3cf2fdffc0e353b1f5fd6e5ccdf70",
+    "chainId": "eip155:56",
+    "name": "Market Making Pro",
+    "precision": 18,
+    "color": "#34CC64",
+    "icon": "https://assets.coingecko.com/coins/images/20386/thumb/MMPRO_LOGO_W.png?1696519796",
+    "symbol": "MMPRO",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x6120ba0b3538e40aa7aac32558e5dd0737b7ac90": {
+    "assetId": "eip155:56/bep20:0x6120ba0b3538e40aa7aac32558e5dd0737b7ac90",
+    "chainId": "eip155:56",
+    "name": "JesusCoin",
+    "precision": 9,
+    "color": "#703D2F",
+    "icon": "https://assets.coingecko.com/coins/images/30625/thumb/logo_200px.png?1696529499",
+    "symbol": "JESUS",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x6125adcab2f171bc70cfe2caecfec5509273a86a": {
+    "assetId": "eip155:56/bep20:0x6125adcab2f171bc70cfe2caecfec5509273a86a",
+    "chainId": "eip155:56",
+    "name": "MetaGaming Guild on BNB Smart Chain",
+    "precision": 18,
+    "color": "#090807",
+    "icon": "https://assets.coingecko.com/coins/images/23287/thumb/mgg.png?1696522506",
+    "symbol": "MGG",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x612e1726435fe38dd49a0b35b4065b56f49c8f11": {
+    "assetId": "eip155:56/bep20:0x612e1726435fe38dd49a0b35b4065b56f49c8f11",
+    "chainId": "eip155:56",
+    "name": "CryptoCart V2 on BNB Smart Chain",
+    "precision": 18,
+    "color": "#051A28",
+    "icon": "https://assets.coingecko.com/coins/images/15210/thumb/DP7-T6rox-400x400_%281%29.png?1696514866",
+    "symbol": "CCV2",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x6169b3b23e57de79a6146a2170980ceb1f83b9e0": {
+    "assetId": "eip155:56/bep20:0x6169b3b23e57de79a6146a2170980ceb1f83b9e0",
+    "chainId": "eip155:56",
+    "name": "Vetter",
+    "precision": 9,
+    "color": "#248874",
+    "icon": "https://assets.coingecko.com/coins/images/19235/thumb/Vetter_Logo.jpg?1696518681",
+    "symbol": "VETTER",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x617724974218a18769020a70162165a539c07e8a": {
+    "assetId": "eip155:56/bep20:0x617724974218a18769020a70162165a539c07e8a",
+    "chainId": "eip155:56",
+    "name": "Olive Cash on BNB Smart Chain",
+    "precision": 18,
+    "color": "#B9844B",
+    "icon": "https://assets.coingecko.com/coins/images/14880/thumb/2_%285%29.png?1696514544",
+    "symbol": "OLIVE",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x617ba3d39e96c084e60c6db3f7b365a96ee4e555": {
+    "assetId": "eip155:56/bep20:0x617ba3d39e96c084e60c6db3f7b365a96ee4e555",
+    "chainId": "eip155:56",
+    "name": "Interstellar Domain Order",
+    "precision": 9,
+    "color": "#145956",
+    "icon": "https://assets.coingecko.com/coins/images/20523/thumb/logo_-_2021-11-18T065417.612.png?1696519928",
+    "symbol": "IDO",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x61909950e1bfb5d567c5463cbd33dc1cdc85ee93": {
+    "assetId": "eip155:56/bep20:0x61909950e1bfb5d567c5463cbd33dc1cdc85ee93",
+    "chainId": "eip155:56",
+    "name": "Lithosphere",
+    "precision": 18,
+    "color": "#54A2F6",
+    "icon": "https://assets.coingecko.com/coins/images/21128/thumb/6gizpBLn.png?1696520507",
+    "symbol": "LITHO",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x61a802de6327a05dda95812ae1535109599f7df2": {
+    "assetId": "eip155:56/bep20:0x61a802de6327a05dda95812ae1535109599f7df2",
+    "chainId": "eip155:56",
+    "name": "VICUNA",
+    "precision": 18,
+    "color": "#DC1474",
+    "icon": "https://assets.coingecko.com/coins/images/28261/thumb/light-removebg-preview.png?1696527263",
+    "symbol": "VINA",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x61b83edf87ea662c695439a807c386455c9e797c": {
+    "assetId": "eip155:56/bep20:0x61b83edf87ea662c695439a807c386455c9e797c",
+    "chainId": "eip155:56",
+    "name": "Ignore Fud on BNB Smart Chain",
+    "precision": 18,
+    "color": "#B6E9B8",
+    "icon": "https://assets.coingecko.com/coins/images/29626/thumb/200x200.png?1696528562",
+    "symbol": "4TOKEN",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x61ceb7a1c334c297cd9ac3c7e6b6150690de10eb": {
+    "assetId": "eip155:56/bep20:0x61ceb7a1c334c297cd9ac3c7e6b6150690de10eb",
+    "chainId": "eip155:56",
+    "name": "RabbitSwap",
+    "precision": 8,
+    "color": "#4CDAE2",
+    "icon": "https://assets.coingecko.com/coins/images/28519/thumb/200x200.png?1696527512",
+    "symbol": "RABBIT",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x61d5822dd7b3ed495108733e6550d4529480c8f6": {
+    "assetId": "eip155:56/bep20:0x61d5822dd7b3ed495108733e6550d4529480c8f6",
+    "chainId": "eip155:56",
+    "name": "Pancake Games on BNB Smart Chain",
+    "precision": 18,
+    "color": "#F5FAF5",
+    "icon": "https://assets.coingecko.com/coins/images/20217/thumb/6oc-L2UC_400x400.png?1696519627",
+    "symbol": "GCAKE",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x61dc650c10ec3c758d251cd2d1ab45af1a43e941": {
+    "assetId": "eip155:56/bep20:0x61dc650c10ec3c758d251cd2d1ab45af1a43e941",
+    "chainId": "eip155:56",
+    "name": "Rangers Protocol on BNB Smart Chain",
+    "precision": 18,
+    "color": "#A28572",
+    "icon": "https://assets.coingecko.com/coins/images/18791/thumb/tO8MlqiM_400x400.png?1633421196",
+    "symbol": "RPG",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x61fa01129ac0bb124d1c60dc9f735c6c579a858b": {
+    "assetId": "eip155:56/bep20:0x61fa01129ac0bb124d1c60dc9f735c6c579a858b",
+    "chainId": "eip155:56",
+    "name": "Kyte One on BNB Smart Chain",
+    "precision": 18,
+    "color": "#B8B1B6",
+    "icon": "https://assets.coingecko.com/coins/images/25225/thumb/3l4OKCIt_400x400.png?1696524367",
+    "symbol": "KTE",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x620801044426b32fa9dfb24c1412e0ea158e090f": {
+    "assetId": "eip155:56/bep20:0x620801044426b32fa9dfb24c1412e0ea158e090f",
+    "chainId": "eip155:56",
+    "name": "FlokiFi",
+    "precision": 9,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/32740/thumb/flokifi_%281%29.jpg?1699239349",
+    "symbol": "FLOKIFI",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x62175af6d9b045d8435cdedd9bf542c7bcc56dcc": {
+    "assetId": "eip155:56/bep20:0x62175af6d9b045d8435cdedd9bf542c7bcc56dcc",
+    "chainId": "eip155:56",
+    "name": "Safe",
+    "precision": 18,
+    "color": "#DFEDFC",
+    "icon": "https://assets.coingecko.com/coins/images/22451/thumb/safelogo_%282%29.png?1696521775",
+    "symbol": "SAFE",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x6249428345819cac8b8c7f1f68771073cb689ab1": {
+    "assetId": "eip155:56/bep20:0x6249428345819cac8b8c7f1f68771073cb689ab1",
+    "chainId": "eip155:56",
+    "name": "BNB Bank",
+    "precision": 18,
+    "color": "#126881",
+    "icon": "https://assets.coingecko.com/coins/images/22510/thumb/Final-Logo_1.png?1696521833",
+    "symbol": "BBK",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x624b9b1ac0fb350aed8389a51b26e36147e158c3": {
+    "assetId": "eip155:56/bep20:0x624b9b1ac0fb350aed8389a51b26e36147e158c3",
+    "chainId": "eip155:56",
+    "name": "Nero Token",
+    "precision": 9,
+    "color": "#7E5027",
+    "icon": "https://assets.coingecko.com/coins/images/31492/thumb/B3CDA9E7-1969-4617-BBAE-737BA6BF2E0E.jpeg?1696530303",
+    "symbol": "NERO",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x62529d7de8293217c8f74d60c8c0f6481de47f0e": {
+    "assetId": "eip155:56/bep20:0x62529d7de8293217c8f74d60c8c0f6481de47f0e",
+    "chainId": "eip155:56",
+    "name": "Daylight Protocol",
+    "precision": 18,
+    "color": "#C4962A",
+    "icon": "https://assets.coingecko.com/coins/images/29173/thumb/DAYL_Ticker.png?1696528131",
+    "symbol": "DAYL",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x626b596dd10467ea969179235123f884e133074a": {
+    "assetId": "eip155:56/bep20:0x626b596dd10467ea969179235123f884e133074a",
+    "chainId": "eip155:56",
+    "name": "Unleashed Beast",
+    "precision": 18,
+    "color": "#F0B92B",
+    "icon": "https://assets.coingecko.com/coins/images/31500/thumb/BEAST-004-Custom_%282%29.png?1696530311",
+    "symbol": "BEAST",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x626cab57051e80f4b84551856588b62983bdb94e": {
+    "assetId": "eip155:56/bep20:0x626cab57051e80f4b84551856588b62983bdb94e",
+    "chainId": "eip155:56",
+    "name": "RabbitKing",
+    "precision": 18,
+    "color": "#AD8C53",
+    "icon": "https://assets.coingecko.com/coins/images/28994/thumb/rabbit.JPG?1696527966",
+    "symbol": "RB",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x62823659d09f9f9d2222058878f89437425eb261": {
+    "assetId": "eip155:56/bep20:0x62823659d09f9f9d2222058878f89437425eb261",
+    "chainId": "eip155:56",
+    "name": "Ertha",
+    "precision": 18,
+    "color": "#050505",
+    "icon": "https://assets.coingecko.com/coins/images/20317/thumb/Ry9tgUal_400x400.jpg?1696519720",
+    "symbol": "ERTHA",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x62858686119135cc00c4a3102b436a0eb314d402": {
+    "assetId": "eip155:56/bep20:0x62858686119135cc00c4a3102b436a0eb314d402",
+    "chainId": "eip155:56",
+    "name": "MetaVPad",
+    "precision": 18,
+    "color": "#242C2C",
+    "icon": "https://assets.coingecko.com/coins/images/21397/thumb/metav.png?1696520761",
+    "symbol": "METAV",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x62891201468a517eeec00fe72f33595a3f9047ee": {
+    "assetId": "eip155:56/bep20:0x62891201468a517eeec00fe72f33595a3f9047ee",
+    "chainId": "eip155:56",
+    "name": "Supreme Finance",
+    "precision": 18,
+    "color": "#CC1A1D",
+    "icon": "https://assets.coingecko.com/coins/images/24675/thumb/8130.png?1696523843",
+    "symbol": "HYPE",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x6289812163af9421e566b3d74774074fac2a0441": {
+    "assetId": "eip155:56/bep20:0x6289812163af9421e566b3d74774074fac2a0441",
+    "chainId": "eip155:56",
+    "name": "Crusaders of Crypto",
+    "precision": 9,
+    "color": "#675149",
+    "icon": "https://assets.coingecko.com/coins/images/17178/thumb/crusaders.PNG?1696516736",
+    "symbol": "CRUSADER",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x62d0a8458ed7719fdaf978fe5929c6d342b0bfce": {
+    "assetId": "eip155:56/bep20:0x62d0a8458ed7719fdaf978fe5929c6d342b0bfce",
+    "chainId": "eip155:56",
+    "name": "Beam on BNB Smart Chain",
+    "precision": 18,
+    "color": "#FC5354",
+    "icon": "https://assets.coingecko.com/coins/images/32417/thumb/chain-logo.png?1698114384",
+    "symbol": "BEAM",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x630d98424efe0ea27fb1b3ab7741907dffeaad78": {
+    "assetId": "eip155:56/bep20:0x630d98424efe0ea27fb1b3ab7741907dffeaad78",
+    "chainId": "eip155:56",
+    "name": "PEAKDEFI on BNB Smart Chain",
+    "precision": 8,
+    "color": "#32322F",
+    "icon": "https://assets.coingecko.com/coins/images/9626/thumb/PEAKDEFI_Logo_250x250.png?1696509698",
+    "symbol": "PEAK",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x631c2f0edabac799f07550aee4ff0bf7fd35212b": {
+    "assetId": "eip155:56/bep20:0x631c2f0edabac799f07550aee4ff0bf7fd35212b",
+    "chainId": "eip155:56",
+    "name": "Poollotto finance",
+    "precision": 18,
+    "color": "#8E4D04",
+    "icon": "https://assets.coingecko.com/coins/images/21425/thumb/polotto.png?1696520788",
+    "symbol": "PLT",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x631e20a3b5f523499ae4f5d6239d36f1cd0ddf8e": {
+    "assetId": "eip155:56/bep20:0x631e20a3b5f523499ae4f5d6239d36f1cd0ddf8e",
+    "chainId": "eip155:56",
+    "name": "Cacom",
+    "precision": 18,
+    "color": "#1860FC",
+    "icon": "https://assets.coingecko.com/coins/images/30951/thumb/IMG_20230710_221155_578.png?1696529789",
+    "symbol": "CACOM",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x63290fc683d11ea077aba09596ff7387d49df912": {
+    "assetId": "eip155:56/bep20:0x63290fc683d11ea077aba09596ff7387d49df912",
+    "chainId": "eip155:56",
+    "name": "Ramifi Protocol",
+    "precision": 9,
+    "color": "#0C0C0C",
+    "icon": "https://assets.coingecko.com/coins/images/14602/thumb/76572462.png?1696514280",
+    "symbol": "RAM",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x632b8c4e95b2f8a9309417f8d990ab9c04c77369": {
+    "assetId": "eip155:56/bep20:0x632b8c4e95b2f8a9309417f8d990ab9c04c77369",
+    "chainId": "eip155:56",
+    "name": "Weble Ecosystem on BNB Smart Chain",
+    "precision": 18,
+    "color": "#98BBC8",
+    "icon": "https://assets.coingecko.com/coins/images/17353/thumb/cropped-logo-wombat.png?1696516905",
+    "symbol": "WET",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x633237c6fa30fae46cc5bb22014da30e50a718cc": {
+    "assetId": "eip155:56/bep20:0x633237c6fa30fae46cc5bb22014da30e50a718cc",
+    "chainId": "eip155:56",
+    "name": "Defi Warrior",
+    "precision": 18,
+    "color": "#C6D1B3",
+    "icon": "https://assets.coingecko.com/coins/images/18208/thumb/defi_warrior.PNG?1696517706",
+    "symbol": "FIWA",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x6359f0d2004433d2a38b03dce8f966cc243f1da9": {
+    "assetId": "eip155:56/bep20:0x6359f0d2004433d2a38b03dce8f966cc243f1da9",
+    "chainId": "eip155:56",
+    "name": "Food Bank",
+    "precision": 9,
+    "color": "#FC6C04",
+    "icon": "https://assets.coingecko.com/coins/images/24147/thumb/food.png?1696523338",
+    "symbol": "FOOD",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x637c2173f6e678ac3c9b43b6665c760dc6021c13": {
+    "assetId": "eip155:56/bep20:0x637c2173f6e678ac3c9b43b6665c760dc6021c13",
+    "chainId": "eip155:56",
+    "name": "World Mobile Token on BNB Smart Chain",
+    "precision": 6,
+    "color": "#D41C6C",
+    "icon": "https://assets.coingecko.com/coins/images/17333/thumb/Colored_Token.png?1696516885",
+    "symbol": "WMT",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x638eebe886b0e9e7c6929e69490064a6c94d204d": {
+    "assetId": "eip155:56/bep20:0x638eebe886b0e9e7c6929e69490064a6c94d204d",
+    "chainId": "eip155:56",
+    "name": "Hector Network",
+    "precision": 9,
+    "color": "#A6A5A4",
+    "icon": "https://assets.coingecko.com/coins/images/19832/thumb/logo-final.png?1696519255",
+    "symbol": "HEC",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x6397de0f9aedc0f7a8fa8b438dde883b9c201010": {
+    "assetId": "eip155:56/bep20:0x6397de0f9aedc0f7a8fa8b438dde883b9c201010",
+    "chainId": "eip155:56",
+    "name": "Sinverse",
+    "precision": 18,
+    "color": "#EBACC1",
+    "icon": "https://assets.coingecko.com/coins/images/19291/thumb/Sin_Verse_Logo_White_Text_White_Windows.png?1696518734",
+    "symbol": "SIN",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x63bc9770ea9a2f21df6cc1224d64d8dec9c61a74": {
+    "assetId": "eip155:56/bep20:0x63bc9770ea9a2f21df6cc1224d64d8dec9c61a74",
+    "chainId": "eip155:56",
+    "name": "Popcoin",
+    "precision": 18,
+    "color": "#FBC52A",
+    "icon": "https://assets.coingecko.com/coins/images/28160/thumb/Popcoin-logo-200x200.png?1696527164",
+    "symbol": "POP",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x63d0761ab9705ce0af64e78664a64e550cc53b92": {
+    "assetId": "eip155:56/bep20:0x63d0761ab9705ce0af64e78664a64e550cc53b92",
+    "chainId": "eip155:56",
+    "name": "ZKGAP",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/33075/thumb/icon.png?1700599964",
+    "symbol": "ZKGAP",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x63e77cf206801782239d4f126cfa22b517fb4edb": {
+    "assetId": "eip155:56/bep20:0x63e77cf206801782239d4f126cfa22b517fb4edb",
+    "chainId": "eip155:56",
+    "name": "Sensi",
+    "precision": 9,
+    "color": "#6428A2",
+    "icon": "https://assets.coingecko.com/coins/images/25449/thumb/xdirLdlX_400x400.png?1696524581",
+    "symbol": "SENSI",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x63eaeb6e33e11252b10553900a9f38a9ed172871": {
+    "assetId": "eip155:56/bep20:0x63eaeb6e33e11252b10553900a9f38a9ed172871",
+    "chainId": "eip155:56",
+    "name": "Tenup on BNB Smart Chain",
+    "precision": 18,
+    "color": "#3481C1",
+    "icon": "https://assets.coingecko.com/coins/images/6254/thumb/uphIf44J_400x400.jpg?1696506637",
+    "symbol": "TUP",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x63f79d1de735c922cfce240b6c1cc30a00214f8c": {
+    "assetId": "eip155:56/bep20:0x63f79d1de735c922cfce240b6c1cc30a00214f8c",
+    "chainId": "eip155:56",
+    "name": "Baby Meme Coin",
+    "precision": 9,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/32806/thumb/xu-40_1-2.png?1699454686",
+    "symbol": "BABYMEME",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x64048a7eecf3a2f1ba9e144aac3d7db6e58f555e": {
+    "assetId": "eip155:56/bep20:0x64048a7eecf3a2f1ba9e144aac3d7db6e58f555e",
+    "chainId": "eip155:56",
+    "name": "Frax Ether on BNB Smart Chain",
+    "precision": 18,
+    "color": "#B3B3B3",
+    "icon": "https://assets.coingecko.com/coins/images/28284/thumb/frxETH_icon.png?1696527284",
+    "symbol": "FRXETH",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x641a6dc991a49f7be9fe3c72c5d0fbb223edb12f": {
+    "assetId": "eip155:56/bep20:0x641a6dc991a49f7be9fe3c72c5d0fbb223edb12f",
+    "chainId": "eip155:56",
+    "name": "Realfinance Network",
+    "precision": 18,
+    "color": "#0E040D",
+    "icon": "https://assets.coingecko.com/coins/images/15194/thumb/high.png?1696514851",
+    "symbol": "REFI",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x641ec142e67ab213539815f67e4276975c2f8d50": {
+    "assetId": "eip155:56/bep20:0x641ec142e67ab213539815f67e4276975c2f8d50",
+    "chainId": "eip155:56",
+    "name": "DogeKing",
+    "precision": 18,
+    "color": "#393426",
+    "icon": "https://assets.coingecko.com/coins/images/23349/thumb/kq245eMw_400x400.jpg?1696522565",
+    "symbol": "DOGEKING",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x6421531af54c7b14ea805719035ebf1e3661c44a": {
+    "assetId": "eip155:56/bep20:0x6421531af54c7b14ea805719035ebf1e3661c44a",
+    "chainId": "eip155:56",
+    "name": "BEP20 LEO",
+    "precision": 3,
+    "color": "#B66434",
+    "icon": "https://assets.coingecko.com/coins/images/18764/thumb/2bP4pJr4wVimqCWjYimXJe2cnCgnAD5Au3rAU7JkDc2.png?1696518229",
+    "symbol": "BLEO",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x644192291cc835a93d6330b24ea5f5fedd0eef9e": {
+    "assetId": "eip155:56/bep20:0x644192291cc835a93d6330b24ea5f5fedd0eef9e",
+    "chainId": "eip155:56",
+    "name": "AllianceBlock Nexera on BNB Smart Chain",
+    "precision": 18,
+    "color": "#6B6CF9",
+    "icon": "https://assets.coingecko.com/coins/images/29181/thumb/nxra.png?1696528139",
+    "symbol": "NXRA",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x6448be0ca45a7581d9c4c9dd665e14ec60b25113": {
+    "assetId": "eip155:56/bep20:0x6448be0ca45a7581d9c4c9dd665e14ec60b25113",
+    "chainId": "eip155:56",
+    "name": "Biokript",
+    "precision": 18,
+    "color": "#151932",
+    "icon": "https://assets.coingecko.com/coins/images/30887/thumb/dNuo9C5F_400x400.jpg?1696529734",
+    "symbol": "BKPT",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x6451c6484d23889003c20be51819d6aa7dbd2b35": {
+    "assetId": "eip155:56/bep20:0x6451c6484d23889003c20be51819d6aa7dbd2b35",
+    "chainId": "eip155:56",
+    "name": "POLYSPORTS on BNB Smart Chain",
+    "precision": 18,
+    "color": "#E3E7E6",
+    "icon": "https://assets.coingecko.com/coins/images/25070/thumb/L-T2x_cG_400x400.jpg?1696524218",
+    "symbol": "PS1",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x64619f611248256f7f4b72fe83872f89d5d60d64": {
+    "assetId": "eip155:56/bep20:0x64619f611248256f7f4b72fe83872f89d5d60d64",
+    "chainId": "eip155:56",
+    "name": "Quint",
+    "precision": 18,
+    "color": "#14F4CB",
+    "icon": "https://assets.coingecko.com/coins/images/25194/thumb/logo-200x200.png?1696524338",
+    "symbol": "QUINT",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x64ac7203e106448ac2ec5e05d5045f5b02104e4d": {
+    "assetId": "eip155:56/bep20:0x64ac7203e106448ac2ec5e05d5045f5b02104e4d",
+    "chainId": "eip155:56",
+    "name": "AstroAI",
+    "precision": 18,
+    "color": "#1E252E",
+    "icon": "https://assets.coingecko.com/coins/images/29443/thumb/Untitled_design_%2825%29.png?1696528390",
+    "symbol": "ASTROAI",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x64e93084a4e539b7b60a1b247756373c8b4a1db3": {
+    "assetId": "eip155:56/bep20:0x64e93084a4e539b7b60a1b247756373c8b4a1db3",
+    "chainId": "eip155:56",
+    "name": "KabosuCEO",
+    "precision": 9,
+    "color": "#3D153E",
+    "icon": "https://assets.coingecko.com/coins/images/29498/thumb/555.png?1696528443",
+    "symbol": "KCEO",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x64f36701138f0e85cc10c34ea535fdbadcb54147": {
+    "assetId": "eip155:56/bep20:0x64f36701138f0e85cc10c34ea535fdbadcb54147",
+    "chainId": "eip155:56",
+    "name": "Anon Inu",
+    "precision": 9,
+    "color": "#0F0F0F",
+    "icon": "https://assets.coingecko.com/coins/images/17151/thumb/LOGO-AINU-COIN-GECKO.png?1696516711",
+    "symbol": "AINU",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x6507458bb53aec6be863161641ec28739c41cc97": {
+    "assetId": "eip155:56/bep20:0x6507458bb53aec6be863161641ec28739c41cc97",
+    "chainId": "eip155:56",
+    "name": "FootballStars",
+    "precision": 18,
+    "color": "#149287",
+    "icon": "https://assets.coingecko.com/coins/images/15627/thumb/footballstars.PNG?1696515260",
+    "symbol": "FTS",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x650b940a1033b8a1b1873f78730fcfc73ec11f1f": {
+    "assetId": "eip155:56/bep20:0x650b940a1033b8a1b1873f78730fcfc73ec11f1f",
+    "chainId": "eip155:56",
+    "name": "Venus LINK",
+    "precision": 8,
+    "color": "#3D4855",
+    "icon": "https://assets.coingecko.com/coins/images/13923/thumb/vlink.png?1696513663",
+    "symbol": "VLINK",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x651189c8c0abbd79d51af276aa241915ca782b21": {
+    "assetId": "eip155:56/bep20:0x651189c8c0abbd79d51af276aa241915ca782b21",
+    "chainId": "eip155:56",
+    "name": "Pong Heroes",
+    "precision": 18,
+    "color": "#FCE0F8",
+    "icon": "https://assets.coingecko.com/coins/images/29139/thumb/Pong_Token_Symbol_Logo.png?1696528100",
+    "symbol": "PONG",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x6519cb1f694ccbcc72417570b364f2d051eefb9d": {
+    "assetId": "eip155:56/bep20:0x6519cb1f694ccbcc72417570b364f2d051eefb9d",
+    "chainId": "eip155:56",
+    "name": "NoLimitCoin",
+    "precision": 8,
+    "color": "#F0B824",
+    "icon": "https://assets.coingecko.com/coins/images/758/thumb/nolimitcoin.png?1696501911",
+    "symbol": "NLC",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x651a89fed302227d41425235f8e934502fb94c48": {
+    "assetId": "eip155:56/bep20:0x651a89fed302227d41425235f8e934502fb94c48",
+    "chainId": "eip155:56",
+    "name": "ADAcash",
+    "precision": 18,
+    "color": "#D7BE90",
+    "icon": "https://assets.coingecko.com/coins/images/19509/thumb/adacash.png?1696518943",
+    "symbol": "ADACASH",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x655e1cb3f2c81c76856302679648df698a5f1989": {
+    "assetId": "eip155:56/bep20:0x655e1cb3f2c81c76856302679648df698a5f1989",
+    "chainId": "eip155:56",
+    "name": "GLI",
+    "precision": 9,
+    "color": "#462C38",
+    "icon": "https://assets.coingecko.com/coins/images/32014/thumb/gli.png?1696530812",
+    "symbol": "GLI",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x657b632714e08ac66b79444ad3f3875526ee6689": {
+    "assetId": "eip155:56/bep20:0x657b632714e08ac66b79444ad3f3875526ee6689",
+    "chainId": "eip155:56",
+    "name": "Ftribe Fighters",
+    "precision": 18,
+    "color": "#1CC45B",
+    "icon": "https://assets.coingecko.com/coins/images/22250/thumb/d2pxPhBW_400x400.png?1696521595",
+    "symbol": "F2C",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x658a109c5900bc6d2357c87549b651670e5b0539": {
+    "assetId": "eip155:56/bep20:0x658a109c5900bc6d2357c87549b651670e5b0539",
+    "chainId": "eip155:56",
+    "name": "ForTube on BNB Smart Chain",
+    "precision": 18,
+    "color": "#F8FCFC",
+    "icon": "https://assets.coingecko.com/coins/images/8242/thumb/for.png?1606195375",
+    "symbol": "FOR",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x658e64ffcf40d240a43d52ca9342140316ae44fa": {
+    "assetId": "eip155:56/bep20:0x658e64ffcf40d240a43d52ca9342140316ae44fa",
+    "chainId": "eip155:56",
+    "name": "OIN Finance on BNB Smart Chain",
+    "precision": 8,
+    "color": "#041C9C",
+    "icon": "https://assets.coingecko.com/coins/images/12339/thumb/OIN_FInance_-_cLogo-01.png?1696512166",
+    "symbol": "OIN",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x659049786cb66e4486b8c0e0ccc90a5929a21162": {
+    "assetId": "eip155:56/bep20:0x659049786cb66e4486b8c0e0ccc90a5929a21162",
+    "chainId": "eip155:56",
+    "name": "TTcoin",
+    "precision": 4,
+    "color": "#0E0B04",
+    "icon": "https://assets.coingecko.com/coins/images/18887/thumb/200px.png?1696518346",
+    "symbol": "TC",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x65ad6a2288b2dd23e466226397c8f5d1794e58fc": {
+    "assetId": "eip155:56/bep20:0x65ad6a2288b2dd23e466226397c8f5d1794e58fc",
+    "chainId": "eip155:56",
+    "name": "GamyFi on BNB Smart Chain",
+    "precision": 18,
+    "color": "#DCD9FA",
+    "icon": "https://assets.coingecko.com/coins/images/14559/thumb/circle-cropped_%281%29.png?1696514241",
+    "symbol": "GFX",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x65c8743a5a266c3512eabd34e65ade42d4355ef1": {
+    "assetId": "eip155:56/bep20:0x65c8743a5a266c3512eabd34e65ade42d4355ef1",
+    "chainId": "eip155:56",
+    "name": "BlackPearl on BNB Smart Chain",
+    "precision": 18,
+    "color": "#227CEB",
+    "icon": "https://assets.coingecko.com/coins/images/8931/thumb/EJIpComQ_400x400.png?1696509079",
+    "symbol": "BPLC",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x65d9033cff96782394dab5dbef17fa771bbe1732": {
+    "assetId": "eip155:56/bep20:0x65d9033cff96782394dab5dbef17fa771bbe1732",
+    "chainId": "eip155:56",
+    "name": "Bit Store on BNB Smart Chain",
+    "precision": 18,
+    "color": "#DCD4BC",
+    "icon": "https://assets.coingecko.com/coins/images/20463/thumb/bit_store.PNG?1696519868",
+    "symbol": "STORE",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x65e66a61d0a8f1e686c2d6083ad611a10d84d97a": {
+    "assetId": "eip155:56/bep20:0x65e66a61d0a8f1e686c2d6083ad611a10d84d97a",
+    "chainId": "eip155:56",
+    "name": "Raze Network on BNB Smart Chain",
+    "precision": 18,
+    "color": "#CC2CA8",
+    "icon": "https://assets.coingecko.com/coins/images/14767/thumb/logo-2.png?1696514437",
+    "symbol": "RAZE",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x66109633715d2110dda791e64a7b2afadb517abb": {
+    "assetId": "eip155:56/bep20:0x66109633715d2110dda791e64a7b2afadb517abb",
+    "chainId": "eip155:56",
+    "name": "Gamestarter on BNB Smart Chain",
+    "precision": 5,
+    "color": "#090909",
+    "icon": "https://assets.coingecko.com/coins/images/17604/thumb/gpMi14-r_400x400.jpg?1696517136",
+    "symbol": "GAME",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x66207e39bb77e6b99aab56795c7c340c08520d83": {
+    "assetId": "eip155:56/bep20:0x66207e39bb77e6b99aab56795c7c340c08520d83",
+    "chainId": "eip155:56",
+    "name": "Rupiah Token on BNB Smart Chain",
+    "precision": 2,
+    "color": "#B04044",
+    "icon": "https://assets.coingecko.com/coins/images/9441/thumb/57421944_1371636006308255_3647136573922738176_n.jpg?1696509533",
+    "symbol": "IDRT",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x666666661f9b6d8c581602aaa2f76cbead06c401": {
+    "assetId": "eip155:56/bep20:0x666666661f9b6d8c581602aaa2f76cbead06c401",
+    "chainId": "eip155:56",
+    "name": "XY Finance on BNB Smart Chain",
+    "precision": 18,
+    "color": "#0C54E2",
+    "icon": "https://assets.coingecko.com/coins/images/21541/thumb/xy.png?1696520900",
+    "symbol": "XY",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x66696ab8c6aaeb22dc14a2dc4a833682388ea901": {
+    "assetId": "eip155:56/bep20:0x66696ab8c6aaeb22dc14a2dc4a833682388ea901",
+    "chainId": "eip155:56",
+    "name": "BongWeedCoin",
+    "precision": 9,
+    "color": "#D1D5CD",
+    "icon": "https://assets.coingecko.com/coins/images/16138/thumb/bongweed.PNG?1696515743",
+    "symbol": "BWC",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x6679eb24f59dfe111864aec72b443d1da666b360": {
+    "assetId": "eip155:56/bep20:0x6679eb24f59dfe111864aec72b443d1da666b360",
+    "chainId": "eip155:56",
+    "name": "Ariva",
+    "precision": 8,
+    "color": "#749474",
+    "icon": "https://assets.coingecko.com/coins/images/18103/thumb/logo-200.png?1696517607",
+    "symbol": "ARV",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x668048e70284107a6afab1711f28d88df3e72948": {
+    "assetId": "eip155:56/bep20:0x668048e70284107a6afab1711f28d88df3e72948",
+    "chainId": "eip155:56",
+    "name": "Coldstack on BNB Smart Chain",
+    "precision": 18,
+    "color": "#0454F4",
+    "icon": "https://assets.coingecko.com/coins/images/15499/thumb/logo_200x200.png?1696515143",
+    "symbol": "CLS",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x66cafcf6c32315623c7ffd3f2ff690aa36ebed38": {
+    "assetId": "eip155:56/bep20:0x66cafcf6c32315623c7ffd3f2ff690aa36ebed38",
+    "chainId": "eip155:56",
+    "name": "Brokoli on BNB Smart Chain",
+    "precision": 18,
+    "color": "#3B9F85",
+    "icon": "https://assets.coingecko.com/coins/images/18763/thumb/brkl.png?1696518228",
+    "symbol": "BRKL",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x66e1ecb238b2976fcbd1aeef0e9800b4f03c09f3": {
+    "assetId": "eip155:56/bep20:0x66e1ecb238b2976fcbd1aeef0e9800b4f03c09f3",
+    "chainId": "eip155:56",
+    "name": "Layer Network",
+    "precision": 9,
+    "color": "#2353FC",
+    "icon": "https://assets.coingecko.com/coins/images/29920/thumb/Layer_Network_Logo.png?1696528848",
+    "symbol": "LAYER",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x67343c29c0fd9827f33e675e0eb80773f9444444": {
+    "assetId": "eip155:56/bep20:0x67343c29c0fd9827f33e675e0eb80773f9444444",
+    "chainId": "eip155:56",
+    "name": "iSTEP",
+    "precision": 18,
+    "color": "#F9D780",
+    "icon": "https://assets.coingecko.com/coins/images/25888/thumb/ISTEP.png?1696524970",
+    "symbol": "ISTEP",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x673da443da2f6ae7c5c660a9f0d3dd24d1643d36": {
+    "assetId": "eip155:56/bep20:0x673da443da2f6ae7c5c660a9f0d3dd24d1643d36",
+    "chainId": "eip155:56",
+    "name": "RainbowToken",
+    "precision": 9,
+    "color": "#A1165C",
+    "icon": "https://assets.coingecko.com/coins/images/17828/thumb/WsLiOeJ.png?1696517349",
+    "symbol": "RAINBOWTOKEN",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x6746e37a756da9e34f0bbf1c0495784ba33b79b4": {
+    "assetId": "eip155:56/bep20:0x6746e37a756da9e34f0bbf1c0495784ba33b79b4",
+    "chainId": "eip155:56",
+    "name": "EFUN",
+    "precision": 18,
+    "color": "#F6C334",
+    "icon": "https://assets.coingecko.com/coins/images/21882/thumb/6GyaKgva_400x400.jpg?1696521234",
+    "symbol": "EFUN",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x674aa28ac436834051fff3fc7b6e59d6f9c57a1c": {
+    "assetId": "eip155:56/bep20:0x674aa28ac436834051fff3fc7b6e59d6f9c57a1c",
+    "chainId": "eip155:56",
+    "name": "Optimus Inu",
+    "precision": 18,
+    "color": "#D0D2D6",
+    "icon": "https://assets.coingecko.com/coins/images/29358/thumb/IMG_20230307_083613_204.png?1696528306",
+    "symbol": "OPINU",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x6759565574de509b7725abb4680020704b3f404e": {
+    "assetId": "eip155:56/bep20:0x6759565574de509b7725abb4680020704b3f404e",
+    "chainId": "eip155:56",
+    "name": "VIP",
+    "precision": 9,
+    "color": "#140E11",
+    "icon": "https://assets.coingecko.com/coins/images/20994/thumb/hVOVuxlC_400x400.jpg?1696520379",
+    "symbol": "VIP",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x67745484b7e8b80ab0d2a7de12dc30345b2bcc56": {
+    "assetId": "eip155:56/bep20:0x67745484b7e8b80ab0d2a7de12dc30345b2bcc56",
+    "chainId": "eip155:56",
+    "name": "Trackers Token",
+    "precision": 18,
+    "color": "#040CFC",
+    "icon": "https://assets.coingecko.com/coins/images/29989/thumb/trackers_2002.png?1696528914",
+    "symbol": "TRT",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x6775729fad1438116b2e3b4fb2878539795297a7": {
+    "assetId": "eip155:56/bep20:0x6775729fad1438116b2e3b4fb2878539795297a7",
+    "chainId": "eip155:56",
+    "name": "CoinAlpha",
+    "precision": 9,
+    "color": "#FA985C",
+    "icon": "https://assets.coingecko.com/coins/images/18797/thumb/alp.PNG?1696518259",
+    "symbol": "ALP",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x678e840c640f619e17848045d23072844224dd37": {
+    "assetId": "eip155:56/bep20:0x678e840c640f619e17848045d23072844224dd37",
+    "chainId": "eip155:56",
+    "name": "Cratos on BNB Smart Chain",
+    "precision": 18,
+    "color": "#2C8BC4",
+    "icon": "https://assets.coingecko.com/coins/images/17322/thumb/cratos.png?1696516876",
+    "symbol": "CRTS",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x67915e893b68fbc436a288564fff1476b632b009": {
+    "assetId": "eip155:56/bep20:0x67915e893b68fbc436a288564fff1476b632b009",
+    "chainId": "eip155:56",
+    "name": "Bone",
+    "precision": 18,
+    "color": "#140B08",
+    "icon": "https://assets.coingecko.com/coins/images/24860/thumb/Bone_200_x_200.jpeg?1696524019",
+    "symbol": "BONE",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x679d5b2d94f454c950d683d159b87aa8eae37c9e": {
+    "assetId": "eip155:56/bep20:0x679d5b2d94f454c950d683d159b87aa8eae37c9e",
+    "chainId": "eip155:56",
+    "name": "Hamster",
+    "precision": 7,
+    "color": "#6F583F",
+    "icon": "https://assets.coingecko.com/coins/images/16115/thumb/hamster.png?1696515722",
+    "symbol": "HAM",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x67d66e8ec1fd25d98b3ccd3b19b7dc4b4b7fc493": {
+    "assetId": "eip155:56/bep20:0x67d66e8ec1fd25d98b3ccd3b19b7dc4b4b7fc493",
+    "chainId": "eip155:56",
+    "name": "Feeder Finance",
+    "precision": 18,
+    "color": "#606474",
+    "icon": "https://assets.coingecko.com/coins/images/15151/thumb/feeder_finance_logo.png?1696514806",
+    "symbol": "FEED",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x67d8e0080b612afae75a7f7229bfed3cdb998462": {
+    "assetId": "eip155:56/bep20:0x67d8e0080b612afae75a7f7229bfed3cdb998462",
+    "chainId": "eip155:56",
+    "name": "CyberHarbor",
+    "precision": 18,
+    "color": "#6424DC",
+    "icon": "https://assets.coingecko.com/coins/images/29509/thumb/logo_4x.png?1696528453",
+    "symbol": "CHT",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x67db74b6d1ea807cb47248489c99d144323d348d": {
+    "assetId": "eip155:56/bep20:0x67db74b6d1ea807cb47248489c99d144323d348d",
+    "chainId": "eip155:56",
+    "name": "MMS Coin",
+    "precision": 8,
+    "color": "#CAA636",
+    "icon": "https://assets.coingecko.com/coins/images/18695/thumb/MMSC_logo.png?1696518162",
+    "symbol": "MMSC",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x67ee3cb086f8a16f34bee3ca72fad36f7db929e2": {
+    "assetId": "eip155:56/bep20:0x67ee3cb086f8a16f34bee3ca72fad36f7db929e2",
+    "chainId": "eip155:56",
+    "name": "DODO on BNB Smart Chain",
+    "precision": 18,
+    "color": "#413E04",
+    "icon": "https://assets.coingecko.com/coins/images/12651/thumb/dodo_logo.png?1696512458",
+    "symbol": "DODO",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x680d3113caf77b61b510f332d5ef4cf5b41a761d": {
+    "assetId": "eip155:56/bep20:0x680d3113caf77b61b510f332d5ef4cf5b41a761d",
+    "chainId": "eip155:56",
+    "name": "DeHub",
+    "precision": 18,
+    "color": "#CDCDCD",
+    "icon": "https://assets.coingecko.com/coins/images/18094/thumb/dehub.PNG?1696517599",
+    "symbol": "DHB",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x681fd3e49a6188fc526784ee70aa1c269ee2b887": {
+    "assetId": "eip155:56/bep20:0x681fd3e49a6188fc526784ee70aa1c269ee2b887",
+    "chainId": "eip155:56",
+    "name": "Franklin on BNB Smart Chain",
+    "precision": 4,
+    "color": "#04F9FA",
+    "icon": "https://assets.coingecko.com/coins/images/14810/thumb/fly_logo_sq_bArtboard_4.png?1696514479",
+    "symbol": "FLY",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x68590a47578e5060a29fd99654f4556dbfa05d10": {
+    "assetId": "eip155:56/bep20:0x68590a47578e5060a29fd99654f4556dbfa05d10",
+    "chainId": "eip155:56",
+    "name": "Secured MoonRat",
+    "precision": 9,
+    "color": "#82B2B1",
+    "icon": "https://assets.coingecko.com/coins/images/15241/thumb/SMRAT_200x200.png?1696514895",
+    "symbol": "SMRAT",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x686318000d982bc8dcc1cdcf8ffd22322f0960ed": {
+    "assetId": "eip155:56/bep20:0x686318000d982bc8dcc1cdcf8ffd22322f0960ed",
+    "chainId": "eip155:56",
+    "name": "Opulous on BNB Smart Chain",
+    "precision": 18,
+    "color": "#222222",
+    "icon": "https://assets.coingecko.com/coins/images/16548/thumb/opulous.PNG?1696516110",
+    "symbol": "OPUL",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x68784ffaa6ff05e3e04575df77960dc1d9f42b4a": {
+    "assetId": "eip155:56/bep20:0x68784ffaa6ff05e3e04575df77960dc1d9f42b4a",
+    "chainId": "eip155:56",
+    "name": "Allbridge on BNB Smart Chain",
+    "precision": 18,
+    "color": "#E4E4E4",
+    "icon": "https://assets.coingecko.com/coins/images/18690/thumb/abr.png?1696518157",
+    "symbol": "ABR",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x688ec465111ed639267cb17c47e790c9cc7279c1": {
+    "assetId": "eip155:56/bep20:0x688ec465111ed639267cb17c47e790c9cc7279c1",
+    "chainId": "eip155:56",
+    "name": "BB Gaming",
+    "precision": 18,
+    "color": "#6C2E27",
+    "icon": "https://assets.coingecko.com/coins/images/24616/thumb/bb.png?1696523788",
+    "symbol": "BB",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x68b5edb385b59e30a7a7db1e681a449e94df0213": {
+    "assetId": "eip155:56/bep20:0x68b5edb385b59e30a7a7db1e681a449e94df0213",
+    "chainId": "eip155:56",
+    "name": "Silva",
+    "precision": 9,
+    "color": "#DBDBDC",
+    "icon": "https://assets.coingecko.com/coins/images/19689/thumb/13592.png?1696519116",
+    "symbol": "SILVA",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x68d10dfe87a838d63bbef6c9a0d0b44beb799dc1": {
+    "assetId": "eip155:56/bep20:0x68d10dfe87a838d63bbef6c9a0d0b44beb799dc1",
+    "chainId": "eip155:56",
+    "name": "MagnetGold",
+    "precision": 18,
+    "color": "#C5903D",
+    "icon": "https://assets.coingecko.com/coins/images/19302/thumb/mtg.PNG?1696518745",
+    "symbol": "MTG",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x68dd887d012abdf99d3492621e4d576a3f75019d": {
+    "assetId": "eip155:56/bep20:0x68dd887d012abdf99d3492621e4d576a3f75019d",
+    "chainId": "eip155:56",
+    "name": "Philcoin on BNB Smart Chain",
+    "precision": 18,
+    "color": "#EC7E28",
+    "icon": "https://assets.coingecko.com/coins/images/24178/thumb/2ZFyoMSk.png?1696523366",
+    "symbol": "PHL",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x68de53b47be0dc566bf4673c748d58bbbad3deb1": {
+    "assetId": "eip155:56/bep20:0x68de53b47be0dc566bf4673c748d58bbbad3deb1",
+    "chainId": "eip155:56",
+    "name": "DogeGrow",
+    "precision": 18,
+    "color": "#C5AB90",
+    "icon": "https://assets.coingecko.com/coins/images/29532/thumb/IMG_20230323_110317_093.jpg?1696528474",
+    "symbol": "DGR",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x68e374f856bf25468d365e539b700b648bf94b67": {
+    "assetId": "eip155:56/bep20:0x68e374f856bf25468d365e539b700b648bf94b67",
+    "chainId": "eip155:56",
+    "name": "Mist",
+    "precision": 18,
+    "color": "#19353C",
+    "icon": "https://assets.coingecko.com/coins/images/14841/thumb/pKmPjCN-_200x200.jpg?1696514508",
+    "symbol": "MIST",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x6911f552842236bd9e8ea8ddbb3fb414e2c5fa9d": {
+    "assetId": "eip155:56/bep20:0x6911f552842236bd9e8ea8ddbb3fb414e2c5fa9d",
+    "chainId": "eip155:56",
+    "name": "Synapse Network on BNB Smart Chain",
+    "precision": 18,
+    "color": "#14143C",
+    "icon": "https://assets.coingecko.com/coins/images/17962/thumb/Webp-net-resizeimage_%282%29.png?1696517481",
+    "symbol": "SNP",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x6957272a211beb1829d4f4cb483741386b881b18": {
+    "assetId": "eip155:56/bep20:0x6957272a211beb1829d4f4cb483741386b881b18",
+    "chainId": "eip155:56",
+    "name": "Bonyta",
+    "precision": 18,
+    "color": "#83622E",
+    "icon": "https://assets.coingecko.com/coins/images/32404/thumb/Safeimagekit-resized-img_%284%29.png?1698055641",
+    "symbol": "BNYTA",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x697bd938e7e572e787ecd7bc74a31f1814c21264": {
+    "assetId": "eip155:56/bep20:0x697bd938e7e572e787ecd7bc74a31f1814c21264",
+    "chainId": "eip155:56",
+    "name": "Digital Financial Exchange",
+    "precision": 18,
+    "color": "#3C7CFC",
+    "icon": "https://assets.coingecko.com/coins/images/23241/thumb/difx.png?1696522461",
+    "symbol": "DIFX",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x69a1913d334b524ea1632461c78797c837ca9fa6": {
+    "assetId": "eip155:56/bep20:0x69a1913d334b524ea1632461c78797c837ca9fa6",
+    "chainId": "eip155:56",
+    "name": "RioDeFi on BNB Smart Chain",
+    "precision": 18,
+    "color": "#548AF2",
+    "icon": "https://assets.coingecko.com/coins/images/12623/thumb/RFUEL_SQR.png?1696512430",
+    "symbol": "RFUEL",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x69a87c8788d4a48c1362b3b357d0e6b59c11d93f": {
+    "assetId": "eip155:56/bep20:0x69a87c8788d4a48c1362b3b357d0e6b59c11d93f",
+    "chainId": "eip155:56",
+    "name": "Orbofi AI on BNB Smart Chain",
+    "precision": 18,
+    "color": "#C4DAAA",
+    "icon": "https://assets.coingecko.com/coins/images/30216/thumb/new_V_test2.png?1696529127",
+    "symbol": "OBI",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x69b0af16fdd2e80968eb505cd41dc26efb2b80bf": {
+    "assetId": "eip155:56/bep20:0x69b0af16fdd2e80968eb505cd41dc26efb2b80bf",
+    "chainId": "eip155:56",
+    "name": "BlockBlend  OLD ",
+    "precision": 18,
+    "color": "#C4A7CC",
+    "icon": "https://assets.coingecko.com/coins/images/24858/thumb/blockblend.png?1696524018",
+    "symbol": "BBL",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x69bfa36d50d92e8985d27e6aa6e685c0325ce7b4": {
+    "assetId": "eip155:56/bep20:0x69bfa36d50d92e8985d27e6aa6e685c0325ce7b4",
+    "chainId": "eip155:56",
+    "name": "Cryptorg",
+    "precision": 18,
+    "color": "#C2E2CD",
+    "icon": "https://assets.coingecko.com/coins/images/11474/thumb/crystal_200.png?1696511381",
+    "symbol": "CTG",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x69c2fcae7e30b429166bd616a322e32bec036bcf": {
+    "assetId": "eip155:56/bep20:0x69c2fcae7e30b429166bd616a322e32bec036bcf",
+    "chainId": "eip155:56",
+    "name": "MuratiAI on BNB Smart Chain",
+    "precision": 18,
+    "color": "#D26B97",
+    "icon": "https://assets.coingecko.com/coins/images/30433/thumb/Muratilogo.png?1696529321",
+    "symbol": "MURATIAI",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x69e5420a92e8323c5094fa84f1655e29dd2270c2": {
+    "assetId": "eip155:56/bep20:0x69e5420a92e8323c5094fa84f1655e29dd2270c2",
+    "chainId": "eip155:56",
+    "name": "Tarality",
+    "precision": 18,
+    "color": "#E39907",
+    "icon": "https://assets.coingecko.com/coins/images/21385/thumb/photo1690369873_%282%29.png?1696520750",
+    "symbol": "TARAL",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x69fa8e7f6bf1ca1fb0de61e1366f7412b827cc51": {
+    "assetId": "eip155:56/bep20:0x69fa8e7f6bf1ca1fb0de61e1366f7412b827cc51",
+    "chainId": "eip155:56",
+    "name": "Enreach on BNB Smart Chain",
+    "precision": 9,
+    "color": "#0B2589",
+    "icon": "https://assets.coingecko.com/coins/images/14694/thumb/enreachdao.jpg?1696514366",
+    "symbol": "NRCH",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x6a061bc3bd2f90fc3fe0b305488c32d121d0093e": {
+    "assetId": "eip155:56/bep20:0x6a061bc3bd2f90fc3fe0b305488c32d121d0093e",
+    "chainId": "eip155:56",
+    "name": "Network Capital Token",
+    "precision": 18,
+    "color": "#040C10",
+    "icon": "https://assets.coingecko.com/coins/images/28655/thumb/Network_Capital_Token.png?1696527639",
+    "symbol": "NETC",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x6a0b66710567b6beb81a71f7e9466450a91a384b": {
+    "assetId": "eip155:56/bep20:0x6a0b66710567b6beb81a71f7e9466450a91a384b",
+    "chainId": "eip155:56",
+    "name": "PearDAO",
+    "precision": 18,
+    "color": "#27C68D",
+    "icon": "https://assets.coingecko.com/coins/images/24253/thumb/pex.png?1696523438",
+    "symbol": "PEX",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x6a1225c87f15da91e2fa5ee7b2075e2e3a9dbc39": {
+    "assetId": "eip155:56/bep20:0x6a1225c87f15da91e2fa5ee7b2075e2e3a9dbc39",
+    "chainId": "eip155:56",
+    "name": "Soroosh Smart Ecosystem",
+    "precision": 18,
+    "color": "#D1B49E",
+    "icon": "https://assets.coingecko.com/coins/images/30049/thumb/SSEToken-200x200.png?1696528971",
+    "symbol": "SSE",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x6a545f9c64d8f7b957d8d2e6410b52095a9e6c29": {
+    "assetId": "eip155:56/bep20:0x6a545f9c64d8f7b957d8d2e6410b52095a9e6c29",
+    "chainId": "eip155:56",
+    "name": "CyberFi on BNB Smart Chain",
+    "precision": 18,
+    "color": "#F3E90C",
+    "icon": "https://assets.coingecko.com/coins/images/13112/thumb/cyberfi_logo.jpeg?1696512897",
+    "symbol": "CFI",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x6a6ccf15b38da4b5b0ef4c8fe9fefcb472a893f9": {
+    "assetId": "eip155:56/bep20:0x6a6ccf15b38da4b5b0ef4c8fe9fefcb472a893f9",
+    "chainId": "eip155:56",
+    "name": "MoonStarter",
+    "precision": 18,
+    "color": "#FC3C84",
+    "icon": "https://assets.coingecko.com/coins/images/16146/thumb/MoonStarter.png?1696515750",
+    "symbol": "MNST",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x6a8cc171a671e0aa7f84a0a36d7c1285d3a224d2": {
+    "assetId": "eip155:56/bep20:0x6a8cc171a671e0aa7f84a0a36d7c1285d3a224d2",
+    "chainId": "eip155:56",
+    "name": "KURONEKO",
+    "precision": 9,
+    "color": "#ACADAD",
+    "icon": "https://assets.coingecko.com/coins/images/32090/thumb/Polish_20230923_140602509.jpg?1696530888",
+    "symbol": "JIJI",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x6a8fd46f88dbd7bdc2d536c604f811c63052ce0f": {
+    "assetId": "eip155:56/bep20:0x6a8fd46f88dbd7bdc2d536c604f811c63052ce0f",
+    "chainId": "eip155:56",
+    "name": "TRVL on BNB Smart Chain",
+    "precision": 18,
+    "color": "#202934",
+    "icon": "https://assets.coingecko.com/coins/images/20911/thumb/trvl.jpeg?1696520301",
+    "symbol": "TRVL",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x6aa150fff813e0bec1273691f349ad080df7216d": {
+    "assetId": "eip155:56/bep20:0x6aa150fff813e0bec1273691f349ad080df7216d",
+    "chainId": "eip155:56",
+    "name": "Ferma",
+    "precision": 8,
+    "color": "#EFAC04",
+    "icon": "https://assets.coingecko.com/coins/images/14482/thumb/ferma.png?1696514168",
+    "symbol": "FERMA",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x6aa217312960a21adbde1478dc8cbcf828110a67": {
+    "assetId": "eip155:56/bep20:0x6aa217312960a21adbde1478dc8cbcf828110a67",
+    "chainId": "eip155:56",
+    "name": "Spintop",
+    "precision": 18,
+    "color": "#BC07AE",
+    "icon": "https://assets.coingecko.com/coins/images/21209/thumb/51683048395_1cb5de34ca_o.png?1696520584",
+    "symbol": "SPIN",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x6aac56305825f712fd44599e59f2ede51d42c3e7": {
+    "assetId": "eip155:56/bep20:0x6aac56305825f712fd44599e59f2ede51d42c3e7",
+    "chainId": "eip155:56",
+    "name": "Brewlabs on BNB Smart Chain",
+    "precision": 9,
+    "color": "#F5DA0C",
+    "icon": "https://assets.coingecko.com/coins/images/21928/thumb/7xgmOCBW_400x400.jpg?1696521278",
+    "symbol": "BREWLABS",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x6ab39cd7ff157caeecb97f69a54f8c0e67861feb": {
+    "assetId": "eip155:56/bep20:0x6ab39cd7ff157caeecb97f69a54f8c0e67861feb",
+    "chainId": "eip155:56",
+    "name": "NyanDOGE International",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/33143/thumb/NyanDOGEInternational200x200.png?1700850039",
+    "symbol": "NYANDOGE",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x6ad0b271f4b3d7651ae9947a18bae29ca20d83eb": {
+    "assetId": "eip155:56/bep20:0x6ad0b271f4b3d7651ae9947a18bae29ca20d83eb",
+    "chainId": "eip155:56",
+    "name": "NFT Workx",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/32684/thumb/Logo_NFTworkxCircle_%281%29.png?1698937871",
+    "symbol": "WRKX",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x6ad0f087501eee603aeda0407c52864bc7f83322": {
+    "assetId": "eip155:56/bep20:0x6ad0f087501eee603aeda0407c52864bc7f83322",
+    "chainId": "eip155:56",
+    "name": "Metaverse Face",
+    "precision": 9,
+    "color": "#407780",
+    "icon": "https://assets.coingecko.com/coins/images/21375/thumb/ZBC4FWKR_400x400.jpg?1696520740",
+    "symbol": "MEFA",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x6ad2b6d5d8f96c8e581d3100c12878b2151a0423": {
+    "assetId": "eip155:56/bep20:0x6ad2b6d5d8f96c8e581d3100c12878b2151a0423",
+    "chainId": "eip155:56",
+    "name": "WOLF PUPS",
+    "precision": 18,
+    "color": "#D4D5D5",
+    "icon": "https://assets.coingecko.com/coins/images/25133/thumb/wolfies.png?1696524283",
+    "symbol": "WOLFIES",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x6ad9e9c098a45b2b41b519119c31c3dcb02accb2": {
+    "assetId": "eip155:56/bep20:0x6ad9e9c098a45b2b41b519119c31c3dcb02accb2",
+    "chainId": "eip155:56",
+    "name": "PlayZap",
+    "precision": 18,
+    "color": "#ECBC23",
+    "icon": "https://assets.coingecko.com/coins/images/24727/thumb/200X200-111.png?1696523890",
+    "symbol": "PZP",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x6ae0a238a6f51df8eee084b1756a54dd8a8e85d3": {
+    "assetId": "eip155:56/bep20:0x6ae0a238a6f51df8eee084b1756a54dd8a8e85d3",
+    "chainId": "eip155:56",
+    "name": "AutoMiningToken",
+    "precision": 18,
+    "color": "#24E1EE",
+    "icon": "https://assets.coingecko.com/coins/images/28918/thumb/New_Logo_-_AMT.png?1696527893",
+    "symbol": "AMT",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x6ae7e3bcb49a405061c6c5e18122aed853be26ba": {
+    "assetId": "eip155:56/bep20:0x6ae7e3bcb49a405061c6c5e18122aed853be26ba",
+    "chainId": "eip155:56",
+    "name": "NFTFundArt",
+    "precision": 18,
+    "color": "#099674",
+    "icon": "https://assets.coingecko.com/coins/images/20340/thumb/200x200_%2839%29.png?1696519747",
+    "symbol": "NFA",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x6ae9701b9c423f40d54556c9a443409d79ce170a": {
+    "assetId": "eip155:56/bep20:0x6ae9701b9c423f40d54556c9a443409d79ce170a",
+    "chainId": "eip155:56",
+    "name": "Polkacity on BNB Smart Chain",
+    "precision": 18,
+    "color": "#E8D4E8",
+    "icon": "https://assets.coingecko.com/coins/images/14066/thumb/vykih1Nq_400x400.png?1696513790",
+    "symbol": "POLC",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x6af2f57f61cec0883c71f3175774ebeb290a10e6": {
+    "assetId": "eip155:56/bep20:0x6af2f57f61cec0883c71f3175774ebeb290a10e6",
+    "chainId": "eip155:56",
+    "name": "Scientia",
+    "precision": 9,
+    "color": "#D5D6D9",
+    "icon": "https://assets.coingecko.com/coins/images/20450/thumb/scienta.PNG?1696519855",
+    "symbol": "SCIE",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x6b0a03c7bd8441e0f8959394761e29bd6afbfdf7": {
+    "assetId": "eip155:56/bep20:0x6b0a03c7bd8441e0f8959394761e29bd6afbfdf7",
+    "chainId": "eip155:56",
+    "name": "onetokenburn",
+    "precision": 8,
+    "color": "#C8283A",
+    "icon": "https://assets.coingecko.com/coins/images/30171/thumb/one.png?1696529090",
+    "symbol": "ONE",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x6b1c8765c7eff0b60706b0ae489eb9bb9667465a": {
+    "assetId": "eip155:56/bep20:0x6b1c8765c7eff0b60706b0ae489eb9bb9667465a",
+    "chainId": "eip155:56",
+    "name": "Signata on BNB Smart Chain",
+    "precision": 18,
+    "color": "#489E3C",
+    "icon": "https://assets.coingecko.com/coins/images/14704/thumb/logo.png?1696514375",
+    "symbol": "SATA",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x6b23c89196deb721e6fd9726e6c76e4810a464bc": {
+    "assetId": "eip155:56/bep20:0x6b23c89196deb721e6fd9726e6c76e4810a464bc",
+    "chainId": "eip155:56",
+    "name": "X World Games on BNB Smart Chain",
+    "precision": 18,
+    "color": "#C7A5B0",
+    "icon": "https://assets.coingecko.com/coins/images/17847/thumb/200_200_%281%29_%281%29.png?1696790226",
+    "symbol": "XWG",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x6b471d5ab9f3d92a600e7d49a0b135bf6d4c6a5b": {
+    "assetId": "eip155:56/bep20:0x6b471d5ab9f3d92a600e7d49a0b135bf6d4c6a5b",
+    "chainId": "eip155:56",
+    "name": "iAssets",
+    "precision": 18,
+    "color": "#C4C4C4",
+    "icon": "https://assets.coingecko.com/coins/images/25475/thumb/asset.png?1696524609",
+    "symbol": "ASSET",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x6ba5657bbff83cb579503847c6baa47295ef79a8": {
+    "assetId": "eip155:56/bep20:0x6ba5657bbff83cb579503847c6baa47295ef79a8",
+    "chainId": "eip155:56",
+    "name": "Nuritopia",
+    "precision": 18,
+    "color": "#57ACF7",
+    "icon": "https://assets.coingecko.com/coins/images/31964/thumb/NBLU_Token_Image_200x200.png?1697058564",
+    "symbol": "NBLU",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x6ba7a8f9063c712c1c8cabc776b1da7126805f3b": {
+    "assetId": "eip155:56/bep20:0x6ba7a8f9063c712c1c8cabc776b1da7126805f3b",
+    "chainId": "eip155:56",
+    "name": "Polytrade on BNB Smart Chain",
+    "precision": 18,
+    "color": "#4CB4C4",
+    "icon": "https://assets.coingecko.com/coins/images/16416/thumb/Logo_colored_200.png?1696516012",
+    "symbol": "TRADE",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x6bcd897d4ba5675f860c7418ddc034f6c5610114": {
+    "assetId": "eip155:56/bep20:0x6bcd897d4ba5675f860c7418ddc034f6c5610114",
+    "chainId": "eip155:56",
+    "name": "Rainmaker Games on BNB Smart Chain",
+    "precision": 18,
+    "color": "#8289AE",
+    "icon": "https://assets.coingecko.com/coins/images/21485/thumb/Final-Flip-Rain-Makers-44-1.png?1696520845",
+    "symbol": "RAIN",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x6bd5444e7bdc09a6e44117c75090da7c69e7a8f9": {
+    "assetId": "eip155:56/bep20:0x6bd5444e7bdc09a6e44117c75090da7c69e7a8f9",
+    "chainId": "eip155:56",
+    "name": "X Akamaru Inu",
+    "precision": 18,
+    "color": "#E28A0B",
+    "icon": "https://assets.coingecko.com/coins/images/31550/thumb/IMG_20230830_145557_648.png?1696530363",
+    "symbol": "AKA",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x6bf2be9468314281cd28a94c35f967cafd388325": {
+    "assetId": "eip155:56/bep20:0x6bf2be9468314281cd28a94c35f967cafd388325",
+    "chainId": "eip155:56",
+    "name": "Synth oUSD",
+    "precision": 18,
+    "color": "#B6AAD6",
+    "icon": "https://assets.coingecko.com/coins/images/16830/thumb/cUixn42.png?1696516398",
+    "symbol": "OUSD",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x6bfd4ca8ec078d613ed6a5248eb2c7a0d5c38b7b": {
+    "assetId": "eip155:56/bep20:0x6bfd4ca8ec078d613ed6a5248eb2c7a0d5c38b7b",
+    "chainId": "eip155:56",
+    "name": "Ecochain Finance",
+    "precision": 9,
+    "color": "#049C54",
+    "icon": "https://assets.coingecko.com/coins/images/18304/thumb/Logo-Transparency.png?1696517795",
+    "symbol": "ECT",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x6bff4fb161347ad7de4a625ae5aa3a1ca7077819": {
+    "assetId": "eip155:56/bep20:0x6bff4fb161347ad7de4a625ae5aa3a1ca7077819",
+    "chainId": "eip155:56",
+    "name": "AdEx on BNB Smart Chain",
+    "precision": 18,
+    "color": "#892BFC",
+    "icon": "https://assets.coingecko.com/coins/images/847/thumb/adex.jpeg?1696501984",
+    "symbol": "ADX",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x6c015277b0f9b8c24b20bd8bbbd29fdb25738a69": {
+    "assetId": "eip155:56/bep20:0x6c015277b0f9b8c24b20bd8bbbd29fdb25738a69",
+    "chainId": "eip155:56",
+    "name": "Wrapped NewYorkCoin",
+    "precision": 18,
+    "color": "#2070B7",
+    "icon": "https://assets.coingecko.com/coins/images/17123/thumb/J53IJI7.png?1696516683",
+    "symbol": "WNYC",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x6c13a45101bd70561daf6186da86d7bdb018754f": {
+    "assetId": "eip155:56/bep20:0x6c13a45101bd70561daf6186da86d7bdb018754f",
+    "chainId": "eip155:56",
+    "name": "Dewae",
+    "precision": 18,
+    "color": "#F7C538",
+    "icon": "https://assets.coingecko.com/coins/images/30567/thumb/IMG_20230525_005455_597.png?1696529438",
+    "symbol": "DEWAE",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x6c1efbed2f57dd486ec091dffd08ee5235a570b1": {
+    "assetId": "eip155:56/bep20:0x6c1efbed2f57dd486ec091dffd08ee5235a570b1",
+    "chainId": "eip155:56",
+    "name": "Pandora Finance",
+    "precision": 18,
+    "color": "#ECB4D6",
+    "icon": "https://assets.coingecko.com/coins/images/18062/thumb/_Profile_Picture.png?1696517570",
+    "symbol": "PNDR",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x6c46422a0f7dbbad9bec3bbbc1189bfaf9794b05": {
+    "assetId": "eip155:56/bep20:0x6c46422a0f7dbbad9bec3bbbc1189bfaf9794b05",
+    "chainId": "eip155:56",
+    "name": "Little Rabbit V2",
+    "precision": 9,
+    "color": "#04BAD2",
+    "icon": "https://assets.coingecko.com/coins/images/27327/thumb/ltrbt.png?1696526375",
+    "symbol": "LTRBT",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x6c619006043eab742355395690c7b42d3411e8c0": {
+    "assetId": "eip155:56/bep20:0x6c619006043eab742355395690c7b42d3411e8c0",
+    "chainId": "eip155:56",
+    "name": "ELYFI on BNB Smart Chain",
+    "precision": 18,
+    "color": "#04BCFC",
+    "icon": "https://assets.coingecko.com/coins/images/23733/thumb/elyfi_logo.png?1696522936",
+    "symbol": "ELFI",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x6c9297be2e3ce9c10c480a25b7157a43fd992942": {
+    "assetId": "eip155:56/bep20:0x6c9297be2e3ce9c10c480a25b7157a43fd992942",
+    "chainId": "eip155:56",
+    "name": "Mean DAO on BNB Smart Chain",
+    "precision": 6,
+    "color": "#040404",
+    "icon": "https://assets.coingecko.com/coins/images/21557/thumb/89934951.png?1696520918",
+    "symbol": "MEAN",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x6cb8065f96d63630425fd95a408a0d6cd697c662": {
+    "assetId": "eip155:56/bep20:0x6cb8065f96d63630425fd95a408a0d6cd697c662",
+    "chainId": "eip155:56",
+    "name": "Embr",
+    "precision": 18,
+    "color": "#806FF4",
+    "icon": "https://assets.coingecko.com/coins/images/20904/thumb/embr.png?1696520295",
+    "symbol": "EMBR",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x6cbc2e98e16c28775637d59342f0c8d04ba66e39": {
+    "assetId": "eip155:56/bep20:0x6cbc2e98e16c28775637d59342f0c8d04ba66e39",
+    "chainId": "eip155:56",
+    "name": "Vaulteum",
+    "precision": 18,
+    "color": "#062032",
+    "icon": "https://assets.coingecko.com/coins/images/28611/thumb/IMG_20221231_040125_514.jpg?1696527597",
+    "symbol": "VAULT",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x6ccc8db8e3fd5ffdd2e7b92bd92e8e27baf704a8": {
+    "assetId": "eip155:56/bep20:0x6ccc8db8e3fd5ffdd2e7b92bd92e8e27baf704a8",
+    "chainId": "eip155:56",
+    "name": "Ethos",
+    "precision": 18,
+    "color": "#141414",
+    "icon": "https://assets.coingecko.com/coins/images/31823/thumb/cUOoVR18_400x400.jpg?1696530637",
+    "symbol": "3TH",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x6cf271270662be1c4fc1b7bb7d7d7fc60cc19125": {
+    "assetId": "eip155:56/bep20:0x6cf271270662be1c4fc1b7bb7d7d7fc60cc19125",
+    "chainId": "eip155:56",
+    "name": "Kunci Coin",
+    "precision": 6,
+    "color": "#55397C",
+    "icon": "https://assets.coingecko.com/coins/images/23723/thumb/xZX34B26_400x400.jpg?1696522923",
+    "symbol": "KUNCI",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x6d1a4650e83708b583c35d5e0952a0b46354ca9b": {
+    "assetId": "eip155:56/bep20:0x6d1a4650e83708b583c35d5e0952a0b46354ca9b",
+    "chainId": "eip155:56",
+    "name": "Fidance",
+    "precision": 18,
+    "color": "#302A39",
+    "icon": "https://assets.coingecko.com/coins/images/27244/thumb/FDC_LOGO.jpg?1696526294",
+    "symbol": "FDC",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x6d1dc3928604b00180bb570bdae94b9698d33b79": {
+    "assetId": "eip155:56/bep20:0x6d1dc3928604b00180bb570bdae94b9698d33b79",
+    "chainId": "eip155:56",
+    "name": "UnitedCrowd on BNB Smart Chain",
+    "precision": 18,
+    "color": "#444444",
+    "icon": "https://assets.coingecko.com/coins/images/14956/thumb/eUvRU9wm.png?1696514614",
+    "symbol": "UCT",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x6d23970ce32cb0f1929bece7c56d71319e1b4f01": {
+    "assetId": "eip155:56/bep20:0x6d23970ce32cb0f1929bece7c56d71319e1b4f01",
+    "chainId": "eip155:56",
+    "name": "MFET",
+    "precision": 8,
+    "color": "#2FC407",
+    "icon": "https://assets.coingecko.com/coins/images/25555/thumb/200x200.png?1696524687",
+    "symbol": "MFET",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x6d3a160b86edcd46d8f9bba25c2f88cccade19fc": {
+    "assetId": "eip155:56/bep20:0x6d3a160b86edcd46d8f9bba25c2f88cccade19fc",
+    "chainId": "eip155:56",
+    "name": "Football World Community",
+    "precision": 9,
+    "color": "#E4C446",
+    "icon": "https://assets.coingecko.com/coins/images/24258/thumb/IMG_20221202_222442_239.jpg?1696523442",
+    "symbol": "FWC",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x6d4e8507084c7b58d33b3b88915591670f959b2f": {
+    "assetId": "eip155:56/bep20:0x6d4e8507084c7b58d33b3b88915591670f959b2f",
+    "chainId": "eip155:56",
+    "name": "Miner Arena",
+    "precision": 18,
+    "color": "#1E1512",
+    "icon": "https://assets.coingecko.com/coins/images/32238/thumb/MINAR.jpg?1696941356",
+    "symbol": "MINAR",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x6d64010596f7ec3b40b40223a5f847a1b243fd99": {
+    "assetId": "eip155:56/bep20:0x6d64010596f7ec3b40b40223a5f847a1b243fd99",
+    "chainId": "eip155:56",
+    "name": "Digital Trip Advisor",
+    "precision": 9,
+    "color": "#B09056",
+    "icon": "https://assets.coingecko.com/coins/images/29712/thumb/dta-logo.png?1696528644",
+    "symbol": "DTA",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x6d6554939d646f274d0fc3cecb7dab5d76bc908f": {
+    "assetId": "eip155:56/bep20:0x6d6554939d646f274d0fc3cecb7dab5d76bc908f",
+    "chainId": "eip155:56",
+    "name": "Morphswap on BNB Smart Chain",
+    "precision": 18,
+    "color": "#E3358C",
+    "icon": "https://assets.coingecko.com/coins/images/28114/thumb/mslogo200.png?1696527122",
+    "symbol": "MS",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x6d6ba21e4c4b29ca7bfa1c344ba1e35b8dae7205": {
+    "assetId": "eip155:56/bep20:0x6d6ba21e4c4b29ca7bfa1c344ba1e35b8dae7205",
+    "chainId": "eip155:56",
+    "name": "Katana Inu on BNB Smart Chain",
+    "precision": 18,
+    "color": "#929090",
+    "icon": "https://assets.coingecko.com/coins/images/21872/thumb/Katana_Inu512.png?1696521226",
+    "symbol": "KATA",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x6d830e1d0179b4fe656683c9d14c05f8cd95db75": {
+    "assetId": "eip155:56/bep20:0x6d830e1d0179b4fe656683c9d14c05f8cd95db75",
+    "chainId": "eip155:56",
+    "name": "Griffin Art Ecosystem",
+    "precision": 18,
+    "color": "#1B1433",
+    "icon": "https://assets.coingecko.com/coins/images/28309/thumb/hItUGzio_400x400.jpeg?1696527313",
+    "symbol": "GART",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x6d86f0a41c3966cef8ea139648db707e912563c9": {
+    "assetId": "eip155:56/bep20:0x6d86f0a41c3966cef8ea139648db707e912563c9",
+    "chainId": "eip155:56",
+    "name": "mCoin",
+    "precision": 18,
+    "color": "#523D19",
+    "icon": "https://assets.coingecko.com/coins/images/24942/thumb/mcoin_Logo_%281%29.png?1696524097",
+    "symbol": "MCOIN",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x6d8734002fbffe1c86495e32c95f732fc77f6f2a": {
+    "assetId": "eip155:56/bep20:0x6d8734002fbffe1c86495e32c95f732fc77f6f2a",
+    "chainId": "eip155:56",
+    "name": "Peanut on BNB Smart Chain",
+    "precision": 18,
+    "color": "#F0572D",
+    "icon": "https://assets.coingecko.com/coins/images/13958/thumb/2sAMZXpO_400x400.jpg?1696513694",
+    "symbol": "NUX",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x6dc3d0d6ec970bf5522611d8eff127145d02b675": {
+    "assetId": "eip155:56/bep20:0x6dc3d0d6ec970bf5522611d8eff127145d02b675",
+    "chainId": "eip155:56",
+    "name": "Revolotto",
+    "precision": 18,
+    "color": "#27CBFC",
+    "icon": "https://assets.coingecko.com/coins/images/19044/thumb/rvl.PNG?1696518495",
+    "symbol": "RVL",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x6dc923900b3000bd074d1fea072839d51c76e70e": {
+    "assetId": "eip155:56/bep20:0x6dc923900b3000bd074d1fea072839d51c76e70e",
+    "chainId": "eip155:56",
+    "name": "RIFI United",
+    "precision": 18,
+    "color": "#FCF4DE",
+    "icon": "https://assets.coingecko.com/coins/images/20539/thumb/N7d6LRy.png?1696519946",
+    "symbol": "RU",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x6ddd36f6c7c021ebf7d4b9753537d7bca8ed4e37": {
+    "assetId": "eip155:56/bep20:0x6ddd36f6c7c021ebf7d4b9753537d7bca8ed4e37",
+    "chainId": "eip155:56",
+    "name": "Hamster Groomers",
+    "precision": 18,
+    "color": "#17D4D8",
+    "icon": "https://assets.coingecko.com/coins/images/30038/thumb/token_500.png?1696528961",
+    "symbol": "GROOMER",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x6dedceee04795061478031b1dfb3c1ddca80b204": {
+    "assetId": "eip155:56/bep20:0x6dedceee04795061478031b1dfb3c1ddca80b204",
+    "chainId": "eip155:56",
+    "name": "Horizon Protocol zBNB",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAIAAAACACAMAAAD04JH5AAADAFBMVEUtN0gmMdj///8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmvhkQAAABAHRSTlP/////AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAf6K/dgAAQItJREFUeNoBgEB/vwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAgICAgICAgICAgICAgICAgICAgEBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAAAAAAAAAAAAAAAAAAACAgICAgICAQEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgEBAQEBAQECAgICAgICAgICAgICAgICAgIAAgICAgICAgICAgICAgICAgICAgMBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAwAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAgICAgICAgICAgIDAgICAgICAgICAgICAgICAgICAgMBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAwAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAgICAgICAgICAgIDAgICAgICAgICAgICAgICAgICAgMBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAwAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAgICAgICAgICAgIDAgICAgICAgICAgICAgICAgICAgMBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAwAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAgICAgICAgICAgIDAgICAgICAgICAgICAgICAgICAgMBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAwAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAgICAgICAgICAgIDAgICAgICAgICAgICAgICAgICAgMBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAwAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAgICAgICAgICAgIDAAMDAwMDAwMDAwMDAgICAgICAgMBAQEBAQECAgICAgICAwMDAwMDAwMDAwMDAwMDAwMDAwMDAgICAgICAgAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAwMDAwMDAwMDAwMDAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAACAgICAgICAQMDAwMDAwMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAACAgICAgICAgICAgICAgEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAACAgICAgICAgICAgICAgMBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAACAgICAgICAgICAgICAgMBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAACAgICAgICAgICAgICAgMBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAACAgICAgICAgICAgICAgMBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAACAgICAgICAgICAgICAgMBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAACAgICAgICAgICAgICAgMBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAgICAgIAAwMDAwMDAwEBAQEBAQEBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAAMDAwMDAwMAAAAAAAACAgICAgICAwMDAwMDAwICAgICAgIBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAgICAgICAgICAgIAAgICAgIDAAAAAAEBAQEBAQEBAQEBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAwAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQICAgICAgIDAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAgICAgICAgICAgIDAgICAgIDAAAAAAEBAQEBAQEBAQEBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAwAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQICAgICAgIDAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAgICAgICAgICAgIDAgICAgIDAAAAAAEBAQEBAQEBAQEBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAwAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQICAgICAgIDAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAgICAgICAgICAgIDAgICAgIDAAAAAAEBAQEBAQEBAQEBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAwAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQICAgICAgIDAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAgICAgICAgICAgIDAgICAgIDAAAAAAEBAQEBAQEBAQEBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAwAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQICAgICAgIDAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAgICAgICAgICAgIDAgICAgIDAAAAAAEBAQEBAQEBAQEBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAwAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQICAgICAgIDAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAgICAgICAgICAgIDAAMDAwMDAAAAAAEBAQEBAQEBAQEBAQEBAQECAgICAgICAwMDAwMDAwMDAwMDAwMDAwMDAwMDAgICAgICAgAAAAAAAAACAgICAgICAwEBAQEBAQEDAwMDAwMCAgICAgICAgICAgICAgMBAQEBAQECAgICAgICAwMDAwMDAwMDAwMDAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAgICAgICAgMAAAAAAAACAgICAgICAwAAAAAAAAAAAAAAAAACAgICAgICAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAgICAgICAgMAAAAAAAACAgICAgICAwAAAAAAAAAAAAAAAAAAAwMDAwMDAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAgICAgICAgMAAAAAAAACAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAgICAgICAgMAAAAAAAACAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAgICAgICAgMAAAAAAAACAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAgICAgICAgMAAAAAAAACAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAgICAgICAgMAAAAAAAACAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAgICAgICAgMAAAAAAAACAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAgICAgICAgICAgICAgICAgICAgEBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAAMDAwMDAwMAAAAAAAACAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAgICAgICAgICAgIAAgICAgICAgICAgICAgICAgICAgMBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAwAAAAAAAAAAAAAAAAACAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAgICAgICAgICAgIDAgICAgICAgICAgICAgICAgICAgMBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAwAAAAAAAAAAAAAAAAACAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAgICAgICAgICAgIDAgICAgICAgICAgICAgICAgICAgMBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAwAAAAAAAAAAAAAAAAACAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAgICAgICAgICAgIDAgICAgICAgICAgICAgICAgICAgMBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAwAAAAAAAAAAAAAAAAACAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAgICAgICAgICAgIDAgICAgICAgICAgICAgICAgICAgMBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAwAAAAAAAAAAAAAAAAACAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAgICAgICAgICAgIDAgICAgICAgICAgICAgICAgICAgMBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAwAAAAAAAAAAAAAAAAACAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAgICAgICAgICAgIDAAMDAwMDAwMDAwMDAwMDAwMDAwMBAQEBAQEBAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwAAAAAAAAAAAAAAAAAAAwMDAwMDAwAAAAAAAAAAAAAAAAAAAAAAAAEBAQMDAwMDAwMBAQEBAQEBAwMDAwMDAwMDAwMDAwMDAwMDAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACpaMx4AzJE5AAAAAElFTkSuQmCC",
+    "symbol": "ZBNB",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x6e02be885fca1138038420fddd4b41c59a8cea6d": {
+    "assetId": "eip155:56/bep20:0x6e02be885fca1138038420fddd4b41c59a8cea6d",
+    "chainId": "eip155:56",
+    "name": "Smart Block Chain City",
+    "precision": 18,
+    "color": "#F0F0F0",
+    "icon": "https://assets.coingecko.com/coins/images/24822/thumb/V6xfvLzv_400x400.jpg?1696523980",
+    "symbol": "SBCC",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x6e22bfc7236e95c3aef6acdbd7218bcf59a483ac": {
+    "assetId": "eip155:56/bep20:0x6e22bfc7236e95c3aef6acdbd7218bcf59a483ac",
+    "chainId": "eip155:56",
+    "name": "Risecoin",
+    "precision": 18,
+    "color": "#1E6F74",
+    "icon": "https://assets.coingecko.com/coins/images/28302/thumb/risecoin-200-200.png?1696527301",
+    "symbol": "RSC",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x6e2a5ea25b161befa6a8444c71ae3a89c39933c6": {
+    "assetId": "eip155:56/bep20:0x6e2a5ea25b161befa6a8444c71ae3a89c39933c6",
+    "chainId": "eip155:56",
+    "name": "Bit2Me on BNB Smart Chain",
+    "precision": 18,
+    "color": "#3684DC",
+    "icon": "https://assets.coingecko.com/coins/images/19848/thumb/b2m-circle-solid-default.png?1696519271",
+    "symbol": "B2M",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x6e4a971b81ca58045a2aa982eaa3d50c4ac38f42": {
+    "assetId": "eip155:56/bep20:0x6e4a971b81ca58045a2aa982eaa3d50c4ac38f42",
+    "chainId": "eip155:56",
+    "name": "Bridge Oracle on BNB Smart Chain",
+    "precision": 18,
+    "color": "#7A6B34",
+    "icon": "https://assets.coingecko.com/coins/images/12512/thumb/brg.png?1696512327",
+    "symbol": "BRG",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x6e88056e8376ae7709496ba64d37fa2f8015ce3e": {
+    "assetId": "eip155:56/bep20:0x6e88056e8376ae7709496ba64d37fa2f8015ce3e",
+    "chainId": "eip155:56",
+    "name": "DeXe on BNB Smart Chain",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/12713/thumb/DEXE_token_logo.png?1696512514",
+    "symbol": "DEXE",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x6e9730ecffbed43fd876a264c982e254ef05a0de": {
+    "assetId": "eip155:56/bep20:0x6e9730ecffbed43fd876a264c982e254ef05a0de",
+    "chainId": "eip155:56",
+    "name": "Nord Finance on BNB Smart Chain",
+    "precision": 18,
+    "color": "#E1F6F3",
+    "icon": "https://assets.coingecko.com/coins/images/13630/thumb/nord.jpg?1696513378",
+    "symbol": "NORD",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x6e9a1428798ff011e2cf369b129630f686232784": {
+    "assetId": "eip155:56/bep20:0x6e9a1428798ff011e2cf369b129630f686232784",
+    "chainId": "eip155:56",
+    "name": "Koubek",
+    "precision": 15,
+    "color": "#4CE47C",
+    "icon": "https://assets.coingecko.com/coins/images/32039/thumb/koubek_logo_coingecko_2023.png?1696530836",
+    "symbol": "KBK",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x6eadc05928acd93efb3fa0dfbc644d96c6aa1df8": {
+    "assetId": "eip155:56/bep20:0x6eadc05928acd93efb3fa0dfbc644d96c6aa1df8",
+    "chainId": "eip155:56",
+    "name": "8Pay on BNB Smart Chain",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/14667/thumb/8pay.jpeg?1696514342",
+    "symbol": "8PAY",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x6ec7ad5a76dd866f07ddf293d4f5bc89c8bd2e09": {
+    "assetId": "eip155:56/bep20:0x6ec7ad5a76dd866f07ddf293d4f5bc89c8bd2e09",
+    "chainId": "eip155:56",
+    "name": "Nole Inu",
+    "precision": 9,
+    "color": "#5DA2E1",
+    "icon": "https://assets.coingecko.com/coins/images/29913/thumb/200x200_%282%29_%281%29.jpg?1696528841",
+    "symbol": "N0LE",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x6ec90334d89dbdc89e08a133271be3d104128edb": {
+    "assetId": "eip155:56/bep20:0x6ec90334d89dbdc89e08a133271be3d104128edb",
+    "chainId": "eip155:56",
+    "name": "Wiki Cat",
+    "precision": 18,
+    "color": "#8A8787",
+    "icon": "https://assets.coingecko.com/coins/images/26037/thumb/Wiki-Logo.png?1696525114",
+    "symbol": "WKC",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x6eda890c7c914e9c6b42415d2a3273b022e7b5e7": {
+    "assetId": "eip155:56/bep20:0x6eda890c7c914e9c6b42415d2a3273b022e7b5e7",
+    "chainId": "eip155:56",
+    "name": "Risitas Coin",
+    "precision": 18,
+    "color": "#B99941",
+    "icon": "https://assets.coingecko.com/coins/images/30781/thumb/meme200.png?1696529648",
+    "symbol": "RISITA",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x6eed9140f80f9e989cb23aecbd20b97a29ffc80f": {
+    "assetId": "eip155:56/bep20:0x6eed9140f80f9e989cb23aecbd20b97a29ffc80f",
+    "chainId": "eip155:56",
+    "name": "LEAP Token on BNB Smart Chain",
+    "precision": 18,
+    "color": "#642CE4",
+    "icon": "https://assets.coingecko.com/coins/images/27258/thumb/LEAPtoken_LOGO.png?1696526311",
+    "symbol": "LEAP",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x6ef238e9e8cd2a96740897761c18894fc086b9d0": {
+    "assetId": "eip155:56/bep20:0x6ef238e9e8cd2a96740897761c18894fc086b9d0",
+    "chainId": "eip155:56",
+    "name": "Mytheria",
+    "precision": 18,
+    "color": "#626755",
+    "icon": "https://assets.coingecko.com/coins/images/20470/thumb/mytheria.PNG?1696519878",
+    "symbol": "MYRA",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x6f0ad7c4044a3474ccb29caefa182549dc70e802": {
+    "assetId": "eip155:56/bep20:0x6f0ad7c4044a3474ccb29caefa182549dc70e802",
+    "chainId": "eip155:56",
+    "name": "Social AI",
+    "precision": 18,
+    "color": "#E5F0F6",
+    "icon": "https://assets.coingecko.com/coins/images/29278/thumb/photo_2023-03-02_13.38.53.jpeg?1696528231",
+    "symbol": "SOCIALAI",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x6f13b1fb6b2897bb40adbc09f7f6cfad181c0904": {
+    "assetId": "eip155:56/bep20:0x6f13b1fb6b2897bb40adbc09f7f6cfad181c0904",
+    "chainId": "eip155:56",
+    "name": "GEURO",
+    "precision": 18,
+    "color": "#145CE4",
+    "icon": "https://assets.coingecko.com/coins/images/29688/thumb/CG.png?1696528622",
+    "symbol": "GEURO",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x6f3aaf802f57d045efdd2ac9c06d8879305542af": {
+    "assetId": "eip155:56/bep20:0x6f3aaf802f57d045efdd2ac9c06d8879305542af",
+    "chainId": "eip155:56",
+    "name": "ProximaX",
+    "precision": 6,
+    "color": "#64ACE4",
+    "icon": "https://assets.coingecko.com/coins/images/3735/thumb/proximax.png?1696504404",
+    "symbol": "XPX",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x6f46a74ca99bc39249af47fb5101552f5b5c55d9": {
+    "assetId": "eip155:56/bep20:0x6f46a74ca99bc39249af47fb5101552f5b5c55d9",
+    "chainId": "eip155:56",
+    "name": "Xpad pro",
+    "precision": 18,
+    "color": "#0444FC",
+    "icon": "https://assets.coingecko.com/coins/images/32566/thumb/XPP.png?1699342648",
+    "symbol": "XPP",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x6f51a1674befdd77f7ab1246b83adb9f13613762": {
+    "assetId": "eip155:56/bep20:0x6f51a1674befdd77f7ab1246b83adb9f13613762",
+    "chainId": "eip155:56",
+    "name": "Seedify NFT Space",
+    "precision": 18,
+    "color": "#E5EFF8",
+    "icon": "https://assets.coingecko.com/coins/images/27131/thumb/seedify.jpg?1696526183",
+    "symbol": "SNFTS",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x6f5b3258c0848e1b9be4c10a4d768db9c735ba12": {
+    "assetId": "eip155:56/bep20:0x6f5b3258c0848e1b9be4c10a4d768db9c735ba12",
+    "chainId": "eip155:56",
+    "name": "PepeUSDT",
+    "precision": 9,
+    "color": "#F92CD1",
+    "icon": "https://assets.coingecko.com/coins/images/30209/thumb/OUR_LOGO.png?1696529119",
+    "symbol": "PPUSDT",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x6f620ec89b8479e97a6985792d0c64f237566746": {
+    "assetId": "eip155:56/bep20:0x6f620ec89b8479e97a6985792d0c64f237566746",
+    "chainId": "eip155:56",
+    "name": "WePiggy Coin on BNB Smart Chain",
+    "precision": 18,
+    "color": "#FC589E",
+    "icon": "https://assets.coingecko.com/coins/images/21914/thumb/WPC200.png?1696521265",
+    "symbol": "WPC",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x6f64cc61d0d5542e40e6f2828cbdda84507d214d": {
+    "assetId": "eip155:56/bep20:0x6f64cc61d0d5542e40e6f2828cbdda84507d214d",
+    "chainId": "eip155:56",
+    "name": "MetaniaGames",
+    "precision": 9,
+    "color": "#963CC3",
+    "icon": "https://assets.coingecko.com/coins/images/22927/thumb/metania-200.png?1696522223",
+    "symbol": "METANIA",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x6f769e65c14ebd1f68817f5f1dcdb61cfa2d6f7e": {
+    "assetId": "eip155:56/bep20:0x6f769e65c14ebd1f68817f5f1dcdb61cfa2d6f7e",
+    "chainId": "eip155:56",
+    "name": "ARPA on BNB Smart Chain",
+    "precision": 18,
+    "color": "#6A6A6C",
+    "icon": "https://assets.coingecko.com/coins/images/8506/thumb/9u0a23XY_400x400.jpg?1696508685",
+    "symbol": "ARPA",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x6f9320833d85a63c6a187cf9ada0f87930e61690": {
+    "assetId": "eip155:56/bep20:0x6f9320833d85a63c6a187cf9ada0f87930e61690",
+    "chainId": "eip155:56",
+    "name": "DOGE 1SATELLITE",
+    "precision": 9,
+    "color": "#132873",
+    "icon": "https://assets.coingecko.com/coins/images/32415/thumb/Safeimagekit-resized-img_%285%29.png?1698114051",
+    "symbol": "DOGE-1SAT",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x6f9f0c4ad9af7ebd61ac5a1d4e0f2227f7b0e5f9": {
+    "assetId": "eip155:56/bep20:0x6f9f0c4ad9af7ebd61ac5a1d4e0f2227f7b0e5f9",
+    "chainId": "eip155:56",
+    "name": "Era7",
+    "precision": 18,
+    "color": "#DECED6",
+    "icon": "https://assets.coingecko.com/coins/images/24061/thumb/18483.png?1696523251",
+    "symbol": "ERA",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x6fb8889b3c5d79a4c855d4de56ce3b742d8e0eba": {
+    "assetId": "eip155:56/bep20:0x6fb8889b3c5d79a4c855d4de56ce3b742d8e0eba",
+    "chainId": "eip155:56",
+    "name": "Recycle X",
+    "precision": 18,
+    "color": "#8CCC24",
+    "icon": "https://assets.coingecko.com/coins/images/28616/thumb/Recycle.png?1696527601",
+    "symbol": "RCX",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x6fc39ac154cfd20f1951a2823abab7ec471b783a": {
+    "assetId": "eip155:56/bep20:0x6fc39ac154cfd20f1951a2823abab7ec471b783a",
+    "chainId": "eip155:56",
+    "name": "SpritzMoon Crypto Token",
+    "precision": 9,
+    "color": "#FCE7ED",
+    "icon": "https://assets.coingecko.com/coins/images/24401/thumb/SpritzMoon_logo_new.png?1696523583",
+    "symbol": "SPRITZMOON",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x6fd7c98458a943f469e1cf4ea85b173f5cd342f4": {
+    "assetId": "eip155:56/bep20:0x6fd7c98458a943f469e1cf4ea85b173f5cd342f4",
+    "chainId": "eip155:56",
+    "name": "BillionHappiness",
+    "precision": 18,
+    "color": "#FC8434",
+    "icon": "https://assets.coingecko.com/coins/images/12803/thumb/BHC_BLACK_TRANSPARENT.png?1696512596",
+    "symbol": "BHC",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x6fe3d0f096fc932a905accd1eb1783f6e4cec717": {
+    "assetId": "eip155:56/bep20:0x6fe3d0f096fc932a905accd1eb1783f6e4cec717",
+    "chainId": "eip155:56",
+    "name": "Milky",
+    "precision": 18,
+    "color": "#FBCC84",
+    "icon": "https://assets.coingecko.com/coins/images/20269/thumb/milky.png?1696519675",
+    "symbol": "MILKY",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x6fefd97f328342a8a840546a55fdcfee7542f9a8": {
+    "assetId": "eip155:56/bep20:0x6fefd97f328342a8a840546a55fdcfee7542f9a8",
+    "chainId": "eip155:56",
+    "name": "BitBase Token on BNB Smart Chain",
+    "precision": 18,
+    "color": "#F3E9D5",
+    "icon": "https://assets.coingecko.com/coins/images/17414/thumb/btbs.PNG?1696516962",
+    "symbol": "BTBS",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x6ff1bfa14a57594a5874b37ff6ac5efbd9f9599a": {
+    "assetId": "eip155:56/bep20:0x6ff1bfa14a57594a5874b37ff6ac5efbd9f9599a",
+    "chainId": "eip155:56",
+    "name": "TotemFi on BNB Smart Chain",
+    "precision": 18,
+    "color": "#EAF2F3",
+    "icon": "https://assets.coingecko.com/coins/images/14680/thumb/TOTM.png?1696514353",
+    "symbol": "TOTM",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x6ffcebb2f9360bc233cc0aa35d15b4999cd6af29": {
+    "assetId": "eip155:56/bep20:0x6ffcebb2f9360bc233cc0aa35d15b4999cd6af29",
+    "chainId": "eip155:56",
+    "name": "Winterdog",
+    "precision": 9,
+    "color": "#B6E4EF",
+    "icon": "https://assets.coingecko.com/coins/images/27907/thumb/WD300x300.png?1696526928",
+    "symbol": "WDOG",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x701d9a068d1eec64fbc10299b9f1b18fbb355ddb": {
+    "assetId": "eip155:56/bep20:0x701d9a068d1eec64fbc10299b9f1b18fbb355ddb",
+    "chainId": "eip155:56",
+    "name": "Argonon Helium",
+    "precision": 18,
+    "color": "#2CA4BF",
+    "icon": "https://assets.coingecko.com/coins/images/25542/thumb/EP_f1090image_story.jpeg?1696524675",
+    "symbol": "ARG",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x7029f86dc4634c5d59ee3f1578c193783505e2c1": {
+    "assetId": "eip155:56/bep20:0x7029f86dc4634c5d59ee3f1578c193783505e2c1",
+    "chainId": "eip155:56",
+    "name": "TrustPad",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/32960/thumb/tpad.png?1700014159",
+    "symbol": "TPAD",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x7062f2e2b917ed14b2b0833e9e0278cb4bc62c69": {
+    "assetId": "eip155:56/bep20:0x7062f2e2b917ed14b2b0833e9e0278cb4bc62c69",
+    "chainId": "eip155:56",
+    "name": "Antofy",
+    "precision": 18,
+    "color": "#1A1A1C",
+    "icon": "https://assets.coingecko.com/coins/images/31952/thumb/abn.png?1696530758",
+    "symbol": "ABN",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x70802af0ba10dd5bb33276b5b37574b6451db3d9": {
+    "assetId": "eip155:56/bep20:0x70802af0ba10dd5bb33276b5b37574b6451db3d9",
+    "chainId": "eip155:56",
+    "name": "Unido on BNB Smart Chain",
+    "precision": 18,
+    "color": "#2C2A39",
+    "icon": "https://assets.coingecko.com/coins/images/14176/thumb/unido.jpg?1696513894",
+    "symbol": "UDO",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x7082ff3a22e707136c80a9efcb215ec4c1fda810": {
+    "assetId": "eip155:56/bep20:0x7082ff3a22e707136c80a9efcb215ec4c1fda810",
+    "chainId": "eip155:56",
+    "name": "Metathings",
+    "precision": 9,
+    "color": "#353535",
+    "icon": "https://assets.coingecko.com/coins/images/29552/thumb/Mettlogo200x200.png?1696528492",
+    "symbol": "METT",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x7083609fce4d1d8dc0c979aab8c869ea2c873402": {
+    "assetId": "eip155:56/bep20:0x7083609fce4d1d8dc0c979aab8c869ea2c873402",
+    "chainId": "eip155:56",
+    "name": "Binance Peg Polkadot",
+    "precision": 18,
+    "color": "#191919",
+    "icon": "https://assets.coingecko.com/coins/images/15457/thumb/-Tj2WF_6_400x400.jpg?1696515104",
+    "symbol": "DOT",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x708739980021a0b0b2e555383fe1283697e140e9": {
+    "assetId": "eip155:56/bep20:0x708739980021a0b0b2e555383fe1283697e140e9",
+    "chainId": "eip155:56",
+    "name": "Metacourt",
+    "precision": 18,
+    "color": "#040404",
+    "icon": "https://assets.coingecko.com/coins/images/15708/thumb/metacourt.png?1696515336",
+    "symbol": "BLS",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x708955db0d4c52ffbf9aa34af7f3ca8bf07390a8": {
+    "assetId": "eip155:56/bep20:0x708955db0d4c52ffbf9aa34af7f3ca8bf07390a8",
+    "chainId": "eip155:56",
+    "name": "Battle Saga",
+    "precision": 18,
+    "color": "#E3C230",
+    "icon": "https://assets.coingecko.com/coins/images/21990/thumb/200x200.png?1696521338",
+    "symbol": "BTL",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x708cb02ad77e1b245b1640cee51b3cc844bcaef4": {
+    "assetId": "eip155:56/bep20:0x708cb02ad77e1b245b1640cee51b3cc844bcaef4",
+    "chainId": "eip155:56",
+    "name": "Etherland on BNB Smart Chain",
+    "precision": 18,
+    "color": "#046464",
+    "icon": "https://assets.coingecko.com/coins/images/14432/thumb/eland_logo.png?1696514122",
+    "symbol": "ELAND",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x70a30bb133f7b5038d3c28d8b77d8da258fc784a": {
+    "assetId": "eip155:56/bep20:0x70a30bb133f7b5038d3c28d8b77d8da258fc784a",
+    "chainId": "eip155:56",
+    "name": "DeHeroGame Amazing Token",
+    "precision": 18,
+    "color": "#664D2E",
+    "icon": "https://assets.coingecko.com/coins/images/29233/thumb/23548.png?1696528190",
+    "symbol": "AMG",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x70b6c6a555507ee4ac91c15e5c80b7dc8ff3b489": {
+    "assetId": "eip155:56/bep20:0x70b6c6a555507ee4ac91c15e5c80b7dc8ff3b489",
+    "chainId": "eip155:56",
+    "name": "XTblock",
+    "precision": 18,
+    "color": "#8AD7D6",
+    "icon": "https://assets.coingecko.com/coins/images/17921/thumb/XTblock-Icon-round-200.png?1696517441",
+    "symbol": "XTT-B20",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x70bfbcf22a82f412bd4fb6ba00fabb2022f04929": {
+    "assetId": "eip155:56/bep20:0x70bfbcf22a82f412bd4fb6ba00fabb2022f04929",
+    "chainId": "eip155:56",
+    "name": "COINMARKETPRIME",
+    "precision": 18,
+    "color": "#DF6B10",
+    "icon": "https://assets.coingecko.com/coins/images/31775/thumb/IMG_20230915_031637_766.jpg?1696530593",
+    "symbol": "CMP",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x7111e5c9b01ffa18957b1aa27e9cb0e8fba214f5": {
+    "assetId": "eip155:56/bep20:0x7111e5c9b01ffa18957b1aa27e9cb0e8fba214f5",
+    "chainId": "eip155:56",
+    "name": "Unilab",
+    "precision": 18,
+    "color": "#4DABCE",
+    "icon": "https://assets.coingecko.com/coins/images/22330/thumb/unilab-logo-black-text-200.png?1696521674",
+    "symbol": "ULAB",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x7130d2a12b9bcbfae4f2634d864a1ee1ce3ead9c": {
+    "assetId": "eip155:56/bep20:0x7130d2a12b9bcbfae4f2634d864a1ee1ce3ead9c",
+    "chainId": "eip155:56",
+    "name": "Binance Bitcoin",
+    "precision": 18,
+    "color": "#333434",
+    "icon": "https://assets.coingecko.com/coins/images/14108/thumb/Binance-bitcoin.png?1696513829",
+    "symbol": "BTCB",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x715c2f44e3653e44397de00de9d010c4664c456f": {
+    "assetId": "eip155:56/bep20:0x715c2f44e3653e44397de00de9d010c4664c456f",
+    "chainId": "eip155:56",
+    "name": "CrossDEX",
+    "precision": 18,
+    "color": "#80ECA6",
+    "icon": "https://assets.coingecko.com/coins/images/31528/thumb/Logo_Trans_%281%29.png?1696530337",
+    "symbol": "CDX",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x715d400f88c167884bbcc41c5fea407ed4d2f8a0": {
+    "assetId": "eip155:56/bep20:0x715d400f88c167884bbcc41c5fea407ed4d2f8a0",
+    "chainId": "eip155:56",
+    "name": "Axie Infinity on BNB Smart Chain",
+    "precision": 18,
+    "color": "#04C7F2",
+    "icon": "https://assets.coingecko.com/coins/images/13029/thumb/axie_infinity_logo.png?1696512817",
+    "symbol": "AXS",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x71648f61d21d3c75b08414ffa817c4ac2157f89e": {
+    "assetId": "eip155:56/bep20:0x71648f61d21d3c75b08414ffa817c4ac2157f89e",
+    "chainId": "eip155:56",
+    "name": "CoinRadr",
+    "precision": 18,
+    "color": "#E8EFEF",
+    "icon": "https://assets.coingecko.com/coins/images/23334/thumb/Vt0zWsHQ_400x400.jpg?1696522550",
+    "symbol": "RADR",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x716de634227c1831f78d1989c92c6495e279a084": {
+    "assetId": "eip155:56/bep20:0x716de634227c1831f78d1989c92c6495e279a084",
+    "chainId": "eip155:56",
+    "name": "SwiftSwap",
+    "precision": 18,
+    "color": "#6C40A0",
+    "icon": "https://assets.coingecko.com/coins/images/29534/thumb/logo_200x200-01.png?1696528476",
+    "symbol": "SWS",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x71809c4ff017ceade03038a8b597ecabb6519918": {
+    "assetId": "eip155:56/bep20:0x71809c4ff017ceade03038a8b597ecabb6519918",
+    "chainId": "eip155:56",
+    "name": "Cockapoo",
+    "precision": 18,
+    "color": "#C3862E",
+    "icon": "https://assets.coingecko.com/coins/images/16852/thumb/cpoo.png?1696516420",
+    "symbol": "CPOO",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x71b87be9ccbabe4f393e809dfc26df3c9720e0a2": {
+    "assetId": "eip155:56/bep20:0x71b87be9ccbabe4f393e809dfc26df3c9720e0a2",
+    "chainId": "eip155:56",
+    "name": "T mac DAO",
+    "precision": 18,
+    "color": "#1A1A1A",
+    "icon": "https://assets.coingecko.com/coins/images/28117/thumb/tmg.png?1696527125",
+    "symbol": "TMG",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x71be881e9c5d4465b3fff61e89c6f3651e69b5bb": {
+    "assetId": "eip155:56/bep20:0x71be881e9c5d4465b3fff61e89c6f3651e69b5bb",
+    "chainId": "eip155:56",
+    "name": "Brazilian Digital on BNB Smart Chain",
+    "precision": 4,
+    "color": "#160633",
+    "icon": "https://assets.coingecko.com/coins/images/8472/thumb/MicrosoftTeams-image_%286%29.png?1696508657",
+    "symbol": "BRZ",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x71cb7ef7980c44dfbbe5744973c0587764116d26": {
+    "assetId": "eip155:56/bep20:0x71cb7ef7980c44dfbbe5744973c0587764116d26",
+    "chainId": "eip155:56",
+    "name": "Welle on BNB Smart Chain",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/32715/thumb/WELLE-TKN-1.png?1699000890",
+    "symbol": "WELLE",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x71d03a620646f8b572282ef39228d36add67ee20": {
+    "assetId": "eip155:56/bep20:0x71d03a620646f8b572282ef39228d36add67ee20",
+    "chainId": "eip155:56",
+    "name": "Sekuya",
+    "precision": 9,
+    "color": "#4A6728",
+    "icon": "https://assets.coingecko.com/coins/images/23788/thumb/VlXE8u0E_400x400.jpg?1696522988",
+    "symbol": "SKUY",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x71d03f5cbf039febcc6ee8dbe20bc9ba3ea874fe": {
+    "assetId": "eip155:56/bep20:0x71d03f5cbf039febcc6ee8dbe20bc9ba3ea874fe",
+    "chainId": "eip155:56",
+    "name": "Web3Shot",
+    "precision": 18,
+    "color": "#DC2484",
+    "icon": "https://assets.coingecko.com/coins/images/29723/thumb/W3S.jpg?1696528654",
+    "symbol": "W3S",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x71de20e0c4616e7fcbfdd3f875d568492cbe4739": {
+    "assetId": "eip155:56/bep20:0x71de20e0c4616e7fcbfdd3f875d568492cbe4739",
+    "chainId": "eip155:56",
+    "name": "Swingby on BNB Smart Chain",
+    "precision": 18,
+    "color": "#333B96",
+    "icon": "https://assets.coingecko.com/coins/images/11861/thumb/swingby.png?1696511731",
+    "symbol": "SWINGBY",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x71e67b8d88718d113fc7edbd95f7ca380222b3c6": {
+    "assetId": "eip155:56/bep20:0x71e67b8d88718d113fc7edbd95f7ca380222b3c6",
+    "chainId": "eip155:56",
+    "name": "Humanize",
+    "precision": 8,
+    "color": "#151838",
+    "icon": "https://assets.coingecko.com/coins/images/27439/thumb/hmt.png?1696526480",
+    "symbol": "HMT",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x71e80e96af604afc23ca2aed4c1c7466db6dd0c4": {
+    "assetId": "eip155:56/bep20:0x71e80e96af604afc23ca2aed4c1c7466db6dd0c4",
+    "chainId": "eip155:56",
+    "name": "Baby Floki on BNB Smart Chain",
+    "precision": 7,
+    "color": "#79E3F3",
+    "icon": "https://assets.coingecko.com/coins/images/18436/thumb/9FkEA4bN.png?1696517924",
+    "symbol": "BABYFLOKI",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x71eeba415a523f5c952cc2f06361d5443545ad28": {
+    "assetId": "eip155:56/bep20:0x71eeba415a523f5c952cc2f06361d5443545ad28",
+    "chainId": "eip155:56",
+    "name": "XDAO on BNB Smart Chain",
+    "precision": 18,
+    "color": "#04080D",
+    "icon": "https://assets.coingecko.com/coins/images/27363/thumb/token_2.png?1696526408",
+    "symbol": "XDAO",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x71f69afed8825d6d9300ba4d74103e1dcc263b93": {
+    "assetId": "eip155:56/bep20:0x71f69afed8825d6d9300ba4d74103e1dcc263b93",
+    "chainId": "eip155:56",
+    "name": "Simpli Finance",
+    "precision": 18,
+    "color": "#ADE7F5",
+    "icon": "https://assets.coingecko.com/coins/images/21264/thumb/iT_XqHrd_400x400.jpg?1696520636",
+    "symbol": "SIMPLI",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x722cb8e411d40942c0f581b919ecce3e4d759602": {
+    "assetId": "eip155:56/bep20:0x722cb8e411d40942c0f581b919ecce3e4d759602",
+    "chainId": "eip155:56",
+    "name": "Osean",
+    "precision": 18,
+    "color": "#D9F2FC",
+    "icon": "https://assets.coingecko.com/coins/images/30968/thumb/oceana.png?1696529808",
+    "symbol": "OSEAN",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x722f41f6511ff7cda73a1cb0a9ea2f731738c4a0": {
+    "assetId": "eip155:56/bep20:0x722f41f6511ff7cda73a1cb0a9ea2f731738c4a0",
+    "chainId": "eip155:56",
+    "name": "Street Runner",
+    "precision": 18,
+    "color": "#151416",
+    "icon": "https://assets.coingecko.com/coins/images/24382/thumb/kKx4Ivoy_400x400.jpg?1696523565",
+    "symbol": "SRG",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x723000d0df87652387e737f5747ac9205bf9c213": {
+    "assetId": "eip155:56/bep20:0x723000d0df87652387e737f5747ac9205bf9c213",
+    "chainId": "eip155:56",
+    "name": "Nemesis Downfall",
+    "precision": 18,
+    "color": "#282828",
+    "icon": "https://assets.coingecko.com/coins/images/32387/thumb/ND_Logo.jpg?1698047848",
+    "symbol": "ND",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x724a32dfff9769a0a0e1f0515c0012d1fb14c3bd": {
+    "assetId": "eip155:56/bep20:0x724a32dfff9769a0a0e1f0515c0012d1fb14c3bd",
+    "chainId": "eip155:56",
+    "name": "Superpower Squad on BNB Smart Chain",
+    "precision": 18,
+    "color": "#D58439",
+    "icon": "https://assets.coingecko.com/coins/images/28466/thumb/SQUAD200X200.png?1696527460",
+    "symbol": "SQUAD",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x724f8ebae58f19bc472ae57b4b24748a9f3e55c5": {
+    "assetId": "eip155:56/bep20:0x724f8ebae58f19bc472ae57b4b24748a9f3e55c5",
+    "chainId": "eip155:56",
+    "name": "Husky AI",
+    "precision": 18,
+    "color": "#E4EEEF",
+    "icon": "https://assets.coingecko.com/coins/images/31386/thumb/IMG_19721BF64363-1.jpeg?1696530203",
+    "symbol": "HUS",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x7268b479eb7ce8d1b37ef1ffc3b82d7383a1162d": {
+    "assetId": "eip155:56/bep20:0x7268b479eb7ce8d1b37ef1ffc3b82d7383a1162d",
+    "chainId": "eip155:56",
+    "name": "Meblox Protocol",
+    "precision": 18,
+    "color": "#1C2021",
+    "icon": "https://assets.coingecko.com/coins/images/21885/thumb/create-meblox.png?1696521237",
+    "symbol": "MEB",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x7269d98af4aa705e0b1a5d8512fadb4d45817d5a": {
+    "assetId": "eip155:56/bep20:0x7269d98af4aa705e0b1a5d8512fadb4d45817d5a",
+    "chainId": "eip155:56",
+    "name": "Shirtum on BNB Smart Chain",
+    "precision": 18,
+    "color": "#04E43C",
+    "icon": "https://assets.coingecko.com/coins/images/16955/thumb/4fWlpC0.png?1696516523",
+    "symbol": "SHI",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x7283dfa2d8d7e277b148cc263b5d8ae02f1076d3": {
+    "assetId": "eip155:56/bep20:0x7283dfa2d8d7e277b148cc263b5d8ae02f1076d3",
+    "chainId": "eip155:56",
+    "name": "Garlicoin on BNB Smart Chain",
+    "precision": 8,
+    "color": "#F5D56A",
+    "icon": "https://assets.coingecko.com/coins/images/2699/thumb/garlicoin.png?1696503483",
+    "symbol": "GRLC",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x728c5bac3c3e370e372fc4671f9ef6916b814d8b": {
+    "assetId": "eip155:56/bep20:0x728c5bac3c3e370e372fc4671f9ef6916b814d8b",
+    "chainId": "eip155:56",
+    "name": "Unifi Protocol DAO on BNB Smart Chain",
+    "precision": 18,
+    "color": "#3AFA94",
+    "icon": "https://assets.coingecko.com/coins/images/13152/thumb/logo-2.png?1696512937",
+    "symbol": "UNFI",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x72b7d61e8fc8cf971960dd9cfa59b8c829d91991": {
+    "assetId": "eip155:56/bep20:0x72b7d61e8fc8cf971960dd9cfa59b8c829d91991",
+    "chainId": "eip155:56",
+    "name": "Planet Finance",
+    "precision": 18,
+    "color": "#1E1646",
+    "icon": "https://assets.coingecko.com/coins/images/15710/thumb/aqua-icon.png?1696515337",
+    "symbol": "AQUA",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x72eb7ca07399ec402c5b7aa6a65752b6a1dc0c27": {
+    "assetId": "eip155:56/bep20:0x72eb7ca07399ec402c5b7aa6a65752b6a1dc0c27",
+    "chainId": "eip155:56",
+    "name": "AstroSwap",
+    "precision": 18,
+    "color": "#494949",
+    "icon": "https://assets.coingecko.com/coins/images/18816/thumb/astro.png?1696518278",
+    "symbol": "ASTRO",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x72ef0cf8dc02fe91150a2472cc551de929e22fac": {
+    "assetId": "eip155:56/bep20:0x72ef0cf8dc02fe91150a2472cc551de929e22fac",
+    "chainId": "eip155:56",
+    "name": "Waifer",
+    "precision": 18,
+    "color": "#040404",
+    "icon": "https://assets.coingecko.com/coins/images/19424/thumb/cropped-LogoMakr-3GX0jv-300dpi-1.png?1696518863",
+    "symbol": "WAIF",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x72ff5742319ef07061836f5c924ac6d72c919080": {
+    "assetId": "eip155:56/bep20:0x72ff5742319ef07061836f5c924ac6d72c919080",
+    "chainId": "eip155:56",
+    "name": "Gifto",
+    "precision": 18,
+    "color": "#823068",
+    "icon": "https://assets.coingecko.com/coins/images/1359/thumb/Logo-Sign-Small.png?1696502418",
+    "symbol": "GFT",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x730cb2ba0f654ddec32470d265555f26fe545eb8": {
+    "assetId": "eip155:56/bep20:0x730cb2ba0f654ddec32470d265555f26fe545eb8",
+    "chainId": "eip155:56",
+    "name": "ElonDoge DAO",
+    "precision": 18,
+    "color": "#A65941",
+    "icon": "https://assets.coingecko.com/coins/images/17323/thumb/edao_logo.png?1696516876",
+    "symbol": "EDAO",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x7317da9c15303bfb434690586c3373b94fb2dd31": {
+    "assetId": "eip155:56/bep20:0x7317da9c15303bfb434690586c3373b94fb2dd31",
+    "chainId": "eip155:56",
+    "name": "MonoMoney",
+    "precision": 18,
+    "color": "#E3E2E4",
+    "icon": "https://assets.coingecko.com/coins/images/24399/thumb/ToL6DsC7_400x400.jpg?1696523581",
+    "symbol": "MONO",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x7324c7c0d95cebc73eea7e85cbaac0dbdf88a05b": {
+    "assetId": "eip155:56/bep20:0x7324c7c0d95cebc73eea7e85cbaac0dbdf88a05b",
+    "chainId": "eip155:56",
+    "name": "Onyxcoin on BNB Smart Chain",
+    "precision": 18,
+    "color": "#D0CFD0",
+    "icon": "https://assets.coingecko.com/coins/images/24210/thumb/onyxlogo.jpg?1696523397",
+    "symbol": "XCN",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x734548a9e43d2d564600b1b2ed5be9c2b911c6ab": {
+    "assetId": "eip155:56/bep20:0x734548a9e43d2d564600b1b2ed5be9c2b911c6ab",
+    "chainId": "eip155:56",
+    "name": "Meta Apes PEEL",
+    "precision": 18,
+    "color": "#C9A23A",
+    "icon": "https://assets.coingecko.com/coins/images/26450/thumb/PEEL200x200.png?1696525523",
+    "symbol": "PEEL",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x734d66f635523d7ddb7d2373c128333da313041b": {
+    "assetId": "eip155:56/bep20:0x734d66f635523d7ddb7d2373c128333da313041b",
+    "chainId": "eip155:56",
+    "name": "Zedxion USDZ",
+    "precision": 9,
+    "color": "#086DA1",
+    "icon": "https://assets.coingecko.com/coins/images/25909/thumb/20475.png?1696524990",
+    "symbol": "USDZ",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x738d96caf7096659db4c1afbf1e1bdfd281f388c": {
+    "assetId": "eip155:56/bep20:0x738d96caf7096659db4c1afbf1e1bdfd281f388c",
+    "chainId": "eip155:56",
+    "name": "Ankr Staked MATIC on BNB Smart Chain",
+    "precision": 18,
+    "color": "#544C0A",
+    "icon": "https://assets.coingecko.com/coins/images/25742/thumb/a-matic-c-da4ec10dc9723e695700e25dbf8c8edf.png?1696524833",
+    "symbol": "ANKRMATIC",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x738ea75b01d8db931b4374c6ebd3de82d7d3a272": {
+    "assetId": "eip155:56/bep20:0x738ea75b01d8db931b4374c6ebd3de82d7d3a272",
+    "chainId": "eip155:56",
+    "name": "DUSD",
+    "precision": 18,
+    "color": "#F4A404",
+    "icon": "https://assets.coingecko.com/coins/images/30196/thumb/LOGO_200X200.png?1696529111",
+    "symbol": "DUSD",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x739e81bcd49854d7bdf526302989f14a2e7994b2": {
+    "assetId": "eip155:56/bep20:0x739e81bcd49854d7bdf526302989f14a2e7994b2",
+    "chainId": "eip155:56",
+    "name": "Centcex",
+    "precision": 9,
+    "color": "#E1E7FC",
+    "icon": "https://assets.coingecko.com/coins/images/20624/thumb/centx.PNG?1696520029",
+    "symbol": "CENX",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x73bc158e84873888cfc8b617524eebb1cfce8d4e": {
+    "assetId": "eip155:56/bep20:0x73bc158e84873888cfc8b617524eebb1cfce8d4e",
+    "chainId": "eip155:56",
+    "name": "Twelve Legions",
+    "precision": 18,
+    "color": "#605542",
+    "icon": "https://assets.coingecko.com/coins/images/21282/thumb/eEuyEtJ.png?1696520652",
+    "symbol": "CTL",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x73cba57ad8bc775a5345d9a0de2e90c74621d802": {
+    "assetId": "eip155:56/bep20:0x73cba57ad8bc775a5345d9a0de2e90c74621d802",
+    "chainId": "eip155:56",
+    "name": "LooksCoin",
+    "precision": 18,
+    "color": "#FC441C",
+    "icon": "https://assets.coingecko.com/coins/images/3080/thumb/lookscoin200.png?1696503811",
+    "symbol": "LOOK",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x73e8dd9d52bd26a2134698e2aff964e121f4759b": {
+    "assetId": "eip155:56/bep20:0x73e8dd9d52bd26a2134698e2aff964e121f4759b",
+    "chainId": "eip155:56",
+    "name": "GoFitterAI",
+    "precision": 18,
+    "color": "#F25B13",
+    "icon": "https://assets.coingecko.com/coins/images/29089/thumb/1676022551247-4393c71ca4b98e3e3e8484939623e2bf.png?1696528053",
+    "symbol": "FITAI",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x73f4c95af5c2892253c068850b8c9a753636f58d": {
+    "assetId": "eip155:56/bep20:0x73f4c95af5c2892253c068850b8c9a753636f58d",
+    "chainId": "eip155:56",
+    "name": "OATH on BNB Smart Chain",
+    "precision": 18,
+    "color": "#0E0E0E",
+    "icon": "https://assets.coingecko.com/coins/images/24075/thumb/OATH.png?1698051304",
+    "symbol": "OATH",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x73f67ae7f934ff15beabf55a28c2da1eeb9b56ec": {
+    "assetId": "eip155:56/bep20:0x73f67ae7f934ff15beabf55a28c2da1eeb9b56ec",
+    "chainId": "eip155:56",
+    "name": "NFT11",
+    "precision": 18,
+    "color": "#D6D6CC",
+    "icon": "https://assets.coingecko.com/coins/images/23792/thumb/token-icon.png?1696522991",
+    "symbol": "NFT11",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x73fbd93bfda83b111ddc092aa3a4ca77fd30d380": {
+    "assetId": "eip155:56/bep20:0x73fbd93bfda83b111ddc092aa3a4ca77fd30d380",
+    "chainId": "eip155:56",
+    "name": "SophiaVerse on BNB Smart Chain",
+    "precision": 18,
+    "color": "#E4C46C",
+    "icon": "https://assets.coingecko.com/coins/images/30050/thumb/Icon_200x200.png?1696528972",
+    "symbol": "SOPH",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x73ff5dd853cb87c144f463a555dce0e43954220d": {
+    "assetId": "eip155:56/bep20:0x73ff5dd853cb87c144f463a555dce0e43954220d",
+    "chainId": "eip155:56",
+    "name": "MetaFabric on BNB Smart Chain",
+    "precision": 18,
+    "color": "#24D076",
+    "icon": "https://assets.coingecko.com/coins/images/21233/thumb/LISTING-icon.png?1696520607",
+    "symbol": "FABRIC",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x73ffdf2d2afb3def5b10bf967da743f2306a51db": {
+    "assetId": "eip155:56/bep20:0x73ffdf2d2afb3def5b10bf967da743f2306a51db",
+    "chainId": "eip155:56",
+    "name": "Collector Coin on BNB Smart Chain",
+    "precision": 18,
+    "color": "#101113",
+    "icon": "https://assets.coingecko.com/coins/images/16918/thumb/AGS.png?1696516489",
+    "symbol": "AGS",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x740f8c66690693944abb0c69adbbf702aaa6fe01": {
+    "assetId": "eip155:56/bep20:0x740f8c66690693944abb0c69adbbf702aaa6fe01",
+    "chainId": "eip155:56",
+    "name": "EmoTech",
+    "precision": 18,
+    "color": "#BFBFC5",
+    "icon": "https://assets.coingecko.com/coins/images/32498/thumb/Emotech_logo.jpg?1698308485",
+    "symbol": "EMT",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x742f1fbec70b81ed0a32093d0c9054264fd850b2": {
+    "assetId": "eip155:56/bep20:0x742f1fbec70b81ed0a32093d0c9054264fd850b2",
+    "chainId": "eip155:56",
+    "name": "GianniDoge Esport",
+    "precision": 18,
+    "color": "#2DC425",
+    "icon": "https://assets.coingecko.com/coins/images/28360/thumb/200x200.png?1696527364",
+    "symbol": "GDE",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x746b725a05d08a5829d0b4898abc79dee3928ea9": {
+    "assetId": "eip155:56/bep20:0x746b725a05d08a5829d0b4898abc79dee3928ea9",
+    "chainId": "eip155:56",
+    "name": "Arcstar",
+    "precision": 18,
+    "color": "#D8D8D8",
+    "icon": "https://assets.coingecko.com/coins/images/30974/thumb/Arc.png?1696529813",
+    "symbol": "ARCSTAR",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x747b1223b23e53070c54df355fac2e198aa54708": {
+    "assetId": "eip155:56/bep20:0x747b1223b23e53070c54df355fac2e198aa54708",
+    "chainId": "eip155:56",
+    "name": "Wrapped Syscoin",
+    "precision": 18,
+    "color": "#215DF3",
+    "icon": "https://assets.coingecko.com/coins/images/23916/thumb/xDiIFaKO_400x400.jpg?1696523115",
+    "symbol": "WSYS",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x747d74db20cc422f39ab54edb2a3ce21f3c98af1": {
+    "assetId": "eip155:56/bep20:0x747d74db20cc422f39ab54edb2a3ce21f3c98af1",
+    "chainId": "eip155:56",
+    "name": "Crypto Global United on BNB Smart Chain",
+    "precision": 8,
+    "color": "#328DC1",
+    "icon": "https://assets.coingecko.com/coins/images/20751/thumb/2022_CGU-MG_RGB.png?1696520148",
+    "symbol": "CGU",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x74926b3d118a63f6958922d3dc05eb9c6e6e00c6": {
+    "assetId": "eip155:56/bep20:0x74926b3d118a63f6958922d3dc05eb9c6e6e00c6",
+    "chainId": "eip155:56",
+    "name": "Doggy",
+    "precision": 18,
+    "color": "#E2B173",
+    "icon": "https://assets.coingecko.com/coins/images/15826/thumb/doggy.png?1696515444",
+    "symbol": "DOGGY",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x74afe449d1beffc90456cfebd700ab391abd7daf": {
+    "assetId": "eip155:56/bep20:0x74afe449d1beffc90456cfebd700ab391abd7daf",
+    "chainId": "eip155:56",
+    "name": "EG Token",
+    "precision": 18,
+    "color": "#6FB9E8",
+    "icon": "https://assets.coingecko.com/coins/images/29174/thumb/eg.png?1696528132",
+    "symbol": "EG",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x74c22834744e8d5e36c79420ff7b057964aba8a7": {
+    "assetId": "eip155:56/bep20:0x74c22834744e8d5e36c79420ff7b057964aba8a7",
+    "chainId": "eip155:56",
+    "name": "NFTBomb",
+    "precision": 18,
+    "color": "#B038DC",
+    "icon": "https://assets.coingecko.com/coins/images/20517/thumb/nft_bomb.PNG?1696519923",
+    "symbol": "NBP",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x74ccbe53f77b08632ce0cb91d3a545bf6b8e0979": {
+    "assetId": "eip155:56/bep20:0x74ccbe53f77b08632ce0cb91d3a545bf6b8e0979",
+    "chainId": "eip155:56",
+    "name": "Fantom Bomb on BNB Smart Chain",
+    "precision": 18,
+    "color": "#303E4C",
+    "icon": "https://assets.coingecko.com/coins/images/24109/thumb/logo-blue.png?1696523301",
+    "symbol": "BOMB",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x74d23db8fd35fd20e1964f7197147c8a22d92a8d": {
+    "assetId": "eip155:56/bep20:0x74d23db8fd35fd20e1964f7197147c8a22d92a8d",
+    "chainId": "eip155:56",
+    "name": "Naxar",
+    "precision": 18,
+    "color": "#212221",
+    "icon": "https://assets.coingecko.com/coins/images/16946/thumb/logo.png?1696516515",
+    "symbol": "NAXAR",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x74ddf70a11cfd3ecff3f78589c2233808b5ceebe": {
+    "assetId": "eip155:56/bep20:0x74ddf70a11cfd3ecff3f78589c2233808b5ceebe",
+    "chainId": "eip155:56",
+    "name": "CryptoBank",
+    "precision": 18,
+    "color": "#4C387C",
+    "icon": "https://assets.coingecko.com/coins/images/29682/thumb/our_logo_%281%29.png?1696528616",
+    "symbol": "CBEX",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x7536c00711e41df6aebcca650791107645b6bc52": {
+    "assetId": "eip155:56/bep20:0x7536c00711e41df6aebcca650791107645b6bc52",
+    "chainId": "eip155:56",
+    "name": "Oxbull Tech",
+    "precision": 18,
+    "color": "#76777C",
+    "icon": "https://assets.coingecko.com/coins/images/27781/thumb/CG_logo_%282%29.png?1696526802",
+    "symbol": "OXB",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x7559c49c3aec50e763a486bb232fa8d0d76078e4": {
+    "assetId": "eip155:56/bep20:0x7559c49c3aec50e763a486bb232fa8d0d76078e4",
+    "chainId": "eip155:56",
+    "name": "Artrade",
+    "precision": 9,
+    "color": "#BD5068",
+    "icon": "https://assets.coingecko.com/coins/images/24894/thumb/ATR-BSC.png?1696524052",
+    "symbol": "ATR",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x755f34709e369d37c6fa52808ae84a32007d1155": {
+    "assetId": "eip155:56/bep20:0x755f34709e369d37c6fa52808ae84a32007d1155",
+    "chainId": "eip155:56",
+    "name": "Nabox on BNB Smart Chain",
+    "precision": 18,
+    "color": "#2CCC8C",
+    "icon": "https://assets.coingecko.com/coins/images/16445/thumb/NyemjVRA_400x400.png?1696516042",
+    "symbol": "NABOX",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x7565ab68d3f9dadff127f864103c8c706cf28235": {
+    "assetId": "eip155:56/bep20:0x7565ab68d3f9dadff127f864103c8c706cf28235",
+    "chainId": "eip155:56",
+    "name": "TrustFi Network",
+    "precision": 18,
+    "color": "#060504",
+    "icon": "https://assets.coingecko.com/coins/images/16297/thumb/frny3dSs_400x400.jpg?1696515899",
+    "symbol": "TFI",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x7588df009c3d82378be6ab81f2108fa963c10fc8": {
+    "assetId": "eip155:56/bep20:0x7588df009c3d82378be6ab81f2108fa963c10fc8",
+    "chainId": "eip155:56",
+    "name": "Step App on BNB Smart Chain",
+    "precision": 18,
+    "color": "#362F11",
+    "icon": "https://assets.coingecko.com/coins/images/25015/thumb/801485424e1f49bc8d0facff9287eb9b_photo.png?1696524166",
+    "symbol": "FITFI",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x758d08864fb6cce3062667225ca10b8f00496cc2": {
+    "assetId": "eip155:56/bep20:0x758d08864fb6cce3062667225ca10b8f00496cc2",
+    "chainId": "eip155:56",
+    "name": "NAOS Finance on BNB Smart Chain",
+    "precision": 18,
+    "color": "#B9B4E5",
+    "icon": "https://assets.coingecko.com/coins/images/15144/thumb/bafybeibkztkshitabrf7yqqkqtbjqestjknpgv7lsjfzdsa3ufspagqs2e.ipfs.infura-ipfs.io.png?1696514800",
+    "symbol": "NAOS",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x759bd4ed07a34b9ea761f8f2ed9f0e102675a29c": {
+    "assetId": "eip155:56/bep20:0x759bd4ed07a34b9ea761f8f2ed9f0e102675a29c",
+    "chainId": "eip155:56",
+    "name": "Have Fun Token",
+    "precision": 9,
+    "color": "#1C5D6B",
+    "icon": "https://assets.coingecko.com/coins/images/30257/thumb/0XUodgfR_400x400.jpg?1696529165",
+    "symbol": "HF",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x75adb3f6d788c344c409278263f70c5b60feb33a": {
+    "assetId": "eip155:56/bep20:0x75adb3f6d788c344c409278263f70c5b60feb33a",
+    "chainId": "eip155:56",
+    "name": "Fishing Tuna",
+    "precision": 18,
+    "color": "#EBB62A",
+    "icon": "https://assets.coingecko.com/coins/images/32037/thumb/tune200.png?1696530833",
+    "symbol": "TUNA",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x75afa9915b2210cd6329e820af0365e932bc1dd5": {
+    "assetId": "eip155:56/bep20:0x75afa9915b2210cd6329e820af0365e932bc1dd5",
+    "chainId": "eip155:56",
+    "name": "SmurfsINU",
+    "precision": 9,
+    "color": "#4E69A6",
+    "icon": "https://assets.coingecko.com/coins/images/26804/thumb/200x200.png?1696525865",
+    "symbol": "SMURF",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x75b2fdd95418e093fca7db858b36549e5e412076": {
+    "assetId": "eip155:56/bep20:0x75b2fdd95418e093fca7db858b36549e5e412076",
+    "chainId": "eip155:56",
+    "name": "Belifex",
+    "precision": 18,
+    "color": "#A1CDE9",
+    "icon": "https://assets.coingecko.com/coins/images/9547/thumb/belifex.png?1696509629",
+    "symbol": "BEFX",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x75bded6bf44bb01527138673dcc064dbe3e7d96d": {
+    "assetId": "eip155:56/bep20:0x75bded6bf44bb01527138673dcc064dbe3e7d96d",
+    "chainId": "eip155:56",
+    "name": "Etermon",
+    "precision": 18,
+    "color": "#7EAAB7",
+    "icon": "https://assets.coingecko.com/coins/images/21694/thumb/Etermon-Logo-200x200.png?1696521050",
+    "symbol": "ETM",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x75ca521892de7f2ecfb070cab545c250d0ceb7e3": {
+    "assetId": "eip155:56/bep20:0x75ca521892de7f2ecfb070cab545c250d0ceb7e3",
+    "chainId": "eip155:56",
+    "name": "PVC META",
+    "precision": 9,
+    "color": "#0B6188",
+    "icon": "https://assets.coingecko.com/coins/images/32080/thumb/26719.png?1696530879",
+    "symbol": "PVC",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x75d107de2217ffe2cd574a1b3297c70c8fafd159": {
+    "assetId": "eip155:56/bep20:0x75d107de2217ffe2cd574a1b3297c70c8fafd159",
+    "chainId": "eip155:56",
+    "name": "TryHards on BNB Smart Chain",
+    "precision": 18,
+    "color": "#B17A40",
+    "icon": "https://assets.coingecko.com/coins/images/18624/thumb/TryHards_Tokenticker.png?1696518096",
+    "symbol": "TRY",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x75d6bd84de4cbcb92495204de959f7fea6a3f89a": {
+    "assetId": "eip155:56/bep20:0x75d6bd84de4cbcb92495204de959f7fea6a3f89a",
+    "chainId": "eip155:56",
+    "name": "Mind Matrix",
+    "precision": 18,
+    "color": "#0B0B0A",
+    "icon": "https://assets.coingecko.com/coins/images/31676/thumb/200x200-AIMX.png?1696530492",
+    "symbol": "AIMX",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x7606267a4bfff2c5010c92924348c3e4221955f2": {
+    "assetId": "eip155:56/bep20:0x7606267a4bfff2c5010c92924348c3e4221955f2",
+    "chainId": "eip155:56",
+    "name": "Talkado",
+    "precision": 9,
+    "color": "#30384E",
+    "icon": "https://assets.coingecko.com/coins/images/20979/thumb/Tzu4wc-k_400x400.jpg?1696520365",
+    "symbol": "TALK",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x762539b45a1dcce3d36d080f74d1aed37844b878": {
+    "assetId": "eip155:56/bep20:0x762539b45a1dcce3d36d080f74d1aed37844b878",
+    "chainId": "eip155:56",
+    "name": "Linear on BNB Smart Chain",
+    "precision": 18,
+    "color": "#71A4FC",
+    "icon": "https://assets.coingecko.com/coins/images/12509/thumb/1649227343-linalogo200px.png?1696512324",
+    "symbol": "LINA",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x7665cb7b0d01df1c9f9b9cc66019f00abd6959ba": {
+    "assetId": "eip155:56/bep20:0x7665cb7b0d01df1c9f9b9cc66019f00abd6959ba",
+    "chainId": "eip155:56",
+    "name": "Ownly",
+    "precision": 18,
+    "color": "#21A0A5",
+    "icon": "https://assets.coingecko.com/coins/images/18167/thumb/ownly.PNG?1696517668",
+    "symbol": "OWN",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x766afcf83fd5eaf884b3d529b432ca27a6d84617": {
+    "assetId": "eip155:56/bep20:0x766afcf83fd5eaf884b3d529b432ca27a6d84617",
+    "chainId": "eip155:56",
+    "name": "Bolide on BNB Smart Chain",
+    "precision": 18,
+    "color": "#22BE6A",
+    "icon": "https://assets.coingecko.com/coins/images/25548/thumb/bld_logo.png?1696524681",
+    "symbol": "BLID",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x76760bf2b1b4b16cb24a20a076abcb36897a73ad": {
+    "assetId": "eip155:56/bep20:0x76760bf2b1b4b16cb24a20a076abcb36897a73ad",
+    "chainId": "eip155:56",
+    "name": "Global Miracle",
+    "precision": 18,
+    "color": "#E4B62C",
+    "icon": "https://assets.coingecko.com/coins/images/32092/thumb/gm_logo.png?1696530890",
+    "symbol": "GM",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x767b28a30e3a15dcece7bff7a020adfde9d19cf8": {
+    "assetId": "eip155:56/bep20:0x767b28a30e3a15dcece7bff7a020adfde9d19cf8",
+    "chainId": "eip155:56",
+    "name": "Wrapped Metrix",
+    "precision": 8,
+    "color": "#381539",
+    "icon": "https://assets.coingecko.com/coins/images/20763/thumb/Copy_of_Metrix_Logo_Final_Cut.png?1696520158",
+    "symbol": "MRXB",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x768a62a22b187eb350637e720ebc552d905c0331": {
+    "assetId": "eip155:56/bep20:0x768a62a22b187eb350637e720ebc552d905c0331",
+    "chainId": "eip155:56",
+    "name": "Young Mids Inspired",
+    "precision": 18,
+    "color": "#616FDE",
+    "icon": "https://assets.coingecko.com/coins/images/32560/thumb/1000082100.jpg?1698545207",
+    "symbol": "YMII",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x768d221e81524de52841aed976370b2e4f990416": {
+    "assetId": "eip155:56/bep20:0x768d221e81524de52841aed976370b2e4f990416",
+    "chainId": "eip155:56",
+    "name": "Moon Maker Protocol",
+    "precision": 18,
+    "color": "#C4C3C4",
+    "icon": "https://assets.coingecko.com/coins/images/16257/thumb/m_mp.PNG?1696515856",
+    "symbol": "MMP",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x768ed2e8b05e3c1fd8361f1ba769750e108d7af4": {
+    "assetId": "eip155:56/bep20:0x768ed2e8b05e3c1fd8361f1ba769750e108d7af4",
+    "chainId": "eip155:56",
+    "name": "Virtual Trader",
+    "precision": 18,
+    "color": "#04C42C",
+    "icon": "https://assets.coingecko.com/coins/images/28738/thumb/PvKkGuRiRdK9hHzU37Tw_3FPB3ZpbuiVHg3rn.png?1696527718",
+    "symbol": "VTR",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x769c6f0c5c2bcd1b76638bd58e5350f5c94128f3": {
+    "assetId": "eip155:56/bep20:0x769c6f0c5c2bcd1b76638bd58e5350f5c94128f3",
+    "chainId": "eip155:56",
+    "name": "What Do You Meme",
+    "precision": 18,
+    "color": "#C47834",
+    "icon": "https://assets.coingecko.com/coins/images/30763/thumb/Pinksle.png?1696529631",
+    "symbol": "WDYM",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x76a797a59ba2c17726896976b7b3747bfd1d220f": {
+    "assetId": "eip155:56/bep20:0x76a797a59ba2c17726896976b7b3747bfd1d220f",
+    "chainId": "eip155:56",
+    "name": "Toncoin on BNB Smart Chain",
+    "precision": 9,
+    "color": "#A6D8EE",
+    "icon": "https://assets.coingecko.com/coins/images/17980/thumb/ton_symbol.png?1696517498",
+    "symbol": "TON",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x76aecb353abf596bd61ee6bdb07d70787dec4fd6": {
+    "assetId": "eip155:56/bep20:0x76aecb353abf596bd61ee6bdb07d70787dec4fd6",
+    "chainId": "eip155:56",
+    "name": "CURE V2",
+    "precision": 9,
+    "color": "#F9ECD2",
+    "icon": "https://assets.coingecko.com/coins/images/18881/thumb/CURE-v2-square.png?1696518340",
+    "symbol": "CURE",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x76d99ef970711d5e25a940c2b80933911425757a": {
+    "assetId": "eip155:56/bep20:0x76d99ef970711d5e25a940c2b80933911425757a",
+    "chainId": "eip155:56",
+    "name": "Calcium  BSC ",
+    "precision": 18,
+    "color": "#A08D58",
+    "icon": "https://assets.coingecko.com/coins/images/32059/thumb/photo_2023-09-29_15.49.49.jpeg?1696530856",
+    "symbol": "CAL",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x76d9a7c6164de3bc4d95ef0c011d3d22eb8b4d60": {
+    "assetId": "eip155:56/bep20:0x76d9a7c6164de3bc4d95ef0c011d3d22eb8b4d60",
+    "chainId": "eip155:56",
+    "name": "Rambox",
+    "precision": 18,
+    "color": "#6424DC",
+    "icon": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAIAAAACACAMAAAD04JH5AAADAFBMVEUtN0hgJtj///8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACvPSaNAAABAHRSTlP/////AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAf6K/dgAAQItJREFUeNoBgEB/vwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAgICAgICAgICAgICAgICAgICAgICAQEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgICAgICAgICAgICAgICAQEBAQEBAQEBAQEBAQECAgICAgICAQEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgAAAAAAAAAAAAACAgICAgICAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAwMDAwMDAwMDAwMDAwMDAwMDAwMDAgICAgICAgEBAQEBAQECAgICAgICAAMDAwMDAwMDAwMDAwMDAwMDAwMDAgICAgICAgEBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAgICAgICAgEBAQEBAQECAgICAgICAgICAgICAgMAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAgICAgICAgMBAQEBAQECAgICAgICAgICAgICAgMAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAgICAgICAgMBAQEBAQECAgICAgICAgICAgICAgMAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAgICAgICAgMBAQEBAQECAgICAgICAgICAgICAgMAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAgICAgICAgMBAQEBAQECAgICAgICAgICAgICAgMAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAgICAgICAgMBAQEBAQECAgICAgICAgICAgICAgMAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAgICAgICAgMBAQEBAQECAgICAgICAgICAgICAgMAAAAAAAAAAAACAgICAgICAgICAgICAgICAgICAgICAgICAgICAQMDAwMDAwMBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMBAQEBAQECAgICAgICAwMDAwMDAwICAgICAgIBAwMDAwMDAgICAgICAgMAAAAAAAAAAAACAgICAgICAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQICAgICAgIDAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQICAgICAgIDAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQICAgICAgIDAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQICAgICAgIDAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQICAgICAgIDAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQICAgICAgIDAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAwMDAwMDAwICAgICAgIDAwMDAwMDAwEBAQEBAQEBAQEBAQECAgICAgICAwMDAwMDAwMDAwMDAwMDAwMDAwMDAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEDAwMDAwMDAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAwEBAQEBAQICAgICAgIDAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAwEBAQEBAQICAgICAgIDAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAwEBAQEBAQICAgICAgIDAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAwEBAQEBAQICAgICAgIDAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAwEBAQEBAQICAgICAgIDAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAwEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAACAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAgICAgICAgMAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAwEBAQEBAQEDAwMDAwMCAgICAgICAAAAAAAAAAAAAAAAAAACAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAgICAgICAgMAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAACAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAgICAgICAgMAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAACAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAgICAgICAgMAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAACAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAgICAgICAgMAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAACAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAgICAgICAgMAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAACAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAgICAgICAgMAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAACAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAgICAgICAgMAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAwMDAwMDAgICAgICAgAAAAAAAAACAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAgICAgICAgMAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAACAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAgICAgICAgMAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAACAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAgICAgICAgMAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAACAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAgICAgICAgMAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAACAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAgICAgICAgMAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAACAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAgICAgICAgMAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAACAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAgICAgICAgMAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAAAAwMDAwMDAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAMDAwMDAwMAAAAAAAAAAwMDAwMDAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAMDAwMDAwMAAAAAAAAAAwMDAwMDAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAMDAwMDAwMAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH6rMhMDe/vAAAAAAElFTkSuQmCC",
+    "symbol": "RAM",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x76e08e1c693d42551dd6ba7c2a659f74ff5ba261": {
+    "assetId": "eip155:56/bep20:0x76e08e1c693d42551dd6ba7c2a659f74ff5ba261",
+    "chainId": "eip155:56",
+    "name": "Shakita Inu",
+    "precision": 18,
+    "color": "#784D44",
+    "icon": "https://assets.coingecko.com/coins/images/19026/thumb/shak.png?1696518477",
+    "symbol": "SHAK",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x76e112203ef59d445452ef7556386dd2df3ed914": {
+    "assetId": "eip155:56/bep20:0x76e112203ef59d445452ef7556386dd2df3ed914",
+    "chainId": "eip155:56",
+    "name": "Canadian Inuit Dog",
+    "precision": 18,
+    "color": "#96A8BF",
+    "icon": "https://assets.coingecko.com/coins/images/28508/thumb/JCM3FITW_400x400.jpg?1696527501",
+    "symbol": "CADINU",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x76ef2a25b1ea6eb5dc4d079ae82c767d55b0a99e": {
+    "assetId": "eip155:56/bep20:0x76ef2a25b1ea6eb5dc4d079ae82c767d55b0a99e",
+    "chainId": "eip155:56",
+    "name": "ShibaLite",
+    "precision": 18,
+    "color": "#C8CACD",
+    "icon": "https://assets.coingecko.com/coins/images/19830/thumb/shibalite.PNG?1696519253",
+    "symbol": "SHIBLITE",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x77018282fd033daf370337a5367e62d8811bc885": {
+    "assetId": "eip155:56/bep20:0x77018282fd033daf370337a5367e62d8811bc885",
+    "chainId": "eip155:56",
+    "name": "Poolz Finance  OLD  on BNB Smart Chain",
+    "precision": 18,
+    "color": "#352C6A",
+    "icon": "https://assets.coingecko.com/coins/images/13679/thumb/poolz_logo.png?1696513428",
+    "symbol": "POOLZ",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x7704d0ead6f74e625d7371b079d8b2475bc852d4": {
+    "assetId": "eip155:56/bep20:0x7704d0ead6f74e625d7371b079d8b2475bc852d4",
+    "chainId": "eip155:56",
+    "name": "PulseAI",
+    "precision": 9,
+    "color": "#EC1D3D",
+    "icon": "https://assets.coingecko.com/coins/images/30342/thumb/logo.png?1696529242",
+    "symbol": "PULSE",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x77087ab5df23cfb52449a188e80e9096201c2097": {
+    "assetId": "eip155:56/bep20:0x77087ab5df23cfb52449a188e80e9096201c2097",
+    "chainId": "eip155:56",
+    "name": "hi Dollar on BNB Smart Chain",
+    "precision": 18,
+    "color": "#B6BCCC",
+    "icon": "https://assets.coingecko.com/coins/images/17618/thumb/unnamed_%281%29.png?1696517150",
+    "symbol": "HI",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x77140a6f53c09c36abf10ef947655317a7670a3b": {
+    "assetId": "eip155:56/bep20:0x77140a6f53c09c36abf10ef947655317a7670a3b",
+    "chainId": "eip155:56",
+    "name": "CoinMatch AI",
+    "precision": 18,
+    "color": "#0F1532",
+    "icon": "https://assets.coingecko.com/coins/images/29476/thumb/CoinMatch.jpg?1696528421",
+    "symbol": "CMAI",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x772722b55cdc2a086abd064267a17855eb15e8b3": {
+    "assetId": "eip155:56/bep20:0x772722b55cdc2a086abd064267a17855eb15e8b3",
+    "chainId": "eip155:56",
+    "name": "Karus Starter on BNB Smart Chain",
+    "precision": 18,
+    "color": "#DD1D25",
+    "icon": "https://assets.coingecko.com/coins/images/18862/thumb/logo-only.png?1696518322",
+    "symbol": "KST",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x7758a52c1bb823d02878b67ad87b6ba37a0cdbf5": {
+    "assetId": "eip155:56/bep20:0x7758a52c1bb823d02878b67ad87b6ba37a0cdbf5",
+    "chainId": "eip155:56",
+    "name": "Ookeenga",
+    "precision": 18,
+    "color": "#F4742C",
+    "icon": "https://assets.coingecko.com/coins/images/27297/thumb/ookeenga_32.png?1696526349",
+    "symbol": "OKG",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x775e57dab90e2d2ca3d179cfb438905579f61760": {
+    "assetId": "eip155:56/bep20:0x775e57dab90e2d2ca3d179cfb438905579f61760",
+    "chainId": "eip155:56",
+    "name": "Artificial Intelligence",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/32974/thumb/AID-Logo.png?1700069193",
+    "symbol": "AID",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x7764bdfc4ab0203a7d4e3edf33b181f395458870": {
+    "assetId": "eip155:56/bep20:0x7764bdfc4ab0203a7d4e3edf33b181f395458870",
+    "chainId": "eip155:56",
+    "name": "Cryptegrity Dao",
+    "precision": 18,
+    "color": "#2C6CBE",
+    "icon": "https://assets.coingecko.com/coins/images/29220/thumb/IMG_20230220_132937_102_%281%29.png?1696528178",
+    "symbol": "ESCROW",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x776f9987d9deed90eed791cbd824d971fd5ccf09": {
+    "assetId": "eip155:56/bep20:0x776f9987d9deed90eed791cbd824d971fd5ccf09",
+    "chainId": "eip155:56",
+    "name": "LayerAI on BNB Smart Chain",
+    "precision": 18,
+    "color": "#CECED0",
+    "icon": "https://assets.coingecko.com/coins/images/29223/thumb/Favicon_200x200px.png?1696528181",
+    "symbol": "LAI",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x77774a06271d6a305caccdbc06f847def05c7777": {
+    "assetId": "eip155:56/bep20:0x77774a06271d6a305caccdbc06f847def05c7777",
+    "chainId": "eip155:56",
+    "name": "Gyrowin",
+    "precision": 18,
+    "color": "#C4C1CC",
+    "icon": "https://assets.coingecko.com/coins/images/32329/thumb/Brandlogo_1-200x200.png?1697451818",
+    "symbol": "GW",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x777994409c6b7e2393f6098a33a9cd8b7e9d0d28": {
+    "assetId": "eip155:56/bep20:0x777994409c6b7e2393f6098a33a9cd8b7e9d0d28",
+    "chainId": "eip155:56",
+    "name": "Cryptotem",
+    "precision": 18,
+    "color": "#0A6262",
+    "icon": "https://assets.coingecko.com/coins/images/21315/thumb/QEHj_fZJ_400x400.jpg?1696520683",
+    "symbol": "TOTEM",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x778682c19797d985c595429fbc51d67736013a86": {
+    "assetId": "eip155:56/bep20:0x778682c19797d985c595429fbc51d67736013a86",
+    "chainId": "eip155:56",
+    "name": "Hummingbird Egg",
+    "precision": 18,
+    "color": "#DECDF3",
+    "icon": "https://assets.coingecko.com/coins/images/18653/thumb/hegg_200.png?1696518123",
+    "symbol": "HEGG",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x77d547256a2cd95f32f67ae0313e450ac200648d": {
+    "assetId": "eip155:56/bep20:0x77d547256a2cd95f32f67ae0313e450ac200648d",
+    "chainId": "eip155:56",
+    "name": "Lazio Fan Token",
+    "precision": 8,
+    "color": "#8DCDE5",
+    "icon": "https://assets.coingecko.com/coins/images/19263/thumb/B4Lla6V6_400x400.png?1696518707",
+    "symbol": "LAZIO",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x77e5cce02139814e7eff377244cac8b802cddab8": {
+    "assetId": "eip155:56/bep20:0x77e5cce02139814e7eff377244cac8b802cddab8",
+    "chainId": "eip155:56",
+    "name": "ZeLoop Eco Reward",
+    "precision": 18,
+    "color": "#EACFEA",
+    "icon": "https://assets.coingecko.com/coins/images/19781/thumb/4767_ZeLoop_Icon_PNG.png?1696519203",
+    "symbol": "ERW",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x77edfae59a7948d66e9911a30cc787d2172343d4": {
+    "assetId": "eip155:56/bep20:0x77edfae59a7948d66e9911a30cc787d2172343d4",
+    "chainId": "eip155:56",
+    "name": "LABEL Foundation on BNB Smart Chain",
+    "precision": 18,
+    "color": "#DF505A",
+    "icon": "https://assets.coingecko.com/coins/images/19202/thumb/tele_profile_%EB%8C%80%EC%A7%80_1_-_%282%29.png?1696518649",
+    "symbol": "LBL",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x77f2be773ca0887ba2b3ef8344c8cf13c98d8ca7": {
+    "assetId": "eip155:56/bep20:0x77f2be773ca0887ba2b3ef8344c8cf13c98d8ca7",
+    "chainId": "eip155:56",
+    "name": "FloraChain on BNB Smart Chain",
+    "precision": 18,
+    "color": "#1D8C4A",
+    "icon": "https://assets.coingecko.com/coins/images/29078/thumb/flora.png?1696528044",
+    "symbol": "FYT",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x77f86d401e067365dd911271530b0c90dec3e0f7": {
+    "assetId": "eip155:56/bep20:0x77f86d401e067365dd911271530b0c90dec3e0f7",
+    "chainId": "eip155:56",
+    "name": "LOFI",
+    "precision": 18,
+    "color": "#46C3E0",
+    "icon": "https://assets.coingecko.com/coins/images/27762/thumb/lofi.jpeg?1696526785",
+    "symbol": "LOFI",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x77fc65deda64f0cca9e3aea7b9d8521f4151882e": {
+    "assetId": "eip155:56/bep20:0x77fc65deda64f0cca9e3aea7b9d8521f4151882e",
+    "chainId": "eip155:56",
+    "name": "Bitindi Chain",
+    "precision": 18,
+    "color": "#FC348C",
+    "icon": "https://assets.coingecko.com/coins/images/27811/thumb/160.png?1696526830",
+    "symbol": "BNI",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x780207b8c0fdc32cf60e957415bfa1f2d4d9718c": {
+    "assetId": "eip155:56/bep20:0x780207b8c0fdc32cf60e957415bfa1f2d4d9718c",
+    "chainId": "eip155:56",
+    "name": "Cashaa",
+    "precision": 18,
+    "color": "#112EB0",
+    "icon": "https://assets.coingecko.com/coins/images/2979/thumb/Logo.png?1696503719",
+    "symbol": "CAS",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x7806dad5651d657986f5cb27932d59d90f1646c7": {
+    "assetId": "eip155:56/bep20:0x7806dad5651d657986f5cb27932d59d90f1646c7",
+    "chainId": "eip155:56",
+    "name": "The Last Pepe",
+    "precision": 18,
+    "color": "#63863D",
+    "icon": "https://assets.coingecko.com/coins/images/30447/thumb/FROGGO.png?1696529334",
+    "symbol": "FROGGO",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x7837fd820ba38f95c54d6dac4ca3751b81511357": {
+    "assetId": "eip155:56/bep20:0x7837fd820ba38f95c54d6dac4ca3751b81511357",
+    "chainId": "eip155:56",
+    "name": "DOSE on BNB Smart Chain",
+    "precision": 18,
+    "color": "#E8D3C1",
+    "icon": "https://assets.coingecko.com/coins/images/18847/thumb/dose.PNG?1696518308",
+    "symbol": "DOSE",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x783fe4a84645431b31b914b609b86127b96057ea": {
+    "assetId": "eip155:56/bep20:0x783fe4a84645431b31b914b609b86127b96057ea",
+    "chainId": "eip155:56",
+    "name": "SpaceGoat",
+    "precision": 9,
+    "color": "#3B2B99",
+    "icon": "https://assets.coingecko.com/coins/images/16077/thumb/Space-Goat-200-x-200-01.png?1696515685",
+    "symbol": "SGT",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x7849ed1447250d0b896f89b58f3075b127ca29b3": {
+    "assetId": "eip155:56/bep20:0x7849ed1447250d0b896f89b58f3075b127ca29b3",
+    "chainId": "eip155:56",
+    "name": "TOKPIE on BNB Smart Chain",
+    "precision": 18,
+    "color": "#0FAFFC",
+    "icon": "https://assets.coingecko.com/coins/images/3731/thumb/tokpie-200x200.png?1696504401",
+    "symbol": "TKP",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x784fb5fbd1dbc1a0827e7e3d85c635ee16f133cb": {
+    "assetId": "eip155:56/bep20:0x784fb5fbd1dbc1a0827e7e3d85c635ee16f133cb",
+    "chainId": "eip155:56",
+    "name": "Livex Network",
+    "precision": 9,
+    "color": "#8FA3BD",
+    "icon": "https://assets.coingecko.com/coins/images/31911/thumb/live_x_200x200.png?1696530719",
+    "symbol": "LIVE",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x7859b01bbf675d67da8cd128a50d155cd881b576": {
+    "assetId": "eip155:56/bep20:0x7859b01bbf675d67da8cd128a50d155cd881b576",
+    "chainId": "eip155:56",
+    "name": "Mars Ecosystem",
+    "precision": 18,
+    "color": "#F8D9C0",
+    "icon": "https://assets.coingecko.com/coins/images/16349/thumb/MARS.png?1696515949",
+    "symbol": "XMS",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x785d0dc49ddb297e7c5bcb99278d169cb04d669b": {
+    "assetId": "eip155:56/bep20:0x785d0dc49ddb297e7c5bcb99278d169cb04d669b",
+    "chainId": "eip155:56",
+    "name": "DOGE2 0",
+    "precision": 18,
+    "color": "#D47B30",
+    "icon": "https://assets.coingecko.com/coins/images/32134/thumb/DOGECOIN2.jpg?1696588786",
+    "symbol": "DOGE20",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x78650b139471520656b9e7aa7a5e9276814a38e9": {
+    "assetId": "eip155:56/bep20:0x78650b139471520656b9e7aa7a5e9276814a38e9",
+    "chainId": "eip155:56",
+    "name": "BTC Standard Hashrate Token",
+    "precision": 17,
+    "color": "#404040",
+    "icon": "https://assets.coingecko.com/coins/images/14449/thumb/4a3IskOf_400x400.png?1696514137",
+    "symbol": "BTCST",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x7881cd2b5724431372f57c50e91611352557a606": {
+    "assetId": "eip155:56/bep20:0x7881cd2b5724431372f57c50e91611352557a606",
+    "chainId": "eip155:56",
+    "name": "HyperCycle on BNB Smart Chain",
+    "precision": 6,
+    "color": "#6CBC54",
+    "icon": "https://assets.coingecko.com/coins/images/29917/thumb/HyperCycle-Logo-2022_icon_copy_%281%29.png?1696528845",
+    "symbol": "HYPC",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x788d2780992222360f674cc12c36478870b8e6ed": {
+    "assetId": "eip155:56/bep20:0x788d2780992222360f674cc12c36478870b8e6ed",
+    "chainId": "eip155:56",
+    "name": "S4FE on BNB Smart Chain",
+    "precision": 18,
+    "color": "#E4B424",
+    "icon": "https://assets.coingecko.com/coins/images/7405/thumb/logo_%284%29.png?1696507681",
+    "symbol": "S4F",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x78a499a998bdd5a84cf8b5abe49100d82de12f1c": {
+    "assetId": "eip155:56/bep20:0x78a499a998bdd5a84cf8b5abe49100d82de12f1c",
+    "chainId": "eip155:56",
+    "name": "JOJO",
+    "precision": 9,
+    "color": "#F4D145",
+    "icon": "https://assets.coingecko.com/coins/images/17383/thumb/JOJO.png?1696516932",
+    "symbol": "JOJO",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x78aae7e000bf6fc98a6b717d5ec8ef2bcd04f428": {
+    "assetId": "eip155:56/bep20:0x78aae7e000bf6fc98a6b717d5ec8ef2bcd04f428",
+    "chainId": "eip155:56",
+    "name": "GemPad",
+    "precision": 9,
+    "color": "#04FCFC",
+    "icon": "https://assets.coingecko.com/coins/images/25319/thumb/KQLfrRw.png?1696524454",
+    "symbol": "GEMS",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x78b2425fc305c0266143eaa527b01b043af83fb8": {
+    "assetId": "eip155:56/bep20:0x78b2425fc305c0266143eaa527b01b043af83fb8",
+    "chainId": "eip155:56",
+    "name": "Vetter Skylabs",
+    "precision": 9,
+    "color": "#2B1D6A",
+    "icon": "https://assets.coingecko.com/coins/images/28208/thumb/Vetter-Skylabs-200x200.png?1696527210",
+    "symbol": "VSL",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x78e079b08e5920d6029ec6fe9aa83d611ea60b79": {
+    "assetId": "eip155:56/bep20:0x78e079b08e5920d6029ec6fe9aa83d611ea60b79",
+    "chainId": "eip155:56",
+    "name": "Separly",
+    "precision": 18,
+    "color": "#E7D9FB",
+    "icon": "https://assets.coingecko.com/coins/images/31859/thumb/Logo_Sep.png?1696530672",
+    "symbol": "SEPARLY",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x78e624070871831842730b43f77467af3e8b580c": {
+    "assetId": "eip155:56/bep20:0x78e624070871831842730b43f77467af3e8b580c",
+    "chainId": "eip155:56",
+    "name": "ALINK AI",
+    "precision": 8,
+    "color": "#2C327A",
+    "icon": "https://assets.coingecko.com/coins/images/29336/thumb/IMG_20230302_185330_175.jpg?1696528286",
+    "symbol": "ALINK",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x78f5d389f5cdccfc41594abab4b0ed02f31398b3": {
+    "assetId": "eip155:56/bep20:0x78f5d389f5cdccfc41594abab4b0ed02f31398b3",
+    "chainId": "eip155:56",
+    "name": "APX",
+    "precision": 18,
+    "color": "#874AFC",
+    "icon": "https://assets.coingecko.com/coins/images/21972/thumb/apx.png?1696521320",
+    "symbol": "APX",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x790cfdc6ab2e0ee45a433aac5434f183be1f6a20": {
+    "assetId": "eip155:56/bep20:0x790cfdc6ab2e0ee45a433aac5434f183be1f6a20",
+    "chainId": "eip155:56",
+    "name": "Pillar on BNB Smart Chain",
+    "precision": 18,
+    "color": "#AC44FC",
+    "icon": "https://assets.coingecko.com/coins/images/809/thumb/v2logo-1.png?1696501958",
+    "symbol": "PLR",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x79114cc342a4c2a82ce6cc649992e26511b4d95d": {
+    "assetId": "eip155:56/bep20:0x79114cc342a4c2a82ce6cc649992e26511b4d95d",
+    "chainId": "eip155:56",
+    "name": "BitSniper",
+    "precision": 18,
+    "color": "#23A837",
+    "icon": "https://assets.coingecko.com/coins/images/30715/thumb/BitSniper.jpg?1696529586",
+    "symbol": "BULLET",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x794a23b6b8a543b58f995ba590979e0785b60eb2": {
+    "assetId": "eip155:56/bep20:0x794a23b6b8a543b58f995ba590979e0785b60eb2",
+    "chainId": "eip155:56",
+    "name": "Gateway Protocol",
+    "precision": 18,
+    "color": "#55C794",
+    "icon": "https://assets.coingecko.com/coins/images/24093/thumb/gwp.PNG?1696523286",
+    "symbol": "GWP",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x794baab6b878467f93ef17e2f2851ce04e3e34c8": {
+    "assetId": "eip155:56/bep20:0x794baab6b878467f93ef17e2f2851ce04e3e34c8",
+    "chainId": "eip155:56",
+    "name": "YIN Finance on BNB Smart Chain",
+    "precision": 18,
+    "color": "#1B2028",
+    "icon": "https://assets.coingecko.com/coins/images/18272/thumb/e37387ae6ee756fd.jpg?1696517766",
+    "symbol": "YIN",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x7961ade0a767c0e5b67dd1a1f78ba44f727642ed": {
+    "assetId": "eip155:56/bep20:0x7961ade0a767c0e5b67dd1a1f78ba44f727642ed",
+    "chainId": "eip155:56",
+    "name": "Quidd on BNB Smart Chain",
+    "precision": 18,
+    "color": "#641CCC",
+    "icon": "https://assets.coingecko.com/coins/images/19725/thumb/quidd.png?1696519150",
+    "symbol": "QUIDD",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x7969dc3c6e925bccbea9f7fc466a63c74f0115b8": {
+    "assetId": "eip155:56/bep20:0x7969dc3c6e925bccbea9f7fc466a63c74f0115b8",
+    "chainId": "eip155:56",
+    "name": "Lion",
+    "precision": 18,
+    "color": "#F57DF1",
+    "icon": "https://assets.coingecko.com/coins/images/15314/thumb/lion.PNG?1696514964",
+    "symbol": "LION",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x797bb0beea437d2762a755ea911c0046c1284568": {
+    "assetId": "eip155:56/bep20:0x797bb0beea437d2762a755ea911c0046c1284568",
+    "chainId": "eip155:56",
+    "name": "Vulkania",
+    "precision": 18,
+    "color": "#0C0D25",
+    "icon": "https://assets.coingecko.com/coins/images/25424/thumb/7DBYi_Zc_400x400.jpg?1696524555",
+    "symbol": "VLK",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x799e1cf88a236e42b4a87c544a22a94ae95a6910": {
+    "assetId": "eip155:56/bep20:0x799e1cf88a236e42b4a87c544a22a94ae95a6910",
+    "chainId": "eip155:56",
+    "name": "MContent on BNB Smart Chain",
+    "precision": 6,
+    "color": "#CEC13B",
+    "icon": "https://assets.coingecko.com/coins/images/16781/thumb/Image_mcontent.jpeg?1696516353",
+    "symbol": "MCONTENT",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x79ca48c3f6bfb3ef284b4d4c39ca51286830f9ae": {
+    "assetId": "eip155:56/bep20:0x79ca48c3f6bfb3ef284b4d4c39ca51286830f9ae",
+    "chainId": "eip155:56",
+    "name": "Polka Classic",
+    "precision": 18,
+    "color": "#080808",
+    "icon": "https://assets.coingecko.com/coins/images/22307/thumb/Polka-Classic.png?1696521652",
+    "symbol": "DOTC",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x79ebc9a2ce02277a4b5b3a768b1c0a4ed75bd936": {
+    "assetId": "eip155:56/bep20:0x79ebc9a2ce02277a4b5b3a768b1c0a4ed75bd936",
+    "chainId": "eip155:56",
+    "name": "Catgirl",
+    "precision": 9,
+    "color": "#E0ABB4",
+    "icon": "https://assets.coingecko.com/coins/images/16472/thumb/catgirl-200x200.png?1696516067",
+    "symbol": "CATGIRL",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x7a2277f34f275ded630deff758fbc818409ca36d": {
+    "assetId": "eip155:56/bep20:0x7a2277f34f275ded630deff758fbc818409ca36d",
+    "chainId": "eip155:56",
+    "name": "Optimus",
+    "precision": 18,
+    "color": "#DD653C",
+    "icon": "https://assets.coingecko.com/coins/images/21678/thumb/rsz_logo%281%29.png?1696521034",
+    "symbol": "OPTCM",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x7a3a3b747ea9078235f995ad4327828377ce4fa4": {
+    "assetId": "eip155:56/bep20:0x7a3a3b747ea9078235f995ad4327828377ce4fa4",
+    "chainId": "eip155:56",
+    "name": "ETWInfinity",
+    "precision": 18,
+    "color": "#0D5CE1",
+    "icon": "https://assets.coingecko.com/coins/images/28724/thumb/IMG_20230111_170205_646.jpg?1696527705",
+    "symbol": "ETW",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x7a983559e130723b70e45bd637773dbdfd3f71db": {
+    "assetId": "eip155:56/bep20:0x7a983559e130723b70e45bd637773dbdfd3f71db",
+    "chainId": "eip155:56",
+    "name": "Diamond Boyz Coin",
+    "precision": 18,
+    "color": "#A59061",
+    "icon": "https://assets.coingecko.com/coins/images/17308/thumb/IMG_0026.png?1696516861",
+    "symbol": "DBZ",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x7a9c8d33963aecca9a821802adfaf5bd9392351f": {
+    "assetId": "eip155:56/bep20:0x7a9c8d33963aecca9a821802adfaf5bd9392351f",
+    "chainId": "eip155:56",
+    "name": "Duckie Land Multi Metaverse",
+    "precision": 18,
+    "color": "#E5E8E8",
+    "icon": "https://assets.coingecko.com/coins/images/24186/thumb/MMETA_200X200.png?1696523374",
+    "symbol": "MMETA",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x7a9f28eb62c791422aa23ceae1da9c847cbec9b0": {
+    "assetId": "eip155:56/bep20:0x7a9f28eb62c791422aa23ceae1da9c847cbec9b0",
+    "chainId": "eip155:56",
+    "name": "Yieldwatch on BNB Smart Chain",
+    "precision": 18,
+    "color": "#E6D494",
+    "icon": "https://assets.coingecko.com/coins/images/14186/thumb/WATCH1.png?1696513904",
+    "symbol": "WATCH",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x7ac8a920cf1f7e7cc4f698c9c5cbc1e26f604790": {
+    "assetId": "eip155:56/bep20:0x7ac8a920cf1f7e7cc4f698c9c5cbc1e26f604790",
+    "chainId": "eip155:56",
+    "name": "Allium Finance",
+    "precision": 9,
+    "color": "#34B464",
+    "icon": "https://assets.coingecko.com/coins/images/15552/thumb/idEZxWx.png?1696515193",
+    "symbol": "ALM",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x7ae1cbec5c315b31948dd2a5a7c2a6a6040d3d5b": {
+    "assetId": "eip155:56/bep20:0x7ae1cbec5c315b31948dd2a5a7c2a6a6040d3d5b",
+    "chainId": "eip155:56",
+    "name": "NoriGO  on BNB Smart Chain",
+    "precision": 18,
+    "color": "#DDA63E",
+    "icon": "https://assets.coingecko.com/coins/images/29300/thumb/go-token-medium.png?1696528252",
+    "symbol": "GO",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x7af173f350d916358af3e218bdf2178494beb748": {
+    "assetId": "eip155:56/bep20:0x7af173f350d916358af3e218bdf2178494beb748",
+    "chainId": "eip155:56",
+    "name": "Unitrade on BNB Smart Chain",
+    "precision": 18,
+    "color": "#AE9DF0",
+    "icon": "https://assets.coingecko.com/coins/images/11982/thumb/unitrade.PNG?1696511840",
+    "symbol": "TRADE",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x7b0409a3a3f79baa284035d48e1dfd581d7d7654": {
+    "assetId": "eip155:56/bep20:0x7b0409a3a3f79baa284035d48e1dfd581d7d7654",
+    "chainId": "eip155:56",
+    "name": "HyruleSwap",
+    "precision": 18,
+    "color": "#AFDFC5",
+    "icon": "https://assets.coingecko.com/coins/images/14760/thumb/2_%284%29.png?1696514429",
+    "symbol": "RUPEE",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x7b56748a3ef9970a5bae99c58ad8bc67b26c525f": {
+    "assetId": "eip155:56/bep20:0x7b56748a3ef9970a5bae99c58ad8bc67b26c525f",
+    "chainId": "eip155:56",
+    "name": "Chappyz",
+    "precision": 10,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/32728/thumb/Chappyz200x200.png?1699217057",
+    "symbol": "CHAPZ",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x7b610012bdc4d6deba2c2d91684e408f40863429": {
+    "assetId": "eip155:56/bep20:0x7b610012bdc4d6deba2c2d91684e408f40863429",
+    "chainId": "eip155:56",
+    "name": "Omnisea on BNB Smart Chain",
+    "precision": 18,
+    "color": "#F26286",
+    "icon": "https://assets.coingecko.com/coins/images/26475/thumb/293837892_407994084681555_3167689470652146992_n.png?1696525547",
+    "symbol": "OSEA",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x7b65b489fe53fce1f6548db886c08ad73111ddd8": {
+    "assetId": "eip155:56/bep20:0x7b65b489fe53fce1f6548db886c08ad73111ddd8",
+    "chainId": "eip155:56",
+    "name": "Iron BSC",
+    "precision": 18,
+    "color": "#2E1913",
+    "icon": "https://assets.coingecko.com/coins/images/16409/thumb/qBa5_yCL_400x400.jpg?1696516006",
+    "symbol": "IRON",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x7b665b2f633d9363b89a98b094b1f9e732bd8f86": {
+    "assetId": "eip155:56/bep20:0x7b665b2f633d9363b89a98b094b1f9e732bd8f86",
+    "chainId": "eip155:56",
+    "name": "Amazy",
+    "precision": 18,
+    "color": "#246BF0",
+    "icon": "https://assets.coingecko.com/coins/images/26315/thumb/photo_2022-07-07_12-38-02.jpg?1696525397",
+    "symbol": "AZY",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x7b86f5ca09dc00502e342b0fef5117e1c32222ce": {
+    "assetId": "eip155:56/bep20:0x7b86f5ca09dc00502e342b0fef5117e1c32222ce",
+    "chainId": "eip155:56",
+    "name": "SOLCash",
+    "precision": 18,
+    "color": "#0F1217",
+    "icon": "https://assets.coingecko.com/coins/images/21546/thumb/solcash.png?1696520904",
+    "symbol": "SOLCASH",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x7b8779e01d117ec7e220f8299a6f93672e8eae23": {
+    "assetId": "eip155:56/bep20:0x7b8779e01d117ec7e220f8299a6f93672e8eae23",
+    "chainId": "eip155:56",
+    "name": "IMOV",
+    "precision": 18,
+    "color": "#950EC0",
+    "icon": "https://assets.coingecko.com/coins/images/26558/thumb/IMOV.png?1696525631",
+    "symbol": "IMT",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x7b9f36a2f331ece03a7483d2713cfd806f9beef2": {
+    "assetId": "eip155:56/bep20:0x7b9f36a2f331ece03a7483d2713cfd806f9beef2",
+    "chainId": "eip155:56",
+    "name": "Iris Ecosystem",
+    "precision": 9,
+    "color": "#F42C54",
+    "icon": "https://assets.coingecko.com/coins/images/26518/thumb/200x200.png?1696525591",
+    "symbol": "IRISTOKEN",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x7ba1a5780ce75a6998e0f65529393873a6d57cda": {
+    "assetId": "eip155:56/bep20:0x7ba1a5780ce75a6998e0f65529393873a6d57cda",
+    "chainId": "eip155:56",
+    "name": "LUNCARMY",
+    "precision": 18,
+    "color": "#3D3D30",
+    "icon": "https://assets.coingecko.com/coins/images/31753/thumb/LUNCARMY.png?1696530572",
+    "symbol": "LUNCARMY",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x7ba3cd00229c1becc95a4b056ff15c123dcb456d": {
+    "assetId": "eip155:56/bep20:0x7ba3cd00229c1becc95a4b056ff15c123dcb456d",
+    "chainId": "eip155:56",
+    "name": "SpaceVikings",
+    "precision": 9,
+    "color": "#1F1E4E",
+    "icon": "https://assets.coingecko.com/coins/images/15820/thumb/pf-46468a65--TRANS.png?1696515439",
+    "symbol": "SVT",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x7bc75e291e656e8658d66be1cc8154a3769a35dd": {
+    "assetId": "eip155:56/bep20:0x7bc75e291e656e8658d66be1cc8154a3769a35dd",
+    "chainId": "eip155:56",
+    "name": "iMe Lab on BNB Smart Chain",
+    "precision": 18,
+    "color": "#1469EC",
+    "icon": "https://assets.coingecko.com/coins/images/16243/thumb/lim_200.2.png?1696515843",
+    "symbol": "LIME",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x7bd6fabd64813c48545c9c0e312a0099d9be2540": {
+    "assetId": "eip155:56/bep20:0x7bd6fabd64813c48545c9c0e312a0099d9be2540",
+    "chainId": "eip155:56",
+    "name": "Dogelon Mars on BNB Smart Chain",
+    "precision": 18,
+    "color": "#E8E3D6",
+    "icon": "https://assets.coingecko.com/coins/images/14962/thumb/6GxcPRo3_400x400.jpg?1696514622",
+    "symbol": "ELON",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x7c38870e93a1f959cb6c533eb10bbc3e438aac11": {
+    "assetId": "eip155:56/bep20:0x7c38870e93a1f959cb6c533eb10bbc3e438aac11",
+    "chainId": "eip155:56",
+    "name": "Alium Finance on BNB Smart Chain",
+    "precision": 18,
+    "color": "#23B878",
+    "icon": "https://assets.coingecko.com/coins/images/15621/thumb/alium.png?1696515255",
+    "symbol": "ALM",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x7c3b67b30efbacc8f787f7ebd3bdc65234299f4c": {
+    "assetId": "eip155:56/bep20:0x7c3b67b30efbacc8f787f7ebd3bdc65234299f4c",
+    "chainId": "eip155:56",
+    "name": "ClinTex CTi on BNB Smart Chain",
+    "precision": 18,
+    "color": "#04D4AC",
+    "icon": "https://assets.coingecko.com/coins/images/13266/thumb/CTI.png?1696513039",
+    "symbol": "CTI",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x7c3cc93f39f0dbc9e00f96d1fa4ea52e36b3476b": {
+    "assetId": "eip155:56/bep20:0x7c3cc93f39f0dbc9e00f96d1fa4ea52e36b3476b",
+    "chainId": "eip155:56",
+    "name": "Vitamin Coin",
+    "precision": 18,
+    "color": "#E15419",
+    "icon": "https://assets.coingecko.com/coins/images/20661/thumb/vitc_200.png?1696520063",
+    "symbol": "VITC",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x7c56c79a454cbfaf63badb39f82555109a2a80bf": {
+    "assetId": "eip155:56/bep20:0x7c56c79a454cbfaf63badb39f82555109a2a80bf",
+    "chainId": "eip155:56",
+    "name": "Axle Games",
+    "precision": 9,
+    "color": "#C5B9B1",
+    "icon": "https://assets.coingecko.com/coins/images/28766/thumb/Artboard_6_3x.png?1696527745",
+    "symbol": "AXLE",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x7c56d81ecb5e1d287a1e22b89b01348f07be3541": {
+    "assetId": "eip155:56/bep20:0x7c56d81ecb5e1d287a1e22b89b01348f07be3541",
+    "chainId": "eip155:56",
+    "name": "1Move Token",
+    "precision": 18,
+    "color": "#DCDCDC",
+    "icon": "https://assets.coingecko.com/coins/images/27347/thumb/1MT.png?1696526394",
+    "symbol": "1MT",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x7c59a57fc16eac270421b74615c4bc009ecd486d": {
+    "assetId": "eip155:56/bep20:0x7c59a57fc16eac270421b74615c4bc009ecd486d",
+    "chainId": "eip155:56",
+    "name": "RXCGames",
+    "precision": 18,
+    "color": "#5E208C",
+    "icon": "https://assets.coingecko.com/coins/images/20989/thumb/evyjvQB.jpeg?1696520374",
+    "symbol": "RXCG",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x7c5e8a22a4e8f9da2797a9e30e9d64abf5493c43": {
+    "assetId": "eip155:56/bep20:0x7c5e8a22a4e8f9da2797a9e30e9d64abf5493c43",
+    "chainId": "eip155:56",
+    "name": "Web AI",
+    "precision": 18,
+    "color": "#244ACA",
+    "icon": "https://assets.coingecko.com/coins/images/29423/thumb/WebAi_Logo.png?1696528372",
+    "symbol": "WEBAI",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x7c63f96feafacd84e75a594c00fac3693386fbf0": {
+    "assetId": "eip155:56/bep20:0x7c63f96feafacd84e75a594c00fac3693386fbf0",
+    "chainId": "eip155:56",
+    "name": "Australian Safe Shepherd",
+    "precision": 9,
+    "color": "#A29A92",
+    "icon": "https://assets.coingecko.com/coins/images/14912/thumb/XCsenIJ.png?1696514574",
+    "symbol": "ASS",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x7c869b5a294b1314e985283d01c702b62224a05f": {
+    "assetId": "eip155:56/bep20:0x7c869b5a294b1314e985283d01c702b62224a05f",
+    "chainId": "eip155:56",
+    "name": "Jarvis Synthetic Swiss Franc on BNB Smart Chain",
+    "precision": 18,
+    "color": "#DC1235",
+    "icon": "https://assets.coingecko.com/coins/images/15727/thumb/jCHF.png?1696515353",
+    "symbol": "JCHF",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x7cc1c126be3128c1f0441a893cd6220498b27650": {
+    "assetId": "eip155:56/bep20:0x7cc1c126be3128c1f0441a893cd6220498b27650",
+    "chainId": "eip155:56",
+    "name": "XROW",
+    "precision": 18,
+    "color": "#ECDEF6",
+    "icon": "https://assets.coingecko.com/coins/images/29725/thumb/XROW_logo_%281%29.png?1696528655",
+    "symbol": "XROW",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x7cce94c0b2c8ae7661f02544e62178377fe8cf92": {
+    "assetId": "eip155:56/bep20:0x7cce94c0b2c8ae7661f02544e62178377fe8cf92",
+    "chainId": "eip155:56",
+    "name": "Daddy Doge",
+    "precision": 9,
+    "color": "#9D673E",
+    "icon": "https://assets.coingecko.com/coins/images/16931/thumb/icon-200x200_%281%29.png?1696516502",
+    "symbol": "DADDYDOGE",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x7cd8c22d3f4b66230f73d7ffcb48576233c3fe33": {
+    "assetId": "eip155:56/bep20:0x7cd8c22d3f4b66230f73d7ffcb48576233c3fe33",
+    "chainId": "eip155:56",
+    "name": "Metagalaxy Land",
+    "precision": 18,
+    "color": "#0CBCD2",
+    "icon": "https://assets.coingecko.com/coins/images/20983/thumb/dud5mv4kNaj1PZwSQ3Eazt5voNIycBwyhJQFaXdE.png?1696520369",
+    "symbol": "MEGALAND",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x7d18f3fe6e638fad0adacc5db1a47f871a2c2cc4": {
+    "assetId": "eip155:56/bep20:0x7d18f3fe6e638fad0adacc5db1a47f871a2c2cc4",
+    "chainId": "eip155:56",
+    "name": "DollarMoon",
+    "precision": 18,
+    "color": "#1ECC32",
+    "icon": "https://assets.coingecko.com/coins/images/28587/thumb/200x200_%282%29.png?1696527574",
+    "symbol": "DMOON",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x7d38315b92d0e7a85b35b2b7fe969b25935619d7": {
+    "assetId": "eip155:56/bep20:0x7d38315b92d0e7a85b35b2b7fe969b25935619d7",
+    "chainId": "eip155:56",
+    "name": "Ecoin Finance",
+    "precision": 18,
+    "color": "#D8CFE5",
+    "icon": "https://assets.coingecko.com/coins/images/15901/thumb/ecoin.png?1696515516",
+    "symbol": "ECOIN",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x7d4984490c4c68f8ead9dddca6d04c514ef77324": {
+    "assetId": "eip155:56/bep20:0x7d4984490c4c68f8ead9dddca6d04c514ef77324",
+    "chainId": "eip155:56",
+    "name": "Golden Inu on BNB Smart Chain",
+    "precision": 9,
+    "color": "#883920",
+    "icon": "https://assets.coingecko.com/coins/images/29583/thumb/200x200_logo_golden_inu.png?1696528523",
+    "symbol": "GOLDEN",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x7da07fb98f16c26a6417ca5627719194a6944211": {
+    "assetId": "eip155:56/bep20:0x7da07fb98f16c26a6417ca5627719194a6944211",
+    "chainId": "eip155:56",
+    "name": "8BITEARN",
+    "precision": 18,
+    "color": "#190E0E",
+    "icon": "https://assets.coingecko.com/coins/images/28908/thumb/WhatsApp_Image_2023-01-18_at_12.38.16.jpeg?1696527884",
+    "symbol": "8BIT",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x7db13e8b9eaa42fc948268b954dd4e6218cc4cb1": {
+    "assetId": "eip155:56/bep20:0x7db13e8b9eaa42fc948268b954dd4e6218cc4cb1",
+    "chainId": "eip155:56",
+    "name": "Fight Win AI",
+    "precision": 18,
+    "color": "#D72F2F",
+    "icon": "https://assets.coingecko.com/coins/images/29006/thumb/IMG_20230208_235738_212.png?1696527977",
+    "symbol": "FWIN-AI",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x7db21353a0c4659b6a9a0519066aa8d52639dfa5": {
+    "assetId": "eip155:56/bep20:0x7db21353a0c4659b6a9a0519066aa8d52639dfa5",
+    "chainId": "eip155:56",
+    "name": "Joltify",
+    "precision": 18,
+    "color": "#27ECA0",
+    "icon": "https://assets.coingecko.com/coins/images/25262/thumb/NSj-jWHR_400x400.jpg?1696524402",
+    "symbol": "JOLT",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x7dc3577681038522d796335e73f2efeccca1878d": {
+    "assetId": "eip155:56/bep20:0x7dc3577681038522d796335e73f2efeccca1878d",
+    "chainId": "eip155:56",
+    "name": "SwirlTokenX",
+    "precision": 18,
+    "color": "#EF5E04",
+    "icon": "https://assets.coingecko.com/coins/images/29410/thumb/swirl2x200.png?1696528360",
+    "symbol": "SWIRLX",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x7dc6dc21ce07e6499fdcc30dcdb943a8ee4db802": {
+    "assetId": "eip155:56/bep20:0x7dc6dc21ce07e6499fdcc30dcdb943a8ee4db802",
+    "chainId": "eip155:56",
+    "name": "GPT Guru",
+    "precision": 18,
+    "color": "#040404",
+    "icon": "https://assets.coingecko.com/coins/images/30727/thumb/200.png?1696529598",
+    "symbol": "GPTG",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x7ddc52c4de30e94be3a6a0a2b259b2850f421989": {
+    "assetId": "eip155:56/bep20:0x7ddc52c4de30e94be3a6a0a2b259b2850f421989",
+    "chainId": "eip155:56",
+    "name": "Gomining Token on BNB Smart Chain",
+    "precision": 18,
+    "color": "#040404",
+    "icon": "https://assets.coingecko.com/coins/images/15662/thumb/gmt.png?1696515292",
+    "symbol": "GMT",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x7deb9906bd1d77b410a56e5c23c36340bd60c983": {
+    "assetId": "eip155:56/bep20:0x7deb9906bd1d77b410a56e5c23c36340bd60c983",
+    "chainId": "eip155:56",
+    "name": "ChargeDeFi Static",
+    "precision": 18,
+    "color": "#383539",
+    "icon": "https://assets.coingecko.com/coins/images/21404/thumb/1_Ve6PPOEmEu1LRjg5loJkkQ.png?1696520768",
+    "symbol": "STATIC",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x7e2a35c746f2f7c240b664f1da4dd100141ae71f": {
+    "assetId": "eip155:56/bep20:0x7e2a35c746f2f7c240b664f1da4dd100141ae71f",
+    "chainId": "eip155:56",
+    "name": "aiRight",
+    "precision": 18,
+    "color": "#509FF8",
+    "icon": "https://assets.coingecko.com/coins/images/16428/thumb/alright.PNG?1696516024",
+    "symbol": "AIRI",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x7e2afe446a30fa67600a5174df7f4002b8e15b03": {
+    "assetId": "eip155:56/bep20:0x7e2afe446a30fa67600a5174df7f4002b8e15b03",
+    "chainId": "eip155:56",
+    "name": "Ormeus Coin on BNB Smart Chain",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/964/thumb/ORMEUS_logo.png?1696502079",
+    "symbol": "ORME",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x7e35d0e9180bf3a1fc47b0d110be7a21a10b41fe": {
+    "assetId": "eip155:56/bep20:0x7e35d0e9180bf3a1fc47b0d110be7a21a10b41fe",
+    "chainId": "eip155:56",
+    "name": "Ovr on BNB Smart Chain",
+    "precision": 18,
+    "color": "#1B91E1",
+    "icon": "https://assets.coingecko.com/coins/images/13429/thumb/LOGO-OVER-ICON-200X200PX.png?1699396496",
+    "symbol": "OVR",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x7e3784220740e61dc700501bd6771226e11d8897": {
+    "assetId": "eip155:56/bep20:0x7e3784220740e61dc700501bd6771226e11d8897",
+    "chainId": "eip155:56",
+    "name": "Cyber Arena",
+    "precision": 18,
+    "color": "#2A2E25",
+    "icon": "https://assets.coingecko.com/coins/images/30589/thumb/Coin-200x200_%281%29.png?1696529457",
+    "symbol": "CAT",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x7e52a123ed6db6ac872a875552935fbbd2544c86": {
+    "assetId": "eip155:56/bep20:0x7e52a123ed6db6ac872a875552935fbbd2544c86",
+    "chainId": "eip155:56",
+    "name": "myDid",
+    "precision": 6,
+    "color": "#C5EAEE",
+    "icon": "https://assets.coingecko.com/coins/images/14847/thumb/myDid.png?1696514513",
+    "symbol": "SYL",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x7e5cf1f395846ab2c13eba2e6953b54b92a80bbd": {
+    "assetId": "eip155:56/bep20:0x7e5cf1f395846ab2c13eba2e6953b54b92a80bbd",
+    "chainId": "eip155:56",
+    "name": "GBURN on BNB Smart Chain",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/33048/thumb/Untitled_design_-_2023-11-10T174143.724.png?1700472805",
+    "symbol": "GBURN",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x7e60c74b9096f8fa6fb5a9fd88405ded8b7d44f3": {
+    "assetId": "eip155:56/bep20:0x7e60c74b9096f8fa6fb5a9fd88405ded8b7d44f3",
+    "chainId": "eip155:56",
+    "name": "Infiblue World",
+    "precision": 18,
+    "color": "#D2DCE8",
+    "icon": "https://assets.coingecko.com/coins/images/30236/thumb/Monie_logo_200.png?1696529146",
+    "symbol": "MONIE",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x7e624fa0e1c4abfd309cc15719b7e2580887f570": {
+    "assetId": "eip155:56/bep20:0x7e624fa0e1c4abfd309cc15719b7e2580887f570",
+    "chainId": "eip155:56",
+    "name": "Polkastarter on BNB Smart Chain",
+    "precision": 18,
+    "color": "#FC3464",
+    "icon": "https://assets.coingecko.com/coins/images/12648/thumb/polkastarter.png?1696512455",
+    "symbol": "POLS",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x7e8bae727abc245181f7abad0a4445114c0ca987": {
+    "assetId": "eip155:56/bep20:0x7e8bae727abc245181f7abad0a4445114c0ca987",
+    "chainId": "eip155:56",
+    "name": "Lucky7",
+    "precision": 9,
+    "color": "#356991",
+    "icon": "https://assets.coingecko.com/coins/images/32414/thumb/photo_2023-10-12_19-12-51.jpg?1698113872",
+    "symbol": "7",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x7e8db69dcff9209e486a100e611b0af300c3374e": {
+    "assetId": "eip155:56/bep20:0x7e8db69dcff9209e486a100e611b0af300c3374e",
+    "chainId": "eip155:56",
+    "name": "Traders Coin",
+    "precision": 18,
+    "color": "#B8902F",
+    "icon": "https://assets.coingecko.com/coins/images/18675/thumb/logo-200x200.png?1696518144",
+    "symbol": "TRDC",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x7eb567f5c781ee8e47c7100dc5046955503fc26a": {
+    "assetId": "eip155:56/bep20:0x7eb567f5c781ee8e47c7100dc5046955503fc26a",
+    "chainId": "eip155:56",
+    "name": "Koji",
+    "precision": 9,
+    "color": "#242121",
+    "icon": "https://assets.coingecko.com/coins/images/16124/thumb/koji-token-200.png?1696515730",
+    "symbol": "KOJI",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x7ed86d2769fe9a2cad7bac4ceac45e40c82295d6": {
+    "assetId": "eip155:56/bep20:0x7ed86d2769fe9a2cad7bac4ceac45e40c82295d6",
+    "chainId": "eip155:56",
+    "name": "Absolute Sync",
+    "precision": 18,
+    "color": "#0F100F",
+    "icon": "https://assets.coingecko.com/coins/images/24590/thumb/ast.png?1696523764",
+    "symbol": "AST",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x7edc0ec89f987ecd85617b891c44fe462a325869": {
+    "assetId": "eip155:56/bep20:0x7edc0ec89f987ecd85617b891c44fe462a325869",
+    "chainId": "eip155:56",
+    "name": "Gunstar Metaverse",
+    "precision": 18,
+    "color": "#F2EFE2",
+    "icon": "https://assets.coingecko.com/coins/images/21079/thumb/gst.png?1696520461",
+    "symbol": "GSTS",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x7eefb6aeb8bc2c1ba6be1d4273ec0758a1321272": {
+    "assetId": "eip155:56/bep20:0x7eefb6aeb8bc2c1ba6be1d4273ec0758a1321272",
+    "chainId": "eip155:56",
+    "name": "Endless Board Game",
+    "precision": 18,
+    "color": "#DECDA5",
+    "icon": "https://assets.coingecko.com/coins/images/23981/thumb/ENG_Logo.png?1696523177",
+    "symbol": "ENG",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x7efb55d9ac57b23cc6811c9068db3cf83cbdfe39": {
+    "assetId": "eip155:56/bep20:0x7efb55d9ac57b23cc6811c9068db3cf83cbdfe39",
+    "chainId": "eip155:56",
+    "name": "nSights",
+    "precision": 18,
+    "color": "#246BB1",
+    "icon": "https://assets.coingecko.com/coins/images/19607/thumb/nsi.png?1696519037",
+    "symbol": "NSI",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x7f2d1f6a46d619715292c31adb3b647e03ec21b0": {
+    "assetId": "eip155:56/bep20:0x7f2d1f6a46d619715292c31adb3b647e03ec21b0",
+    "chainId": "eip155:56",
+    "name": "BeatGen NFT",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/29814/thumb/Beatgen_new_logo.png?1697016777",
+    "symbol": "BGN",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x7f68528a0464ecf3eb7f0c16bf77bbbb466c0288": {
+    "assetId": "eip155:56/bep20:0x7f68528a0464ecf3eb7f0c16bf77bbbb466c0288",
+    "chainId": "eip155:56",
+    "name": "Hype Meme Token",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/32618/thumb/Meme-Dog-Logo_%281%29.png?1698755865",
+    "symbol": "HMTT",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x7f792db54b0e580cdc755178443f0430cf799aca": {
+    "assetId": "eip155:56/bep20:0x7f792db54b0e580cdc755178443f0430cf799aca",
+    "chainId": "eip155:56",
+    "name": "Volt Inu on BNB Smart Chain",
+    "precision": 9,
+    "color": "#414140",
+    "icon": "https://assets.coingecko.com/coins/images/25201/thumb/logo200.png?1696524344",
+    "symbol": "VOLT",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x7fa7df4996ac59f398476892cfb195ed38543520": {
+    "assetId": "eip155:56/bep20:0x7fa7df4996ac59f398476892cfb195ed38543520",
+    "chainId": "eip155:56",
+    "name": "WagyuSwap",
+    "precision": 18,
+    "color": "#F8F1F2",
+    "icon": "https://assets.coingecko.com/coins/images/18225/thumb/maoZ8h22_400x400.jpg?1696517722",
+    "symbol": "WAG",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x7fa92c33fdfa1050256437b302832a2ed530859f": {
+    "assetId": "eip155:56/bep20:0x7fa92c33fdfa1050256437b302832a2ed530859f",
+    "chainId": "eip155:56",
+    "name": "BergerDoge",
+    "precision": 9,
+    "color": "#AD8E39",
+    "icon": "https://assets.coingecko.com/coins/images/28384/thumb/photo_2022-12-02_22.18.34.png?1696527384",
+    "symbol": "BERGERDOGE",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x7faaf8d4c411218415d9d3f82d56214658349dbb": {
+    "assetId": "eip155:56/bep20:0x7faaf8d4c411218415d9d3f82d56214658349dbb",
+    "chainId": "eip155:56",
+    "name": "Betero on BNB Smart Chain",
+    "precision": 18,
+    "color": "#1C2424",
+    "icon": "https://assets.coingecko.com/coins/images/25153/thumb/B_green200.png?1696524302",
+    "symbol": "BTE",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x7fbec0bb6a7152e77c30d005b5d49cbc08a602c3": {
+    "assetId": "eip155:56/bep20:0x7fbec0bb6a7152e77c30d005b5d49cbc08a602c3",
+    "chainId": "eip155:56",
+    "name": "disBalancer on BNB Smart Chain",
+    "precision": 18,
+    "color": "#D69232",
+    "icon": "https://assets.coingecko.com/coins/images/14791/thumb/communityIcon_o2yriheuszk61.png?1696514460",
+    "symbol": "DDOS",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x7fe378c5e0b5c32af2ecc8829bedf02245a0e4ef": {
+    "assetId": "eip155:56/bep20:0x7fe378c5e0b5c32af2ecc8829bedf02245a0e4ef",
+    "chainId": "eip155:56",
+    "name": "99Starz on BNB Smart Chain",
+    "precision": 18,
+    "color": "#BA1E1E",
+    "icon": "https://assets.coingecko.com/coins/images/21467/thumb/stz.png?1696520828",
+    "symbol": "STZ",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x7ffc1243232da3ac001994208e2002816b57c669": {
+    "assetId": "eip155:56/bep20:0x7ffc1243232da3ac001994208e2002816b57c669",
+    "chainId": "eip155:56",
+    "name": "CryptoZoo",
+    "precision": 18,
+    "color": "#C9AD6C",
+    "icon": "https://assets.coingecko.com/coins/images/17337/thumb/cryptozoo.PNG?1696516889",
+    "symbol": "ZOO",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x8005d97e993668a528008d16338b42f9e976ed0f": {
+    "assetId": "eip155:56/bep20:0x8005d97e993668a528008d16338b42f9e976ed0f",
+    "chainId": "eip155:56",
+    "name": "EGold Project",
+    "precision": 18,
+    "color": "#717171",
+    "icon": "https://assets.coingecko.com/coins/images/30717/thumb/egold_32.png?1696529588",
+    "symbol": "EGOLD",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x800a25741a414ea6e6e2b382435081a479a8cc3c": {
+    "assetId": "eip155:56/bep20:0x800a25741a414ea6e6e2b382435081a479a8cc3c",
+    "chainId": "eip155:56",
+    "name": "SEOR Network",
+    "precision": 18,
+    "color": "#14A8DC",
+    "icon": "https://assets.coingecko.com/coins/images/24397/thumb/-yycZmh7_400x400.png?1696523580",
+    "symbol": "SEOR",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x8013d731f429b3ad418f5467f9f68285efd67ca7": {
+    "assetId": "eip155:56/bep20:0x8013d731f429b3ad418f5467f9f68285efd67ca7",
+    "chainId": "eip155:56",
+    "name": "KRYZA Network",
+    "precision": 18,
+    "color": "#1C4460",
+    "icon": "https://assets.coingecko.com/coins/images/18416/thumb/Je71mCoZ_400x400.png?1696517905",
+    "symbol": "KRN",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x80262f604acac839724f66846f290a2cc8b48662": {
+    "assetId": "eip155:56/bep20:0x80262f604acac839724f66846f290a2cc8b48662",
+    "chainId": "eip155:56",
+    "name": "Ari10",
+    "precision": 18,
+    "color": "#E0DDD5",
+    "icon": "https://assets.coingecko.com/coins/images/19904/thumb/ari10.PNG?1696519324",
+    "symbol": "ARI10",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x802c68730212295149f2bea78c25e2cf5a05b8a0": {
+    "assetId": "eip155:56/bep20:0x802c68730212295149f2bea78c25e2cf5a05b8a0",
+    "chainId": "eip155:56",
+    "name": "Corgidoge",
+    "precision": 8,
+    "color": "#AE8C69",
+    "icon": "https://assets.coingecko.com/coins/images/17156/thumb/corgi-200.png?1696516716",
+    "symbol": "CORGI",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x8038b1f3eb4f70436569618530ac96b439d67bae": {
+    "assetId": "eip155:56/bep20:0x8038b1f3eb4f70436569618530ac96b439d67bae",
+    "chainId": "eip155:56",
+    "name": "MicroTuber on BNB Smart Chain",
+    "precision": 18,
+    "color": "#FB6029",
+    "icon": "https://assets.coingecko.com/coins/images/15489/thumb/mct.PNG?1696515134",
+    "symbol": "MCT",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x80640a39cfc2b1b7c792821c462376aa7083f5a8": {
+    "assetId": "eip155:56/bep20:0x80640a39cfc2b1b7c792821c462376aa7083f5a8",
+    "chainId": "eip155:56",
+    "name": "Zombie Inu on BNB Smart Chain",
+    "precision": 9,
+    "color": "#D4B278",
+    "icon": "https://assets.coingecko.com/coins/images/28562/thumb/zinu_new.png?1696527552",
+    "symbol": "ZINU",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x808f1350dff684c099f4837a01d863fc61a86bc6": {
+    "assetId": "eip155:56/bep20:0x808f1350dff684c099f4837a01d863fc61a86bc6",
+    "chainId": "eip155:56",
+    "name": "MetaFinance on BNB Smart Chain",
+    "precision": 18,
+    "color": "#9D8861",
+    "icon": "https://assets.coingecko.com/coins/images/17365/thumb/meta.PNG?1696516916",
+    "symbol": "MFI",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x808fac147a9c02723d0be300ac4753eaf93c0e1f": {
+    "assetId": "eip155:56/bep20:0x808fac147a9c02723d0be300ac4753eaf93c0e1f",
+    "chainId": "eip155:56",
+    "name": "Baby Floki Coin",
+    "precision": 9,
+    "color": "#CBA584",
+    "icon": "https://assets.coingecko.com/coins/images/18882/thumb/n8hZe-5I_400x400.jpg?1696518341",
+    "symbol": "BABYFLOKICOIN",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x8094e772fa4a60bdeb1dfec56ab040e17dd608d5": {
+    "assetId": "eip155:56/bep20:0x8094e772fa4a60bdeb1dfec56ab040e17dd608d5",
+    "chainId": "eip155:56",
+    "name": "Koda Cryptocurrency",
+    "precision": 9,
+    "color": "#D0DBE3",
+    "icon": "https://assets.coingecko.com/coins/images/15577/thumb/koda.png?1696515216",
+    "symbol": "KODA",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x80aa21b19c2fa7aa29a654859ffec161aa6f04a4": {
+    "assetId": "eip155:56/bep20:0x80aa21b19c2fa7aa29a654859ffec161aa6f04a4",
+    "chainId": "eip155:56",
+    "name": "Rule Token",
+    "precision": 18,
+    "color": "#1D0C5B",
+    "icon": "https://assets.coingecko.com/coins/images/29985/thumb/our_logo.png?1696528910",
+    "symbol": "RULE",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x80b199fedb89eb5fd6b4efd9f000508ecc76f81c": {
+    "assetId": "eip155:56/bep20:0x80b199fedb89eb5fd6b4efd9f000508ecc76f81c",
+    "chainId": "eip155:56",
+    "name": "MicroCreditToken",
+    "precision": 18,
+    "color": "#1A4E85",
+    "icon": "https://assets.coingecko.com/coins/images/24144/thumb/1mct.png?1696523335",
+    "symbol": "1MCT",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x80cd73badb406ea36b9a7cdeb8df06aefa7e12d9": {
+    "assetId": "eip155:56/bep20:0x80cd73badb406ea36b9a7cdeb8df06aefa7e12d9",
+    "chainId": "eip155:56",
+    "name": "SleepFuture on BNB Smart Chain",
+    "precision": 18,
+    "color": "#F0ECF4",
+    "icon": "https://assets.coingecko.com/coins/images/25469/thumb/sleepee.png?1696524604",
+    "symbol": "SLEEPEE",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x80d04e44955aa9c3f24041b2a824a20a88e735a8": {
+    "assetId": "eip155:56/bep20:0x80d04e44955aa9c3f24041b2a824a20a88e735a8",
+    "chainId": "eip155:56",
+    "name": "Multiverse Capital",
+    "precision": 18,
+    "color": "#4B1A60",
+    "icon": "https://assets.coingecko.com/coins/images/21172/thumb/mvc.PNG?1696520548",
+    "symbol": "MVC",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x80dba9c32b7ab5445e482387a5522e24c0ba4c24": {
+    "assetId": "eip155:56/bep20:0x80dba9c32b7ab5445e482387a5522e24c0ba4c24",
+    "chainId": "eip155:56",
+    "name": "extraDNA on BNB Smart Chain",
+    "precision": 18,
+    "color": "#756424",
+    "icon": "https://assets.coingecko.com/coins/images/12667/thumb/Logo_coin_black.png?1696512473",
+    "symbol": "XDNA",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x8106789b240e5e1b34643c052f1dc1b7a1a451a5": {
+    "assetId": "eip155:56/bep20:0x8106789b240e5e1b34643c052f1dc1b7a1a451a5",
+    "chainId": "eip155:56",
+    "name": "Kasa Central",
+    "precision": 18,
+    "color": "#09CCB4",
+    "icon": "https://assets.coingecko.com/coins/images/28354/thumb/kasa_blue_logo_200x200.png?1696527358",
+    "symbol": "KASA",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x810ee35443639348adbbc467b33310d2ab43c168": {
+    "assetId": "eip155:56/bep20:0x810ee35443639348adbbc467b33310d2ab43c168",
+    "chainId": "eip155:56",
+    "name": "Cyclone Protocol on BNB Smart Chain",
+    "precision": 18,
+    "color": "#D2D0D2",
+    "icon": "https://assets.coingecko.com/coins/images/14065/thumb/b3_DFjFp_400x400.jpg?1696513790",
+    "symbol": "CYC",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x81372c18c87f6d2fe91f416d7c8a109cea48c332": {
+    "assetId": "eip155:56/bep20:0x81372c18c87f6d2fe91f416d7c8a109cea48c332",
+    "chainId": "eip155:56",
+    "name": "Swinca",
+    "precision": 4,
+    "color": "#4AD8F0",
+    "icon": "https://assets.coingecko.com/coins/images/25534/thumb/LOGO-TOKEN-2.jpeg?1696524667",
+    "symbol": "SWI",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x817b32d386cfc1f872de306dfaedfda36429ca1e": {
+    "assetId": "eip155:56/bep20:0x817b32d386cfc1f872de306dfaedfda36429ca1e",
+    "chainId": "eip155:56",
+    "name": "2MOON",
+    "precision": 18,
+    "color": "#414141",
+    "icon": "https://assets.coingecko.com/coins/images/32194/thumb/2MOON.jpg?1696745527",
+    "symbol": "MOON",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x8182ac1c5512eb67756a89c40fadb2311757bd32": {
+    "assetId": "eip155:56/bep20:0x8182ac1c5512eb67756a89c40fadb2311757bd32",
+    "chainId": "eip155:56",
+    "name": "Nether",
+    "precision": 18,
+    "color": "#444438",
+    "icon": "https://assets.coingecko.com/coins/images/18009/thumb/Icon_-_Logo_600x600px.png?1696517525",
+    "symbol": "NTR",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x818835503f55283cd51a4399f595e295a9338753": {
+    "assetId": "eip155:56/bep20:0x818835503f55283cd51a4399f595e295a9338753",
+    "chainId": "eip155:56",
+    "name": "Delysium on BNB Smart Chain",
+    "precision": 18,
+    "color": "#5C5C5C",
+    "icon": "https://assets.coingecko.com/coins/images/29299/thumb/AGI_logo_200.png?1696528251",
+    "symbol": "AGI",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x81aa4d3ad2a86e7a2cd44630c36ccaacd6b30568": {
+    "assetId": "eip155:56/bep20:0x81aa4d3ad2a86e7a2cd44630c36ccaacd6b30568",
+    "chainId": "eip155:56",
+    "name": "BLUEART TOKEN",
+    "precision": 9,
+    "color": "#C7D0F2",
+    "icon": "https://assets.coingecko.com/coins/images/28040/thumb/200x200_blueart_logo.png?1696527055",
+    "symbol": "BLA",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x82030cdbd9e4b7c5bb0b811a61da6360d69449cc": {
+    "assetId": "eip155:56/bep20:0x82030cdbd9e4b7c5bb0b811a61da6360d69449cc",
+    "chainId": "eip155:56",
+    "name": "RealFevr on BNB Smart Chain",
+    "precision": 18,
+    "color": "#580DA7",
+    "icon": "https://assets.coingecko.com/coins/images/17136/thumb/Fevr-Token.png?1696516695",
+    "symbol": "FEVR",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x82190d28e710ea9c029d009fad951c6f1d803bb3": {
+    "assetId": "eip155:56/bep20:0x82190d28e710ea9c029d009fad951c6f1d803bb3",
+    "chainId": "eip155:56",
+    "name": "Life Crypto on BNB Smart Chain",
+    "precision": 18,
+    "color": "#6C64C2",
+    "icon": "https://assets.coingecko.com/coins/images/18245/thumb/communityIcon_t3kzc5skazh81.png?1696517741",
+    "symbol": "LIFE",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x82443a77684a7da92fdcb639c8d2bd068a596245": {
+    "assetId": "eip155:56/bep20:0x82443a77684a7da92fdcb639c8d2bd068a596245",
+    "chainId": "eip155:56",
+    "name": "TrustSwap on BNB Smart Chain",
+    "precision": 18,
+    "color": "#2FCCFC",
+    "icon": "https://assets.coingecko.com/coins/images/11795/thumb/Untitled_design-removebg-preview.png?1696511671",
+    "symbol": "SWAP",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x824a50df33ac1b41afc52f4194e2e8356c17c3ac": {
+    "assetId": "eip155:56/bep20:0x824a50df33ac1b41afc52f4194e2e8356c17c3ac",
+    "chainId": "eip155:56",
+    "name": "Kick",
+    "precision": 10,
+    "color": "#FC7C2C",
+    "icon": "https://assets.coingecko.com/coins/images/981/thumb/kick.png?1696502094",
+    "symbol": "KICK",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x82555cc48a532fa4e2194ab883eb6d465149f80e": {
+    "assetId": "eip155:56/bep20:0x82555cc48a532fa4e2194ab883eb6d465149f80e",
+    "chainId": "eip155:56",
+    "name": "MetaPioneers",
+    "precision": 18,
+    "color": "#2E3B66",
+    "icon": "https://assets.coingecko.com/coins/images/29088/thumb/mpi.png?1696528052",
+    "symbol": "MPI",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x8263cd1601fe73c066bf49cc09841f35348e3be0": {
+    "assetId": "eip155:56/bep20:0x8263cd1601fe73c066bf49cc09841f35348e3be0",
+    "chainId": "eip155:56",
+    "name": "Altura",
+    "precision": 18,
+    "color": "#0F0E17",
+    "icon": "https://assets.coingecko.com/coins/images/15127/thumb/logo-dark.png?1696514784",
+    "symbol": "ALU",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x826e5ec70dbc5607ff9218011fbb97f9a8d97953": {
+    "assetId": "eip155:56/bep20:0x826e5ec70dbc5607ff9218011fbb97f9a8d97953",
+    "chainId": "eip155:56",
+    "name": "Travel Care",
+    "precision": 18,
+    "color": "#6A88C9",
+    "icon": "https://assets.coingecko.com/coins/images/24164/thumb/zDm5HX8I_400x400.jpg?1696523353",
+    "symbol": "TRAVEL",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x8276b85b1504c495d7eb7f8e37537644c6d64313": {
+    "assetId": "eip155:56/bep20:0x8276b85b1504c495d7eb7f8e37537644c6d64313",
+    "chainId": "eip155:56",
+    "name": "Mind Connect on BNB Smart Chain",
+    "precision": 18,
+    "color": "#B41C9F",
+    "icon": "https://assets.coingecko.com/coins/images/29749/thumb/our_logo.png?1696528681",
+    "symbol": "MIND",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x82d2f8e02afb160dd5a480a617692e62de9038c4": {
+    "assetId": "eip155:56/bep20:0x82d2f8e02afb160dd5a480a617692e62de9038c4",
+    "chainId": "eip155:56",
+    "name": "Aleph im on BNB Smart Chain",
+    "precision": 18,
+    "color": "#0454FC",
+    "icon": "https://assets.coingecko.com/coins/images/11676/thumb/Aleph-Logo-BW.png?1696511566",
+    "symbol": "ALEPH",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x82d779af1d35665155fcbdf9dcc9e75c84c01e06": {
+    "assetId": "eip155:56/bep20:0x82d779af1d35665155fcbdf9dcc9e75c84c01e06",
+    "chainId": "eip155:56",
+    "name": "Foreverbox",
+    "precision": 18,
+    "color": "#295DF8",
+    "icon": "https://assets.coingecko.com/coins/images/31864/thumb/IMG_3561.PNG?1696530677",
+    "symbol": "FBOX",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x82e7eb8f4c307f2dcf522fdca7b7038296584f29": {
+    "assetId": "eip155:56/bep20:0x82e7eb8f4c307f2dcf522fdca7b7038296584f29",
+    "chainId": "eip155:56",
+    "name": "SWTCoin on BNB Smart Chain",
+    "precision": 18,
+    "color": "#C58A4C",
+    "icon": "https://assets.coingecko.com/coins/images/5985/thumb/swtcoin.jpg?1696506402",
+    "symbol": "SWAT",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x8303a44c770c666b8a45eebab0879c1a880d39e7": {
+    "assetId": "eip155:56/bep20:0x8303a44c770c666b8a45eebab0879c1a880d39e7",
+    "chainId": "eip155:56",
+    "name": "Leonicorn Swap LEONS",
+    "precision": 18,
+    "color": "#172024",
+    "icon": "https://assets.coingecko.com/coins/images/29560/thumb/leons.png?1696528500",
+    "symbol": "LEONS",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x833f307ac507d47309fd8cdd1f835bef8d702a93": {
+    "assetId": "eip155:56/bep20:0x833f307ac507d47309fd8cdd1f835bef8d702a93",
+    "chainId": "eip155:56",
+    "name": "REVV on BNB Smart Chain",
+    "precision": 18,
+    "color": "#858588",
+    "icon": "https://assets.coingecko.com/coins/images/12373/thumb/REVV_TOKEN_Refined_2021_%281%29.png?1696512197",
+    "symbol": "REVV",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x83451a4e3585fda74feb348ad929f2c4ca189660": {
+    "assetId": "eip155:56/bep20:0x83451a4e3585fda74feb348ad929f2c4ca189660",
+    "chainId": "eip155:56",
+    "name": "Hunter Token",
+    "precision": 18,
+    "color": "#405362",
+    "icon": "https://assets.coingecko.com/coins/images/27793/thumb/Hunter-Logo-large.png?1696526813",
+    "symbol": "HNTR",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x8357c604c5533fa0053beaaa1494da552cea38f7": {
+    "assetId": "eip155:56/bep20:0x8357c604c5533fa0053beaaa1494da552cea38f7",
+    "chainId": "eip155:56",
+    "name": "Spores Network on BNB Smart Chain",
+    "precision": 18,
+    "color": "#CCB464",
+    "icon": "https://assets.coingecko.com/coins/images/17431/thumb/SPO_token.png?1696516978",
+    "symbol": "SPO",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x837656c3f5858692ccdce13ba66e09d2685073df": {
+    "assetId": "eip155:56/bep20:0x837656c3f5858692ccdce13ba66e09d2685073df",
+    "chainId": "eip155:56",
+    "name": "INTOverse",
+    "precision": 18,
+    "color": "#060607",
+    "icon": "https://assets.coingecko.com/coins/images/31216/thumb/345ROn-D_400x400.jpg?1696530043",
+    "symbol": "TOX",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x837a130aed114300bab4f9f1f4f500682f7efd48": {
+    "assetId": "eip155:56/bep20:0x837a130aed114300bab4f9f1f4f500682f7efd48",
+    "chainId": "eip155:56",
+    "name": "WeSendit",
+    "precision": 18,
+    "color": "#103D6B",
+    "icon": "https://assets.coingecko.com/coins/images/28386/thumb/wesendit_token_logo_%281%29.png?1696527386",
+    "symbol": "WSI",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x83b27de2fca046fa63a11c7ce7743de33ec58822": {
+    "assetId": "eip155:56/bep20:0x83b27de2fca046fa63a11c7ce7743de33ec58822",
+    "chainId": "eip155:56",
+    "name": "BUILD on BNB Smart Chain",
+    "precision": 18,
+    "color": "#EC1C24",
+    "icon": "https://assets.coingecko.com/coins/images/26533/thumb/BUILD.png?1696525607",
+    "symbol": "BUILD",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x83b79f74f225e8f9a29fc67cb1678e7909d7d73d": {
+    "assetId": "eip155:56/bep20:0x83b79f74f225e8f9a29fc67cb1678e7909d7d73d",
+    "chainId": "eip155:56",
+    "name": "Avatly",
+    "precision": 18,
+    "color": "#EDF5FC",
+    "icon": "https://assets.coingecko.com/coins/images/28368/thumb/17ddcf3cae174463a018a9566c4f3424.png?1696527371",
+    "symbol": "AVA",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x83d8ea5a4650b68cd2b57846783d86df940f7458": {
+    "assetId": "eip155:56/bep20:0x83d8ea5a4650b68cd2b57846783d86df940f7458",
+    "chainId": "eip155:56",
+    "name": "Hudi",
+    "precision": 18,
+    "color": "#F9C70B",
+    "icon": "https://assets.coingecko.com/coins/images/18454/thumb/coin_200x200.png?1696517941",
+    "symbol": "HUDI",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x840590a04dd494c980d70a380e10bec739432a8a": {
+    "assetId": "eip155:56/bep20:0x840590a04dd494c980d70a380e10bec739432a8a",
+    "chainId": "eip155:56",
+    "name": "Synopti",
+    "precision": 18,
+    "color": "#EC4435",
+    "icon": "https://assets.coingecko.com/coins/images/29077/thumb/Synopti_200x200.png?1696528043",
+    "symbol": "SYNOPTI",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x842668e2b9a73240abf6532dedc89c9c3e050c98": {
+    "assetId": "eip155:56/bep20:0x842668e2b9a73240abf6532dedc89c9c3e050c98",
+    "chainId": "eip155:56",
+    "name": "Light Defi",
+    "precision": 9,
+    "color": "#121C14",
+    "icon": "https://assets.coingecko.com/coins/images/17880/thumb/bW0DtiU.png?1696517402",
+    "symbol": "LIGHT",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x842d801761bcbc6fce88952614e0cc8a63e63d0a": {
+    "assetId": "eip155:56/bep20:0x842d801761bcbc6fce88952614e0cc8a63e63d0a",
+    "chainId": "eip155:56",
+    "name": "zkSHIELD",
+    "precision": 18,
+    "color": "#262628",
+    "icon": "https://assets.coingecko.com/coins/images/31976/thumb/IMG_3665.png?1696530779",
+    "symbol": "ZKSHIELD",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x842defb310cace2b923c1fd7b3db067d3d0fcc34": {
+    "assetId": "eip155:56/bep20:0x842defb310cace2b923c1fd7b3db067d3d0fcc34",
+    "chainId": "eip155:56",
+    "name": "Cheems Inu  NEW  on BNB Smart Chain",
+    "precision": 9,
+    "color": "#CF5506",
+    "icon": "https://assets.coingecko.com/coins/images/29393/thumb/cinu.png?1696528343",
+    "symbol": "CINU",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x843d4a358471547f51534e3e51fae91cb4dc3f28": {
+    "assetId": "eip155:56/bep20:0x843d4a358471547f51534e3e51fae91cb4dc3f28",
+    "chainId": "eip155:56",
+    "name": "Loser Coin on BNB Smart Chain",
+    "precision": 18,
+    "color": "#EFEED9",
+    "icon": "https://assets.coingecko.com/coins/images/15378/thumb/loser.PNG?1696515025",
+    "symbol": "LOWB",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x8443f091997f06a61670b735ed92734f5628692f": {
+    "assetId": "eip155:56/bep20:0x8443f091997f06a61670b735ed92734f5628692f",
+    "chainId": "eip155:56",
+    "name": "Bella Protocol on BNB Smart Chain",
+    "precision": 18,
+    "color": "#04B4FC",
+    "icon": "https://assets.coingecko.com/coins/images/12478/thumb/Bella.png?1696512296",
+    "symbol": "BEL",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x846f52020749715f02aef25b5d1d65e48945649d": {
+    "assetId": "eip155:56/bep20:0x846f52020749715f02aef25b5d1d65e48945649d",
+    "chainId": "eip155:56",
+    "name": "Umbrella Network on BNB Smart Chain",
+    "precision": 18,
+    "color": "#043058",
+    "icon": "https://assets.coingecko.com/coins/images/13913/thumb/Umbrella_Network_Logo-Vertical_Version.png?1696513654",
+    "symbol": "UMB",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x847d4b8a5826b32e5fd0c997010779124b068887": {
+    "assetId": "eip155:56/bep20:0x847d4b8a5826b32e5fd0c997010779124b068887",
+    "chainId": "eip155:56",
+    "name": "Wall Street Pepes",
+    "precision": 9,
+    "color": "#EBECE9",
+    "icon": "https://assets.coingecko.com/coins/images/32313/thumb/logowsp.png?1697189248",
+    "symbol": "WSP",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x84afb95ca5589674e02d227bdd6da7e7dcf31a3e": {
+    "assetId": "eip155:56/bep20:0x84afb95ca5589674e02d227bdd6da7e7dcf31a3e",
+    "chainId": "eip155:56",
+    "name": "Perpetuum Coin",
+    "precision": 9,
+    "color": "#05A4F2",
+    "icon": "https://assets.coingecko.com/coins/images/19605/thumb/LOGO_PRP_200x200.png?1696519035",
+    "symbol": "PRP",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x84b381692ae5e14b22f4217ff0ff1ad12877b34e": {
+    "assetId": "eip155:56/bep20:0x84b381692ae5e14b22f4217ff0ff1ad12877b34e",
+    "chainId": "eip155:56",
+    "name": "zkVAULT",
+    "precision": 18,
+    "color": "#B6B6B6",
+    "icon": "https://assets.coingecko.com/coins/images/30960/thumb/0xfi_v.png?1696529799",
+    "symbol": "ZKVAULT",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x84c97300a190676a19d1e13115629a11f8482bd1": {
+    "assetId": "eip155:56/bep20:0x84c97300a190676a19d1e13115629a11f8482bd1",
+    "chainId": "eip155:56",
+    "name": "Dot Dot Finance",
+    "precision": 18,
+    "color": "#202E4A",
+    "icon": "https://assets.coingecko.com/coins/images/25212/thumb/batkXqm.png?1696524355",
+    "symbol": "DDD",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x84cfc0427147026368c2aac4f502d98aac47eb48": {
+    "assetId": "eip155:56/bep20:0x84cfc0427147026368c2aac4f502d98aac47eb48",
+    "chainId": "eip155:56",
+    "name": "Shanum",
+    "precision": 18,
+    "color": "#3C4343",
+    "icon": "https://assets.coingecko.com/coins/images/27559/thumb/shanlogo.png?1696526594",
+    "symbol": "SHAN",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x84e03e21da9b32555885a85b7c23e5fc123c25dd": {
+    "assetId": "eip155:56/bep20:0x84e03e21da9b32555885a85b7c23e5fc123c25dd",
+    "chainId": "eip155:56",
+    "name": "eTukTuk",
+    "precision": 18,
+    "color": "#8CC43C",
+    "icon": "https://assets.coingecko.com/coins/images/32072/thumb/TukToken-LogoCircle.png?1696530869",
+    "symbol": "TUK",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x84e9a6f9d240fdd33801f7135908bfa16866939a": {
+    "assetId": "eip155:56/bep20:0x84e9a6f9d240fdd33801f7135908bfa16866939a",
+    "chainId": "eip155:56",
+    "name": "GAMEE on BNB Smart Chain",
+    "precision": 18,
+    "color": "#5654FA",
+    "icon": "https://assets.coingecko.com/coins/images/14716/thumb/gmee-200x200.png?1696514386",
+    "symbol": "GMEE",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x84f4f7cdb4574c9556a494dab18ffc1d1d22316c": {
+    "assetId": "eip155:56/bep20:0x84f4f7cdb4574c9556a494dab18ffc1d1d22316c",
+    "chainId": "eip155:56",
+    "name": "King Shiba",
+    "precision": 9,
+    "color": "#DF6F0E",
+    "icon": "https://assets.coingecko.com/coins/images/19215/thumb/kingshib.png?1696518662",
+    "symbol": "KINGSHIB",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x84fd7cc4cd689fc021ee3d00759b6d255269d538": {
+    "assetId": "eip155:56/bep20:0x84fd7cc4cd689fc021ee3d00759b6d255269d538",
+    "chainId": "eip155:56",
+    "name": "panKUKU",
+    "precision": 18,
+    "color": "#B9F0F5",
+    "icon": "https://assets.coingecko.com/coins/images/26657/thumb/Official_Logo_Round_200x200.png?1696525729",
+    "symbol": "KUKU",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x850606b482a9d5e1be25a89d988a7eb05b613cc2": {
+    "assetId": "eip155:56/bep20:0x850606b482a9d5e1be25a89d988a7eb05b613cc2",
+    "chainId": "eip155:56",
+    "name": "BNB Tiger",
+    "precision": 8,
+    "color": "#EFE070",
+    "icon": "https://assets.coingecko.com/coins/images/32546/thumb/IMG_2877.jpeg?1698474480",
+    "symbol": "BNBTIGER",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x851944049dfdd189725b136c5ae3fb83cc62b28d": {
+    "assetId": "eip155:56/bep20:0x851944049dfdd189725b136c5ae3fb83cc62b28d",
+    "chainId": "eip155:56",
+    "name": "Hummingbird Finance",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/32872/thumb/HMNG.jpg?1699687220",
+    "symbol": "HMNG",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x8519ea49c997f50ceffa444d240fb655e89248aa": {
+    "assetId": "eip155:56/bep20:0x8519ea49c997f50ceffa444d240fb655e89248aa",
+    "chainId": "eip155:56",
+    "name": "RAMP  OLD  on BNB Smart Chain",
+    "precision": 18,
+    "color": "#27BFDA",
+    "icon": "https://assets.coingecko.com/coins/images/12837/thumb/RAMP-Logo-v2-1000pxsq.png?1696512628",
+    "symbol": "RAMP",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x851da0bea7fe6db35c11c1d3a065a96e6b36acf1": {
+    "assetId": "eip155:56/bep20:0x851da0bea7fe6db35c11c1d3a065a96e6b36acf1",
+    "chainId": "eip155:56",
+    "name": "Oracle Meta Technologies",
+    "precision": 4,
+    "color": "#0B1D24",
+    "icon": "https://assets.coingecko.com/coins/images/31610/thumb/photo_2023-06-26_17-06-18_%281%29.jpg?1696530426",
+    "symbol": "OMT",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x851f7a700c5d67db59612b871338a85526752c25": {
+    "assetId": "eip155:56/bep20:0x851f7a700c5d67db59612b871338a85526752c25",
+    "chainId": "eip155:56",
+    "name": "Argon",
+    "precision": 18,
+    "color": "#24E565",
+    "icon": "https://assets.coingecko.com/coins/images/14280/thumb/200x200-no-bg.png?1696513978",
+    "symbol": "ARGON",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x8526ff6bbd8a976127443b1ce451ca1044aa3ce2": {
+    "assetId": "eip155:56/bep20:0x8526ff6bbd8a976127443b1ce451ca1044aa3ce2",
+    "chainId": "eip155:56",
+    "name": "Yuse",
+    "precision": 18,
+    "color": "#E6CCE4",
+    "icon": "https://assets.coingecko.com/coins/images/25416/thumb/NlEpysOy_400x400.png?1696524546",
+    "symbol": "YUSE",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x8530b66ca3ddf50e0447eae8ad7ea7d5e62762ed": {
+    "assetId": "eip155:56/bep20:0x8530b66ca3ddf50e0447eae8ad7ea7d5e62762ed",
+    "chainId": "eip155:56",
+    "name": "Meta Doge on BNB Smart Chain",
+    "precision": 18,
+    "color": "#FBA213",
+    "icon": "https://assets.coingecko.com/coins/images/19656/thumb/metadoge.png?1696519084",
+    "symbol": "METADOGE",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x854a63b35b70a7becbed508ff0b6ff5038d0c917": {
+    "assetId": "eip155:56/bep20:0x854a63b35b70a7becbed508ff0b6ff5038d0c917",
+    "chainId": "eip155:56",
+    "name": "Minato on BNB Smart Chain",
+    "precision": 18,
+    "color": "#C42434",
+    "icon": "https://assets.coingecko.com/coins/images/24622/thumb/MNTO_200x200.png?1696523794",
+    "symbol": "MNTO",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x854f7cd3677737241e3eed0dc3d7f33dfaf72bc4": {
+    "assetId": "eip155:56/bep20:0x854f7cd3677737241e3eed0dc3d7f33dfaf72bc4",
+    "chainId": "eip155:56",
+    "name": "ETHAX",
+    "precision": 18,
+    "color": "#DDDCBC",
+    "icon": "https://assets.coingecko.com/coins/images/25571/thumb/ethax.png?1696524704",
+    "symbol": "ETHAX",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x8578eb576e126f67913a8bc0622e0a22eba0989a": {
+    "assetId": "eip155:56/bep20:0x8578eb576e126f67913a8bc0622e0a22eba0989a",
+    "chainId": "eip155:56",
+    "name": "HashPanda",
+    "precision": 9,
+    "color": "#0F0F0F",
+    "icon": "https://assets.coingecko.com/coins/images/15903/thumb/logo_-_2021-05-31T060013.983.png?1696515518",
+    "symbol": "PANDA",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x857b222fc79e1cbbf8ca5f78cb133d1b7cf34bbd": {
+    "assetId": "eip155:56/bep20:0x857b222fc79e1cbbf8ca5f78cb133d1b7cf34bbd",
+    "chainId": "eip155:56",
+    "name": "LTO Network on BNB Smart Chain",
+    "precision": 18,
+    "color": "#4C7CC8",
+    "icon": "https://assets.coingecko.com/coins/images/6068/thumb/lto.png?1696506473",
+    "symbol": "LTO",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x8595f9da7b868b1822194faed312235e43007b49": {
+    "assetId": "eip155:56/bep20:0x8595f9da7b868b1822194faed312235e43007b49",
+    "chainId": "eip155:56",
+    "name": "BitTorrent  OLD ",
+    "precision": 18,
+    "color": "#DCDCDC",
+    "icon": "https://assets.coingecko.com/coins/images/7595/thumb/BTT_Token_Graphic.png?1696507854",
+    "symbol": "BTTOLD",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x859ac2100b85868bf7387d27e339da502fd1eabc": {
+    "assetId": "eip155:56/bep20:0x859ac2100b85868bf7387d27e339da502fd1eabc",
+    "chainId": "eip155:56",
+    "name": "Body Ai",
+    "precision": 18,
+    "color": "#2CA4D6",
+    "icon": "https://assets.coingecko.com/coins/images/29588/thumb/Logo_200_white.jpg?1696528527",
+    "symbol": "BAIT",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x859c940f080b197659b3effc804fd622df66f0a1": {
+    "assetId": "eip155:56/bep20:0x859c940f080b197659b3effc804fd622df66f0a1",
+    "chainId": "eip155:56",
+    "name": "FitBurn",
+    "precision": 18,
+    "color": "#140604",
+    "icon": "https://assets.coingecko.com/coins/images/29876/thumb/Logo_%283%29.png?1696528801",
+    "symbol": "CAL",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x859ebc6dda4c5470fabf63fe96dd6c795e1dac6e": {
+    "assetId": "eip155:56/bep20:0x859ebc6dda4c5470fabf63fe96dd6c795e1dac6e",
+    "chainId": "eip155:56",
+    "name": "FINE  BSC ",
+    "precision": 18,
+    "color": "#C59C33",
+    "icon": "https://assets.coingecko.com/coins/images/31850/thumb/Ey8knEbb_400x400.jpg?1696530664",
+    "symbol": "FINE",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x85c128ee1feeb39a59490c720a9c563554b51d33": {
+    "assetId": "eip155:56/bep20:0x85c128ee1feeb39a59490c720a9c563554b51d33",
+    "chainId": "eip155:56",
+    "name": "MoMo Key",
+    "precision": 18,
+    "color": "#51A2F3",
+    "icon": "https://assets.coingecko.com/coins/images/14812/thumb/2e7a347a975a232693d4467bd4d6546.png?1696514481",
+    "symbol": "KEY",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x85cec9d09529c4239dcd89018889238abdd3ede6": {
+    "assetId": "eip155:56/bep20:0x85cec9d09529c4239dcd89018889238abdd3ede6",
+    "chainId": "eip155:56",
+    "name": "FIDELIS",
+    "precision": 9,
+    "color": "#FBB919",
+    "icon": "https://assets.coingecko.com/coins/images/24778/thumb/fdls.png?1696523938",
+    "symbol": "FDLS",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x85dab10c3ba20148ca60c2eb955e1f8ffe9eaa79": {
+    "assetId": "eip155:56/bep20:0x85dab10c3ba20148ca60c2eb955e1f8ffe9eaa79",
+    "chainId": "eip155:56",
+    "name": "ARTH on BNB Smart Chain",
+    "precision": 18,
+    "color": "#241C1A",
+    "icon": "https://assets.coingecko.com/coins/images/16876/thumb/Ik5dhOq.png?1696516444",
+    "symbol": "ARTH",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x85ee8e3e0068edeeee960979958d7f61416a9d84": {
+    "assetId": "eip155:56/bep20:0x85ee8e3e0068edeeee960979958d7f61416a9d84",
+    "chainId": "eip155:56",
+    "name": "Story",
+    "precision": 18,
+    "color": "#FC4C7B",
+    "icon": "https://assets.coingecko.com/coins/images/18128/thumb/logo_-_2021-09-03T064032.320.png?1696517631",
+    "symbol": "STORY",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x861f1e1397dad68289e8f6a09a2ebb567f1b895c": {
+    "assetId": "eip155:56/bep20:0x861f1e1397dad68289e8f6a09a2ebb567f1b895c",
+    "chainId": "eip155:56",
+    "name": "Menzy",
+    "precision": 18,
+    "color": "#F9EEF6",
+    "icon": "https://assets.coingecko.com/coins/images/26291/thumb/Menzy-logo.jpeg?1696525374",
+    "symbol": "MNZ",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x8626264b6a1b4e920905efd381002aba52ea0eea": {
+    "assetId": "eip155:56/bep20:0x8626264b6a1b4e920905efd381002aba52ea0eea",
+    "chainId": "eip155:56",
+    "name": "BlackHat Coin on BNB Smart Chain",
+    "precision": 8,
+    "color": "#C2C2C3",
+    "icon": "https://assets.coingecko.com/coins/images/15987/thumb/logo_light.png?1696515600",
+    "symbol": "BLKC",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x8626f099434d9a7e603b8f0273880209eabfc1c5": {
+    "assetId": "eip155:56/bep20:0x8626f099434d9a7e603b8f0273880209eabfc1c5",
+    "chainId": "eip155:56",
+    "name": "BerrySwap",
+    "precision": 18,
+    "color": "#E5E0E8",
+    "icon": "https://assets.coingecko.com/coins/images/14609/thumb/Berry.jpg?1696514287",
+    "symbol": "BERRY",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x864f20c06fff47e3130de2e1269d6067b67aa69d": {
+    "assetId": "eip155:56/bep20:0x864f20c06fff47e3130de2e1269d6067b67aa69d",
+    "chainId": "eip155:56",
+    "name": "ShibCEO",
+    "precision": 9,
+    "color": "#10A5DC",
+    "icon": "https://assets.coingecko.com/coins/images/29259/thumb/shibceo.png?1696528213",
+    "symbol": "SHIBCEO",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x865a0e15ac5c309e7ea61410cebdea1df686dbb2": {
+    "assetId": "eip155:56/bep20:0x865a0e15ac5c309e7ea61410cebdea1df686dbb2",
+    "chainId": "eip155:56",
+    "name": "DexWallet",
+    "precision": 18,
+    "color": "#E1D4FC",
+    "icon": "https://assets.coingecko.com/coins/images/28504/thumb/IMG_20221214_221815_932.png?1696527498",
+    "symbol": "DWT",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x8683e604cdf911cd72652a04bf9d571697a86a60": {
+    "assetId": "eip155:56/bep20:0x8683e604cdf911cd72652a04bf9d571697a86a60",
+    "chainId": "eip155:56",
+    "name": "EvidenZ on BNB Smart Chain",
+    "precision": 18,
+    "color": "#39D1C5",
+    "icon": "https://assets.coingecko.com/coins/images/2014/thumb/evidenz-512.png?1696502988",
+    "symbol": "BCDT",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x8689dea88ec1e2638250eef702e722c6dacff70e": {
+    "assetId": "eip155:56/bep20:0x8689dea88ec1e2638250eef702e722c6dacff70e",
+    "chainId": "eip155:56",
+    "name": "BNB Whales",
+    "precision": 9,
+    "color": "#413521",
+    "icon": "https://assets.coingecko.com/coins/images/32515/thumb/photo_2023-10-24_23.45.42-removebg-preview.png?1698401899",
+    "symbol": "BNBWHALES",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x86a5016d60b977e479de6a734c133a613b5b3100": {
+    "assetId": "eip155:56/bep20:0x86a5016d60b977e479de6a734c133a613b5b3100",
+    "chainId": "eip155:56",
+    "name": "Puffin Global",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/33109/thumb/icon-1_%281%29_%281%29.png?1700676228",
+    "symbol": "PUFFIN",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x86a53fcd199212fea44fa7e16eb1f28812be911d": {
+    "assetId": "eip155:56/bep20:0x86a53fcd199212fea44fa7e16eb1f28812be911d",
+    "chainId": "eip155:56",
+    "name": "Inflation Hedging Coin",
+    "precision": 18,
+    "color": "#190E2E",
+    "icon": "https://assets.coingecko.com/coins/images/18835/thumb/imgonline-com-ua-Resize-QspvgKzsspQpANbd.png?1696518296",
+    "symbol": "IHC",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x86b3f23b6e90f5bbfac59b5b2661134ef8ffd255": {
+    "assetId": "eip155:56/bep20:0x86b3f23b6e90f5bbfac59b5b2661134ef8ffd255",
+    "chainId": "eip155:56",
+    "name": "Don key on BNB Smart Chain",
+    "precision": 18,
+    "color": "#9C8E2B",
+    "icon": "https://assets.coingecko.com/coins/images/15482/thumb/donkey_logo.jpg?1696515127",
+    "symbol": "DON",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x86cd1faf05abbb705842ec3c98ef5006173fb4d6": {
+    "assetId": "eip155:56/bep20:0x86cd1faf05abbb705842ec3c98ef5006173fb4d6",
+    "chainId": "eip155:56",
+    "name": "JP",
+    "precision": 9,
+    "color": "#FC044C",
+    "icon": "https://assets.coingecko.com/coins/images/28967/thumb/Jp.png?1696527940",
+    "symbol": "JP",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x86fac768241b4133d131edccbd47f143a4fa9d32": {
+    "assetId": "eip155:56/bep20:0x86fac768241b4133d131edccbd47f143a4fa9d32",
+    "chainId": "eip155:56",
+    "name": "WrappedARC",
+    "precision": 18,
+    "color": "#F0D694",
+    "icon": "https://assets.coingecko.com/coins/images/29860/thumb/WARC-COIN-PNG-200x200.png?1696528786",
+    "symbol": "WARC",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x8717e80eff08f53a45b4a925009957e14860a8a8": {
+    "assetId": "eip155:56/bep20:0x8717e80eff08f53a45b4a925009957e14860a8a8",
+    "chainId": "eip155:56",
+    "name": "BHO Network",
+    "precision": 18,
+    "color": "#82418C",
+    "icon": "https://assets.coingecko.com/coins/images/18625/thumb/12280.png?1696518097",
+    "symbol": "BHO",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x87230146e138d3f296a9a77e497a2a83012e9bc5": {
+    "assetId": "eip155:56/bep20:0x87230146e138d3f296a9a77e497a2a83012e9bc5",
+    "chainId": "eip155:56",
+    "name": "Squid Game on BNB Smart Chain",
+    "precision": 18,
+    "color": "#0D0C14",
+    "icon": "https://assets.coingecko.com/coins/images/20506/thumb/squid.png?1696519912",
+    "symbol": "SQUID",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x872a34ebb2d54af86827810eebc7b9dc6b2144aa": {
+    "assetId": "eip155:56/bep20:0x872a34ebb2d54af86827810eebc7b9dc6b2144aa",
+    "chainId": "eip155:56",
+    "name": "RocketX exchange on BNB Smart Chain",
+    "precision": 18,
+    "color": "#861FDD",
+    "icon": "https://assets.coingecko.com/coins/images/14728/thumb/avatar-correct-size-official.png?1696514397",
+    "symbol": "RVF",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x872d068c25511be88c1f5990c53eeffcdf46c9b4": {
+    "assetId": "eip155:56/bep20:0x872d068c25511be88c1f5990c53eeffcdf46c9b4",
+    "chainId": "eip155:56",
+    "name": "Vent Finance on BNB Smart Chain",
+    "precision": 18,
+    "color": "#040404",
+    "icon": "https://assets.coingecko.com/coins/images/17925/thumb/Artboard_29.png?1696517445",
+    "symbol": "VENT",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x873801ae2ff12d816db9a7b082f5796bec64c82c": {
+    "assetId": "eip155:56/bep20:0x873801ae2ff12d816db9a7b082f5796bec64c82c",
+    "chainId": "eip155:56",
+    "name": "DAO Invest on BNB Smart Chain",
+    "precision": 18,
+    "color": "#BCBCBC",
+    "icon": "https://assets.coingecko.com/coins/images/17901/thumb/logo-round-200.png?1696517421",
+    "symbol": "VEST",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x876866ef03d1bd9cc7afdc2df9bf21b21a57af04": {
+    "assetId": "eip155:56/bep20:0x876866ef03d1bd9cc7afdc2df9bf21b21a57af04",
+    "chainId": "eip155:56",
+    "name": "Windfall",
+    "precision": 18,
+    "color": "#070735",
+    "icon": "https://assets.coingecko.com/coins/images/20230/thumb/zeQIm-S__400x400.jpg?1696519639",
+    "symbol": "WFT",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x8780fea4c6b242677d4a397fe1110ac09ce99ad2": {
+    "assetId": "eip155:56/bep20:0x8780fea4c6b242677d4a397fe1110ac09ce99ad2",
+    "chainId": "eip155:56",
+    "name": "Bird Money on BNB Smart Chain",
+    "precision": 18,
+    "color": "#B20404",
+    "icon": "https://assets.coingecko.com/coins/images/13260/thumb/favicon-180x180.png?1696513035",
+    "symbol": "BIRD",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x87837b7b4850687e200254f78c0af0a34329a491": {
+    "assetId": "eip155:56/bep20:0x87837b7b4850687e200254f78c0af0a34329a491",
+    "chainId": "eip155:56",
+    "name": "Lucretius",
+    "precision": 15,
+    "color": "#88208C",
+    "icon": "https://assets.coingecko.com/coins/images/24205/thumb/luc.png?1696523392",
+    "symbol": "LUC",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x8789337a176e6e7223ff115f1cd85c993d42c25c": {
+    "assetId": "eip155:56/bep20:0x8789337a176e6e7223ff115f1cd85c993d42c25c",
+    "chainId": "eip155:56",
+    "name": "Copiosa",
+    "precision": 18,
+    "color": "#415EF0",
+    "icon": "https://assets.coingecko.com/coins/images/14923/thumb/cop.png?1696514584",
+    "symbol": "COP",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x879d239bcc0356cf9df8c90442488bce99554c66": {
+    "assetId": "eip155:56/bep20:0x879d239bcc0356cf9df8c90442488bce99554c66",
+    "chainId": "eip155:56",
+    "name": "Metan Evolutions",
+    "precision": 18,
+    "color": "#E0B521",
+    "icon": "https://assets.coingecko.com/coins/images/23762/thumb/metan.png?1696522963",
+    "symbol": "METAN",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x87a2d9a9a6b2d61b2a57798f1b4b2ddd19458fb6": {
+    "assetId": "eip155:56/bep20:0x87a2d9a9a6b2d61b2a57798f1b4b2ddd19458fb6",
+    "chainId": "eip155:56",
+    "name": "KingdomStarter",
+    "precision": 18,
+    "color": "#C3BA8D",
+    "icon": "https://assets.coingecko.com/coins/images/10914/thumb/KDG_200x200.png?1696510866",
+    "symbol": "KDG",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x87e04a05499cb8d352c2e367870d4cf0ead460f0": {
+    "assetId": "eip155:56/bep20:0x87e04a05499cb8d352c2e367870d4cf0ead460f0",
+    "chainId": "eip155:56",
+    "name": "FLOSHIDO INU",
+    "precision": 9,
+    "color": "#100505",
+    "icon": "https://assets.coingecko.com/coins/images/29004/thumb/photo_2023-02-08_23-51-29.jpg?1696527976",
+    "symbol": "FLOSHIDO",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x87e0ce18ce0ce0a86b22537b48c15e03a519b112": {
+    "assetId": "eip155:56/bep20:0x87e0ce18ce0ce0a86b22537b48c15e03a519b112",
+    "chainId": "eip155:56",
+    "name": "Shinjiru Inu",
+    "precision": 9,
+    "color": "#C01C21",
+    "icon": "https://assets.coingecko.com/coins/images/28851/thumb/logo_%282%29_%282%29_%281%29_%281%29.png?1696527825",
+    "symbol": "SHINJI",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x8800e9902879ac7fb9823086d1749030c9a5eb91": {
+    "assetId": "eip155:56/bep20:0x8800e9902879ac7fb9823086d1749030c9a5eb91",
+    "chainId": "eip155:56",
+    "name": "Basketball Legends",
+    "precision": 18,
+    "color": "#837E71",
+    "icon": "https://assets.coingecko.com/coins/images/22131/thumb/200x200.png?1696521477",
+    "symbol": "BBL",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x882c173bc7ff3b7786ca16dfed3dfffb9ee7847b": {
+    "assetId": "eip155:56/bep20:0x882c173bc7ff3b7786ca16dfed3dfffb9ee7847b",
+    "chainId": "eip155:56",
+    "name": "Venus BTC",
+    "precision": 8,
+    "color": "#232A2D",
+    "icon": "https://assets.coingecko.com/coins/images/13904/thumb/xbtc.png?1696513646",
+    "symbol": "VBTC",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x883916d358d6262a47b0516a4243bb08310dbdf0": {
+    "assetId": "eip155:56/bep20:0x883916d358d6262a47b0516a4243bb08310dbdf0",
+    "chainId": "eip155:56",
+    "name": "ADO Protocol",
+    "precision": 18,
+    "color": "#92884E",
+    "icon": "https://assets.coingecko.com/coins/images/27346/thumb/ado-200x200.png?1696526393",
+    "symbol": "ADO",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x883da316c7971b19bfe25df9ace93b9529c50f22": {
+    "assetId": "eip155:56/bep20:0x883da316c7971b19bfe25df9ace93b9529c50f22",
+    "chainId": "eip155:56",
+    "name": "Clinq Gold Token",
+    "precision": 18,
+    "color": "#ECB424",
+    "icon": "https://assets.coingecko.com/coins/images/30264/thumb/Logo_-_200x200.png?1696529172",
+    "symbol": "CGT",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x8850d2c68c632e3b258e612abaa8fada7e6958e5": {
+    "assetId": "eip155:56/bep20:0x8850d2c68c632e3b258e612abaa8fada7e6958e5",
+    "chainId": "eip155:56",
+    "name": "Pig Finance",
+    "precision": 9,
+    "color": "#ECB8AC",
+    "icon": "https://assets.coingecko.com/coins/images/14338/thumb/pig.png?1696514026",
+    "symbol": "PIG",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x885b6124f92f94a2b82bdf00526a3290e734b67b": {
+    "assetId": "eip155:56/bep20:0x885b6124f92f94a2b82bdf00526a3290e734b67b",
+    "chainId": "eip155:56",
+    "name": "Kitbull",
+    "precision": 9,
+    "color": "#221227",
+    "icon": "https://assets.coingecko.com/coins/images/32309/thumb/kitbull_200.png?1697188555",
+    "symbol": "KITBULL",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x88691f292b76bf4d2caa5678a54515fae77c33af": {
+    "assetId": "eip155:56/bep20:0x88691f292b76bf4d2caa5678a54515fae77c33af",
+    "chainId": "eip155:56",
+    "name": "Xpense",
+    "precision": 18,
+    "color": "#152C44",
+    "icon": "https://assets.coingecko.com/coins/images/32359/thumb/xpenselogonew.png?1700451287",
+    "symbol": "XPE",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x888888888888f195e27a2e0f98d712952ab9348e": {
+    "assetId": "eip155:56/bep20:0x888888888888f195e27a2e0f98d712952ab9348e",
+    "chainId": "eip155:56",
+    "name": "Shorter Finance on BNB Smart Chain",
+    "precision": 18,
+    "color": "#EC844C",
+    "icon": "https://assets.coingecko.com/coins/images/27002/thumb/box-1.png?1696526055",
+    "symbol": "IPISTR",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x888ed27c3ab248868c29dabe3d1b3d7cc5c89c5b": {
+    "assetId": "eip155:56/bep20:0x888ed27c3ab248868c29dabe3d1b3d7cc5c89c5b",
+    "chainId": "eip155:56",
+    "name": "Arbitrum Charts",
+    "precision": 18,
+    "color": "#5F5948",
+    "icon": "https://assets.coingecko.com/coins/images/29550/thumb/arcs_200.png?1696528490",
+    "symbol": "ARCS",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x8899ec96ed8c96b5c86c23c3f069c3def75b6d97": {
+    "assetId": "eip155:56/bep20:0x8899ec96ed8c96b5c86c23c3f069c3def75b6d97",
+    "chainId": "eip155:56",
+    "name": "Openfabric AI",
+    "precision": 18,
+    "color": "#171935",
+    "icon": "https://assets.coingecko.com/coins/images/32171/thumb/IMG_20231005_191903_018.jpg?1696741847",
+    "symbol": "OFN",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x889efce29fa0bb9b26be9fda17a8003f4e8da4de": {
+    "assetId": "eip155:56/bep20:0x889efce29fa0bb9b26be9fda17a8003f4e8da4de",
+    "chainId": "eip155:56",
+    "name": "Waves Ducks on BNB Smart Chain",
+    "precision": 18,
+    "color": "#689AFC",
+    "icon": "https://assets.coingecko.com/coins/images/17298/thumb/200x200_pixel.png?1696516851",
+    "symbol": "EGG",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x88b985007d714d1578bccdec2303212c14946cdc": {
+    "assetId": "eip155:56/bep20:0x88b985007d714d1578bccdec2303212c14946cdc",
+    "chainId": "eip155:56",
+    "name": "FART COIN",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/32698/thumb/20231030_174406.png?1698984451",
+    "symbol": "FRTC",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x88c55b3255ae1e6628c953c5cdff27ad3cc33c81": {
+    "assetId": "eip155:56/bep20:0x88c55b3255ae1e6628c953c5cdff27ad3cc33c81",
+    "chainId": "eip155:56",
+    "name": "My DeFi Legends",
+    "precision": 9,
+    "color": "#090F11",
+    "icon": "https://assets.coingecko.com/coins/images/18006/thumb/my_defi_legends.png?1696517522",
+    "symbol": "DLEGENDS",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x88c676fc777c225b69869aeef5d10535de1e4f5d": {
+    "assetId": "eip155:56/bep20:0x88c676fc777c225b69869aeef5d10535de1e4f5d",
+    "chainId": "eip155:56",
+    "name": "OragonX",
+    "precision": 9,
+    "color": "#659B4B",
+    "icon": "https://assets.coingecko.com/coins/images/22010/thumb/oragonlnew200.png?1696521357",
+    "symbol": "ORGN",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x88d7e9b65dc24cf54f5edef929225fc3e1580c25": {
+    "assetId": "eip155:56/bep20:0x88d7e9b65dc24cf54f5edef929225fc3e1580c25",
+    "chainId": "eip155:56",
+    "name": "JumpToken on BNB Smart Chain",
+    "precision": 18,
+    "color": "#5494FC",
+    "icon": "https://assets.coingecko.com/coins/images/22603/thumb/200x200.png?1696521919",
+    "symbol": "JMPT",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x88da9901b3a02fe24e498e1ed683d2310383e295": {
+    "assetId": "eip155:56/bep20:0x88da9901b3a02fe24e498e1ed683d2310383e295",
+    "chainId": "eip155:56",
+    "name": "Baby Grok",
+    "precision": 9,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/32972/thumb/photo_2023-11-10_15-50-54.jpg?1700064075",
+    "symbol": "BABYGROK",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x88fa341d1c61f6723491dceb56ee09f1fda6d972": {
+    "assetId": "eip155:56/bep20:0x88fa341d1c61f6723491dceb56ee09f1fda6d972",
+    "chainId": "eip155:56",
+    "name": "FTT Token",
+    "precision": 18,
+    "color": "#242424",
+    "icon": "https://assets.coingecko.com/coins/images/32564/thumb/black_logo_transparent_background.png?1698546605",
+    "symbol": "FTT",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x890cc7d14948478c98a6cd7f511e1f7f7f99f397": {
+    "assetId": "eip155:56/bep20:0x890cc7d14948478c98a6cd7f511e1f7f7f99f397",
+    "chainId": "eip155:56",
+    "name": "StaySAFU",
+    "precision": 9,
+    "color": "#FCD0EE",
+    "icon": "https://assets.coingecko.com/coins/images/17781/thumb/staysafu.PNG?1696517305",
+    "symbol": "SAFU",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x891e4554227385c5c740f9b483e935e3cbc29f01": {
+    "assetId": "eip155:56/bep20:0x891e4554227385c5c740f9b483e935e3cbc29f01",
+    "chainId": "eip155:56",
+    "name": "Robust",
+    "precision": 18,
+    "color": "#E8E8F9",
+    "icon": "https://assets.coingecko.com/coins/images/17137/thumb/CG-200x.png?1696516696",
+    "symbol": "RBT",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x8929e9dbd2785e3ba16175e596cdd61520fee0d1": {
+    "assetId": "eip155:56/bep20:0x8929e9dbd2785e3ba16175e596cdd61520fee0d1",
+    "chainId": "eip155:56",
+    "name": "Altitude on BNB Smart Chain",
+    "precision": 18,
+    "color": "#436CFC",
+    "icon": "https://assets.coingecko.com/coins/images/30114/thumb/logo.png?1696529036",
+    "symbol": "ALTD",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x89671544190ee39e469c8393009875df6565457a": {
+    "assetId": "eip155:56/bep20:0x89671544190ee39e469c8393009875df6565457a",
+    "chainId": "eip155:56",
+    "name": "SpaceGrime",
+    "precision": 18,
+    "color": "#C9D0D6",
+    "icon": "https://assets.coingecko.com/coins/images/15902/thumb/spacegrime.PNG?1696515517",
+    "symbol": "GRIMEX",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x8974769bcfc2715fcabcfe4341ba4fcc804abcd8": {
+    "assetId": "eip155:56/bep20:0x8974769bcfc2715fcabcfe4341ba4fcc804abcd8",
+    "chainId": "eip155:56",
+    "name": "AISwap",
+    "precision": 18,
+    "color": "#EBEDF9",
+    "icon": "https://assets.coingecko.com/coins/images/31487/thumb/aiswap-logo-200x200.png?1696530298",
+    "symbol": "AISWAP",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x897f2be515373cf1f899d864b5be2bd5efd4e653": {
+    "assetId": "eip155:56/bep20:0x897f2be515373cf1f899d864b5be2bd5efd4e653",
+    "chainId": "eip155:56",
+    "name": "T23",
+    "precision": 18,
+    "color": "#151515",
+    "icon": "https://assets.coingecko.com/coins/images/28604/thumb/T23-Icon-200x200.png?1696527590",
+    "symbol": "T23",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x89af13a10b32f1b2f8d1588f93027f69b6f4e27e": {
+    "assetId": "eip155:56/bep20:0x89af13a10b32f1b2f8d1588f93027f69b6f4e27e",
+    "chainId": "eip155:56",
+    "name": "GameFi org",
+    "precision": 18,
+    "color": "#1E271B",
+    "icon": "https://assets.coingecko.com/coins/images/18292/thumb/gamefi.PNG?1696517784",
+    "symbol": "GAFI",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x89c1af791d7b4cf046dca8fa10a41dd2298a6a3f": {
+    "assetId": "eip155:56/bep20:0x89c1af791d7b4cf046dca8fa10a41dd2298a6a3f",
+    "chainId": "eip155:56",
+    "name": "Derify Protocol",
+    "precision": 18,
+    "color": "#1B0E09",
+    "icon": "https://assets.coingecko.com/coins/images/24757/thumb/9VyY40eb_400x400.jpg?1696523919",
+    "symbol": "DRF",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x89db9b433fec1307d3dc8908f2813e9f7a1d38f0": {
+    "assetId": "eip155:56/bep20:0x89db9b433fec1307d3dc8908f2813e9f7a1d38f0",
+    "chainId": "eip155:56",
+    "name": "Unidef",
+    "precision": 18,
+    "color": "#A08C22",
+    "icon": "https://assets.coingecko.com/coins/images/26691/thumb/Profile_Picture_-_Final.png?1696525764",
+    "symbol": "U",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x89e4818ed21f668d65f7851839d2dd8ce5d208b0": {
+    "assetId": "eip155:56/bep20:0x89e4818ed21f668d65f7851839d2dd8ce5d208b0",
+    "chainId": "eip155:56",
+    "name": "Monetas",
+    "precision": 18,
+    "color": "#FCA33C",
+    "icon": "https://assets.coingecko.com/coins/images/29667/thumb/MNTG_ICON_%281%29.png?1696528602",
+    "symbol": "MNTG",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x8a505d5cb3db9fcf404c0a72af3df8be4efb707c": {
+    "assetId": "eip155:56/bep20:0x8a505d5cb3db9fcf404c0a72af3df8be4efb707c",
+    "chainId": "eip155:56",
+    "name": "Eng Crypto",
+    "precision": 18,
+    "color": "#631E72",
+    "icon": "https://assets.coingecko.com/coins/images/26579/thumb/CoinGecko_ENG_Logo.png?1696525655",
+    "symbol": "ENG",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x8a5652eb940dd3832a8426fbe5afbb01b0f96a14": {
+    "assetId": "eip155:56/bep20:0x8a5652eb940dd3832a8426fbe5afbb01b0f96a14",
+    "chainId": "eip155:56",
+    "name": "Paraverse",
+    "precision": 10,
+    "color": "#BCC4C4",
+    "icon": "https://assets.coingecko.com/coins/images/32156/thumb/200x200.png?1696599835",
+    "symbol": "PARA",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x8a5d7fcd4c90421d21d30fcc4435948ac3618b2f": {
+    "assetId": "eip155:56/bep20:0x8a5d7fcd4c90421d21d30fcc4435948ac3618b2f",
+    "chainId": "eip155:56",
+    "name": "Cake Monster",
+    "precision": 18,
+    "color": "#D7E0E7",
+    "icon": "https://assets.coingecko.com/coins/images/16441/thumb/Monster-Icon-CG200x200transparent.png?1696516038",
+    "symbol": "MONSTA",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x8a74bc8c372bc7f0e9ca3f6ac0df51be15aec47a": {
+    "assetId": "eip155:56/bep20:0x8a74bc8c372bc7f0e9ca3f6ac0df51be15aec47a",
+    "chainId": "eip155:56",
+    "name": "PulsePad",
+    "precision": 18,
+    "color": "#E8DEF1",
+    "icon": "https://assets.coingecko.com/coins/images/20102/thumb/Mypk8PG_-_Imgur.jpg?1696519518",
+    "symbol": "PLSPAD",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x8a8a6930ea308042d6d2d4676444d2af9b35a418": {
+    "assetId": "eip155:56/bep20:0x8a8a6930ea308042d6d2d4676444d2af9b35a418",
+    "chainId": "eip155:56",
+    "name": "FinToken",
+    "precision": 18,
+    "color": "#A29ED4",
+    "icon": "https://assets.coingecko.com/coins/images/28509/thumb/ftc.png?1696527502",
+    "symbol": "FTC",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x8aa688ab789d1848d131c65d98ceaa8875d97ef1": {
+    "assetId": "eip155:56/bep20:0x8aa688ab789d1848d131c65d98ceaa8875d97ef1",
+    "chainId": "eip155:56",
+    "name": "MultiVAC on BNB Smart Chain",
+    "precision": 18,
+    "color": "#0CE4D4",
+    "icon": "https://assets.coingecko.com/coins/images/4937/thumb/MultiVAC.png?1696505477",
+    "symbol": "MTV",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x8ab7ef0eb25aad36dff0661f81fb81b144af5b87": {
+    "assetId": "eip155:56/bep20:0x8ab7ef0eb25aad36dff0661f81fb81b144af5b87",
+    "chainId": "eip155:56",
+    "name": "Kumamon Finance",
+    "precision": 18,
+    "color": "#CA4E3F",
+    "icon": "https://assets.coingecko.com/coins/images/29391/thumb/kumamon200px.png?1696528342",
+    "symbol": "KUMAMON",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x8abfa6a4f4b9865b0e7acfdce1839a2584636d06": {
+    "assetId": "eip155:56/bep20:0x8abfa6a4f4b9865b0e7acfdce1839a2584636d06",
+    "chainId": "eip155:56",
+    "name": "MAGIKAL ai",
+    "precision": 18,
+    "color": "#3C3C3C",
+    "icon": "https://assets.coingecko.com/coins/images/29584/thumb/magikal.png?1696528523",
+    "symbol": "MGKL",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x8ac76a51cc950d9822d68b83fe1ad97b32cd580d": {
+    "assetId": "eip155:56/bep20:0x8ac76a51cc950d9822d68b83fe1ad97b32cd580d",
+    "chainId": "eip155:56",
+    "name": "USDC on BNB Smart Chain",
+    "precision": 18,
+    "color": "#2E7ACD",
+    "icon": "https://assets.coingecko.com/coins/images/6319/thumb/usdc.png?1696506694",
+    "symbol": "USDC",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x8ae14ce43f71201bb79babd00cc8d00a7fadb3bd": {
+    "assetId": "eip155:56/bep20:0x8ae14ce43f71201bb79babd00cc8d00a7fadb3bd",
+    "chainId": "eip155:56",
+    "name": "Savant AI",
+    "precision": 9,
+    "color": "#363636",
+    "icon": "https://assets.coingecko.com/coins/images/29354/thumb/savant_200.png?1696528302",
+    "symbol": "SAVANTAI",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x8ae619d633cce175a2fbcfa1cea119ddc80f1342": {
+    "assetId": "eip155:56/bep20:0x8ae619d633cce175a2fbcfa1cea119ddc80f1342",
+    "chainId": "eip155:56",
+    "name": "PolyPad on BNB Smart Chain",
+    "precision": 18,
+    "color": "#7F68ED",
+    "icon": "https://assets.coingecko.com/coins/images/24905/thumb/BXApUK87_400x400.png?1696524062",
+    "symbol": "POLYPAD",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x8af48050534ee9bde12ec6e45ea3db4908c04777": {
+    "assetId": "eip155:56/bep20:0x8af48050534ee9bde12ec6e45ea3db4908c04777",
+    "chainId": "eip155:56",
+    "name": "HatchyPocket on BNB Smart Chain",
+    "precision": 18,
+    "color": "#C39223",
+    "icon": "https://assets.coingecko.com/coins/images/27560/thumb/HATCHY_200x200_Logo.png?1696526595",
+    "symbol": "HATCHY",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x8b025f2dad998c2983cc1bf23d5ebe65124f0fe1": {
+    "assetId": "eip155:56/bep20:0x8b025f2dad998c2983cc1bf23d5ebe65124f0fe1",
+    "chainId": "eip155:56",
+    "name": "BabyAMA",
+    "precision": 18,
+    "color": "#7AE1EC",
+    "icon": "https://assets.coingecko.com/coins/images/30790/thumb/Asset_5.png?1696529657",
+    "symbol": "BAMA",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x8b15271316c5fbc1c247040aa4fad2de4259d860": {
+    "assetId": "eip155:56/bep20:0x8b15271316c5fbc1c247040aa4fad2de4259d860",
+    "chainId": "eip155:56",
+    "name": "iinjaz",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/22695/thumb/17379.png?1696522006",
+    "symbol": "IJZ",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x8b1f4432f943c465a973fedc6d7aa50fc96f1f65": {
+    "assetId": "eip155:56/bep20:0x8b1f4432f943c465a973fedc6d7aa50fc96f1f65",
+    "chainId": "eip155:56",
+    "name": "Axelar on BNB Smart Chain",
+    "precision": 6,
+    "color": "#141414",
+    "icon": "https://assets.coingecko.com/coins/images/27277/thumb/V-65_xQ1_400x400.jpeg?1696526329",
+    "symbol": "AXL",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x8b303d5bbfbbf46f1a4d9741e491e06986894e18": {
+    "assetId": "eip155:56/bep20:0x8b303d5bbfbbf46f1a4d9741e491e06986894e18",
+    "chainId": "eip155:56",
+    "name": "Woonkly Power on BNB Smart Chain",
+    "precision": 18,
+    "color": "#7CBCFC",
+    "icon": "https://assets.coingecko.com/coins/images/14494/thumb/Icono_Infinito_Circular_Blanco_Fondo_Azul_2x.png?1696514179",
+    "symbol": "WOOP",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x8b4a499019a50c0094a8f700e2393ee811572964": {
+    "assetId": "eip155:56/bep20:0x8b4a499019a50c0094a8f700e2393ee811572964",
+    "chainId": "eip155:56",
+    "name": "Koop360 on BNB Smart Chain",
+    "precision": 18,
+    "color": "#D7AD2F",
+    "icon": "https://assets.coingecko.com/coins/images/32312/thumb/KOOP_Logo.png?1697189111",
+    "symbol": "KOOP",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x8b62e98b3ad434cc6491c8d0dd97da05e7710fcb": {
+    "assetId": "eip155:56/bep20:0x8b62e98b3ad434cc6491c8d0dd97da05e7710fcb",
+    "chainId": "eip155:56",
+    "name": "Oreto Network",
+    "precision": 9,
+    "color": "#C0C0C0",
+    "icon": "https://assets.coingecko.com/coins/images/30024/thumb/IMG_20230426_014937_239.png?1696528948",
+    "symbol": "ORT",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x8b6fa031c7d2e60fbfe4e663ec1b8f37df1ba483": {
+    "assetId": "eip155:56/bep20:0x8b6fa031c7d2e60fbfe4e663ec1b8f37df1ba483",
+    "chainId": "eip155:56",
+    "name": "CashCow",
+    "precision": 9,
+    "color": "#93779F",
+    "icon": "https://assets.coingecko.com/coins/images/19388/thumb/cash_cow.png?1696518828",
+    "symbol": "COW",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x8bd778b12b15416359a227f0533ce2d91844e1ed": {
+    "assetId": "eip155:56/bep20:0x8bd778b12b15416359a227f0533ce2d91844e1ed",
+    "chainId": "eip155:56",
+    "name": "SakeSwap on BNB Smart Chain",
+    "precision": 18,
+    "color": "#28ADCE",
+    "icon": "https://assets.coingecko.com/coins/images/12428/thumb/sake.png?1696512249",
+    "symbol": "SAKE",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x8beabaa4f025d00b4699d56a683758d692d17f20": {
+    "assetId": "eip155:56/bep20:0x8beabaa4f025d00b4699d56a683758d692d17f20",
+    "chainId": "eip155:56",
+    "name": "BabyXrp",
+    "precision": 9,
+    "color": "#3C3C3C",
+    "icon": "https://assets.coingecko.com/coins/images/16862/thumb/Final.png?1696516431",
+    "symbol": "BBYXRP",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x8c11c352731fcec7ea9d16357b69d91c13743dd1": {
+    "assetId": "eip155:56/bep20:0x8c11c352731fcec7ea9d16357b69d91c13743dd1",
+    "chainId": "eip155:56",
+    "name": "RevolutionGames",
+    "precision": 18,
+    "color": "#342B1B",
+    "icon": "https://assets.coingecko.com/coins/images/24420/thumb/XQokIAeH_400x400.jpg?1696523602",
+    "symbol": "RVLNG",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x8c18ffd66d943c9b0ad3dc40e2d64638f1e6e1ab": {
+    "assetId": "eip155:56/bep20:0x8c18ffd66d943c9b0ad3dc40e2d64638f1e6e1ab",
+    "chainId": "eip155:56",
+    "name": "Herity Network",
+    "precision": 9,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/22724/thumb/Herity-logo.png?1696522028",
+    "symbol": "HER",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x8c21cef3c0f25e7fa267e33602702e3f91775360": {
+    "assetId": "eip155:56/bep20:0x8c21cef3c0f25e7fa267e33602702e3f91775360",
+    "chainId": "eip155:56",
+    "name": "NerveFlux",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/22652/thumb/email_logo.png?1696521965",
+    "symbol": "NERVE",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x8c22881c7a92db25d1666f276299dde1795bad00": {
+    "assetId": "eip155:56/bep20:0x8c22881c7a92db25d1666f276299dde1795bad00",
+    "chainId": "eip155:56",
+    "name": "PokePlay Token",
+    "precision": 18,
+    "color": "#272922",
+    "icon": "https://assets.coingecko.com/coins/images/28398/thumb/PokePlay-LOGO_200x200.png?1696527397",
+    "symbol": "PPC",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x8c851d1a123ff703bd1f9dabe631b69902df5f97": {
+    "assetId": "eip155:56/bep20:0x8c851d1a123ff703bd1f9dabe631b69902df5f97",
+    "chainId": "eip155:56",
+    "name": "BinaryX  OLD ",
+    "precision": 18,
+    "color": "#F04B48",
+    "icon": "https://assets.coingecko.com/coins/images/18095/thumb/BinaryX-RGB-01_%282%29.png?1696517600",
+    "symbol": "BNX",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x8cd0d76c0ad377378ab6ce878a7be686223497ee": {
+    "assetId": "eip155:56/bep20:0x8cd0d76c0ad377378ab6ce878a7be686223497ee",
+    "chainId": "eip155:56",
+    "name": "Hydraverse",
+    "precision": 5,
+    "color": "#E19E1C",
+    "icon": "https://assets.coingecko.com/coins/images/24114/thumb/HDV_token.png?1696523306",
+    "symbol": "HDV",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x8cd29d79f9376f353c493a7f2ff9d27df8d372de": {
+    "assetId": "eip155:56/bep20:0x8cd29d79f9376f353c493a7f2ff9d27df8d372de",
+    "chainId": "eip155:56",
+    "name": "WFDP on BNB Smart Chain",
+    "precision": 18,
+    "color": "#314480",
+    "icon": "https://assets.coingecko.com/coins/images/23758/thumb/wfdp.png?1696522959",
+    "symbol": "WFDP",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x8ce2f68f77540c7e12ad4b90428b8b6b7f26691a": {
+    "assetId": "eip155:56/bep20:0x8ce2f68f77540c7e12ad4b90428b8b6b7f26691a",
+    "chainId": "eip155:56",
+    "name": "WORLD ID",
+    "precision": 18,
+    "color": "#251F1D",
+    "icon": "https://assets.coingecko.com/coins/images/31990/thumb/WOID.jpg?1696530792",
+    "symbol": "WOID",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x8cf8238abf7b933bf8bb5ea2c7e4be101c11de2a": {
+    "assetId": "eip155:56/bep20:0x8cf8238abf7b933bf8bb5ea2c7e4be101c11de2a",
+    "chainId": "eip155:56",
+    "name": "XP Network",
+    "precision": 18,
+    "color": "#F49CAC",
+    "icon": "https://assets.coingecko.com/coins/images/18363/thumb/200.png?1696517856",
+    "symbol": "XPNET",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x8d047f4f57a190c96c8b9704b39a1379e999d82b": {
+    "assetId": "eip155:56/bep20:0x8d047f4f57a190c96c8b9704b39a1379e999d82b",
+    "chainId": "eip155:56",
+    "name": "Etherconnect",
+    "precision": 8,
+    "color": "#805AFC",
+    "icon": "https://assets.coingecko.com/coins/images/20287/thumb/14404.png?1696519692",
+    "symbol": "ECC",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x8d11ec38a3eb5e956b052f67da8bdc9bef8abf3e": {
+    "assetId": "eip155:56/bep20:0x8d11ec38a3eb5e956b052f67da8bdc9bef8abf3e",
+    "chainId": "eip155:56",
+    "name": "KIRA Network on BNB Smart Chain",
+    "precision": 6,
+    "color": "#3464EA",
+    "icon": "https://assets.coingecko.com/coins/images/13232/thumb/avatar.png?1696513010",
+    "symbol": "KEX",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x8d1427a32f0a4c4bf052252e68e7ff1b2ba80c01": {
+    "assetId": "eip155:56/bep20:0x8d1427a32f0a4c4bf052252e68e7ff1b2ba80c01",
+    "chainId": "eip155:56",
+    "name": "RIMAUNANGIS",
+    "precision": 18,
+    "color": "#AE7920",
+    "icon": "https://assets.coingecko.com/coins/images/27598/thumb/Logo_rimaunangis_200x200_%283%29.png?1696526629",
+    "symbol": "RXT",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x8d875abca035858c901fb3b61a98179aa2ca7ed9": {
+    "assetId": "eip155:56/bep20:0x8d875abca035858c901fb3b61a98179aa2ca7ed9",
+    "chainId": "eip155:56",
+    "name": "BabyDoge CEO",
+    "precision": 9,
+    "color": "#2A231B",
+    "icon": "https://assets.coingecko.com/coins/images/29345/thumb/IMG_20230308_000315_115.jpg?1696528294",
+    "symbol": "BCEO",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x8d9fb713587174ee97e91866050c383b5cee6209": {
+    "assetId": "eip155:56/bep20:0x8d9fb713587174ee97e91866050c383b5cee6209",
+    "chainId": "eip155:56",
+    "name": "ScarQuest",
+    "precision": 18,
+    "color": "#39C0FC",
+    "icon": "https://assets.coingecko.com/coins/images/20421/thumb/velhalla_DP.png?1696519829",
+    "symbol": "SCAR",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x8da443f84fea710266c8eb6bc34b71702d033ef2": {
+    "assetId": "eip155:56/bep20:0x8da443f84fea710266c8eb6bc34b71702d033ef2",
+    "chainId": "eip155:56",
+    "name": "Cartesi on BNB Smart Chain",
+    "precision": 18,
+    "color": "#AEAEAE",
+    "icon": "https://assets.coingecko.com/coins/images/11038/thumb/Cartesi_Logo.png?1696510982",
+    "symbol": "CTSI",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x8da6113655309f84127e0837fcf5c389892578b3": {
+    "assetId": "eip155:56/bep20:0x8da6113655309f84127e0837fcf5c389892578b3",
+    "chainId": "eip155:56",
+    "name": "OB",
+    "precision": 18,
+    "color": "#4494E0",
+    "icon": "https://assets.coingecko.com/coins/images/19241/thumb/Group_%281%29.png?1696518687",
+    "symbol": "OBT",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x8db1d28ee0d822367af8d220c0dc7cb6fe9dc442": {
+    "assetId": "eip155:56/bep20:0x8db1d28ee0d822367af8d220c0dc7cb6fe9dc442",
+    "chainId": "eip155:56",
+    "name": "ETHPad on BNB Smart Chain",
+    "precision": 18,
+    "color": "#E7EAEC",
+    "icon": "https://assets.coingecko.com/coins/images/17520/thumb/tHAbIBQK_400x400.jpg?1696517058",
+    "symbol": "ETHPAD",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x8de5aa37a7c40a53062ead382b8eead3b08a7a46": {
+    "assetId": "eip155:56/bep20:0x8de5aa37a7c40a53062ead382b8eead3b08a7a46",
+    "chainId": "eip155:56",
+    "name": "Victory Gem",
+    "precision": 18,
+    "color": "#C31ACA",
+    "icon": "https://assets.coingecko.com/coins/images/25270/thumb/vtg.png?1696524409",
+    "symbol": "VTG",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x8e17ed70334c87ece574c9d537bc153d8609e2a3": {
+    "assetId": "eip155:56/bep20:0x8e17ed70334c87ece574c9d537bc153d8609e2a3",
+    "chainId": "eip155:56",
+    "name": "WazirX on BNB Smart Chain",
+    "precision": 8,
+    "color": "#3464F4",
+    "icon": "https://assets.coingecko.com/coins/images/10547/thumb/WazirX.png?1696510532",
+    "symbol": "WRX",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x8e2d8f40818fbaba663db6a24fb9b527fc7100be": {
+    "assetId": "eip155:56/bep20:0x8e2d8f40818fbaba663db6a24fb9b527fc7100be",
+    "chainId": "eip155:56",
+    "name": "ORE",
+    "precision": 18,
+    "color": "#272523",
+    "icon": "https://assets.coingecko.com/coins/images/19047/thumb/12752.png?1696518498",
+    "symbol": "ORE",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x8e84d99561b76cbc46b21d40e8dd062976f28cda": {
+    "assetId": "eip155:56/bep20:0x8e84d99561b76cbc46b21d40e8dd062976f28cda",
+    "chainId": "eip155:56",
+    "name": "Royal Shiba",
+    "precision": 9,
+    "color": "#474C46",
+    "icon": "https://assets.coingecko.com/coins/images/32562/thumb/shiba200px.png?1698546335",
+    "symbol": "ROYALSHIBA",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x8e984e03ab35795c60242c902ece2450242c90e9": {
+    "assetId": "eip155:56/bep20:0x8e984e03ab35795c60242c902ece2450242c90e9",
+    "chainId": "eip155:56",
+    "name": "Kampay on BNB Smart Chain",
+    "precision": 18,
+    "color": "#ECD504",
+    "icon": "https://assets.coingecko.com/coins/images/8289/thumb/6130e86152bdb07e2848de00_200_4x.png?1696508490",
+    "symbol": "KAMPAY",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x8ea2526c2373ba3fe1d0987f5db8ac770a42dd51": {
+    "assetId": "eip155:56/bep20:0x8ea2526c2373ba3fe1d0987f5db8ac770a42dd51",
+    "chainId": "eip155:56",
+    "name": "Everest on BNB Smart Chain",
+    "precision": 18,
+    "color": "#2A4FA4",
+    "icon": "https://assets.coingecko.com/coins/images/5209/thumb/Everest.jpg?1696505719",
+    "symbol": "ID",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x8ea2f890cb86dfb0e376137451c6fd982afefc15": {
+    "assetId": "eip155:56/bep20:0x8ea2f890cb86dfb0e376137451c6fd982afefc15",
+    "chainId": "eip155:56",
+    "name": "AutoCrypto",
+    "precision": 18,
+    "color": "#050505",
+    "icon": "https://assets.coingecko.com/coins/images/19157/thumb/mrineaq.png?1696518608",
+    "symbol": "AU",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x8ea43e15b1a616a19903f6a87498f7dca1efae0f": {
+    "assetId": "eip155:56/bep20:0x8ea43e15b1a616a19903f6a87498f7dca1efae0f",
+    "chainId": "eip155:56",
+    "name": "xAI",
+    "precision": 9,
+    "color": "#CACACA",
+    "icon": "https://assets.coingecko.com/coins/images/32554/thumb/logo_256px.png?1698501804",
+    "symbol": "XAI",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x8ea5219a16c2dbf1d6335a6aa0c6bd45c50347c5": {
+    "assetId": "eip155:56/bep20:0x8ea5219a16c2dbf1d6335a6aa0c6bd45c50347c5",
+    "chainId": "eip155:56",
+    "name": "OpenOcean",
+    "precision": 18,
+    "color": "#040404",
+    "icon": "https://assets.coingecko.com/coins/images/17014/thumb/ooe_log.png?1696516578",
+    "symbol": "OOE",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x8ea93d00cc6252e2bd02a34782487eed65738152": {
+    "assetId": "eip155:56/bep20:0x8ea93d00cc6252e2bd02a34782487eed65738152",
+    "chainId": "eip155:56",
+    "name": "Spherium on BNB Smart Chain",
+    "precision": 18,
+    "color": "#3F59F1",
+    "icon": "https://assets.coingecko.com/coins/images/17787/thumb/Group_15.png?1696517311",
+    "symbol": "SPHRI",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x8ebc361536094fd5b4ffb8521e31900614c9f55d": {
+    "assetId": "eip155:56/bep20:0x8ebc361536094fd5b4ffb8521e31900614c9f55d",
+    "chainId": "eip155:56",
+    "name": "Konstellation",
+    "precision": 18,
+    "color": "#052E64",
+    "icon": "https://assets.coingecko.com/coins/images/2943/thumb/darctoken.png?1696503688",
+    "symbol": "DARC",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x8ec1877698acf262fe8ad8a295ad94d6ea258988": {
+    "assetId": "eip155:56/bep20:0x8ec1877698acf262fe8ad8a295ad94d6ea258988",
+    "chainId": "eip155:56",
+    "name": "Davos Protocol on BNB Smart Chain",
+    "precision": 18,
+    "color": "#FAD8E0",
+    "icon": "https://assets.coingecko.com/coins/images/28775/thumb/dusd_logo_200x200.png?1696527754",
+    "symbol": "DUSD",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x8eca5c1b51a801a822912167153041ed0b92a397": {
+    "assetId": "eip155:56/bep20:0x8eca5c1b51a801a822912167153041ed0b92a397",
+    "chainId": "eip155:56",
+    "name": "Fame Reward Plus",
+    "precision": 18,
+    "color": "#9C2869",
+    "icon": "https://assets.coingecko.com/coins/images/27675/thumb/fameRewardPlus-icon.png?1696526703",
+    "symbol": "FRP",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x8f01d597d2022656494e30fb76eccf1eea2e092e": {
+    "assetId": "eip155:56/bep20:0x8f01d597d2022656494e30fb76eccf1eea2e092e",
+    "chainId": "eip155:56",
+    "name": "Tomb on BNB Smart Chain",
+    "precision": 18,
+    "color": "#B0B098",
+    "icon": "https://assets.coingecko.com/coins/images/16133/thumb/tomb_icon_noBG.png?1696515739",
+    "symbol": "TOMB",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x8f0528ce5ef7b51152a59745befdd91d97091d2f": {
+    "assetId": "eip155:56/bep20:0x8f0528ce5ef7b51152a59745befdd91d97091d2f",
+    "chainId": "eip155:56",
+    "name": "Alpaca Finance",
+    "precision": 18,
+    "color": "#37B076",
+    "icon": "https://assets.coingecko.com/coins/images/14165/thumb/Logo200.png?1696513884",
+    "symbol": "ALPACA",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x8f081eb884fd47b79536d28e2dd9d4886773f783": {
+    "assetId": "eip155:56/bep20:0x8f081eb884fd47b79536d28e2dd9d4886773f783",
+    "chainId": "eip155:56",
+    "name": "bePAY Finance on BNB Smart Chain",
+    "precision": 6,
+    "color": "#901AC4",
+    "icon": "https://assets.coingecko.com/coins/images/21275/thumb/logo-becoin.png?1696520646",
+    "symbol": "BECOIN",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x8f0f56472c3e5730b1ea2f444e7829288da261e6": {
+    "assetId": "eip155:56/bep20:0x8f0f56472c3e5730b1ea2f444e7829288da261e6",
+    "chainId": "eip155:56",
+    "name": "Rogue MAV on BNB Smart Chain",
+    "precision": 18,
+    "color": "#6404FC",
+    "icon": "https://assets.coingecko.com/coins/images/32384/thumb/rMAV.png?1698045143",
+    "symbol": "RMAV",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x8f0fb159380176d324542b3a7933f0c2fd0c2bbf": {
+    "assetId": "eip155:56/bep20:0x8f0fb159380176d324542b3a7933f0c2fd0c2bbf",
+    "chainId": "eip155:56",
+    "name": "ThreeFold on BNB Smart Chain",
+    "precision": 7,
+    "color": "#353535",
+    "icon": "https://assets.coingecko.com/coins/images/6704/thumb/black_logo_on_white_background_%282%29.jpg?1696507044",
+    "symbol": "TFT",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x8f1408171eae06aec4549fd0a5808a42cee6dd84": {
+    "assetId": "eip155:56/bep20:0x8f1408171eae06aec4549fd0a5808a42cee6dd84",
+    "chainId": "eip155:56",
+    "name": "Galactic Arena  The NFTverse",
+    "precision": 18,
+    "color": "#9E4311",
+    "icon": "https://assets.coingecko.com/coins/images/19925/thumb/gan.png?1696519344",
+    "symbol": "GAN",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x8f1fe4e6707cd4236b704759d2ee15166c68183a": {
+    "assetId": "eip155:56/bep20:0x8f1fe4e6707cd4236b704759d2ee15166c68183a",
+    "chainId": "eip155:56",
+    "name": "Tom Coin",
+    "precision": 18,
+    "color": "#4B44F6",
+    "icon": "https://assets.coingecko.com/coins/images/25849/thumb/65e20074cf9e4bba897431f80da64ffd.jpeg?1696524933",
+    "symbol": "TMC",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x8f2588f8627107b233d65c7b65c93c17ac11c871": {
+    "assetId": "eip155:56/bep20:0x8f2588f8627107b233d65c7b65c93c17ac11c871",
+    "chainId": "eip155:56",
+    "name": "Astro Pepe",
+    "precision": 18,
+    "color": "#0F140A",
+    "icon": "https://assets.coingecko.com/coins/images/30350/thumb/our_logo.png?1696529250",
+    "symbol": "ASTROPEPE",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x8f2714b178676ba0f9cfb226f6519b92dd8def9d": {
+    "assetId": "eip155:56/bep20:0x8f2714b178676ba0f9cfb226f6519b92dd8def9d",
+    "chainId": "eip155:56",
+    "name": "Big Panda",
+    "precision": 18,
+    "color": "#060606",
+    "icon": "https://assets.coingecko.com/coins/images/30889/thumb/Panda_logo_.png?1696529736",
+    "symbol": "PANDA",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x8f36cc333f55b09bb71091409a3d7ade399e3b1c": {
+    "assetId": "eip155:56/bep20:0x8f36cc333f55b09bb71091409a3d7ade399e3b1c",
+    "chainId": "eip155:56",
+    "name": "Cherry Network on BNB Smart Chain",
+    "precision": 18,
+    "color": "#EFE2F1",
+    "icon": "https://assets.coingecko.com/coins/images/21855/thumb/cherry.PNG?1696521209",
+    "symbol": "CHER",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x8f7ebc23212f6adcc7a5f1c86197ec337c2f4997": {
+    "assetId": "eip155:56/bep20:0x8f7ebc23212f6adcc7a5f1c86197ec337c2f4997",
+    "chainId": "eip155:56",
+    "name": "BeNFT Solutions",
+    "precision": 9,
+    "color": "#CACBD0",
+    "icon": "https://assets.coingecko.com/coins/images/30669/thumb/BeAI-Coin.png?1696529539",
+    "symbol": "BEAI",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x8f87a7d376821c7b2658a005aaf190ec778bf37a": {
+    "assetId": "eip155:56/bep20:0x8f87a7d376821c7b2658a005aaf190ec778bf37a",
+    "chainId": "eip155:56",
+    "name": "Granary on BNB Smart Chain",
+    "precision": 18,
+    "color": "#EDD894",
+    "icon": "https://assets.coingecko.com/coins/images/29740/thumb/Grain.png?1696528670",
+    "symbol": "GRAIN",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x8fc4532be3003fb5a3a2f9afc7e95b3bfbd5faab": {
+    "assetId": "eip155:56/bep20:0x8fc4532be3003fb5a3a2f9afc7e95b3bfbd5faab",
+    "chainId": "eip155:56",
+    "name": "Arcona on BNB Smart Chain",
+    "precision": 18,
+    "color": "#1A7DFC",
+    "icon": "https://assets.coingecko.com/coins/images/4312/thumb/icon_ARCONA_%281%29.png?1696504918",
+    "symbol": "ARCONA",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x8ff07f92f4f432f6874a023e9bc49093a35dd726": {
+    "assetId": "eip155:56/bep20:0x8ff07f92f4f432f6874a023e9bc49093a35dd726",
+    "chainId": "eip155:56",
+    "name": "NEXBOX",
+    "precision": 9,
+    "color": "#F9E4D1",
+    "icon": "https://assets.coingecko.com/coins/images/31739/thumb/200pngnexbox.png?1696530558",
+    "symbol": "NEXBOX",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x8ff795a6f4d97e7887c79bea79aba5cc76444adf": {
+    "assetId": "eip155:56/bep20:0x8ff795a6f4d97e7887c79bea79aba5cc76444adf",
+    "chainId": "eip155:56",
+    "name": "Binance Peg Bitcoin Cash",
+    "precision": 18,
+    "color": "#0CC48C",
+    "icon": "https://assets.coingecko.com/coins/images/15774/thumb/bitcoin-cash-circle.png?1696515398",
+    "symbol": "BCH",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x8ffdcb0cabccf2767366a2eba6e2fdcc37baa1b2": {
+    "assetId": "eip155:56/bep20:0x8ffdcb0cabccf2767366a2eba6e2fdcc37baa1b2",
+    "chainId": "eip155:56",
+    "name": "Kepple",
+    "precision": 18,
+    "color": "#3691C6",
+    "icon": "https://assets.coingecko.com/coins/images/30177/thumb/logo_16.png?1696529096",
+    "symbol": "KPL",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x8fff93e810a2edaafc326edee51071da9d398e83": {
+    "assetId": "eip155:56/bep20:0x8fff93e810a2edaafc326edee51071da9d398e83",
+    "chainId": "eip155:56",
+    "name": "Bitgert on BNB Smart Chain",
+    "precision": 9,
+    "color": "#660EE1",
+    "icon": "https://assets.coingecko.com/coins/images/17388/thumb/200x200.png?1696516937",
+    "symbol": "BRISE",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x9000cac49c3841926baac5b2e13c87d43e51b6a4": {
+    "assetId": "eip155:56/bep20:0x9000cac49c3841926baac5b2e13c87d43e51b6a4",
+    "chainId": "eip155:56",
+    "name": "Portuma",
+    "precision": 18,
+    "color": "#E0E0E0",
+    "icon": "https://assets.coingecko.com/coins/images/21567/thumb/coin-icon.png?1696520928",
+    "symbol": "POR",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x9001fd53504f7bf253296cffadf5b6030cd61abb": {
+    "assetId": "eip155:56/bep20:0x9001fd53504f7bf253296cffadf5b6030cd61abb",
+    "chainId": "eip155:56",
+    "name": "CyberFM on BNB Smart Chain",
+    "precision": 18,
+    "color": "#D4D8DC",
+    "icon": "https://assets.coingecko.com/coins/images/5476/thumb/cyberfm.png?1696505952",
+    "symbol": "CYFM",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x9029d86aa59b4680b40f4f42505d5f8f880d2ac5": {
+    "assetId": "eip155:56/bep20:0x9029d86aa59b4680b40f4f42505d5f8f880d2ac5",
+    "chainId": "eip155:56",
+    "name": "Co2DAO",
+    "precision": 18,
+    "color": "#F48114",
+    "icon": "https://assets.coingecko.com/coins/images/31560/thumb/CO2_logo.png?1696530373",
+    "symbol": "CO2",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x9036b7ff80d87e4d4894d7765ef065fb98282a4c": {
+    "assetId": "eip155:56/bep20:0x9036b7ff80d87e4d4894d7765ef065fb98282a4c",
+    "chainId": "eip155:56",
+    "name": "OxyMetaToken",
+    "precision": 8,
+    "color": "#E3A966",
+    "icon": "https://assets.coingecko.com/coins/images/27562/thumb/200X200_OMT.png?1696526597",
+    "symbol": "OMT",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x903beffc8ecc50841373d0ecc2ca53fa4b04c31f": {
+    "assetId": "eip155:56/bep20:0x903beffc8ecc50841373d0ecc2ca53fa4b04c31f",
+    "chainId": "eip155:56",
+    "name": "Ivy Live",
+    "precision": 18,
+    "color": "#46B2C9",
+    "icon": "https://assets.coingecko.com/coins/images/31289/thumb/ivy_200x200-8.png?1696530110",
+    "symbol": "IVY",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x90500b067a9b24dcb4834a839c44eec90b2cd9ac": {
+    "assetId": "eip155:56/bep20:0x90500b067a9b24dcb4834a839c44eec90b2cd9ac",
+    "chainId": "eip155:56",
+    "name": "FGDSwap",
+    "precision": 18,
+    "color": "#14E494",
+    "icon": "https://assets.coingecko.com/coins/images/29206/thumb/FGDS.png?1696528165",
+    "symbol": "FGDS",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x906089721cc5cb41c87d35bb05bea70bdf47a269": {
+    "assetId": "eip155:56/bep20:0x906089721cc5cb41c87d35bb05bea70bdf47a269",
+    "chainId": "eip155:56",
+    "name": "BabyDogeARMY",
+    "precision": 9,
+    "color": "#405225",
+    "icon": "https://assets.coingecko.com/coins/images/29974/thumb/200x200-transparent.png?1696528899",
+    "symbol": "ARMY",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x9073b858a7cdf121e6bf8d1367e200e5d0cc0188": {
+    "assetId": "eip155:56/bep20:0x9073b858a7cdf121e6bf8d1367e200e5d0cc0188",
+    "chainId": "eip155:56",
+    "name": "Moonions",
+    "precision": 18,
+    "color": "#EED66D",
+    "icon": "https://assets.coingecko.com/coins/images/27454/thumb/200.png?1696526494",
+    "symbol": "MOONION",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x908ef6b57a6bb5b043ea6ef84142895b519c713c": {
+    "assetId": "eip155:56/bep20:0x908ef6b57a6bb5b043ea6ef84142895b519c713c",
+    "chainId": "eip155:56",
+    "name": "Matchcup",
+    "precision": 18,
+    "color": "#F6ACB7",
+    "icon": "https://assets.coingecko.com/coins/images/28488/thumb/logo_%286%29.png?1696527480",
+    "symbol": "MATCH",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x9096b4309224d751fcb43d7eb178dcffc122ad15": {
+    "assetId": "eip155:56/bep20:0x9096b4309224d751fcb43d7eb178dcffc122ad15",
+    "chainId": "eip155:56",
+    "name": "Legion Network",
+    "precision": 18,
+    "color": "#DCE4ED",
+    "icon": "https://assets.coingecko.com/coins/images/21816/thumb/Group_34038.png?1699478751",
+    "symbol": "LGX",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x90a1e4bbade88366dc44436535f1571d95e666c7": {
+    "assetId": "eip155:56/bep20:0x90a1e4bbade88366dc44436535f1571d95e666c7",
+    "chainId": "eip155:56",
+    "name": "Freeway on BNB Smart Chain",
+    "precision": 18,
+    "color": "#242494",
+    "icon": "https://assets.coingecko.com/coins/images/13012/thumb/S5h7MHR.png?1696512800",
+    "symbol": "FWT",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x90c97f71e18723b0cf0dfa30ee176ab653e89f40": {
+    "assetId": "eip155:56/bep20:0x90c97f71e18723b0cf0dfa30ee176ab653e89f40",
+    "chainId": "eip155:56",
+    "name": "Frax on BNB Smart Chain",
+    "precision": 18,
+    "color": "#0C0C0E",
+    "icon": "https://assets.coingecko.com/coins/images/13422/thumb/FRAX_icon.png?1696513182",
+    "symbol": "FRAX",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x90e1f81b298f6c180ce6f71a6bdb4acf41be8e01": {
+    "assetId": "eip155:56/bep20:0x90e1f81b298f6c180ce6f71a6bdb4acf41be8e01",
+    "chainId": "eip155:56",
+    "name": "Byepix",
+    "precision": 18,
+    "color": "#A41549",
+    "icon": "https://assets.coingecko.com/coins/images/28163/thumb/byepix.png?1696527167",
+    "symbol": "EPIX",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x90e3414e00e231b962666bd94adb811d5bcd0c2a": {
+    "assetId": "eip155:56/bep20:0x90e3414e00e231b962666bd94adb811d5bcd0c2a",
+    "chainId": "eip155:56",
+    "name": "Parex",
+    "precision": 8,
+    "color": "#EEE0F1",
+    "icon": "https://assets.coingecko.com/coins/images/23650/thumb/cmc.png?1696522853",
+    "symbol": "PRX",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x90ed8f1dc86388f14b64ba8fb4bbd23099f18240": {
+    "assetId": "eip155:56/bep20:0x90ed8f1dc86388f14b64ba8fb4bbd23099f18240",
+    "chainId": "eip155:56",
+    "name": "SingularityDAO on BNB Smart Chain",
+    "precision": 18,
+    "color": "#74519D",
+    "icon": "https://assets.coingecko.com/coins/images/15385/thumb/200x200_logo.png?1696515032",
+    "symbol": "SDAO",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x9133049fb1fddc110c92bf5b7df635abb70c89dc": {
+    "assetId": "eip155:56/bep20:0x9133049fb1fddc110c92bf5b7df635abb70c89dc",
+    "chainId": "eip155:56",
+    "name": "Dot Finance",
+    "precision": 18,
+    "color": "#C5C5CC",
+    "icon": "https://assets.coingecko.com/coins/images/16446/thumb/dot_finance.PNG?1696516042",
+    "symbol": "PINK",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x91656750bc364ff38adb51157acbb76f9f5ec2fe": {
+    "assetId": "eip155:56/bep20:0x91656750bc364ff38adb51157acbb76f9f5ec2fe",
+    "chainId": "eip155:56",
+    "name": "Safemoon Zilla",
+    "precision": 9,
+    "color": "#458289",
+    "icon": "https://assets.coingecko.com/coins/images/22483/thumb/BXZ1CNbO_400x400.jpg?1696521806",
+    "symbol": "SFZ",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x9186359f82c3c0cc005a0b3563dc4ccd2627d82a": {
+    "assetId": "eip155:56/bep20:0x9186359f82c3c0cc005a0b3563dc4ccd2627d82a",
+    "chainId": "eip155:56",
+    "name": "AntNetworX  OLD ",
+    "precision": 18,
+    "color": "#CCB3F8",
+    "icon": "https://assets.coingecko.com/coins/images/27628/thumb/photo_2023-07-17_19-38-50.jpg?1696526658",
+    "symbol": "ANTX",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x91d5546564a31ce5f0f4f3302c55f6921e1916af": {
+    "assetId": "eip155:56/bep20:0x91d5546564a31ce5f0f4f3302c55f6921e1916af",
+    "chainId": "eip155:56",
+    "name": "ShadowFi",
+    "precision": 9,
+    "color": "#09132C",
+    "icon": "https://assets.coingecko.com/coins/images/30208/thumb/shaowfi.jpeg?1696529118",
+    "symbol": "SDF",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x91d6d6af7635b7b23a8ced9508117965180e2362": {
+    "assetId": "eip155:56/bep20:0x91d6d6af7635b7b23a8ced9508117965180e2362",
+    "chainId": "eip155:56",
+    "name": "unshETHing Token on BNB Smart Chain",
+    "precision": 18,
+    "color": "#04C6FA",
+    "icon": "https://assets.coingecko.com/coins/images/29337/thumb/unsheth_large_logo.png?1696528287",
+    "symbol": "USH",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x9202de1818d6e366fe09428244ef9d3152fb24d7": {
+    "assetId": "eip155:56/bep20:0x9202de1818d6e366fe09428244ef9d3152fb24d7",
+    "chainId": "eip155:56",
+    "name": "Pig Inu",
+    "precision": 18,
+    "color": "#31292A",
+    "icon": "https://assets.coingecko.com/coins/images/29742/thumb/PGINU.png?1696528671",
+    "symbol": "PIGINU",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x921d3a6ed8223afb6358410f717e2fb13cbae700": {
+    "assetId": "eip155:56/bep20:0x921d3a6ed8223afb6358410f717e2fb13cbae700",
+    "chainId": "eip155:56",
+    "name": "Qrkita",
+    "precision": 9,
+    "color": "#A2987A",
+    "icon": "https://assets.coingecko.com/coins/images/19320/thumb/logo_-_2021-10-25T080744.116.png?1696518761",
+    "symbol": "QRT",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x922722e9ef614ec9a3e94b78496e92abfbb5a624": {
+    "assetId": "eip155:56/bep20:0x922722e9ef614ec9a3e94b78496e92abfbb5a624",
+    "chainId": "eip155:56",
+    "name": "ILCAPO",
+    "precision": 18,
+    "color": "#291E09",
+    "icon": "https://assets.coingecko.com/coins/images/30282/thumb/w3oWSkCz_400x400.jpg?1696529187",
+    "symbol": "CAPO",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x92400f8b8c4658153c10c98500b63ac9f87571c2": {
+    "assetId": "eip155:56/bep20:0x92400f8b8c4658153c10c98500b63ac9f87571c2",
+    "chainId": "eip155:56",
+    "name": "Pricetools",
+    "precision": 18,
+    "color": "#2477C0",
+    "icon": "https://assets.coingecko.com/coins/images/29334/thumb/Logo_square_200.png?1696528284",
+    "symbol": "PTOOLS",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x926ecc7687fcfb296e97a2b4501f41a6f5f8c214": {
+    "assetId": "eip155:56/bep20:0x926ecc7687fcfb296e97a2b4501f41a6f5f8c214",
+    "chainId": "eip155:56",
+    "name": "BRN Metaverse",
+    "precision": 18,
+    "color": "#7D59EC",
+    "icon": "https://assets.coingecko.com/coins/images/25363/thumb/brn.png?1696524496",
+    "symbol": "BRN",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x92868a5255c628da08f550a858a802f5351c5223": {
+    "assetId": "eip155:56/bep20:0x92868a5255c628da08f550a858a802f5351c5223",
+    "chainId": "eip155:56",
+    "name": "Cross Chain Bridge on BNB Smart Chain",
+    "precision": 18,
+    "color": "#0554FC",
+    "icon": "https://assets.coingecko.com/coins/images/20223/thumb/0x92868A5255C628dA08F550a858A802f5351C5223.png?1696519632",
+    "symbol": "BRIDGE",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x928e55dab735aa8260af3cedada18b5f70c72f1b": {
+    "assetId": "eip155:56/bep20:0x928e55dab735aa8260af3cedada18b5f70c72f1b",
+    "chainId": "eip155:56",
+    "name": "Frontier on BNB Smart Chain",
+    "precision": 18,
+    "color": "#BAB6B5",
+    "icon": "https://assets.coingecko.com/coins/images/12479/thumb/frontier_logo.png?1696512296",
+    "symbol": "FRONT",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x92d28e49a4ffd443c1e2a907dcc07d2a41e67f4d": {
+    "assetId": "eip155:56/bep20:0x92d28e49a4ffd443c1e2a907dcc07d2a41e67f4d",
+    "chainId": "eip155:56",
+    "name": "Minelab",
+    "precision": 18,
+    "color": "#24ACE4",
+    "icon": "https://assets.coingecko.com/coins/images/32544/thumb/coinlogo.png?1698474124",
+    "symbol": "MELB",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x92d7756c60dcfd4c689290e8a9f4d263b3b32241": {
+    "assetId": "eip155:56/bep20:0x92d7756c60dcfd4c689290e8a9f4d263b3b32241",
+    "chainId": "eip155:56",
+    "name": "BoringDAO  OLD  on BNB Smart Chain",
+    "precision": 18,
+    "color": "#0A78E6",
+    "icon": "https://assets.coingecko.com/coins/images/12917/thumb/bor_logo.png?1696512705",
+    "symbol": "BOR",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x92dd5b17bdacbbe3868a09be5a3df93032c29ddb": {
+    "assetId": "eip155:56/bep20:0x92dd5b17bdacbbe3868a09be5a3df93032c29ddb",
+    "chainId": "eip155:56",
+    "name": "Kubic",
+    "precision": 18,
+    "color": "#559CF1",
+    "icon": "https://assets.coingecko.com/coins/images/16895/thumb/kubic.png?1696516466",
+    "symbol": "KUBIC",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x92ed61fb8955cc4e392781cb8b7cd04aadc43d0c": {
+    "assetId": "eip155:56/bep20:0x92ed61fb8955cc4e392781cb8b7cd04aadc43d0c",
+    "chainId": "eip155:56",
+    "name": "Oggy Inu",
+    "precision": 9,
+    "color": "#9BB9B7",
+    "icon": "https://assets.coingecko.com/coins/images/29691/thumb/Oggy_logo_200x200.png?1696528624",
+    "symbol": "OGGY",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x9320bdb3c8f3d0b1313726efbb0f0061ebf149ad": {
+    "assetId": "eip155:56/bep20:0x9320bdb3c8f3d0b1313726efbb0f0061ebf149ad",
+    "chainId": "eip155:56",
+    "name": "SAFEONE CHAIN",
+    "precision": 18,
+    "color": "#2E4979",
+    "icon": "https://assets.coingecko.com/coins/images/28042/thumb/3.png?1696527057",
+    "symbol": "SAFO",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x9321bc6185adc9b9cb503cc211e17cb311c3fa95": {
+    "assetId": "eip155:56/bep20:0x9321bc6185adc9b9cb503cc211e17cb311c3fa95",
+    "chainId": "eip155:56",
+    "name": "SafuuGO",
+    "precision": 18,
+    "color": "#F46404",
+    "icon": "https://assets.coingecko.com/coins/images/30668/thumb/SafuuGO_200x200.png?1696529538",
+    "symbol": "SGO",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x9334e37fad7c41cd6c9565bff3a97ce31cee52a3": {
+    "assetId": "eip155:56/bep20:0x9334e37fad7c41cd6c9565bff3a97ce31cee52a3",
+    "chainId": "eip155:56",
+    "name": "Swych",
+    "precision": 18,
+    "color": "#1B4CFC",
+    "icon": "https://assets.coingecko.com/coins/images/29594/thumb/6brcelg1_400x400.png?1696528533",
+    "symbol": "SWYCH",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x933bcd9a03d350f040d2fe7e36d60a9c73d42ef5": {
+    "assetId": "eip155:56/bep20:0x933bcd9a03d350f040d2fe7e36d60a9c73d42ef5",
+    "chainId": "eip155:56",
+    "name": "Snaps",
+    "precision": 18,
+    "color": "#5C39EE",
+    "icon": "https://assets.coingecko.com/coins/images/30719/thumb/snaps.png?1696529590",
+    "symbol": "SNPS",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x93442c6fb58a197bd5562891f9e76f07c57df2ba": {
+    "assetId": "eip155:56/bep20:0x93442c6fb58a197bd5562891f9e76f07c57df2ba",
+    "chainId": "eip155:56",
+    "name": "WAGMI Token",
+    "precision": 9,
+    "color": "#24DC34",
+    "icon": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAIAAAACACAMAAAD04JH5AAADAFBMVEUtN0gm2DD///8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABhqO9iAAABAHRSTlP/////AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAf6K/dgAAQItJREFUeNoBgEB/vwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAQEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgEBAQEBAQEBAQEBAQAAAgICAgICAgICAgICAgICAgICAgICAQEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgICAgICAgICAgICAgICAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQEBAQEBAQAAAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgICAgICAgICAgICAgICAwAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQEBAQEBAQAAAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgICAgICAgICAgICAgICAwAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQEBAQEBAQAAAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgICAgICAgICAgICAgICAwAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQEBAQEBAQAAAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgICAgICAgICAgICAgICAwAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQEBAQEBAQAAAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgICAgICAgICAgICAgICAwAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQEBAQEBAQAAAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgICAgICAgICAgICAgICAwAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAAMDAwMDAwMDAwMDAwMDAwMDAwMDAgICAgICAgEBAQEBAQECAgICAgICAQMDAwMDAwMDAwMDAwMDAwMDAwMDAgICAgICAgAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAMDAwMDAwMAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAgICAgICAgAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAgICAgICAgMAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAgICAgICAgMAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAgICAgICAgMAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAgICAgICAgMAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAgICAgICAgMAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAgICAgICAgMAAAAAAAAAAAACAgICAgICAwEBAQEBAQICAgICAgIBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAwMDAwMDAwMDAwMDAwMDAwMDAwMDAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAwMDAwMDAgICAgICAgMAAAAAAAAAAAACAgICAgICAwEBAQEBAQICAgICAgIDAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAwEBAQEBAQICAgICAgIDAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAwEBAQEBAQICAgICAgIDAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAwEBAQEBAQICAgICAgIDAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAwEBAQEBAQICAgICAgIDAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAwEBAQEBAQICAgICAgIDAQEBAQAAAgICAgICAgMAAAAAAAACAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAgICAgICAgMAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAwEBAQEBAQICAgICAgIDAQEBAQAAAgICAgICAgMAAAAAAAACAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAgICAgICAgMAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAwEBAQEBAQICAgICAgIDAQEBAQAAAgICAgICAgMAAAAAAAACAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAgICAgICAgMAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAwEBAQEBAQICAgICAgIDAQEBAQAAAgICAgICAgMAAAAAAAACAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAgICAgICAgMAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAwEBAQEBAQICAgICAgIDAQEBAQAAAgICAgICAgMAAAAAAAACAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAgICAgICAgMAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAwEBAQEBAQICAgICAgIDAQEBAQAAAgICAgICAgMAAAAAAAACAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAgICAgICAgMAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAwEBAQEBAQICAgICAgIDAQEBAQAAAgICAgICAgMAAAAAAAACAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAgICAgICAgMAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAwEBAQEBAQICAgICAgIDAQEBAQAAAgICAgICAgMAAAAAAAACAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAgICAgICAgMAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAAAAwMDAwMDAgICAgICAgEDAwMDAwMCAgICAgICAAMDAwMDAwMAAAAAAAACAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAgICAgICAgMAAAAAAAAAAwMDAwMDAgICAgICAgICAgICAgICAgICAgICAAMDAwMDAwMAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAACAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAgICAgICAgMAAAAAAAAAAAAAAAEBAgICAgICAgICAgICAgICAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAACAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAgICAgICAgMAAAAAAAAAAAAAAAEBAgICAgICAgICAgICAgICAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAACAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAgICAgICAgMAAAAAAAAAAAAAAAEBAgICAgICAgICAgICAgICAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAACAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAgICAgICAgMAAAAAAAAAAAAAAAEBAgICAgICAgICAgICAgICAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAACAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAgICAgICAgMAAAAAAAAAAAAAAAEBAgICAgICAgICAgICAgICAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAACAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAgICAgICAgMAAAAAAAAAAAAAAAEBAgICAgICAgICAgICAgICAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQMDAwMDAwMBAQEBAQEBAwMDAwMDAwAAAAAAAAAAAAAAAAAAAwMDAwMDAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAMDAwMDAwMAAAAAAAAAAAAAAAEBAQMDAwMDAwMDAwMDAwMDAwMDAwMDAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEwMMM/wqQJdAAAAAElFTkSuQmCC",
+    "symbol": "WAG",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x934b0633f4874ca9340341ad66ff2f6ce3124b4c": {
+    "assetId": "eip155:56/bep20:0x934b0633f4874ca9340341ad66ff2f6ce3124b4c",
+    "chainId": "eip155:56",
+    "name": "Sangkara",
+    "precision": 18,
+    "color": "#C34C9F",
+    "icon": "https://assets.coingecko.com/coins/images/25360/thumb/misa.png?1696524493",
+    "symbol": "MISA",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x935a544bf5816e3a7c13db2efe3009ffda0acda2": {
+    "assetId": "eip155:56/bep20:0x935a544bf5816e3a7c13db2efe3009ffda0acda2",
+    "chainId": "eip155:56",
+    "name": "Bluzelle on BNB Smart Chain",
+    "precision": 18,
+    "color": "#C838FC",
+    "icon": "https://assets.coingecko.com/coins/images/2848/thumb/ColorIcon_3x.png?1696503607",
+    "symbol": "BLZ",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x936b6659ad0c1b244ba8efe639092acae30dc8d6": {
+    "assetId": "eip155:56/bep20:0x936b6659ad0c1b244ba8efe639092acae30dc8d6",
+    "chainId": "eip155:56",
+    "name": "Corite",
+    "precision": 6,
+    "color": "#FC043C",
+    "icon": "https://assets.coingecko.com/coins/images/25969/thumb/Corite-symbol-red-neg-2000px.png?1696525047",
+    "symbol": "CO",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x93749e69560efe1ad6661903e47df538492c50a4": {
+    "assetId": "eip155:56/bep20:0x93749e69560efe1ad6661903e47df538492c50a4",
+    "chainId": "eip155:56",
+    "name": "Electric Vehicle Direct Currency",
+    "precision": 9,
+    "color": "#6ABC5C",
+    "icon": "https://assets.coingecko.com/coins/images/17406/thumb/EVDC-01-1-2.png?1696516954",
+    "symbol": "EVDC",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x937dcca207128af363470a711d0c2b1cf76c49b1": {
+    "assetId": "eip155:56/bep20:0x937dcca207128af363470a711d0c2b1cf76c49b1",
+    "chainId": "eip155:56",
+    "name": "skyup",
+    "precision": 18,
+    "color": "#E7E9E8",
+    "icon": "https://assets.coingecko.com/coins/images/27465/thumb/%EC%8A%A4%EC%B9%B4%EC%9D%B4%EC%97%85_%EB%A1%9C%EA%B3%A0.jpg?1696526504",
+    "symbol": "SU",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x938223700d3a22fb36fe5406193c607f8192d3e8": {
+    "assetId": "eip155:56/bep20:0x938223700d3a22fb36fe5406193c607f8192d3e8",
+    "chainId": "eip155:56",
+    "name": "Minions Finance",
+    "precision": 18,
+    "color": "#8162A0",
+    "icon": "https://assets.coingecko.com/coins/images/30677/thumb/logo_200.png?1696529546",
+    "symbol": "MINIONS",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x93891a3328cc16ebd59474ced882b1d91dec63e1": {
+    "assetId": "eip155:56/bep20:0x93891a3328cc16ebd59474ced882b1d91dec63e1",
+    "chainId": "eip155:56",
+    "name": "GreenEnvCoalition",
+    "precision": 18,
+    "color": "#42BB35",
+    "icon": "https://assets.coingecko.com/coins/images/31495/thumb/1000001941.png?1696530306",
+    "symbol": "GEC",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x939dd9e433552e325d78c33a16ef4cd8004d2f9c": {
+    "assetId": "eip155:56/bep20:0x939dd9e433552e325d78c33a16ef4cd8004d2f9c",
+    "chainId": "eip155:56",
+    "name": "SpaceN",
+    "precision": 18,
+    "color": "#FCAC38",
+    "icon": "https://assets.coingecko.com/coins/images/27576/thumb/sn.png?1696526609",
+    "symbol": "SN",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x93ab30c08421750d5c7993fb621c6ff32fe3f89e": {
+    "assetId": "eip155:56/bep20:0x93ab30c08421750d5c7993fb621c6ff32fe3f89e",
+    "chainId": "eip155:56",
+    "name": "FrogeX on BNB Smart Chain",
+    "precision": 9,
+    "color": "#77A043",
+    "icon": "https://assets.coingecko.com/coins/images/14775/thumb/-p8cz7Bk_400x400.png?1696514444",
+    "symbol": "FROGEX",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x93bb13e90678ccd8bbab07d1daef15086746dc9b": {
+    "assetId": "eip155:56/bep20:0x93bb13e90678ccd8bbab07d1daef15086746dc9b",
+    "chainId": "eip155:56",
+    "name": "PlayPad",
+    "precision": 18,
+    "color": "#ECF0F2",
+    "icon": "https://assets.coingecko.com/coins/images/20202/thumb/playpad.PNG?1696519613",
+    "symbol": "PPAD",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x93c27727e72ec7510a06ea450366c1418c4ce547": {
+    "assetId": "eip155:56/bep20:0x93c27727e72ec7510a06ea450366c1418c4ce547",
+    "chainId": "eip155:56",
+    "name": "Pirate x Pirate",
+    "precision": 18,
+    "color": "#A9761D",
+    "icon": "https://assets.coingecko.com/coins/images/23881/thumb/AJLTxV30.png?1696523081",
+    "symbol": "PXP",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x93e1ff99ff368a1611d6554686f94dcc66154acc": {
+    "assetId": "eip155:56/bep20:0x93e1ff99ff368a1611d6554686f94dcc66154acc",
+    "chainId": "eip155:56",
+    "name": "Daw Currency",
+    "precision": 18,
+    "color": "#F1BA5C",
+    "icon": "https://assets.coingecko.com/coins/images/32530/thumb/logo.jpeg?1698461006",
+    "symbol": "DAW",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x9400aa8eb5126d20cde45c7822836bfb70f19878": {
+    "assetId": "eip155:56/bep20:0x9400aa8eb5126d20cde45c7822836bfb70f19878",
+    "chainId": "eip155:56",
+    "name": "Drife",
+    "precision": 18,
+    "color": "#25A4D2",
+    "icon": "https://assets.coingecko.com/coins/images/17566/thumb/7BAWjuKB_400x400.jpg?1696517101",
+    "symbol": "DRF",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x94025780a1ab58868d9b2dbbb775f44b32e8e6e5": {
+    "assetId": "eip155:56/bep20:0x94025780a1ab58868d9b2dbbb775f44b32e8e6e5",
+    "chainId": "eip155:56",
+    "name": "BetSwirl on BNB Smart Chain",
+    "precision": 18,
+    "color": "#476DEF",
+    "icon": "https://assets.coingecko.com/coins/images/26618/thumb/icon_200.png?1696525691",
+    "symbol": "BETS",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x940580db429da7fa8662d66f7a4d312443f09f52": {
+    "assetId": "eip155:56/bep20:0x940580db429da7fa8662d66f7a4d312443f09f52",
+    "chainId": "eip155:56",
+    "name": "Solalgo",
+    "precision": 18,
+    "color": "#040404",
+    "icon": "https://assets.coingecko.com/coins/images/30152/thumb/solalgo_200x200.png?1696529072",
+    "symbol": "SLGO",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x9428f4cd18896eda03633429c3f52e5244504d14": {
+    "assetId": "eip155:56/bep20:0x9428f4cd18896eda03633429c3f52e5244504d14",
+    "chainId": "eip155:56",
+    "name": "Metahamster",
+    "precision": 18,
+    "color": "#1E161C",
+    "icon": "https://assets.coingecko.com/coins/images/26632/thumb/metahamster200x200.png?1696525705",
+    "symbol": "MHAM",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x9467f15f44a8641389556387b43d9ed3f6981818": {
+    "assetId": "eip155:56/bep20:0x9467f15f44a8641389556387b43d9ed3f6981818",
+    "chainId": "eip155:56",
+    "name": "Wrapped USDR on BNB Smart Chain",
+    "precision": 9,
+    "color": "#F29499",
+    "icon": "https://assets.coingecko.com/coins/images/28800/thumb/wUSDRlogo.png?1696527777",
+    "symbol": "WUSDR",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x947950bcc74888a40ffa2593c5798f11fc9124c4": {
+    "assetId": "eip155:56/bep20:0x947950bcc74888a40ffa2593c5798f11fc9124c4",
+    "chainId": "eip155:56",
+    "name": "Sushi on BNB Smart Chain",
+    "precision": 18,
+    "color": "#161129",
+    "icon": "https://assets.coingecko.com/coins/images/12271/thumb/512x512_Logo_no_chop.png?1696512101",
+    "symbol": "SUSHI",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x948d2a81086a075b3130bac19e4c6dee1d2e3fe8": {
+    "assetId": "eip155:56/bep20:0x948d2a81086a075b3130bac19e4c6dee1d2e3fe8",
+    "chainId": "eip155:56",
+    "name": "Helmet Insure",
+    "precision": 18,
+    "color": "#321C06",
+    "icon": "https://assets.coingecko.com/coins/images/13680/thumb/ZMdK-1J4_400x400.png?1696513429",
+    "symbol": "HELMET",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x949d48eca67b17269629c7194f4b727d4ef9e5d6": {
+    "assetId": "eip155:56/bep20:0x949d48eca67b17269629c7194f4b727d4ef9e5d6",
+    "chainId": "eip155:56",
+    "name": "Merit Circle on BNB Smart Chain",
+    "precision": 18,
+    "color": "#EC8C3B",
+    "icon": "https://assets.coingecko.com/coins/images/19304/thumb/Db4XqML.png?1696518747",
+    "symbol": "MC",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x94b69263fca20119ae817b6f783fc0f13b02ad50": {
+    "assetId": "eip155:56/bep20:0x94b69263fca20119ae817b6f783fc0f13b02ad50",
+    "chainId": "eip155:56",
+    "name": "League of Ancients",
+    "precision": 18,
+    "color": "#1E4D6B",
+    "icon": "https://assets.coingecko.com/coins/images/21442/thumb/loa.png?1696520805",
+    "symbol": "LOA",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x94c6b279b5df54b335ae51866d6e2a56bf5ef9b7": {
+    "assetId": "eip155:56/bep20:0x94c6b279b5df54b335ae51866d6e2a56bf5ef9b7",
+    "chainId": "eip155:56",
+    "name": "Morphex",
+    "precision": 18,
+    "color": "#D6D6F7",
+    "icon": "https://assets.coingecko.com/coins/images/28965/thumb/mpx_logo_256.png?1696527938",
+    "symbol": "MPX",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x94d79c325268c898d2902050730f27a478c56cc1": {
+    "assetId": "eip155:56/bep20:0x94d79c325268c898d2902050730f27a478c56cc1",
+    "chainId": "eip155:56",
+    "name": "IMO",
+    "precision": 18,
+    "color": "#FCF4E4",
+    "icon": "https://assets.coingecko.com/coins/images/14831/thumb/nPpe2Js.png?1696514498",
+    "symbol": "IMO",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x94db03752342bc9b5bbf89e3bf0132494f0cb2b3": {
+    "assetId": "eip155:56/bep20:0x94db03752342bc9b5bbf89e3bf0132494f0cb2b3",
+    "chainId": "eip155:56",
+    "name": "Dogai",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/32818/thumb/Dogai.png?1699579830",
+    "symbol": "DOGAI",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x94df6e5bc05b6eb9eb65c918902f6f4b8edd8833": {
+    "assetId": "eip155:56/bep20:0x94df6e5bc05b6eb9eb65c918902f6f4b8edd8833",
+    "chainId": "eip155:56",
+    "name": "DavidCoin",
+    "precision": 18,
+    "color": "#3CAC9C",
+    "icon": "https://assets.coingecko.com/coins/images/24964/thumb/dc.png?1696524118",
+    "symbol": "DC",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x9505dbd77dacd1f6c89f101b98522d4b871d88c5": {
+    "assetId": "eip155:56/bep20:0x9505dbd77dacd1f6c89f101b98522d4b871d88c5",
+    "chainId": "eip155:56",
+    "name": "HunnyDAO",
+    "precision": 9,
+    "color": "#AC526F",
+    "icon": "https://assets.coingecko.com/coins/images/20748/thumb/hunnydaologo-200x200.png?1696520145",
+    "symbol": "LOVE",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x951df2682ff9a963c4243a38d3841c9ba471b8ae": {
+    "assetId": "eip155:56/bep20:0x951df2682ff9a963c4243a38d3841c9ba471b8ae",
+    "chainId": "eip155:56",
+    "name": "United",
+    "precision": 18,
+    "color": "#BDA254",
+    "icon": "https://assets.coingecko.com/coins/images/12820/thumb/uted_new.png?1696512612",
+    "symbol": "UTED",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x9521728bf66a867bc65a93ece4a543d817871eb7": {
+    "assetId": "eip155:56/bep20:0x9521728bf66a867bc65a93ece4a543d817871eb7",
+    "chainId": "eip155:56",
+    "name": "Creo Engine",
+    "precision": 18,
+    "color": "#5491DB",
+    "icon": "https://assets.coingecko.com/coins/images/25419/thumb/17000.png?1696524549",
+    "symbol": "CREO",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x9528cceb678b90daf02ca5ca45622d5cbaf58a30": {
+    "assetId": "eip155:56/bep20:0x9528cceb678b90daf02ca5ca45622d5cbaf58a30",
+    "chainId": "eip155:56",
+    "name": "GoCryptoMe",
+    "precision": 9,
+    "color": "#1D66FC",
+    "icon": "https://assets.coingecko.com/coins/images/23946/thumb/WDBxWle.png?1696523142",
+    "symbol": "GCME",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x953e94caf91a1e32337d0548b9274f337920edfa": {
+    "assetId": "eip155:56/bep20:0x953e94caf91a1e32337d0548b9274f337920edfa",
+    "chainId": "eip155:56",
+    "name": "USDV on BNB Smart Chain",
+    "precision": 18,
+    "color": "#5C9CE4",
+    "icon": "https://assets.coingecko.com/coins/images/31806/thumb/200x200.png?1696530621",
+    "symbol": "USDV",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x9550ba92515fa17b2df02a31b02e93400f185b98": {
+    "assetId": "eip155:56/bep20:0x9550ba92515fa17b2df02a31b02e93400f185b98",
+    "chainId": "eip155:56",
+    "name": "Avatar Musk Verse",
+    "precision": 18,
+    "color": "#5291B7",
+    "icon": "https://assets.coingecko.com/coins/images/29802/thumb/IMG_20230403_223159_410.png?1696528731",
+    "symbol": "AMV",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x9562ca0c2b05d089063f562fc3ecc95e4424ad02": {
+    "assetId": "eip155:56/bep20:0x9562ca0c2b05d089063f562fc3ecc95e4424ad02",
+    "chainId": "eip155:56",
+    "name": "Shield BSC Token",
+    "precision": 18,
+    "color": "#050504",
+    "icon": "https://assets.coingecko.com/coins/images/28716/thumb/shdb_200x200.png?1696527697",
+    "symbol": "SHDB",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x9573c88ae3e37508f87649f87c4dd5373c9f31e0": {
+    "assetId": "eip155:56/bep20:0x9573c88ae3e37508f87649f87c4dd5373c9f31e0",
+    "chainId": "eip155:56",
+    "name": "Monsta Infinite",
+    "precision": 18,
+    "color": "#118571",
+    "icon": "https://assets.coingecko.com/coins/images/18396/thumb/moni.png?1696517887",
+    "symbol": "MONI",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x958cc5ac2efa569cd9ad9b9b88245e1f038b02be": {
+    "assetId": "eip155:56/bep20:0x958cc5ac2efa569cd9ad9b9b88245e1f038b02be",
+    "chainId": "eip155:56",
+    "name": "Smart World Union",
+    "precision": 18,
+    "color": "#18150E",
+    "icon": "https://assets.coingecko.com/coins/images/27442/thumb/swu.png?1696526483",
+    "symbol": "SWU",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x959229d94c9060552daea25ac17193bca65d7884": {
+    "assetId": "eip155:56/bep20:0x959229d94c9060552daea25ac17193bca65d7884",
+    "chainId": "eip155:56",
+    "name": "IOI on BNB Smart Chain",
+    "precision": 6,
+    "color": "#141414",
+    "icon": "https://assets.coingecko.com/coins/images/15952/thumb/IOI_new_logo.png?1696515564",
+    "symbol": "IOI",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x95a035a4e8738c6f7bf1c2a29996bcd79fcc074f": {
+    "assetId": "eip155:56/bep20:0x95a035a4e8738c6f7bf1c2a29996bcd79fcc074f",
+    "chainId": "eip155:56",
+    "name": "Rich Santa",
+    "precision": 9,
+    "color": "#FCCAD6",
+    "icon": "https://assets.coingecko.com/coins/images/28097/thumb/logo-circle-padding-200px.png?1696527106",
+    "symbol": "SANTA",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x95a1199eba84ac5f19546519e287d43d2f0e1b41": {
+    "assetId": "eip155:56/bep20:0x95a1199eba84ac5f19546519e287d43d2f0e1b41",
+    "chainId": "eip155:56",
+    "name": "Rabbit Finance",
+    "precision": 18,
+    "color": "#D4C6C4",
+    "icon": "https://assets.coingecko.com/coins/images/16240/thumb/Rabbit_Finance_Logo1.png?1696515840",
+    "symbol": "RABBIT",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x95b0fffabd2817959ce410070600d77bce93d454": {
+    "assetId": "eip155:56/bep20:0x95b0fffabd2817959ce410070600d77bce93d454",
+    "chainId": "eip155:56",
+    "name": "Shockwaves",
+    "precision": 18,
+    "color": "#6D755A",
+    "icon": "https://assets.coingecko.com/coins/images/30105/thumb/NEUROS_Logo.png?1696529027",
+    "symbol": "NEUROS",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x95c78222b3d6e262426483d42cfa53685a67ab9d": {
+    "assetId": "eip155:56/bep20:0x95c78222b3d6e262426483d42cfa53685a67ab9d",
+    "chainId": "eip155:56",
+    "name": "Venus BUSD",
+    "precision": 8,
+    "color": "#121516",
+    "icon": "https://assets.coingecko.com/coins/images/13902/thumb/vbusd.png?1696513644",
+    "symbol": "VBUSD",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x95c91eef65f50570cfc3f269961a00108cf7bf59": {
+    "assetId": "eip155:56/bep20:0x95c91eef65f50570cfc3f269961a00108cf7bf59",
+    "chainId": "eip155:56",
+    "name": "The Dons",
+    "precision": 18,
+    "color": "#040404",
+    "icon": "https://assets.coingecko.com/coins/images/30347/thumb/dons.png?1696529247",
+    "symbol": "DONS",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x95ca12cd249d27008a482009e101a8501cf3a64f": {
+    "assetId": "eip155:56/bep20:0x95ca12cd249d27008a482009e101a8501cf3a64f",
+    "chainId": "eip155:56",
+    "name": "MoveApp",
+    "precision": 18,
+    "color": "#14CB5C",
+    "icon": "https://assets.coingecko.com/coins/images/31810/thumb/VuiIQ3eK_400x400.png?1696530625",
+    "symbol": "MOVE",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x95d07a6b1dd22cfc6f775e9574e4374995e7ef89": {
+    "assetId": "eip155:56/bep20:0x95d07a6b1dd22cfc6f775e9574e4374995e7ef89",
+    "chainId": "eip155:56",
+    "name": "Athenas",
+    "precision": 18,
+    "color": "#F8B84C",
+    "icon": "https://assets.coingecko.com/coins/images/23883/thumb/banner-atn-2.png?1696523083",
+    "symbol": "ATHENASV2",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x95ee03e1e2c5c4877f9a298f1c0d6c98698fab7b": {
+    "assetId": "eip155:56/bep20:0x95ee03e1e2c5c4877f9a298f1c0d6c98698fab7b",
+    "chainId": "eip155:56",
+    "name": "Duet Protocol",
+    "precision": 18,
+    "color": "#0C132C",
+    "icon": "https://assets.coingecko.com/coins/images/16164/thumb/Duet.jpg?1696515768",
+    "symbol": "DUET",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x960cc8f437165b7362a34d95d1ec62dd2a940f00": {
+    "assetId": "eip155:56/bep20:0x960cc8f437165b7362a34d95d1ec62dd2a940f00",
+    "chainId": "eip155:56",
+    "name": "CosmicSwap on BNB Smart Chain",
+    "precision": 18,
+    "color": "#7450BA",
+    "icon": "https://assets.coingecko.com/coins/images/16197/thumb/logo_-_2021-06-10T084120.309.png?1696515798",
+    "symbol": "COSMIC",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x9617857e191354dbea0b714d78bc59e57c411087": {
+    "assetId": "eip155:56/bep20:0x9617857e191354dbea0b714d78bc59e57c411087",
+    "chainId": "eip155:56",
+    "name": "Lympo Market on BNB Smart Chain",
+    "precision": 18,
+    "color": "#C7CEDE",
+    "icon": "https://assets.coingecko.com/coins/images/15155/thumb/coin_%282%29.png?1696514811",
+    "symbol": "LMT",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x961c8c0b1aad0c0b10a51fef6a867e3091bcef17": {
+    "assetId": "eip155:56/bep20:0x961c8c0b1aad0c0b10a51fef6a867e3091bcef17",
+    "chainId": "eip155:56",
+    "name": "Dypius  OLD  on BNB Smart Chain",
+    "precision": 18,
+    "color": "#E5E5F9",
+    "icon": "https://assets.coingecko.com/coins/images/13480/thumb/DYP-200x200px.png?1696513241",
+    "symbol": "DYP",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x961e149db8bfbdb318c182152725ac806d7be3f4": {
+    "assetId": "eip155:56/bep20:0x961e149db8bfbdb318c182152725ac806d7be3f4",
+    "chainId": "eip155:56",
+    "name": "Utility Web3Shot",
+    "precision": 18,
+    "color": "#DC24CC",
+    "icon": "https://assets.coingecko.com/coins/images/29445/thumb/logo.png?1696528392",
+    "symbol": "UW3S",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x963556de0eb8138e97a85f0a86ee0acd159d210b": {
+    "assetId": "eip155:56/bep20:0x963556de0eb8138e97a85f0a86ee0acd159d210b",
+    "chainId": "eip155:56",
+    "name": "Melega",
+    "precision": 18,
+    "color": "#BFBFBF",
+    "icon": "https://assets.coingecko.com/coins/images/27568/thumb/MELEGA_logo_halo_200x200px.png?1696526602",
+    "symbol": "MARCO",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x965b0df5bda0e7a0649324d78f03d5f7f2de086a": {
+    "assetId": "eip155:56/bep20:0x965b0df5bda0e7a0649324d78f03d5f7f2de086a",
+    "chainId": "eip155:56",
+    "name": "Cook on BNB Smart Chain",
+    "precision": 18,
+    "color": "#2A315B",
+    "icon": "https://assets.coingecko.com/coins/images/14603/thumb/logo-200x200.jpg?1696514281",
+    "symbol": "COOK",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x965b85d4674f64422c4898c8f8083187f02b32c0": {
+    "assetId": "eip155:56/bep20:0x965b85d4674f64422c4898c8f8083187f02b32c0",
+    "chainId": "eip155:56",
+    "name": "Filecoin Standard Full Hashrate on BNB Smart Chain",
+    "precision": 8,
+    "color": "#0A80EE",
+    "icon": "https://assets.coingecko.com/coins/images/21669/thumb/_70BfuBY_400x400.jpg?1696521026",
+    "symbol": "SFIL",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x965d3704de812f5e1e7eef1ac22fe92174258bd9": {
+    "assetId": "eip155:56/bep20:0x965d3704de812f5e1e7eef1ac22fe92174258bd9",
+    "chainId": "eip155:56",
+    "name": "Metaxy",
+    "precision": 18,
+    "color": "#0E0E34",
+    "icon": "https://assets.coingecko.com/coins/images/22842/thumb/261052729_115071754344881_6053416489823202921_n.jpg?1696522143",
+    "symbol": "MXY",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x965f527d9159dce6288a2219db51fc6eef120dd1": {
+    "assetId": "eip155:56/bep20:0x965f527d9159dce6288a2219db51fc6eef120dd1",
+    "chainId": "eip155:56",
+    "name": "Biswap",
+    "precision": 18,
+    "color": "#B3D1F8",
+    "icon": "https://assets.coingecko.com/coins/images/16845/thumb/biswap.png?1696516413",
+    "symbol": "BSW",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x966f75a3a48bd6133220bf83a62429bf04adf29f": {
+    "assetId": "eip155:56/bep20:0x966f75a3a48bd6133220bf83a62429bf04adf29f",
+    "chainId": "eip155:56",
+    "name": "Bankers Dream",
+    "precision": 18,
+    "color": "#CACDCE",
+    "icon": "https://assets.coingecko.com/coins/images/23017/thumb/C47722-F6-F58-D-4945-AEE0-04020-AB24731.png?1696522312",
+    "symbol": "BANK",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x967784950655b8e74a2d3d3503933f0015660074": {
+    "assetId": "eip155:56/bep20:0x967784950655b8e74a2d3d3503933f0015660074",
+    "chainId": "eip155:56",
+    "name": "AliF Coin",
+    "precision": 18,
+    "color": "#DCBC6C",
+    "icon": "https://assets.coingecko.com/coins/images/29392/thumb/aliflogo200x200.png?1696528342",
+    "symbol": "ALIF",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x9678e42cebeb63f23197d726b29b1cb20d0064e5": {
+    "assetId": "eip155:56/bep20:0x9678e42cebeb63f23197d726b29b1cb20d0064e5",
+    "chainId": "eip155:56",
+    "name": "Binance Peg IoTeX",
+    "precision": 18,
+    "color": "#142329",
+    "icon": "https://assets.coingecko.com/coins/images/15978/thumb/iotex-logo.png?1696515591",
+    "symbol": "IOTX",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x968f6f898a6df937fc1859b323ac2f14643e3fed": {
+    "assetId": "eip155:56/bep20:0x968f6f898a6df937fc1859b323ac2f14643e3fed",
+    "chainId": "eip155:56",
+    "name": "Newscrypto Coin on BNB Smart Chain",
+    "precision": 18,
+    "color": "#CEE6F4",
+    "icon": "https://assets.coingecko.com/coins/images/9805/thumb/Tu1_NI3s_%281%29.png?1696509862",
+    "symbol": "NWC",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x968f9c44879f67a29b1bfccf93ea82d46a72881f": {
+    "assetId": "eip155:56/bep20:0x968f9c44879f67a29b1bfccf93ea82d46a72881f",
+    "chainId": "eip155:56",
+    "name": "Orclands Metaverse",
+    "precision": 9,
+    "color": "#C8A630",
+    "icon": "https://assets.coingecko.com/coins/images/22720/thumb/favicon-200x200.png?1696522024",
+    "symbol": "ORC",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x96a16178edaff58736567cfcaff570c06617f0fd": {
+    "assetId": "eip155:56/bep20:0x96a16178edaff58736567cfcaff570c06617f0fd",
+    "chainId": "eip155:56",
+    "name": "Eco DeFi on BNB Smart Chain",
+    "precision": 18,
+    "color": "#D7F4E0",
+    "icon": "https://assets.coingecko.com/coins/images/19535/thumb/eco_global.PNG?1696518968",
+    "symbol": "ECOP",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x971341c2e487bb51643573bc8b9f08b44dbc92e6": {
+    "assetId": "eip155:56/bep20:0x971341c2e487bb51643573bc8b9f08b44dbc92e6",
+    "chainId": "eip155:56",
+    "name": "MoonPot Finance",
+    "precision": 9,
+    "color": "#2E2935",
+    "icon": "https://assets.coingecko.com/coins/images/28888/thumb/IMG_20230130_210408.png?1696527865",
+    "symbol": "MOONPOT",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x97162468c0865375cd4302ce235cf6a96af6204c": {
+    "assetId": "eip155:56/bep20:0x97162468c0865375cd4302ce235cf6a96af6204c",
+    "chainId": "eip155:56",
+    "name": "Zab",
+    "precision": 18,
+    "color": "#3C4C74",
+    "icon": "https://assets.coingecko.com/coins/images/32449/thumb/wwwww-3-2.png?1698240033",
+    "symbol": "ZAB",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x9720ca160bbd4e7f3dd4bb3f8bd4227ca0342e63": {
+    "assetId": "eip155:56/bep20:0x9720ca160bbd4e7f3dd4bb3f8bd4227ca0342e63",
+    "chainId": "eip155:56",
+    "name": "GamesPad",
+    "precision": 18,
+    "color": "#1A1E28",
+    "icon": "https://assets.coingecko.com/coins/images/21842/thumb/MdE0tFS0_400x400.jpg?1696521197",
+    "symbol": "GMPD",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x9720ef9d5637088067fa2638204512e25ee14930": {
+    "assetId": "eip155:56/bep20:0x9720ef9d5637088067fa2638204512e25ee14930",
+    "chainId": "eip155:56",
+    "name": "Pracht Pay",
+    "precision": 18,
+    "color": "#444545",
+    "icon": "https://assets.coingecko.com/coins/images/31963/thumb/Logo_%281%29.png?1696530768",
+    "symbol": "PRACHTPAY",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x972207a639cc1b374b893cc33fa251b55ceb7c07": {
+    "assetId": "eip155:56/bep20:0x972207a639cc1b374b893cc33fa251b55ceb7c07",
+    "chainId": "eip155:56",
+    "name": "Venus BETH",
+    "precision": 8,
+    "color": "#263A44",
+    "icon": "https://assets.coingecko.com/coins/images/13924/thumb/vbeth.png?1696513664",
+    "symbol": "VBETH",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x974e9f2075b8cc77a54f8b439042f242df353990": {
+    "assetId": "eip155:56/bep20:0x974e9f2075b8cc77a54f8b439042f242df353990",
+    "chainId": "eip155:56",
+    "name": "Rencom Network",
+    "precision": 18,
+    "color": "#E1E1E1",
+    "icon": "https://assets.coingecko.com/coins/images/32335/thumb/Safeimagekit-resized-img_%283%29.png?1697452883",
+    "symbol": "RNT",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x9767203e89dcd34851240b3919d4900d3e5069f1": {
+    "assetId": "eip155:56/bep20:0x9767203e89dcd34851240b3919d4900d3e5069f1",
+    "chainId": "eip155:56",
+    "name": "A4 Finance on BNB Smart Chain",
+    "precision": 6,
+    "color": "#D4D4D4",
+    "icon": "https://assets.coingecko.com/coins/images/21992/thumb/ba384ad07217a4be75cb85314f5760f7.jpg?1696521340",
+    "symbol": "A4",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x9767c8e438aa18f550208e6d1fdf5f43541cc2c8": {
+    "assetId": "eip155:56/bep20:0x9767c8e438aa18f550208e6d1fdf5f43541cc2c8",
+    "chainId": "eip155:56",
+    "name": "MangoMan Intelligent",
+    "precision": 18,
+    "color": "#7A3E29",
+    "icon": "https://assets.coingecko.com/coins/images/26687/thumb/Mr._B.png?1696525761",
+    "symbol": "MMIT",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x976e33b07565b0c05b08b2e13affd3113e3d178d": {
+    "assetId": "eip155:56/bep20:0x976e33b07565b0c05b08b2e13affd3113e3d178d",
+    "chainId": "eip155:56",
+    "name": "AGA on BNB Smart Chain",
+    "precision": 4,
+    "color": "#FB3939",
+    "icon": "https://assets.coingecko.com/coins/images/12180/thumb/aga-logo.png?1696512017",
+    "symbol": "AGA",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x9776191f4ebbba7f358c1663bf82c0a0906c77fa": {
+    "assetId": "eip155:56/bep20:0x9776191f4ebbba7f358c1663bf82c0a0906c77fa",
+    "chainId": "eip155:56",
+    "name": "Phoenix Chain on BNB Smart Chain",
+    "precision": 18,
+    "color": "#E07A38",
+    "icon": "https://assets.coingecko.com/coins/images/29480/thumb/PHOENlX_%281%29_%281%29_%281%29.png?1696528424",
+    "symbol": "PHX",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x9789df6753b7f813a1c55ed20ecf83571dfde428": {
+    "assetId": "eip155:56/bep20:0x9789df6753b7f813a1c55ed20ecf83571dfde428",
+    "chainId": "eip155:56",
+    "name": "ULAND",
+    "precision": 18,
+    "color": "#59B6CA",
+    "icon": "https://assets.coingecko.com/coins/images/22040/thumb/logo_globe_200.png?1696521385",
+    "symbol": "ULAND",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x9792f67b919d0694edfcb69294872e392bfbb0f9": {
+    "assetId": "eip155:56/bep20:0x9792f67b919d0694edfcb69294872e392bfbb0f9",
+    "chainId": "eip155:56",
+    "name": "Botccoin Chain",
+    "precision": 18,
+    "color": "#E45735",
+    "icon": "https://assets.coingecko.com/coins/images/32004/thumb/botc_%281%29.png?1696530803",
+    "symbol": "BOTC",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x97a143545c0f8200222c051ac0a2fc93acbe6ba2": {
+    "assetId": "eip155:56/bep20:0x97a143545c0f8200222c051ac0a2fc93acbe6ba2",
+    "chainId": "eip155:56",
+    "name": "DefiConnect V2",
+    "precision": 8,
+    "color": "#F4C023",
+    "icon": "https://assets.coingecko.com/coins/images/28521/thumb/dfc.png?1696527514",
+    "symbol": "DFC",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x9810512be701801954449408966c630595d0cd51": {
+    "assetId": "eip155:56/bep20:0x9810512be701801954449408966c630595d0cd51",
+    "chainId": "eip155:56",
+    "name": "HYDT",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/33129/thumb/HYDT-200x200.png?1700796111",
+    "symbol": "HYDT",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x982e609643794a31a07f5c5b142dd3a9cf0690be": {
+    "assetId": "eip155:56/bep20:0x982e609643794a31a07f5c5b142dd3a9cf0690be",
+    "chainId": "eip155:56",
+    "name": "Tarot on BNB Smart Chain",
+    "precision": 18,
+    "color": "#E5E5E5",
+    "icon": "https://assets.coingecko.com/coins/images/31800/thumb/TAROT.jpg?1696530615",
+    "symbol": "TAROT",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x9840652dc04fb9db2c43853633f0f62be6f00f98": {
+    "assetId": "eip155:56/bep20:0x9840652dc04fb9db2c43853633f0f62be6f00f98",
+    "chainId": "eip155:56",
+    "name": "ChainGPT on BNB Smart Chain",
+    "precision": 18,
+    "color": "#404DAC",
+    "icon": "https://assets.coingecko.com/coins/images/29306/thumb/200x200.png?1696528257",
+    "symbol": "CGPT",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x984811e6f2695192add6f88615df637bf52a5cae": {
+    "assetId": "eip155:56/bep20:0x984811e6f2695192add6f88615df637bf52a5cae",
+    "chainId": "eip155:56",
+    "name": "HOPPY",
+    "precision": 9,
+    "color": "#71A739",
+    "icon": "https://assets.coingecko.com/coins/images/16844/thumb/TOKEN-ICON-T.png?1696516412",
+    "symbol": "HOP",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x988f7c894e4001eeb7b570cde80dffe21cf7b6b9": {
+    "assetId": "eip155:56/bep20:0x988f7c894e4001eeb7b570cde80dffe21cf7b6b9",
+    "chainId": "eip155:56",
+    "name": "Lucro",
+    "precision": 9,
+    "color": "#DCEAF3",
+    "icon": "https://assets.coingecko.com/coins/images/27335/thumb/LCR_logo_200x200-1.png?1696526382",
+    "symbol": "LCR",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x98999aa1b0d17fb832fd509e13b67fe506513a6d": {
+    "assetId": "eip155:56/bep20:0x98999aa1b0d17fb832fd509e13b67fe506513a6d",
+    "chainId": "eip155:56",
+    "name": "Banus Finance",
+    "precision": 18,
+    "color": "#042406",
+    "icon": "https://assets.coingecko.com/coins/images/31564/thumb/200x200.png?1696530377",
+    "symbol": "BANUS",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x9899a98b222fcb2f3dbee7df45d943093a4ff9ff": {
+    "assetId": "eip155:56/bep20:0x9899a98b222fcb2f3dbee7df45d943093a4ff9ff",
+    "chainId": "eip155:56",
+    "name": "DefiDollar DAO on BNB Smart Chain",
+    "precision": 18,
+    "color": "#1F1810",
+    "icon": "https://assets.coingecko.com/coins/images/12959/thumb/DFD.jpg?1696512747",
+    "symbol": "DFD",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x989b8f0219eb7aa0bed22e24f053eb2b155f4394": {
+    "assetId": "eip155:56/bep20:0x989b8f0219eb7aa0bed22e24f053eb2b155f4394",
+    "chainId": "eip155:56",
+    "name": "Mommy Doge",
+    "precision": 9,
+    "color": "#E1B47B",
+    "icon": "https://assets.coingecko.com/coins/images/16956/thumb/icon200x200_%281%29.png?1696516524",
+    "symbol": "MOMMYDOGE",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x98a2500a2c3b8877b0ed5ac3acc300c50bf7064b": {
+    "assetId": "eip155:56/bep20:0x98a2500a2c3b8877b0ed5ac3acc300c50bf7064b",
+    "chainId": "eip155:56",
+    "name": "NOOT",
+    "precision": 18,
+    "color": "#C0C0C0",
+    "icon": "https://assets.coingecko.com/coins/images/30045/thumb/20230426_124808.png?1696528967",
+    "symbol": "NOOT",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x98afac3b663113d29dc2cd8c2d1d14793692f110": {
+    "assetId": "eip155:56/bep20:0x98afac3b663113d29dc2cd8c2d1d14793692f110",
+    "chainId": "eip155:56",
+    "name": "MVS Multiverse",
+    "precision": 18,
+    "color": "#64ECCC",
+    "icon": "https://assets.coingecko.com/coins/images/22135/thumb/logo-200-white.png?1696521481",
+    "symbol": "MVS",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x98c6fd0281a9a0300cb88553bf386a3492bb70f7": {
+    "assetId": "eip155:56/bep20:0x98c6fd0281a9a0300cb88553bf386a3492bb70f7",
+    "chainId": "eip155:56",
+    "name": "Broovs Projects",
+    "precision": 18,
+    "color": "#14162C",
+    "icon": "https://assets.coingecko.com/coins/images/25020/thumb/OnV-HqI1_400x400.jpg?1696524172",
+    "symbol": "BRS",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x98d4c60deea495c94d50d162d331278658a6b681": {
+    "assetId": "eip155:56/bep20:0x98d4c60deea495c94d50d162d331278658a6b681",
+    "chainId": "eip155:56",
+    "name": "CryptHub",
+    "precision": 9,
+    "color": "#5D7CCE",
+    "icon": "https://assets.coingecko.com/coins/images/30744/thumb/IMG_8697.PNG?1696529614",
+    "symbol": "CRHT",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x991bb6093fa735d27cd1444b2ad8fdd95876fed5": {
+    "assetId": "eip155:56/bep20:0x991bb6093fa735d27cd1444b2ad8fdd95876fed5",
+    "chainId": "eip155:56",
+    "name": "La Peseta",
+    "precision": 18,
+    "color": "#2D2415",
+    "icon": "https://assets.coingecko.com/coins/images/30631/thumb/ptas.jpg?1696529504",
+    "symbol": "PTAS",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x9929b92f4c743d014c68dfe022d04c8c8fcfa37a": {
+    "assetId": "eip155:56/bep20:0x9929b92f4c743d014c68dfe022d04c8c8fcfa37a",
+    "chainId": "eip155:56",
+    "name": "OpenSwap One on BNB Smart Chain",
+    "precision": 18,
+    "color": "#56BCC4",
+    "icon": "https://assets.coingecko.com/coins/images/19274/thumb/X_color.png?1696518717",
+    "symbol": "OPENX",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x99415856b37be9e75c0153615c7954f9ddb97a6e": {
+    "assetId": "eip155:56/bep20:0x99415856b37be9e75c0153615c7954f9ddb97a6e",
+    "chainId": "eip155:56",
+    "name": "Royale on BNB Smart Chain",
+    "precision": 18,
+    "color": "#8684B1",
+    "icon": "https://assets.coingecko.com/coins/images/13602/thumb/roya.png?1696513353",
+    "symbol": "ROYA",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x9953170dcaac530ad7d6949c7295207c6ec5669d": {
+    "assetId": "eip155:56/bep20:0x9953170dcaac530ad7d6949c7295207c6ec5669d",
+    "chainId": "eip155:56",
+    "name": "MetaDoge V2",
+    "precision": 18,
+    "color": "#CF8C3B",
+    "icon": "https://assets.coingecko.com/coins/images/20053/thumb/metadoge.png?1696519472",
+    "symbol": "METADOGEV2",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x99956d38059cf7beda96ec91aa7bb2477e0901dd": {
+    "assetId": "eip155:56/bep20:0x99956d38059cf7beda96ec91aa7bb2477e0901dd",
+    "chainId": "eip155:56",
+    "name": "DIA on BNB Smart Chain",
+    "precision": 18,
+    "color": "#9CCBB7",
+    "icon": "https://assets.coingecko.com/coins/images/11955/thumb/Token_Logo.png?1696511815",
+    "symbol": "DIA",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x99aa29ac023057951781dc5d1784e9a4c362ce23": {
+    "assetId": "eip155:56/bep20:0x99aa29ac023057951781dc5d1784e9a4c362ce23",
+    "chainId": "eip155:56",
+    "name": "Seascape Crowns",
+    "precision": 18,
+    "color": "#A68552",
+    "icon": "https://assets.coingecko.com/coins/images/13835/thumb/crowns_logo.png?1696513577",
+    "symbol": "CWS",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x99c486b908434ae4adf567e9990a929854d0c955": {
+    "assetId": "eip155:56/bep20:0x99c486b908434ae4adf567e9990a929854d0c955",
+    "chainId": "eip155:56",
+    "name": "Nimbus Platform GNIMB",
+    "precision": 18,
+    "color": "#151414",
+    "icon": "https://assets.coingecko.com/coins/images/31853/thumb/GNIMB_Token_Logo.png?1696530667",
+    "symbol": "GNIMB",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x99c6e435ec259a7e8d65e1955c9423db624ba54c": {
+    "assetId": "eip155:56/bep20:0x99c6e435ec259a7e8d65e1955c9423db624ba54c",
+    "chainId": "eip155:56",
+    "name": "Finminity on BNB Smart Chain",
+    "precision": 18,
+    "color": "#EC7C28",
+    "icon": "https://assets.coingecko.com/coins/images/14696/thumb/finminity.png?1696514368",
+    "symbol": "FMT",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x99c8e0e1cb0d8cdb4c585be3a2a29c2edd5a4b4d": {
+    "assetId": "eip155:56/bep20:0x99c8e0e1cb0d8cdb4c585be3a2a29c2edd5a4b4d",
+    "chainId": "eip155:56",
+    "name": "FintraDao",
+    "precision": 18,
+    "color": "#0424BC",
+    "icon": "https://assets.coingecko.com/coins/images/32294/thumb/output-onlinepngtools.png?1697184421",
+    "symbol": "FDC",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x99e6ca7e6c5c5aea22b4a992eb6895bc6d433298": {
+    "assetId": "eip155:56/bep20:0x99e6ca7e6c5c5aea22b4a992eb6895bc6d433298",
+    "chainId": "eip155:56",
+    "name": "ALVA",
+    "precision": 18,
+    "color": "#34A4E4",
+    "icon": "https://assets.coingecko.com/coins/images/31720/thumb/alva200.png?1696530541",
+    "symbol": "AA",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x9a2478c4036548864d96a97fbf93f6a3341fedac": {
+    "assetId": "eip155:56/bep20:0x9a2478c4036548864d96a97fbf93f6a3341fedac",
+    "chainId": "eip155:56",
+    "name": "Zillion Aakar XO",
+    "precision": 9,
+    "color": "#D9D2CB",
+    "icon": "https://assets.coingecko.com/coins/images/26515/thumb/tg_image_4289710331.jpeg?1696525588",
+    "symbol": "ZILLIONXO",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x9a26e6d24df036b0b015016d1b55011c19e76c87": {
+    "assetId": "eip155:56/bep20:0x9a26e6d24df036b0b015016d1b55011c19e76c87",
+    "chainId": "eip155:56",
+    "name": "Dragon Mainland Shards",
+    "precision": 18,
+    "color": "#FBD355",
+    "icon": "https://assets.coingecko.com/coins/images/20702/thumb/DMS.png?1696520101",
+    "symbol": "DMS",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x9a5350edf28c1f93bb36d6e94b5c425fde8e222d": {
+    "assetId": "eip155:56/bep20:0x9a5350edf28c1f93bb36d6e94b5c425fde8e222d",
+    "chainId": "eip155:56",
+    "name": "Vyvo US Dollar on BNB Smart Chain",
+    "precision": 6,
+    "color": "#3B44D4",
+    "icon": "https://assets.coingecko.com/coins/images/31718/thumb/_USDV_Solid%28200x200%29.png?1696530539",
+    "symbol": "USDV",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x9a63d4b46826f458e008127e5a4d936ae213c6ce": {
+    "assetId": "eip155:56/bep20:0x9a63d4b46826f458e008127e5a4d936ae213c6ce",
+    "chainId": "eip155:56",
+    "name": "HDOKI",
+    "precision": 18,
+    "color": "#BE419D",
+    "icon": "https://assets.coingecko.com/coins/images/32581/thumb/dex-trade-200.png?1698559130",
+    "symbol": "OKI",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x9ab70e92319f0b9127df78868fd3655fb9f1e322": {
+    "assetId": "eip155:56/bep20:0x9ab70e92319f0b9127df78868fd3655fb9f1e322",
+    "chainId": "eip155:56",
+    "name": "WeWay on BNB Smart Chain",
+    "precision": 18,
+    "color": "#DEDEDE",
+    "icon": "https://assets.coingecko.com/coins/images/22418/thumb/wwy.png?1696521760",
+    "symbol": "WWY",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x9abdba20edfba06b782126b4d8d72a5853918fd0": {
+    "assetId": "eip155:56/bep20:0x9abdba20edfba06b782126b4d8d72a5853918fd0",
+    "chainId": "eip155:56",
+    "name": "Taboo",
+    "precision": 9,
+    "color": "#B08D73",
+    "icon": "https://assets.coingecko.com/coins/images/6111/thumb/taboo.PNG?1696506510",
+    "symbol": "TABOO",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x9ae0290cd677dc69a5f2a1e435ef002400da70f5": {
+    "assetId": "eip155:56/bep20:0x9ae0290cd677dc69a5f2a1e435ef002400da70f5",
+    "chainId": "eip155:56",
+    "name": "Civilization Network",
+    "precision": 18,
+    "color": "#DCF4EC",
+    "icon": "https://assets.coingecko.com/coins/images/29101/thumb/CVL_logo_green.png?1696528064",
+    "symbol": "CVL",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x9aeb2e6dd8d55e14292acfcfc4077e33106e4144": {
+    "assetId": "eip155:56/bep20:0x9aeb2e6dd8d55e14292acfcfc4077e33106e4144",
+    "chainId": "eip155:56",
+    "name": "Platform of meme coins",
+    "precision": 18,
+    "color": "#4D683F",
+    "icon": "https://assets.coingecko.com/coins/images/30615/thumb/200px.png?1696529484",
+    "symbol": "PAYU",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x9b17baadf0f21f03e35249e0e59723f34994f806": {
+    "assetId": "eip155:56/bep20:0x9b17baadf0f21f03e35249e0e59723f34994f806",
+    "chainId": "eip155:56",
+    "name": "inSure DeFi on BNB Smart Chain",
+    "precision": 18,
+    "color": "#E4E0E9",
+    "icon": "https://assets.coingecko.com/coins/images/10354/thumb/logo-grey-circle.png?1696510355",
+    "symbol": "SURE",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x9b208b117b2c4f76c1534b6f006b033220a681a4": {
+    "assetId": "eip155:56/bep20:0x9b208b117b2c4f76c1534b6f006b033220a681a4",
+    "chainId": "eip155:56",
+    "name": "Dingocoin",
+    "precision": 8,
+    "color": "#F3EBCA",
+    "icon": "https://assets.coingecko.com/coins/images/15989/thumb/dingocoin.png?1696515602",
+    "symbol": "DINGO",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x9b3a01f8b4abd2e2a74597b21b7c269abf4e9f41": {
+    "assetId": "eip155:56/bep20:0x9b3a01f8b4abd2e2a74597b21b7c269abf4e9f41",
+    "chainId": "eip155:56",
+    "name": "Altbase",
+    "precision": 18,
+    "color": "#0444CC",
+    "icon": "https://assets.coingecko.com/coins/images/19550/thumb/615635338527975b0314223a_Altbase_app_icon.png?1696518983",
+    "symbol": "ALTB",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x9b44df3318972be845d83f961735609137c4c23c": {
+    "assetId": "eip155:56/bep20:0x9b44df3318972be845d83f961735609137c4c23c",
+    "chainId": "eip155:56",
+    "name": "PayRue on BNB Smart Chain",
+    "precision": 18,
+    "color": "#5282AF",
+    "icon": "https://assets.coingecko.com/coins/images/8794/thumb/-RNl00DU_400x400.jpg?1696508949",
+    "symbol": "PROPEL",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x9b4bdddaeb68d85b0848bab7774e6855439fd94e": {
+    "assetId": "eip155:56/bep20:0x9b4bdddaeb68d85b0848bab7774e6855439fd94e",
+    "chainId": "eip155:56",
+    "name": "Tiger King Coin on BNB Smart Chain",
+    "precision": 18,
+    "color": "#DEB55F",
+    "icon": "https://assets.coingecko.com/coins/images/15605/thumb/tigerking.png?1696515239",
+    "symbol": "TKING",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x9b7a8f7895c58d85c63fba7a57a382c03c55a652": {
+    "assetId": "eip155:56/bep20:0x9b7a8f7895c58d85c63fba7a57a382c03c55a652",
+    "chainId": "eip155:56",
+    "name": "TrustBit Finance",
+    "precision": 18,
+    "color": "#98A4AA",
+    "icon": "https://assets.coingecko.com/coins/images/30122/thumb/trust_%281%29.png?1696529044",
+    "symbol": "TRS",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x9ba4c78b048eeed69f4ed3cfddeda7b51baf7ca8": {
+    "assetId": "eip155:56/bep20:0x9ba4c78b048eeed69f4ed3cfddeda7b51baf7ca8",
+    "chainId": "eip155:56",
+    "name": "Genesis Shards on BNB Smart Chain",
+    "precision": 18,
+    "color": "#0C0C0C",
+    "icon": "https://assets.coingecko.com/coins/images/14784/thumb/gs.png?1696514453",
+    "symbol": "GS",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x9ba6a67a6f3b21705a46b380a1b97373a33da311": {
+    "assetId": "eip155:56/bep20:0x9ba6a67a6f3b21705a46b380a1b97373a33da311",
+    "chainId": "eip155:56",
+    "name": "FEAR on BNB Smart Chain",
+    "precision": 18,
+    "color": "#0A0A0A",
+    "icon": "https://assets.coingecko.com/coins/images/15825/thumb/fear-logo-400-400.png?1696515443",
+    "symbol": "FEAR",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x9babcd3a6f62d9adc709e919d5faa39aa85749fc": {
+    "assetId": "eip155:56/bep20:0x9babcd3a6f62d9adc709e919d5faa39aa85749fc",
+    "chainId": "eip155:56",
+    "name": "Indian Shiba Inu",
+    "precision": 18,
+    "color": "#B0BCB5",
+    "icon": "https://assets.coingecko.com/coins/images/24941/thumb/mvnnSVVU_400x400.jpg?1696524096",
+    "symbol": "INDSHIB",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x9bad6c75b5a4e72df8147cc89d068cc848648e59": {
+    "assetId": "eip155:56/bep20:0x9bad6c75b5a4e72df8147cc89d068cc848648e59",
+    "chainId": "eip155:56",
+    "name": "LYO Credit",
+    "precision": 8,
+    "color": "#3B97ED",
+    "icon": "https://assets.coingecko.com/coins/images/25093/thumb/imgonline-com-ua-Resize-lFBg5rEIdAB.png?1696524244",
+    "symbol": "LYO",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x9bcab88763c33a95e73bc6dcf80fcf27a77090b2": {
+    "assetId": "eip155:56/bep20:0x9bcab88763c33a95e73bc6dcf80fcf27a77090b2",
+    "chainId": "eip155:56",
+    "name": "RoboFi",
+    "precision": 18,
+    "color": "#AEBFF3",
+    "icon": "https://assets.coingecko.com/coins/images/17582/thumb/s6cPN83.jpeg?1696517116",
+    "symbol": "VICS",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x9bee0c15676a65ef3c8cdb38cb3dd31c675bbd12": {
+    "assetId": "eip155:56/bep20:0x9bee0c15676a65ef3c8cdb38cb3dd31c675bbd12",
+    "chainId": "eip155:56",
+    "name": "BattleVerse",
+    "precision": 18,
+    "color": "#99999E",
+    "icon": "https://assets.coingecko.com/coins/images/23750/thumb/bvc.png?1696522952",
+    "symbol": "BVC",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x9c08951397bc02cd66f69eadbb8d491f8bb08c5e": {
+    "assetId": "eip155:56/bep20:0x9c08951397bc02cd66f69eadbb8d491f8bb08c5e",
+    "chainId": "eip155:56",
+    "name": "Planq on BNB Smart Chain",
+    "precision": 18,
+    "color": "#486784",
+    "icon": "https://assets.coingecko.com/coins/images/29100/thumb/Planq_256x256-circle.png?1696528063",
+    "symbol": "PLQ",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x9c2b1b3780a8b36b695f0b2781668664ac1bf25a": {
+    "assetId": "eip155:56/bep20:0x9c2b1b3780a8b36b695f0b2781668664ac1bf25a",
+    "chainId": "eip155:56",
+    "name": "SpookyShiba",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/26324/thumb/H2vW_x5A_400x400.jpeg?1696525406",
+    "symbol": "SPKY",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x9c65ab58d8d978db963e63f2bfb7121627e3a739": {
+    "assetId": "eip155:56/bep20:0x9c65ab58d8d978db963e63f2bfb7121627e3a739",
+    "chainId": "eip155:56",
+    "name": "Mdex  BSC ",
+    "precision": 18,
+    "color": "#CCCCD2",
+    "icon": "https://assets.coingecko.com/coins/images/29751/thumb/tdmmZdko_400x400.png?1696528683",
+    "symbol": "MDX",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x9c67638c4fa06fd47fb8900fc7f932f7eab589de": {
+    "assetId": "eip155:56/bep20:0x9c67638c4fa06fd47fb8900fc7f932f7eab589de",
+    "chainId": "eip155:56",
+    "name": "Arker",
+    "precision": 18,
+    "color": "#44B294",
+    "icon": "https://assets.coingecko.com/coins/images/21313/thumb/coin_%285%29.png?1696520681",
+    "symbol": "ARKER",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x9cae753b661142ae766374cefa5dc800d80446ac": {
+    "assetId": "eip155:56/bep20:0x9cae753b661142ae766374cefa5dc800d80446ac",
+    "chainId": "eip155:56",
+    "name": "Safehaven DeFi",
+    "precision": 9,
+    "color": "#51AA68",
+    "icon": "https://assets.coingecko.com/coins/images/17453/thumb/haven.png?1696516996",
+    "symbol": "HAVEN",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x9cbb03effd6fb7d79c9bab1b0ceaf4232e957521": {
+    "assetId": "eip155:56/bep20:0x9cbb03effd6fb7d79c9bab1b0ceaf4232e957521",
+    "chainId": "eip155:56",
+    "name": "Doge CEO",
+    "precision": 9,
+    "color": "#9E6065",
+    "icon": "https://assets.coingecko.com/coins/images/29298/thumb/IMG_20230302_230329_558.png?1696528250",
+    "symbol": "DOGECEO",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x9cc83d580180f0d37d00e5d86ce868f73b6e3d0a": {
+    "assetId": "eip155:56/bep20:0x9cc83d580180f0d37d00e5d86ce868f73b6e3d0a",
+    "chainId": "eip155:56",
+    "name": "Bitcointry Token on BNB Smart Chain",
+    "precision": 18,
+    "color": "#EC8816",
+    "icon": "https://assets.coingecko.com/coins/images/28641/thumb/bitcointry_token_logo_100x100.png?1696527624",
+    "symbol": "BTTY",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x9cd9c5a44cb8fab39b2ee3556f5c439e65e4fddd": {
+    "assetId": "eip155:56/bep20:0x9cd9c5a44cb8fab39b2ee3556f5c439e65e4fddd",
+    "chainId": "eip155:56",
+    "name": "MARS4 on BNB Smart Chain",
+    "precision": 18,
+    "color": "#C82133",
+    "icon": "https://assets.coingecko.com/coins/images/18709/thumb/mars4_logo.jpg?1696518177",
+    "symbol": "MARS4",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x9ce116224459296abc7858627abd5879514bc629": {
+    "assetId": "eip155:56/bep20:0x9ce116224459296abc7858627abd5879514bc629",
+    "chainId": "eip155:56",
+    "name": "Clash of Lilliput",
+    "precision": 18,
+    "color": "#C1E4F3",
+    "icon": "https://assets.coingecko.com/coins/images/26070/thumb/col.png?1696525154",
+    "symbol": "COL",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x9ce84f6a69986a83d92c324df10bc8e64771030f": {
+    "assetId": "eip155:56/bep20:0x9ce84f6a69986a83d92c324df10bc8e64771030f",
+    "chainId": "eip155:56",
+    "name": "CHEX Token on BNB Smart Chain",
+    "precision": 18,
+    "color": "#B7D5EF",
+    "icon": "https://assets.coingecko.com/coins/images/10349/thumb/1_0zxuLe6QnvfsZPFzOoUteQ.png?1696510350",
+    "symbol": "CHEX",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x9d0211c1b1a217a574cb55b0e9c367e56debeae0": {
+    "assetId": "eip155:56/bep20:0x9d0211c1b1a217a574cb55b0e9c367e56debeae0",
+    "chainId": "eip155:56",
+    "name": "TurboDEX",
+    "precision": 18,
+    "color": "#16474C",
+    "icon": "https://assets.coingecko.com/coins/images/31317/thumb/TURBO_TOKEN.png?1696530137",
+    "symbol": "TURBO",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x9d173e6c594f479b4d47001f8e6a95a7adda42bc": {
+    "assetId": "eip155:56/bep20:0x9d173e6c594f479b4d47001f8e6a95a7adda42bc",
+    "chainId": "eip155:56",
+    "name": "CryptoZoon",
+    "precision": 18,
+    "color": "#DD350B",
+    "icon": "https://assets.coingecko.com/coins/images/17419/thumb/logo200_%2820%29.png?1696516966",
+    "symbol": "ZOON",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x9d39ef3bbca5927909dde44476656b81bbe4ee75": {
+    "assetId": "eip155:56/bep20:0x9d39ef3bbca5927909dde44476656b81bbe4ee75",
+    "chainId": "eip155:56",
+    "name": "MetaWear",
+    "precision": 18,
+    "color": "#CFC1C9",
+    "icon": "https://assets.coingecko.com/coins/images/24339/thumb/MW_icon.png?1696523524",
+    "symbol": "WEAR",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x9d3e14b607b2f569cfafe29af71e811d7e575cfe": {
+    "assetId": "eip155:56/bep20:0x9d3e14b607b2f569cfafe29af71e811d7e575cfe",
+    "chainId": "eip155:56",
+    "name": "FlokiBonk",
+    "precision": 9,
+    "color": "#8F6F55",
+    "icon": "https://assets.coingecko.com/coins/images/20118/thumb/communityIcon_wz9dy5ga39x71.png?1696519535",
+    "symbol": "FLOBO",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x9d4451151a8de5b545a1bc6c8fdeb9d94a2868e1": {
+    "assetId": "eip155:56/bep20:0x9d4451151a8de5b545a1bc6c8fdeb9d94a2868e1",
+    "chainId": "eip155:56",
+    "name": "Lunar  OLD ",
+    "precision": 9,
+    "color": "#C4C4C4",
+    "icon": "https://assets.coingecko.com/coins/images/20446/thumb/rsz_lunarprofileiconcircleblack_1.png?1696519852",
+    "symbol": "LNR",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x9d55f5a65c4e8a7563a668c12364ecc42c4481a6": {
+    "assetId": "eip155:56/bep20:0x9d55f5a65c4e8a7563a668c12364ecc42c4481a6",
+    "chainId": "eip155:56",
+    "name": "Bitscrow",
+    "precision": 18,
+    "color": "#2B2067",
+    "icon": "https://assets.coingecko.com/coins/images/28634/thumb/HFDZGM.jpg?1696527617",
+    "symbol": "BTSCRW",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x9d6df568d4d3e619b99a5f988ac7b2bcc3408753": {
+    "assetId": "eip155:56/bep20:0x9d6df568d4d3e619b99a5f988ac7b2bcc3408753",
+    "chainId": "eip155:56",
+    "name": "Lumishare",
+    "precision": 18,
+    "color": "#110F09",
+    "icon": "https://assets.coingecko.com/coins/images/31456/thumb/Lumishare_logo_only_icon.png?1696530270",
+    "symbol": "LUMI",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x9d70a3ee3079a6fa2bb16591414678b7ad91f0b5": {
+    "assetId": "eip155:56/bep20:0x9d70a3ee3079a6fa2bb16591414678b7ad91f0b5",
+    "chainId": "eip155:56",
+    "name": "MemePad",
+    "precision": 18,
+    "color": "#C0CCE8",
+    "icon": "https://assets.coingecko.com/coins/images/15141/thumb/1619694441492-Memepad_coin.png?1696514797",
+    "symbol": "MEPAD",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x9d7107c8e30617cadc11f9692a19c82ae8bba938": {
+    "assetId": "eip155:56/bep20:0x9d7107c8e30617cadc11f9692a19c82ae8bba938",
+    "chainId": "eip155:56",
+    "name": "Lucky Roo on BNB Smart Chain",
+    "precision": 18,
+    "color": "#BD91CB",
+    "icon": "https://assets.coingecko.com/coins/images/27943/thumb/lucky200.png?1696526962",
+    "symbol": "ROO",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x9d7c580e0bc4ea441db96eebc7e1440d264bce51": {
+    "assetId": "eip155:56/bep20:0x9d7c580e0bc4ea441db96eebc7e1440d264bce51",
+    "chainId": "eip155:56",
+    "name": "Moonlift Capital",
+    "precision": 18,
+    "color": "#9696A2",
+    "icon": "https://assets.coingecko.com/coins/images/16226/thumb/moonlift.jpeg?1696515827",
+    "symbol": "MLTPX",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x9d7f4f7d036bdf08740d18557c63e50284e73231": {
+    "assetId": "eip155:56/bep20:0x9d7f4f7d036bdf08740d18557c63e50284e73231",
+    "chainId": "eip155:56",
+    "name": "RocketVerse  OLD ",
+    "precision": 9,
+    "color": "#DEC065",
+    "icon": "https://assets.coingecko.com/coins/images/28425/thumb/LOGO.png?1696527422",
+    "symbol": "RKV",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x9d9fa9dbae391c3fb6866f43de62ff3b393133b2": {
+    "assetId": "eip155:56/bep20:0x9d9fa9dbae391c3fb6866f43de62ff3b393133b2",
+    "chainId": "eip155:56",
+    "name": "ProjectX",
+    "precision": 18,
+    "color": "#AB3232",
+    "icon": "https://assets.coingecko.com/coins/images/28708/thumb/prox200b.png?1696527690",
+    "symbol": "PROX",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x9dc5ae951d5778025bd8f3af0806ccdc134bbe16": {
+    "assetId": "eip155:56/bep20:0x9dc5ae951d5778025bd8f3af0806ccdc134bbe16",
+    "chainId": "eip155:56",
+    "name": "ALL IN PEPE",
+    "precision": 9,
+    "color": "#2C5828",
+    "icon": "https://assets.coingecko.com/coins/images/31689/thumb/logo__PEPEA_200x200.png?1696530507",
+    "symbol": "PEPEA",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x9df465460938f9ebdf51c38cc87d72184471f8f0": {
+    "assetId": "eip155:56/bep20:0x9df465460938f9ebdf51c38cc87d72184471f8f0",
+    "chainId": "eip155:56",
+    "name": "Genopets",
+    "precision": 18,
+    "color": "#20735A",
+    "icon": "https://assets.coingecko.com/coins/images/20360/thumb/gene-token.png?1696519768",
+    "symbol": "GENE",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x9df90628d40c72f85137e8cee09dde353a651266": {
+    "assetId": "eip155:56/bep20:0x9df90628d40c72f85137e8cee09dde353a651266",
+    "chainId": "eip155:56",
+    "name": "Mechaverse",
+    "precision": 18,
+    "color": "#95949A",
+    "icon": "https://assets.coingecko.com/coins/images/27200/thumb/mc.jpeg?1696526249",
+    "symbol": "MC",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x9dfee72aea65dc7e375d50ea2bd90384313a165a": {
+    "assetId": "eip155:56/bep20:0x9dfee72aea65dc7e375d50ea2bd90384313a165a",
+    "chainId": "eip155:56",
+    "name": "Scrooge",
+    "precision": 18,
+    "color": "#241A11",
+    "icon": "https://assets.coingecko.com/coins/images/30937/thumb/scrooge.jpeg?1696529777",
+    "symbol": "SCROOGE",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x9e0335fb61958fe19bb120f3f8408b4297921820": {
+    "assetId": "eip155:56/bep20:0x9e0335fb61958fe19bb120f3f8408b4297921820",
+    "chainId": "eip155:56",
+    "name": "Forbidden Fruit Energy",
+    "precision": 18,
+    "color": "#110928",
+    "icon": "https://assets.coingecko.com/coins/images/30453/thumb/FFE_TOKEN.png?1696529340",
+    "symbol": "FFE",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x9e1170c12fddd3b00fec42ddf4c942565d9be577": {
+    "assetId": "eip155:56/bep20:0x9e1170c12fddd3b00fec42ddf4c942565d9be577",
+    "chainId": "eip155:56",
+    "name": "Space Token BSC on BNB Smart Chain",
+    "precision": 18,
+    "color": "#EC476A",
+    "icon": "https://assets.coingecko.com/coins/images/20676/thumb/jYw3kgsY_400x400.png?1696520076",
+    "symbol": "SPACE",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x9e24415d1e549ebc626a13a482bb117a2b43e9cf": {
+    "assetId": "eip155:56/bep20:0x9e24415d1e549ebc626a13a482bb117a2b43e9cf",
+    "chainId": "eip155:56",
+    "name": "Lovely Inu finance",
+    "precision": 8,
+    "color": "#D679A2",
+    "icon": "https://assets.coingecko.com/coins/images/19053/thumb/lovely-inu-logo-new.png?1696518503",
+    "symbol": "LOVELY",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x9e3a9f1612028eee48f85ca85f8bed2f37d76848": {
+    "assetId": "eip155:56/bep20:0x9e3a9f1612028eee48f85ca85f8bed2f37d76848",
+    "chainId": "eip155:56",
+    "name": "Quidax",
+    "precision": 18,
+    "color": "#4C3881",
+    "icon": "https://assets.coingecko.com/coins/images/16032/thumb/3k5qGOw1_400x400.jpg?1696515642",
+    "symbol": "QDX",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x9e57e83ad79ac5312ba82940ba037ed30600e167": {
+    "assetId": "eip155:56/bep20:0x9e57e83ad79ac5312ba82940ba037ed30600e167",
+    "chainId": "eip155:56",
+    "name": "Friend3",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/33198/thumb/Icon.jpg?1701027333",
+    "symbol": "F3",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x9e6b3e35c8f563b45d864f9ff697a144ad28a371": {
+    "assetId": "eip155:56/bep20:0x9e6b3e35c8f563b45d864f9ff697a144ad28a371",
+    "chainId": "eip155:56",
+    "name": "DogemonGo",
+    "precision": 18,
+    "color": "#415487",
+    "icon": "https://assets.coingecko.com/coins/images/17480/thumb/dogemongo.PNG?1696517022",
+    "symbol": "DOGO",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x9e711221b34a2d4b8f552bd5f4a6c4e7934920f7": {
+    "assetId": "eip155:56/bep20:0x9e711221b34a2d4b8f552bd5f4a6c4e7934920f7",
+    "chainId": "eip155:56",
+    "name": "Okratech",
+    "precision": 8,
+    "color": "#6F498C",
+    "icon": "https://assets.coingecko.com/coins/images/18352/thumb/fav.png?1696517841",
+    "symbol": "ORT",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x9ed7e4b1bff939ad473da5e7a218c771d1569456": {
+    "assetId": "eip155:56/bep20:0x9ed7e4b1bff939ad473da5e7a218c771d1569456",
+    "chainId": "eip155:56",
+    "name": "Reunit Wallet on BNB Smart Chain",
+    "precision": 6,
+    "color": "#0E0A0E",
+    "icon": "https://assets.coingecko.com/coins/images/29492/thumb/reunit_200.png?1696528436",
+    "symbol": "REUNI",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x9ee75952e3408ed7005225855aa1835d6d0023ca": {
+    "assetId": "eip155:56/bep20:0x9ee75952e3408ed7005225855aa1835d6d0023ca",
+    "chainId": "eip155:56",
+    "name": "Stamen Tellus Token",
+    "precision": 8,
+    "color": "#22CF21",
+    "icon": "https://assets.coingecko.com/coins/images/21155/thumb/normal_bean_stt-200x200.png?1696520532",
+    "symbol": "STT",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x9eeb6c5ff183e6001c65a12d70026b900ae76781": {
+    "assetId": "eip155:56/bep20:0x9eeb6c5ff183e6001c65a12d70026b900ae76781",
+    "chainId": "eip155:56",
+    "name": "Irena Coin Apps",
+    "precision": 9,
+    "color": "#A4CC34",
+    "icon": "https://assets.coingecko.com/coins/images/24507/thumb/Irena_coin_apps.png?1696523687",
+    "symbol": "IRENA",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x9f02af2d749ee3745fb3bd6ef76f1b5e4947cf9f": {
+    "assetId": "eip155:56/bep20:0x9f02af2d749ee3745fb3bd6ef76f1b5e4947cf9f",
+    "chainId": "eip155:56",
+    "name": "Pepe Prophet on BNB Smart Chain",
+    "precision": 18,
+    "color": "#C2D5E1",
+    "icon": "https://assets.coingecko.com/coins/images/31932/thumb/20231009_185537.png?1696963573",
+    "symbol": "KEK",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x9f402f44684574f3535ea6f1bb5cfbffef42ee28": {
+    "assetId": "eip155:56/bep20:0x9f402f44684574f3535ea6f1bb5cfbffef42ee28",
+    "chainId": "eip155:56",
+    "name": "Prime Numbers Ecosystem on BNB Smart Chain",
+    "precision": 18,
+    "color": "#46275B",
+    "icon": "https://assets.coingecko.com/coins/images/22669/thumb/primenumers_favicon_01.png?1696521981",
+    "symbol": "PRNT",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x9f485c50a611199fde9c849c56be7df888a90725": {
+    "assetId": "eip155:56/bep20:0x9f485c50a611199fde9c849c56be7df888a90725",
+    "chainId": "eip155:56",
+    "name": "The Cat Inu",
+    "precision": 18,
+    "color": "#38383D",
+    "icon": "https://assets.coingecko.com/coins/images/24624/thumb/200.png?1696523796",
+    "symbol": "THECAT",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x9f589e3eabe42ebc94a44727b3f3531c0c877809": {
+    "assetId": "eip155:56/bep20:0x9f589e3eabe42ebc94a44727b3f3531c0c877809",
+    "chainId": "eip155:56",
+    "name": "Tokocrypto",
+    "precision": 18,
+    "color": "#14AC4C",
+    "icon": "https://assets.coingecko.com/coins/images/14577/thumb/tko-logo.png?1696514258",
+    "symbol": "TKO",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x9f5c37e0fd9bf729b1f0a6f39ce57be5e9bfd435": {
+    "assetId": "eip155:56/bep20:0x9f5c37e0fd9bf729b1f0a6f39ce57be5e9bfd435",
+    "chainId": "eip155:56",
+    "name": "Bitcoin Pay",
+    "precision": 18,
+    "color": "#F4941C",
+    "icon": "https://assets.coingecko.com/coins/images/26994/thumb/photo_2022-08-22_16-38-30-removebg-preview.png?1696526047",
+    "symbol": "BTCPAY",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x9f6651f7147c4ec16357d0a56122e52c3c804b50": {
+    "assetId": "eip155:56/bep20:0x9f6651f7147c4ec16357d0a56122e52c3c804b50",
+    "chainId": "eip155:56",
+    "name": "CODAI",
+    "precision": 18,
+    "color": "#8D8E8D",
+    "icon": "https://assets.coingecko.com/coins/images/31466/thumb/Codai-200x200_logo.png?1696530279",
+    "symbol": "CODAI",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x9f68f166301aca720aa5b5588329230d3316e358": {
+    "assetId": "eip155:56/bep20:0x9f68f166301aca720aa5b5588329230d3316e358",
+    "chainId": "eip155:56",
+    "name": "GVS",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/32992/thumb/GVS.jpg?1700101809",
+    "symbol": "GVS",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x9f7277778c798ef0bc1debf28994eaec1af7ba24": {
+    "assetId": "eip155:56/bep20:0x9f7277778c798ef0bc1debf28994eaec1af7ba24",
+    "chainId": "eip155:56",
+    "name": "LuckyBird",
+    "precision": 18,
+    "color": "#DF4724",
+    "icon": "https://assets.coingecko.com/coins/images/31413/thumb/Lucky_Bird_logo.png?1696530228",
+    "symbol": "BIRD",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x9f7f4ddbcac23db5280d4aab83a28c5c3eff535e": {
+    "assetId": "eip155:56/bep20:0x9f7f4ddbcac23db5280d4aab83a28c5c3eff535e",
+    "chainId": "eip155:56",
+    "name": "Outter Finance",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/33171/thumb/OUT.PNG?1700911300",
+    "symbol": "OUT",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x9f8a75436e7e808f3fb348182e0ea42d2dd467cd": {
+    "assetId": "eip155:56/bep20:0x9f8a75436e7e808f3fb348182e0ea42d2dd467cd",
+    "chainId": "eip155:56",
+    "name": "S Wallet Protocol",
+    "precision": 6,
+    "color": "#89B5AE",
+    "icon": "https://assets.coingecko.com/coins/images/22843/thumb/P6jfqnuo.png?1696522144",
+    "symbol": "SWP",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x9f942d8b01e040200a24a7f08fa75460d331682c": {
+    "assetId": "eip155:56/bep20:0x9f942d8b01e040200a24a7f08fa75460d331682c",
+    "chainId": "eip155:56",
+    "name": "SAFE PLANET EARTH AI",
+    "precision": 9,
+    "color": "#ECF7F7",
+    "icon": "https://assets.coingecko.com/coins/images/31944/thumb/logo-speai-planet-earth-saver-ai-0x9F942D8b01E040200A24A7F08fa75460D331682C-blue-round-200x200.jpg?1696530751",
+    "symbol": "SPEAI",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x9faf07d1fbc130d698e227e50d1fb72657c0a342": {
+    "assetId": "eip155:56/bep20:0x9faf07d1fbc130d698e227e50d1fb72657c0a342",
+    "chainId": "eip155:56",
+    "name": "bHIVE",
+    "precision": 3,
+    "color": "#E5759F",
+    "icon": "https://assets.coingecko.com/coins/images/27596/thumb/hive.png?1696526627",
+    "symbol": "BHIVE",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x9fb677928dd244befcd0bbebdf6068dd4bef559c": {
+    "assetId": "eip155:56/bep20:0x9fb677928dd244befcd0bbebdf6068dd4bef559c",
+    "chainId": "eip155:56",
+    "name": "Bela Aqua",
+    "precision": 9,
+    "color": "#073768",
+    "icon": "https://assets.coingecko.com/coins/images/15566/thumb/d5bnQ0H.png?1696515206",
+    "symbol": "AQUA",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x9fb9a33956351cf4fa040f65a13b835a3c8764e3": {
+    "assetId": "eip155:56/bep20:0x9fb9a33956351cf4fa040f65a13b835a3c8764e3",
+    "chainId": "eip155:56",
+    "name": "Multichain on BNB Smart Chain",
+    "precision": 18,
+    "color": "#D6D2FA",
+    "icon": "https://assets.coingecko.com/coins/images/22087/thumb/1_Wyot-SDGZuxbjdkaOeT2-A.png?1696521430",
+    "symbol": "MULTI",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x9fbd6973f7e6e49eac8ff2eb857fdeed41d2e482": {
+    "assetId": "eip155:56/bep20:0x9fbd6973f7e6e49eac8ff2eb857fdeed41d2e482",
+    "chainId": "eip155:56",
+    "name": "Quantic Protocol",
+    "precision": 18,
+    "color": "#0A2938",
+    "icon": "https://assets.coingecko.com/coins/images/31251/thumb/QuanticTransparent-2.png?1696530075",
+    "symbol": "QUANTIC",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x9fbff386a9405b4c98329824418ec02b5c20976b": {
+    "assetId": "eip155:56/bep20:0x9fbff386a9405b4c98329824418ec02b5c20976b",
+    "chainId": "eip155:56",
+    "name": "FutureCoin",
+    "precision": 18,
+    "color": "#FCA41C",
+    "icon": "https://assets.coingecko.com/coins/images/23806/thumb/3ptM03y.png?1696523004",
+    "symbol": "FUTURE",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x9fd87aefe02441b123c3c32466cd9db4c578618f": {
+    "assetId": "eip155:56/bep20:0x9fd87aefe02441b123c3c32466cd9db4c578618f",
+    "chainId": "eip155:56",
+    "name": "Thetan Arena",
+    "precision": 18,
+    "color": "#44ADE9",
+    "icon": "https://assets.coingecko.com/coins/images/18414/thumb/c4N4n8k-_400x400.png?1696517904",
+    "symbol": "THG",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0x9fdc3ae5c814b79dca2556564047c5e7e5449c19": {
+    "assetId": "eip155:56/bep20:0x9fdc3ae5c814b79dca2556564047c5e7e5449c19",
+    "chainId": "eip155:56",
+    "name": "Decentral Games  Old  on BNB Smart Chain",
+    "precision": 18,
+    "color": "#076CF7",
+    "icon": "https://assets.coingecko.com/coins/images/13267/thumb/%28Old%29_DG.png?1696513041",
+    "symbol": "DG",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xa01000c52b234a92563ba61e5649b7c76e1ba0f3": {
+    "assetId": "eip155:56/bep20:0xa01000c52b234a92563ba61e5649b7c76e1ba0f3",
+    "chainId": "eip155:56",
+    "name": "Rocki on BNB Smart Chain",
+    "precision": 18,
+    "color": "#FBDFE4",
+    "icon": "https://assets.coingecko.com/coins/images/13465/thumb/rocki_logo.png?1696513227",
+    "symbol": "ROCKI",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xa026ad2ceda16ca5fc28fd3c72f99e2c332c8a26": {
+    "assetId": "eip155:56/bep20:0xa026ad2ceda16ca5fc28fd3c72f99e2c332c8a26",
+    "chainId": "eip155:56",
+    "name": "XCAD Network on BNB Smart Chain",
+    "precision": 18,
+    "color": "#DB2D62",
+    "icon": "https://assets.coingecko.com/coins/images/15857/thumb/logoWhiteX.jpg?1696515473",
+    "symbol": "XCAD",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xa03110800894b3ccf8723d991d80875561f96777": {
+    "assetId": "eip155:56/bep20:0xa03110800894b3ccf8723d991d80875561f96777",
+    "chainId": "eip155:56",
+    "name": "Bit Game Verse Token",
+    "precision": 18,
+    "color": "#E5E3D8",
+    "icon": "https://assets.coingecko.com/coins/images/27975/thumb/bgvt.png?1696526993",
+    "symbol": "BGVT",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xa045e37a0d1dd3a45fefb8803d22457abc0a728a": {
+    "assetId": "eip155:56/bep20:0xa045e37a0d1dd3a45fefb8803d22457abc0a728a",
+    "chainId": "eip155:56",
+    "name": "Grizzly Honey",
+    "precision": 18,
+    "color": "#FCDC96",
+    "icon": "https://assets.coingecko.com/coins/images/26816/thumb/GHNY-token-logo.png?1696525875",
+    "symbol": "GHNY",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xa058901039c97c2dc5cad0a4764fda5944afb90e": {
+    "assetId": "eip155:56/bep20:0xa058901039c97c2dc5cad0a4764fda5944afb90e",
+    "chainId": "eip155:56",
+    "name": "Dark Queen Duck",
+    "precision": 18,
+    "color": "#D4D4D2",
+    "icon": "https://assets.coingecko.com/coins/images/31828/thumb/photo_DQD.png?1696530642",
+    "symbol": "DQD",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xa07c39f8df11ca675f77efc19501e3dddacd03ed": {
+    "assetId": "eip155:56/bep20:0xa07c39f8df11ca675f77efc19501e3dddacd03ed",
+    "chainId": "eip155:56",
+    "name": "Funex on BNB Smart Chain",
+    "precision": 18,
+    "color": "#26444D",
+    "icon": "https://assets.coingecko.com/coins/images/26814/thumb/20220809_135138.png?1696525874",
+    "symbol": "FUNEX",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xa0a2ee912caf7921eaabc866c6ef6fec8f7e90a4": {
+    "assetId": "eip155:56/bep20:0xa0a2ee912caf7921eaabc866c6ef6fec8f7e90a4",
+    "chainId": "eip155:56",
+    "name": "Deeper Network on BNB Smart Chain",
+    "precision": 18,
+    "color": "#59BCDF",
+    "icon": "https://assets.coingecko.com/coins/images/14748/thumb/deeper.png?1696514418",
+    "symbol": "DPR",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xa0b9bb05da11e3b19ffd64554400f59d4a378515": {
+    "assetId": "eip155:56/bep20:0xa0b9bb05da11e3b19ffd64554400f59d4a378515",
+    "chainId": "eip155:56",
+    "name": "Hashtagger",
+    "precision": 18,
+    "color": "#FCC404",
+    "icon": "https://assets.coingecko.com/coins/images/21139/thumb/Hashtagger_Logo_No_text_200_200.png?1696520517",
+    "symbol": "MOOO",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xa0bed124a09ac2bd941b10349d8d224fe3c955eb": {
+    "assetId": "eip155:56/bep20:0xa0bed124a09ac2bd941b10349d8d224fe3c955eb",
+    "chainId": "eip155:56",
+    "name": "DePay on BNB Smart Chain",
+    "precision": 18,
+    "color": "#F1488D",
+    "icon": "https://assets.coingecko.com/coins/images/13183/thumb/DEPAY.png?1696512965",
+    "symbol": "DEPAY",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xa0cb0ce7c6d93a7ebd72952feb4407dddee8a194": {
+    "assetId": "eip155:56/bep20:0xa0cb0ce7c6d93a7ebd72952feb4407dddee8a194",
+    "chainId": "eip155:56",
+    "name": "Shibaken Finance on BNB Smart Chain",
+    "precision": 0,
+    "color": "#0C0C0C",
+    "icon": "https://assets.coingecko.com/coins/images/15413/thumb/shibak.png?1696515059",
+    "symbol": "SHIBAKEN",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xa0cf89ee581313d84d28409eb6bb1d1f9b55d410": {
+    "assetId": "eip155:56/bep20:0xa0cf89ee581313d84d28409eb6bb1d1f9b55d410",
+    "chainId": "eip155:56",
+    "name": "UNICE",
+    "precision": 18,
+    "color": "#3892EC",
+    "icon": "https://assets.coingecko.com/coins/images/32297/thumb/unnamed-removebg-preview.png?1697185712",
+    "symbol": "UNICE",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xa0ed3c520dc0632657ad2eaaf19e26c4fd431a84": {
+    "assetId": "eip155:56/bep20:0xa0ed3c520dc0632657ad2eaaf19e26c4fd431a84",
+    "chainId": "eip155:56",
+    "name": "Hippo Wallet on BNB Smart Chain",
+    "precision": 18,
+    "color": "#DFEEF1",
+    "icon": "https://assets.coingecko.com/coins/images/28089/thumb/b77170dd-1dd1-4581-91b2-e352794fa045.jpg?1696527099",
+    "symbol": "HPO",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xa11ff9976018fda2a8c4ccfa6ffbe8423c5ab668": {
+    "assetId": "eip155:56/bep20:0xa11ff9976018fda2a8c4ccfa6ffbe8423c5ab668",
+    "chainId": "eip155:56",
+    "name": "Floki Cash",
+    "precision": 18,
+    "color": "#DDAF55",
+    "icon": "https://assets.coingecko.com/coins/images/29865/thumb/E68106E0-F8A1-406A-9C25-3B22644936A9.jpeg?1696528790",
+    "symbol": "FLOKICASH",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xa155464b1566cdddf9782205602651b8b871b3d5": {
+    "assetId": "eip155:56/bep20:0xa155464b1566cdddf9782205602651b8b871b3d5",
+    "chainId": "eip155:56",
+    "name": "DaoVerse",
+    "precision": 18,
+    "color": "#061E38",
+    "icon": "https://assets.coingecko.com/coins/images/26762/thumb/DV-200x200-logo.png?1696525827",
+    "symbol": "DVRS",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xa164bb2d282ee762d5bc2161cf9914c712732ed7": {
+    "assetId": "eip155:56/bep20:0xa164bb2d282ee762d5bc2161cf9914c712732ed7",
+    "chainId": "eip155:56",
+    "name": "Goatly farm",
+    "precision": 18,
+    "color": "#1D3174",
+    "icon": "https://assets.coingecko.com/coins/images/31865/thumb/goatly_logo_cmc.png?1696530678",
+    "symbol": "GTF",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xa177bdd433aea3702beb46652adcfc64248d4ab3": {
+    "assetId": "eip155:56/bep20:0xa177bdd433aea3702beb46652adcfc64248d4ab3",
+    "chainId": "eip155:56",
+    "name": "Probinex",
+    "precision": 18,
+    "color": "#F8F4EF",
+    "icon": "https://assets.coingecko.com/coins/images/23677/thumb/ezgif-4-225dbc8377.jpg?1696522879",
+    "symbol": "PBX",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xa179248e50ce5afb507fd8c54e08a66fbac7b6ff": {
+    "assetId": "eip155:56/bep20:0xa179248e50ce5afb507fd8c54e08a66fbac7b6ff",
+    "chainId": "eip155:56",
+    "name": "Freedom  Jobs  Business",
+    "precision": 9,
+    "color": "#1B1E4E",
+    "icon": "https://assets.coingecko.com/coins/images/21300/thumb/FJB_150.png?1696520669",
+    "symbol": "FJB",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xa184088a740c695e156f91f5cc086a06bb78b827": {
+    "assetId": "eip155:56/bep20:0xa184088a740c695e156f91f5cc086a06bb78b827",
+    "chainId": "eip155:56",
+    "name": "Auto on BNB Smart Chain",
+    "precision": 18,
+    "color": "#3535BC",
+    "icon": "https://assets.coingecko.com/coins/images/13751/thumb/autofarm_icon_200x200.png?1696513494",
+    "symbol": "AUTO",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xa19863e302fd1b41276fce5a48d9c511dbeef34c": {
+    "assetId": "eip155:56/bep20:0xa19863e302fd1b41276fce5a48d9c511dbeef34c",
+    "chainId": "eip155:56",
+    "name": "Primate on BNB Smart Chain",
+    "precision": 18,
+    "color": "#C08539",
+    "icon": "https://assets.coingecko.com/coins/images/25245/thumb/benji-logo-512x512.png?1696524386",
+    "symbol": "PRIMATE",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xa19d3f4219e2ed6dc1cb595db20f70b8b6866734": {
+    "assetId": "eip155:56/bep20:0xa19d3f4219e2ed6dc1cb595db20f70b8b6866734",
+    "chainId": "eip155:56",
+    "name": "Wirtual",
+    "precision": 18,
+    "color": "#AE3D80",
+    "icon": "https://assets.coingecko.com/coins/images/24435/thumb/jxtu9s6F_400x400_%281%29.jpg?1696523616",
+    "symbol": "WIRTUAL",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xa1a0c7849e6916945a78f8af843738c051ab15f3": {
+    "assetId": "eip155:56/bep20:0xa1a0c7849e6916945a78f8af843738c051ab15f3",
+    "chainId": "eip155:56",
+    "name": "MetaMoon",
+    "precision": 9,
+    "color": "#74F4DC",
+    "icon": "https://assets.coingecko.com/coins/images/15744/thumb/ezgif-3-96b1d03006c5.png?1696515369",
+    "symbol": "METAMOON",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xa1a5ad28c250b9383c360c0f69ad57d70379851e": {
+    "assetId": "eip155:56/bep20:0xa1a5ad28c250b9383c360c0f69ad57d70379851e",
+    "chainId": "eip155:56",
+    "name": "Synergy Crystal",
+    "precision": 18,
+    "color": "#2C2C2C",
+    "icon": "https://assets.coingecko.com/coins/images/28960/thumb/AB268A5A-5DBC-4A4A-B4FC-605DFC4B54FE.png?1696527933",
+    "symbol": "CRS",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xa1a6d574728c0125b730cad5092b7d855f0bd920": {
+    "assetId": "eip155:56/bep20:0xa1a6d574728c0125b730cad5092b7d855f0bd920",
+    "chainId": "eip155:56",
+    "name": "Limocoin Swap",
+    "precision": 18,
+    "color": "#99825A",
+    "icon": "https://assets.coingecko.com/coins/images/20943/thumb/limo.png?1696520331",
+    "symbol": "LMCSWAP",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xa1ac3b22b102caa62c9ecaf418585528855b0ddd": {
+    "assetId": "eip155:56/bep20:0xa1ac3b22b102caa62c9ecaf418585528855b0ddd",
+    "chainId": "eip155:56",
+    "name": "Stripto",
+    "precision": 18,
+    "color": "#9EA1A4",
+    "icon": "https://assets.coingecko.com/coins/images/23383/thumb/17856.png?1696522598",
+    "symbol": "STRIP",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xa1faa113cbe53436df28ff0aee54275c13b40975": {
+    "assetId": "eip155:56/bep20:0xa1faa113cbe53436df28ff0aee54275c13b40975",
+    "chainId": "eip155:56",
+    "name": "Stella on BNB Smart Chain",
+    "precision": 18,
+    "color": "#BDC5DD",
+    "icon": "https://assets.coingecko.com/coins/images/12738/thumb/Stella200x200-06.png?1696512537",
+    "symbol": "ALPHA",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xa2120b9e674d3fc3875f415a7df52e382f141225": {
+    "assetId": "eip155:56/bep20:0xa2120b9e674d3fc3875f415a7df52e382f141225",
+    "chainId": "eip155:56",
+    "name": "Automata on BNB Smart Chain",
+    "precision": 18,
+    "color": "#BF662D",
+    "icon": "https://assets.coingecko.com/coins/images/15985/thumb/ATA.jpg?1696515598",
+    "symbol": "ATA",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xa2214039c2ccb9b86d351000ba2f126f45ce44a4": {
+    "assetId": "eip155:56/bep20:0xa2214039c2ccb9b86d351000ba2f126f45ce44a4",
+    "chainId": "eip155:56",
+    "name": "Alon Mars",
+    "precision": 18,
+    "color": "#E9E5DF",
+    "icon": "https://assets.coingecko.com/coins/images/29054/thumb/IMG_20230213_020850_600.jpg?1696528021",
+    "symbol": "ALONMARS",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xa25199a79a34cc04b15e5c0bba4e3a557364e532": {
+    "assetId": "eip155:56/bep20:0xa25199a79a34cc04b15e5c0bba4e3a557364e532",
+    "chainId": "eip155:56",
+    "name": "MetaRim",
+    "precision": 18,
+    "color": "#CD9DFA",
+    "icon": "https://assets.coingecko.com/coins/images/23904/thumb/rim.png?1696523104",
+    "symbol": "RIM",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xa25d074d5300f9f997a76994840a3266a72f77e4": {
+    "assetId": "eip155:56/bep20:0xa25d074d5300f9f997a76994840a3266a72f77e4",
+    "chainId": "eip155:56",
+    "name": "AssaPlay",
+    "precision": 18,
+    "color": "#D3162F",
+    "icon": "https://assets.coingecko.com/coins/images/25575/thumb/assa_coin_logo-02.png?1696524708",
+    "symbol": "ASSA",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xa260e12d2b924cb899ae80bb58123ac3fee1e2f0": {
+    "assetId": "eip155:56/bep20:0xa260e12d2b924cb899ae80bb58123ac3fee1e2f0",
+    "chainId": "eip155:56",
+    "name": "Hooked Protocol",
+    "precision": 18,
+    "color": "#4AA868",
+    "icon": "https://assets.coingecko.com/coins/images/28288/thumb/hooked2.png?1696527288",
+    "symbol": "HOOK",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xa288e965e86ac4e5c03352f199cc7a66022e15a8": {
+    "assetId": "eip155:56/bep20:0xa288e965e86ac4e5c03352f199cc7a66022e15a8",
+    "chainId": "eip155:56",
+    "name": "Black Whale on BNB Smart Chain",
+    "precision": 18,
+    "color": "#E6872F",
+    "icon": "https://assets.coingecko.com/coins/images/32516/thumb/BLK_LOGO%28200x200%29.png?1698406168",
+    "symbol": "XXX",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xa29685f043a89998ea18254e8e450df989e13e2b": {
+    "assetId": "eip155:56/bep20:0xa29685f043a89998ea18254e8e450df989e13e2b",
+    "chainId": "eip155:56",
+    "name": "CHAVO",
+    "precision": 18,
+    "color": "#FBBB05",
+    "icon": "https://assets.coingecko.com/coins/images/31592/thumb/chavo_8_frente_300x300.png?1696530408",
+    "symbol": "CHA",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xa29b6f4e762874846c081e20ed1142ff83faafef": {
+    "assetId": "eip155:56/bep20:0xa29b6f4e762874846c081e20ed1142ff83faafef",
+    "chainId": "eip155:56",
+    "name": "MooMonster",
+    "precision": 18,
+    "color": "#A32AF3",
+    "icon": "https://assets.coingecko.com/coins/images/21177/thumb/moo.png?1696520553",
+    "symbol": "MOO",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xa2b726b1145a4773f68593cf171187d8ebe4d495": {
+    "assetId": "eip155:56/bep20:0xa2b726b1145a4773f68593cf171187d8ebe4d495",
+    "chainId": "eip155:56",
+    "name": "Injective on BNB Smart Chain",
+    "precision": 18,
+    "color": "#04CCFC",
+    "icon": "https://assets.coingecko.com/coins/images/12882/thumb/Secondary_Symbol.png?1696512670",
+    "symbol": "INJ",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xa2dd9651f54320022af562ce5b25aea69b3b444c": {
+    "assetId": "eip155:56/bep20:0xa2dd9651f54320022af562ce5b25aea69b3b444c",
+    "chainId": "eip155:56",
+    "name": "PAPA BEAR",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/32945/thumb/papabear.jpg?1699899004",
+    "symbol": "PAPA",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xa2e3356610840701bdf5611a53974510ae27e2e1": {
+    "assetId": "eip155:56/bep20:0xa2e3356610840701bdf5611a53974510ae27e2e1",
+    "chainId": "eip155:56",
+    "name": "Wrapped Beacon ETH on BNB Smart Chain",
+    "precision": 18,
+    "color": "#F2C62A",
+    "icon": "https://assets.coingecko.com/coins/images/30061/thumb/wbeth-icon.png?1696528983",
+    "symbol": "WBETH",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xa2e3e2817f00822f3c1e71a604eca4196af923d6": {
+    "assetId": "eip155:56/bep20:0xa2e3e2817f00822f3c1e71a604eca4196af923d6",
+    "chainId": "eip155:56",
+    "name": "Torekko",
+    "precision": 18,
+    "color": "#F40A29",
+    "icon": "https://assets.coingecko.com/coins/images/23357/thumb/trk.PNG?1696522572",
+    "symbol": "TRK",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xa2f1a99a74d4cc072b810b1696239e4dd76221c4": {
+    "assetId": "eip155:56/bep20:0xa2f1a99a74d4cc072b810b1696239e4dd76221c4",
+    "chainId": "eip155:56",
+    "name": "Black Token",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/28397/thumb/logo.png?1696527396",
+    "symbol": "BLACK",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xa2f46fe221f34dac4cf078e6946a7cb4e373ad28": {
+    "assetId": "eip155:56/bep20:0xa2f46fe221f34dac4cf078e6946a7cb4e373ad28",
+    "chainId": "eip155:56",
+    "name": "Bafi Finance",
+    "precision": 18,
+    "color": "#343B34",
+    "icon": "https://assets.coingecko.com/coins/images/13512/thumb/BAFI.png?1696513274",
+    "symbol": "BAFI",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xa2f89a3be1bada5eb9d58d23edc2e2fe0f82f4b0": {
+    "assetId": "eip155:56/bep20:0xa2f89a3be1bada5eb9d58d23edc2e2fe0f82f4b0",
+    "chainId": "eip155:56",
+    "name": "Option Panda Platform",
+    "precision": 18,
+    "color": "#EFF6F6",
+    "icon": "https://assets.coingecko.com/coins/images/16435/thumb/logo.jpg?1696516032",
+    "symbol": "OPA",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xa310017e40e687c8670d218e3c86a0d09786574f": {
+    "assetId": "eip155:56/bep20:0xa310017e40e687c8670d218e3c86a0d09786574f",
+    "chainId": "eip155:56",
+    "name": "Yoda Coin Swap",
+    "precision": 18,
+    "color": "#D1C9D8",
+    "icon": "https://assets.coingecko.com/coins/images/26117/thumb/YODA_COIN_SWAP_200x200.png?1696525207",
+    "symbol": "JEDALS",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xa325ad6d9c92b55a3fc5ad7e412b1518f96441c0": {
+    "assetId": "eip155:56/bep20:0xa325ad6d9c92b55a3fc5ad7e412b1518f96441c0",
+    "chainId": "eip155:56",
+    "name": "Oraichain on BNB Smart Chain",
+    "precision": 18,
+    "color": "#040404",
+    "icon": "https://assets.coingecko.com/coins/images/12931/thumb/orai.png?1696512718",
+    "symbol": "ORAI",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xa3276b9366a3aa6f76fa3b39173577718012d7da": {
+    "assetId": "eip155:56/bep20:0xa3276b9366a3aa6f76fa3b39173577718012d7da",
+    "chainId": "eip155:56",
+    "name": "ENEFTIVERSE",
+    "precision": 18,
+    "color": "#397288",
+    "icon": "https://assets.coingecko.com/coins/images/29529/thumb/eneftitoken.logo-removebg-preview-1.png?1696528471",
+    "symbol": "EVR",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xa37100bb05271853766af8ed7a32ca20c8311acc": {
+    "assetId": "eip155:56/bep20:0xa37100bb05271853766af8ed7a32ca20c8311acc",
+    "chainId": "eip155:56",
+    "name": "Elon Musk CEO",
+    "precision": 9,
+    "color": "#B19A4B",
+    "icon": "https://assets.coingecko.com/coins/images/29797/thumb/photo1681262243_%281%29.png?1696528727",
+    "symbol": "ELONMUSKCE",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xa3870fbbeb730ba99e4107051612af3465ca9f5e": {
+    "assetId": "eip155:56/bep20:0xa3870fbbeb730ba99e4107051612af3465ca9f5e",
+    "chainId": "eip155:56",
+    "name": "Stable",
+    "precision": 18,
+    "color": "#C5EA9A",
+    "icon": "https://assets.coingecko.com/coins/images/31148/thumb/stable_200.png?1696529976",
+    "symbol": "STABLE",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xa38898a4ae982cb0131104a6746f77fa0da57aaa": {
+    "assetId": "eip155:56/bep20:0xa38898a4ae982cb0131104a6746f77fa0da57aaa",
+    "chainId": "eip155:56",
+    "name": "Project Quantum",
+    "precision": 2,
+    "color": "#2A3151",
+    "icon": "https://assets.coingecko.com/coins/images/15773/thumb/quantum200.png?1696515397",
+    "symbol": "QBIT",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xa398fc83d922537900ec0e02c51f4105ab2e2f5c": {
+    "assetId": "eip155:56/bep20:0xa398fc83d922537900ec0e02c51f4105ab2e2f5c",
+    "chainId": "eip155:56",
+    "name": "SOPDAP AI",
+    "precision": 18,
+    "color": "#E8E8ED",
+    "icon": "https://assets.coingecko.com/coins/images/31590/thumb/WhatsApp_Image_2023-09-02_at_20.04.37.jpeg?1696530406",
+    "symbol": "SDP",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xa39bf0446268d99c5c0a85ecf92970611912d386": {
+    "assetId": "eip155:56/bep20:0xa39bf0446268d99c5c0a85ecf92970611912d386",
+    "chainId": "eip155:56",
+    "name": "Moon Rabbit on BNB Smart Chain",
+    "precision": 18,
+    "color": "#E9E5B2",
+    "icon": "https://assets.coingecko.com/coins/images/17310/thumb/logo_moon_no_inscriptions-01.png?1696516863",
+    "symbol": "AAA",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xa3a7f7ccc7b3f5be5828f92cc33cf5cafb027443": {
+    "assetId": "eip155:56/bep20:0xa3a7f7ccc7b3f5be5828f92cc33cf5cafb027443",
+    "chainId": "eip155:56",
+    "name": "PlanetCats",
+    "precision": 4,
+    "color": "#0D8CAC",
+    "icon": "https://assets.coingecko.com/coins/images/28404/thumb/logo_coingecko.png?1696527402",
+    "symbol": "CATCOIN",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xa3abe68db1b8467b44715eb94542b20dc134f005": {
+    "assetId": "eip155:56/bep20:0xa3abe68db1b8467b44715eb94542b20dc134f005",
+    "chainId": "eip155:56",
+    "name": "Fluffy Coin",
+    "precision": 18,
+    "color": "#5A5B5B",
+    "icon": "https://assets.coingecko.com/coins/images/20656/thumb/fluf.png?1696520058",
+    "symbol": "FLUF",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xa4080f1778e69467e905b8d6f72f6e441f9e9484": {
+    "assetId": "eip155:56/bep20:0xa4080f1778e69467e905b8d6f72f6e441f9e9484",
+    "chainId": "eip155:56",
+    "name": "Synapse on BNB Smart Chain",
+    "precision": 18,
+    "color": "#7A389C",
+    "icon": "https://assets.coingecko.com/coins/images/18024/thumb/synapse_social_icon.png?1696517540",
+    "symbol": "SYN",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xa41f142b6eb2b164f8164cae0716892ce02f311f": {
+    "assetId": "eip155:56/bep20:0xa41f142b6eb2b164f8164cae0716892ce02f311f",
+    "chainId": "eip155:56",
+    "name": "Avocado DAO on BNB Smart Chain",
+    "precision": 18,
+    "color": "#489253",
+    "icon": "https://assets.coingecko.com/coins/images/21102/thumb/logo192_%281%29.png?1696520483",
+    "symbol": "AVG",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xa4320f7756bdbf4796b77bea6f2a3432c60f8456": {
+    "assetId": "eip155:56/bep20:0xa4320f7756bdbf4796b77bea6f2a3432c60f8456",
+    "chainId": "eip155:56",
+    "name": "Cicca Network",
+    "precision": 18,
+    "color": "#3C4444",
+    "icon": "https://assets.coingecko.com/coins/images/32410/thumb/CICCALOGOOOO.jpg?1698057882",
+    "symbol": "CICCA",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xa4335da338ec4c07c391fc1a9bf75f306adadc08": {
+    "assetId": "eip155:56/bep20:0xa4335da338ec4c07c391fc1a9bf75f306adadc08",
+    "chainId": "eip155:56",
+    "name": "ARYZE eUSD on BNB Smart Chain",
+    "precision": 18,
+    "color": "#B9DCC9",
+    "icon": "https://assets.coingecko.com/coins/images/32422/thumb/ARYZE_eUSD.png?1698118313",
+    "symbol": "EUSD",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xa43d3e03d001492eb586db0990cb90d0c3bbe511": {
+    "assetId": "eip155:56/bep20:0xa43d3e03d001492eb586db0990cb90d0c3bbe511",
+    "chainId": "eip155:56",
+    "name": "Coinlocally",
+    "precision": 18,
+    "color": "#FCBC24",
+    "icon": "https://assets.coingecko.com/coins/images/28808/thumb/light.png?1696527785",
+    "symbol": "CLYC",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xa469d8e55afcd58003d6cbdc770c0ecc2dd71945": {
+    "assetId": "eip155:56/bep20:0xa469d8e55afcd58003d6cbdc770c0ecc2dd71945",
+    "chainId": "eip155:56",
+    "name": "PlatinX",
+    "precision": 8,
+    "color": "#D09D43",
+    "icon": "https://assets.coingecko.com/coins/images/23726/thumb/logo200x200.png?1696522925",
+    "symbol": "PTX",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xa477a79a118a84a0d371a53c8f46f8ce883ec1dd": {
+    "assetId": "eip155:56/bep20:0xa477a79a118a84a0d371a53c8f46f8ce883ec1dd",
+    "chainId": "eip155:56",
+    "name": "BBS Network on BNB Smart Chain",
+    "precision": 18,
+    "color": "#0E1A28",
+    "icon": "https://assets.coingecko.com/coins/images/23715/thumb/Ni13Pg1K_400x400.jpg?1696522915",
+    "symbol": "BBS",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xa4838122c683f732289805fc3c207febd55babdd": {
+    "assetId": "eip155:56/bep20:0xa4838122c683f732289805fc3c207febd55babdd",
+    "chainId": "eip155:56",
+    "name": "TriasLab on BNB Smart Chain",
+    "precision": 18,
+    "color": "#40BCC4",
+    "icon": "https://assets.coingecko.com/coins/images/13963/thumb/5ELqtwp__400x400_%281%29.jpg?1696513699",
+    "symbol": "TRIAS",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xa4904cc19c4fd9bf3152ff96cdf72a8f135b5286": {
+    "assetId": "eip155:56/bep20:0xa4904cc19c4fd9bf3152ff96cdf72a8f135b5286",
+    "chainId": "eip155:56",
+    "name": "Cloud Pet",
+    "precision": 18,
+    "color": "#E9B81F",
+    "icon": "https://assets.coingecko.com/coins/images/28343/thumb/Cpet_Logo.png?1696527349",
+    "symbol": "CPET",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xa49c8cbbddfe4dbc8605f0f5c8f2845c5e225d22": {
+    "assetId": "eip155:56/bep20:0xa49c8cbbddfe4dbc8605f0f5c8f2845c5e225d22",
+    "chainId": "eip155:56",
+    "name": "Apidae",
+    "precision": 18,
+    "color": "#5A5432",
+    "icon": "https://assets.coingecko.com/coins/images/26276/thumb/ApidaeTokenLogo.png?1696525360",
+    "symbol": "APT",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xa4b6573c9ae09d81e4d1360e6402b81f52557098": {
+    "assetId": "eip155:56/bep20:0xa4b6573c9ae09d81e4d1360e6402b81f52557098",
+    "chainId": "eip155:56",
+    "name": "COR Token on BNB Smart Chain",
+    "precision": 18,
+    "color": "#062EFC",
+    "icon": "https://assets.coingecko.com/coins/images/12856/thumb/COR.png?1696512646",
+    "symbol": "COR",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xa4c53189ec5e6b14c0cc98651f6be8a2b4a749e6": {
+    "assetId": "eip155:56/bep20:0xa4c53189ec5e6b14c0cc98651f6be8a2b4a749e6",
+    "chainId": "eip155:56",
+    "name": "Ryoma",
+    "precision": 18,
+    "color": "#F4EAE9",
+    "icon": "https://assets.coingecko.com/coins/images/27047/thumb/OabnykXw_400x400.jpeg?1696526098",
+    "symbol": "RYOMA",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xa4d92138537bb0bbeaeab095381be422d785e7c4": {
+    "assetId": "eip155:56/bep20:0xa4d92138537bb0bbeaeab095381be422d785e7c4",
+    "chainId": "eip155:56",
+    "name": "SwapDEX",
+    "precision": 18,
+    "color": "#CC3484",
+    "icon": "https://assets.coingecko.com/coins/images/13717/thumb/sdx.png?1696513462",
+    "symbol": "SDXB",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xa4e068e2b8f58e6c3090174a9e4e95f5bb025ca4": {
+    "assetId": "eip155:56/bep20:0xa4e068e2b8f58e6c3090174a9e4e95f5bb025ca4",
+    "chainId": "eip155:56",
+    "name": "Babydoge2 0",
+    "precision": 9,
+    "color": "#D1C6B2",
+    "icon": "https://assets.coingecko.com/coins/images/30921/thumb/babydoge_%286%29.png?1696529765",
+    "symbol": "BABYDOGE20",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xa4eb86b4e914ff1a4297032ec7de27b7b3512a08": {
+    "assetId": "eip155:56/bep20:0xa4eb86b4e914ff1a4297032ec7de27b7b3512a08",
+    "chainId": "eip155:56",
+    "name": "Coinopy",
+    "precision": 18,
+    "color": "#844CFC",
+    "icon": "https://assets.coingecko.com/coins/images/31545/thumb/logoc.png?1696530358",
+    "symbol": "COY",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xa528d8b9cd90b06d373373c37f8f188e44cad3be": {
+    "assetId": "eip155:56/bep20:0xa528d8b9cd90b06d373373c37f8f188e44cad3be",
+    "chainId": "eip155:56",
+    "name": "Monster Ball",
+    "precision": 18,
+    "color": "#FCFCFC",
+    "icon": "https://assets.coingecko.com/coins/images/29145/thumb/05E42231-5338-4104-A074-65A00964BA6F.png?1696528105",
+    "symbol": "MFB",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xa531a733070a5ff4866d1327d82e403fa35290a6": {
+    "assetId": "eip155:56/bep20:0xa531a733070a5ff4866d1327d82e403fa35290a6",
+    "chainId": "eip155:56",
+    "name": "Catvills Coin",
+    "precision": 8,
+    "color": "#1C1C1C",
+    "icon": "https://assets.coingecko.com/coins/images/28400/thumb/JkwPmJ7.png?1696527399",
+    "symbol": "CATVILLS",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xa5331bb3a3f1e1cb98ba8160176569ac0a80e61d": {
+    "assetId": "eip155:56/bep20:0xa5331bb3a3f1e1cb98ba8160176569ac0a80e61d",
+    "chainId": "eip155:56",
+    "name": "Cats Coin  BSC ",
+    "precision": 18,
+    "color": "#797181",
+    "icon": "https://assets.coingecko.com/coins/images/29123/thumb/cats_logo.png?1696528085",
+    "symbol": "CTS",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xa5342d72d04c133180f376753f90a4b2eee29bb3": {
+    "assetId": "eip155:56/bep20:0xa5342d72d04c133180f376753f90a4b2eee29bb3",
+    "chainId": "eip155:56",
+    "name": "Decentralized Mining Exchange",
+    "precision": 18,
+    "color": "#075A5B",
+    "icon": "https://assets.coingecko.com/coins/images/14130/thumb/1_hXrVwWTpmRJkPB6Aty0npQ.png?1696513851",
+    "symbol": "DMC",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xa53e61578ff54f1ad70186be99332a6e20b6ffa9": {
+    "assetId": "eip155:56/bep20:0xa53e61578ff54f1ad70186be99332a6e20b6ffa9",
+    "chainId": "eip155:56",
+    "name": "Golden Doge",
+    "precision": 9,
+    "color": "#C2925E",
+    "icon": "https://assets.coingecko.com/coins/images/17190/thumb/Golden-Doge-Logo-200x200-White-Background.png?1696516748",
+    "symbol": "GDOGE",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xa57ac35ce91ee92caefaa8dc04140c8e232c2e50": {
+    "assetId": "eip155:56/bep20:0xa57ac35ce91ee92caefaa8dc04140c8e232c2e50",
+    "chainId": "eip155:56",
+    "name": "Pitbull",
+    "precision": 9,
+    "color": "#747474",
+    "icon": "https://assets.coingecko.com/coins/images/15927/thumb/pitbull2.png?1696515540",
+    "symbol": "PIT",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xa58950f05fea2277d2608748412bf9f802ea4901": {
+    "assetId": "eip155:56/bep20:0xa58950f05fea2277d2608748412bf9f802ea4901",
+    "chainId": "eip155:56",
+    "name": "Wall Street Games on BNB Smart Chain",
+    "precision": 18,
+    "color": "#692C7C",
+    "icon": "https://assets.coingecko.com/coins/images/15872/thumb/X3Awe42.png?1696515487",
+    "symbol": "WSG",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xa5d6a00d4d16229345f7f4b3a38db1752c3aa09c": {
+    "assetId": "eip155:56/bep20:0xa5d6a00d4d16229345f7f4b3a38db1752c3aa09c",
+    "chainId": "eip155:56",
+    "name": "Meme Lordz",
+    "precision": 9,
+    "color": "#E1F1CE",
+    "icon": "https://assets.coingecko.com/coins/images/17412/thumb/meme-lordz-icon-green.png?1696516960",
+    "symbol": "LORDZ",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xa5dec77c4d1b4eba2807c9926b182812a0cbf9eb": {
+    "assetId": "eip155:56/bep20:0xa5dec77c4d1b4eba2807c9926b182812a0cbf9eb",
+    "chainId": "eip155:56",
+    "name": "Protocon",
+    "precision": 18,
+    "color": "#C5F8F8",
+    "icon": "https://assets.coingecko.com/coins/images/25175/thumb/_symbol_200x200.png?1696524320",
+    "symbol": "PEN",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xa5e279e14efd60a8f29e5ac3b464e3de0c6bb6b8": {
+    "assetId": "eip155:56/bep20:0xa5e279e14efd60a8f29e5ac3b464e3de0c6bb6b8",
+    "chainId": "eip155:56",
+    "name": "ZAMZAM",
+    "precision": 18,
+    "color": "#3CB4FC",
+    "icon": "https://assets.coingecko.com/coins/images/22671/thumb/d7168acd189f475ea38e113af81ebf41.png?1696521983",
+    "symbol": "ZAMZAM",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xa5edc3d0d0e0a170dfc2fb6d4cfb6b8db1976e20": {
+    "assetId": "eip155:56/bep20:0xa5edc3d0d0e0a170dfc2fb6d4cfb6b8db1976e20",
+    "chainId": "eip155:56",
+    "name": "Federal Gold Coin",
+    "precision": 18,
+    "color": "#917154",
+    "icon": "https://assets.coingecko.com/coins/images/32370/thumb/WhatsApp_Image_2023-10-14_at_16.12.32.jpeg?1698031973",
+    "symbol": "FGC",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xa5f249f401ba8931899a364d8e2699b5fa1d87a9": {
+    "assetId": "eip155:56/bep20:0xa5f249f401ba8931899a364d8e2699b5fa1d87a9",
+    "chainId": "eip155:56",
+    "name": "Main on BNB Smart Chain",
+    "precision": 18,
+    "color": "#1C151E",
+    "icon": "https://assets.coingecko.com/coins/images/25258/thumb/logo_circle.png?1696524398",
+    "symbol": "MAIN",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xa5fbc3520dd4bb85fcd175e1e3b994546a2c1ee8": {
+    "assetId": "eip155:56/bep20:0xa5fbc3520dd4bb85fcd175e1e3b994546a2c1ee8",
+    "chainId": "eip155:56",
+    "name": "gotEM",
+    "precision": 18,
+    "color": "#0E0C05",
+    "icon": "https://assets.coingecko.com/coins/images/19108/thumb/logo-transparent-bg.png?1696518560",
+    "symbol": "GOTEM",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xa5ff48e326958e0ce6fdf9518de561f2b5f57da3": {
+    "assetId": "eip155:56/bep20:0xa5ff48e326958e0ce6fdf9518de561f2b5f57da3",
+    "chainId": "eip155:56",
+    "name": "Lokr on BNB Smart Chain",
+    "precision": 18,
+    "color": "#E4047C",
+    "icon": "https://assets.coingecko.com/coins/images/14692/thumb/lokr.png?1696514364",
+    "symbol": "LKR",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xa62a8a65013f789367be37e5c0afc83445f77cc2": {
+    "assetId": "eip155:56/bep20:0xa62a8a65013f789367be37e5c0afc83445f77cc2",
+    "chainId": "eip155:56",
+    "name": "Nugencoin",
+    "precision": 18,
+    "color": "#CFAF45",
+    "icon": "https://assets.coingecko.com/coins/images/28403/thumb/Nugen-coin-logo-200px_%282%29.png?1696527401",
+    "symbol": "NUGEN",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xa64455a4553c9034236734faddaddbb64ace4cc7": {
+    "assetId": "eip155:56/bep20:0xa64455a4553c9034236734faddaddbb64ace4cc7",
+    "chainId": "eip155:56",
+    "name": "Santos FC Fan Token",
+    "precision": 8,
+    "color": "#C2C0C0",
+    "icon": "https://assets.coingecko.com/coins/images/21132/thumb/santos.png?1696520511",
+    "symbol": "SANTOS",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xa6472bc7c0e2266034bb40edd8c6e8961cf45826": {
+    "assetId": "eip155:56/bep20:0xa6472bc7c0e2266034bb40edd8c6e8961cf45826",
+    "chainId": "eip155:56",
+    "name": "TourismX",
+    "precision": 4,
+    "color": "#DCE0ED",
+    "icon": "https://assets.coingecko.com/coins/images/28164/thumb/trmx.png?1696527168",
+    "symbol": "TRMX",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xa6630b22974f908a98a8139cb12ec2ebabfbe9d4": {
+    "assetId": "eip155:56/bep20:0xa6630b22974f908a98a8139cb12ec2ebabfbe9d4",
+    "chainId": "eip155:56",
+    "name": "ILUS Coin",
+    "precision": 18,
+    "color": "#302C1E",
+    "icon": "https://assets.coingecko.com/coins/images/22662/thumb/Jez4bAM4.png?1696521974",
+    "symbol": "ILUS",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xa677bc9bdb10329e488a4d8387ed7a08b2fc9005": {
+    "assetId": "eip155:56/bep20:0xa677bc9bdb10329e488a4d8387ed7a08b2fc9005",
+    "chainId": "eip155:56",
+    "name": "Magic Power",
+    "precision": 18,
+    "color": "#EDEEF4",
+    "icon": "https://assets.coingecko.com/coins/images/22011/thumb/https-Mpg-com-Logo.jpg?1696521358",
+    "symbol": "MGP",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xa67b8e40111a0edd30c3210b77aadb86ad234c43": {
+    "assetId": "eip155:56/bep20:0xa67b8e40111a0edd30c3210b77aadb86ad234c43",
+    "chainId": "eip155:56",
+    "name": "Banana Index on BNB Smart Chain",
+    "precision": 9,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/26700/thumb/6233e7f496c72994c313a50a_cactusboy90_%282%29-p-1080.png?1696525773",
+    "symbol": "BANDEX",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xa697e272a73744b343528c3bc4702f2565b2f422": {
+    "assetId": "eip155:56/bep20:0xa697e272a73744b343528c3bc4702f2565b2f422",
+    "chainId": "eip155:56",
+    "name": "Bonk on BNB Smart Chain",
+    "precision": 5,
+    "color": "#ED960F",
+    "icon": "https://assets.coingecko.com/coins/images/28600/thumb/bonk.jpg?1696527587",
+    "symbol": "BONK",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xa6c59de838f1eeb82d86f5af0750f5f656439999": {
+    "assetId": "eip155:56/bep20:0xa6c59de838f1eeb82d86f5af0750f5f656439999",
+    "chainId": "eip155:56",
+    "name": "ShopNext Loyalty Token",
+    "precision": 18,
+    "color": "#E3EAED",
+    "icon": "https://assets.coingecko.com/coins/images/28681/thumb/shopnex.jpg?1696527665",
+    "symbol": "NEXT",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xa6c897caaca3db7fd6e2d2ce1a00744f40ab87bb": {
+    "assetId": "eip155:56/bep20:0xa6c897caaca3db7fd6e2d2ce1a00744f40ab87bb",
+    "chainId": "eip155:56",
+    "name": "DeathRoad",
+    "precision": 18,
+    "color": "#2C2524",
+    "icon": "https://assets.coingecko.com/coins/images/18178/thumb/DeathRoad_token_logo_200x200-25.png?1696517678",
+    "symbol": "DRACE",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xa6f7645ed967faf708a614a2fca8d4790138586f": {
+    "assetId": "eip155:56/bep20:0xa6f7645ed967faf708a614a2fca8d4790138586f",
+    "chainId": "eip155:56",
+    "name": "MoonieNFT on BNB Smart Chain",
+    "precision": 18,
+    "color": "#1B4CFC",
+    "icon": "https://assets.coingecko.com/coins/images/18226/thumb/sq8oK6mX_400x400.png?1696517723",
+    "symbol": "MNY",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xa719b8ab7ea7af0ddb4358719a34631bb79d15dc": {
+    "assetId": "eip155:56/bep20:0xa719b8ab7ea7af0ddb4358719a34631bb79d15dc",
+    "chainId": "eip155:56",
+    "name": "Ferrum Network on BNB Smart Chain",
+    "precision": 18,
+    "color": "#DAD5C6",
+    "icon": "https://assets.coingecko.com/coins/images/8251/thumb/FRM.png?1696508455",
+    "symbol": "FRM",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xa7266989b0df675cc8257d53b6bc1358faf6626a": {
+    "assetId": "eip155:56/bep20:0xa7266989b0df675cc8257d53b6bc1358faf6626a",
+    "chainId": "eip155:56",
+    "name": "Infinity PAD",
+    "precision": 18,
+    "color": "#1E1E1E",
+    "icon": "https://assets.coingecko.com/coins/images/27443/thumb/idiDT_BJ_400x400.jpeg?1696526484",
+    "symbol": "IPAD",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xa73164db271931cf952cbaeff9e8f5817b42fa5c": {
+    "assetId": "eip155:56/bep20:0xa73164db271931cf952cbaeff9e8f5817b42fa5c",
+    "chainId": "eip155:56",
+    "name": "Landshare",
+    "precision": 18,
+    "color": "#F8D548",
+    "icon": "https://assets.coingecko.com/coins/images/17507/thumb/Landshare.png?1696517046",
+    "symbol": "LAND",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xa75d9ca2a0a1d547409d82e1b06618ec284a2ced": {
+    "assetId": "eip155:56/bep20:0xa75d9ca2a0a1d547409d82e1b06618ec284a2ced",
+    "chainId": "eip155:56",
+    "name": "Wombex on BNB Smart Chain",
+    "precision": 18,
+    "color": "#342C1D",
+    "icon": "https://assets.coingecko.com/coins/images/27844/thumb/WMX_logo.png?1696526863",
+    "symbol": "WMX",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xa75e7928d3de682e3f44da60c26f33117c4e6c5c": {
+    "assetId": "eip155:56/bep20:0xa75e7928d3de682e3f44da60c26f33117c4e6c5c",
+    "chainId": "eip155:56",
+    "name": "Propel on BNB Smart Chain",
+    "precision": 18,
+    "color": "#D88D11",
+    "icon": "https://assets.coingecko.com/coins/images/21290/thumb/img_circle_1.png?1696520660",
+    "symbol": "PEL",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xa77346760341460b42c230ca6d21d4c8e743fa9c": {
+    "assetId": "eip155:56/bep20:0xa77346760341460b42c230ca6d21d4c8e743fa9c",
+    "chainId": "eip155:56",
+    "name": "MicroPets  OLD ",
+    "precision": 18,
+    "color": "#ABA5C2",
+    "icon": "https://assets.coingecko.com/coins/images/19175/thumb/pets.png?1696518624",
+    "symbol": "PETS",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xa7751516e06e1715264306a51437774bf94266dc": {
+    "assetId": "eip155:56/bep20:0xa7751516e06e1715264306a51437774bf94266dc",
+    "chainId": "eip155:56",
+    "name": "Billiard Crypto",
+    "precision": 18,
+    "color": "#6A17BB",
+    "icon": "https://assets.coingecko.com/coins/images/28635/thumb/200x200_%283%29.png?1696527619",
+    "symbol": "BIC",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xa776f5b86cc520861f55a261515264e3bd86e72e": {
+    "assetId": "eip155:56/bep20:0xa776f5b86cc520861f55a261515264e3bd86e72e",
+    "chainId": "eip155:56",
+    "name": "Sphynx Labs",
+    "precision": 18,
+    "color": "#560BC7",
+    "icon": "https://assets.coingecko.com/coins/images/30142/thumb/photo_2023-05-03_21.44.17.jpeg?1696529063",
+    "symbol": "SPHYNX",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xa77d560e34bd6a8d7265f754b4fcd65d9a8e5619": {
+    "assetId": "eip155:56/bep20:0xa77d560e34bd6a8d7265f754b4fcd65d9a8e5619",
+    "chainId": "eip155:56",
+    "name": "MrWeb Finance",
+    "precision": 18,
+    "color": "#E2DDDA",
+    "icon": "https://assets.coingecko.com/coins/images/27173/thumb/jd0i3xri_400x400.jpeg?1696526223",
+    "symbol": "AMA",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xa78628ecba2bf5fedf3fe27a7cedaa363b46708f": {
+    "assetId": "eip155:56/bep20:0xa78628ecba2bf5fedf3fe27a7cedaa363b46708f",
+    "chainId": "eip155:56",
+    "name": "Little Bunny Rocket",
+    "precision": 9,
+    "color": "#C9EAEF",
+    "icon": "https://assets.coingecko.com/coins/images/19233/thumb/lrb.PNG?1696518679",
+    "symbol": "LBR",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xa78775bba7a542f291e5ef7f13c6204e704a90ba": {
+    "assetId": "eip155:56/bep20:0xa78775bba7a542f291e5ef7f13c6204e704a90ba",
+    "chainId": "eip155:56",
+    "name": "Metafluence",
+    "precision": 18,
+    "color": "#05090B",
+    "icon": "https://assets.coingecko.com/coins/images/22998/thumb/Asset_1.png?1696522294",
+    "symbol": "METO",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xa791dcb7532ec7301d78c4fea170e7bdeca31c0b": {
+    "assetId": "eip155:56/bep20:0xa791dcb7532ec7301d78c4fea170e7bdeca31c0b",
+    "chainId": "eip155:56",
+    "name": "Trade Genius AI",
+    "precision": 18,
+    "color": "#2D2D2D",
+    "icon": "https://assets.coingecko.com/coins/images/32242/thumb/AIGENIUS.jpg?1696952910",
+    "symbol": "AIGENIUS",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xa79b1dea0d35d39003630ba3e10e5ba2d7318082": {
+    "assetId": "eip155:56/bep20:0xa79b1dea0d35d39003630ba3e10e5ba2d7318082",
+    "chainId": "eip155:56",
+    "name": "Spider Man",
+    "precision": 9,
+    "color": "#C81335",
+    "icon": "https://assets.coingecko.com/coins/images/30819/thumb/Frame_2229.png?1696529675",
+    "symbol": "SPIDER",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xa7aea81bb187bde731019ee0ca665c751179c102": {
+    "assetId": "eip155:56/bep20:0xa7aea81bb187bde731019ee0ca665c751179c102",
+    "chainId": "eip155:56",
+    "name": "MetaPlanet AI",
+    "precision": 18,
+    "color": "#2C1C1D",
+    "icon": "https://assets.coingecko.com/coins/images/29269/thumb/MPLAI.jpg?1696528222",
+    "symbol": "MPLAI",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xa7bd657c5838472ddf85ff0797a2e6fce8fd4833": {
+    "assetId": "eip155:56/bep20:0xa7bd657c5838472ddf85ff0797a2e6fce8fd4833",
+    "chainId": "eip155:56",
+    "name": "ArbiPad on BNB Smart Chain",
+    "precision": 18,
+    "color": "#2871B1",
+    "icon": "https://assets.coingecko.com/coins/images/30275/thumb/ARBI_Logo.png?1696529181",
+    "symbol": "ARBI",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xa7d9d54a98adc16e6aa980e845c740053b5b7771": {
+    "assetId": "eip155:56/bep20:0xa7d9d54a98adc16e6aa980e845c740053b5b7771",
+    "chainId": "eip155:56",
+    "name": "Mastery of Monsters",
+    "precision": 18,
+    "color": "#604C49",
+    "icon": "https://assets.coingecko.com/coins/images/31310/thumb/IMG_20230813_124313_257.png?1696530129",
+    "symbol": "MOM",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xa7deade7bbba2bf0af1572a25b47e477749ef383": {
+    "assetId": "eip155:56/bep20:0xa7deade7bbba2bf0af1572a25b47e477749ef383",
+    "chainId": "eip155:56",
+    "name": "Primo DAO",
+    "precision": 18,
+    "color": "#04A44C",
+    "icon": "https://assets.coingecko.com/coins/images/25508/thumb/19700.png?1696524641",
+    "symbol": "PRIMO",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xa7f552078dcc247c2684336020c03648500c6d9f": {
+    "assetId": "eip155:56/bep20:0xa7f552078dcc247c2684336020c03648500c6d9f",
+    "chainId": "eip155:56",
+    "name": "Ellipsis  OLD ",
+    "precision": 18,
+    "color": "#508EE0",
+    "icon": "https://assets.coingecko.com/coins/images/14498/thumb/ellipsis-light.png?1696514184",
+    "symbol": "EPS",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xa85128073e25a0190b86b72e3976f8b02dad757d": {
+    "assetId": "eip155:56/bep20:0xa85128073e25a0190b86b72e3976f8b02dad757d",
+    "chainId": "eip155:56",
+    "name": "B2B Token",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/32936/thumb/B2B_LOGO-.png?1699871351",
+    "symbol": "B2B",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xa865197a84e780957422237b5d152772654341f3": {
+    "assetId": "eip155:56/bep20:0xa865197a84e780957422237b5d152772654341f3",
+    "chainId": "eip155:56",
+    "name": "OpenLeverage on BNB Smart Chain",
+    "precision": 18,
+    "color": "#CCA0D6",
+    "icon": "https://assets.coingecko.com/coins/images/26098/thumb/256x256_OLE_Token_Logo.png?1696525189",
+    "symbol": "OLE",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xa87584cfeb892c33a1c9a233e4a733b45c4160e6": {
+    "assetId": "eip155:56/bep20:0xa87584cfeb892c33a1c9a233e4a733b45c4160e6",
+    "chainId": "eip155:56",
+    "name": "Digihealth",
+    "precision": 18,
+    "color": "#E2E0F1",
+    "icon": "https://assets.coingecko.com/coins/images/28391/thumb/Its.png?1696527390",
+    "symbol": "DGH",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xa896928209881bcf9fc363210473bb10eb0c0a10": {
+    "assetId": "eip155:56/bep20:0xa896928209881bcf9fc363210473bb10eb0c0a10",
+    "chainId": "eip155:56",
+    "name": "NEWTOWNGAMING",
+    "precision": 9,
+    "color": "#618699",
+    "icon": "https://assets.coingecko.com/coins/images/26778/thumb/IMG_20220809_093430_348.jpg?1696525841",
+    "symbol": "NTG",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xa89bf95c5f15a847c8eb8d348cd7fed719ad7d80": {
+    "assetId": "eip155:56/bep20:0xa89bf95c5f15a847c8eb8d348cd7fed719ad7d80",
+    "chainId": "eip155:56",
+    "name": "Chat AI on BNB Smart Chain",
+    "precision": 18,
+    "color": "#DCDFE1",
+    "icon": "https://assets.coingecko.com/coins/images/29441/thumb/200.png?1696528389",
+    "symbol": "AI",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xa8cd6e4bf45724d3ac27f9e31e47ba4e399a7b52": {
+    "assetId": "eip155:56/bep20:0xa8cd6e4bf45724d3ac27f9e31e47ba4e399a7b52",
+    "chainId": "eip155:56",
+    "name": "Tarot V1 on BNB Smart Chain",
+    "precision": 18,
+    "color": "#1C1C1C",
+    "icon": "https://assets.coingecko.com/coins/images/17881/thumb/tarot-200px.png?1696517403",
+    "symbol": "TAROT",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xa8d20b8fa8a611392312e91350e453777aa7f09a": {
+    "assetId": "eip155:56/bep20:0xa8d20b8fa8a611392312e91350e453777aa7f09a",
+    "chainId": "eip155:56",
+    "name": "Pumpkin Monster Token",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/33001/thumb/Logo-whit.png?1700121264",
+    "symbol": "PUM",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xa90da9e3c71ddfcc2d793f80029acbd21a4a0db6": {
+    "assetId": "eip155:56/bep20:0xa90da9e3c71ddfcc2d793f80029acbd21a4a0db6",
+    "chainId": "eip155:56",
+    "name": "GAGARIN",
+    "precision": 18,
+    "color": "#3C5CFC",
+    "icon": "https://assets.coingecko.com/coins/images/28898/thumb/GGR-200x200.png?1696527874",
+    "symbol": "GGR",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xa91c7bc1e07996a188c1a5b1cfdff450389d8acf": {
+    "assetId": "eip155:56/bep20:0xa91c7bc1e07996a188c1a5b1cfdff450389d8acf",
+    "chainId": "eip155:56",
+    "name": "SolChicks",
+    "precision": 8,
+    "color": "#C89671",
+    "icon": "https://assets.coingecko.com/coins/images/20978/thumb/chicks.png?1696520364",
+    "symbol": "CHICKS",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xa922a70569a7555518bf4ded5094661a965e23ca": {
+    "assetId": "eip155:56/bep20:0xa922a70569a7555518bf4ded5094661a965e23ca",
+    "chainId": "eip155:56",
+    "name": "MN Bridge on BNB Smart Chain",
+    "precision": 8,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/32199/thumb/MNB.jpg?1696745894",
+    "symbol": "MNB",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xa93e4bbe09b834b5a13dcd832daeaefe79fb4ae9": {
+    "assetId": "eip155:56/bep20:0xa93e4bbe09b834b5a13dcd832daeaefe79fb4ae9",
+    "chainId": "eip155:56",
+    "name": "Red Pepe",
+    "precision": 18,
+    "color": "#B72F31",
+    "icon": "https://assets.coingecko.com/coins/images/30449/thumb/redpepelogo.png?1696529335",
+    "symbol": "REDPEPE",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xa94fb437b8bacb591c6b828bef5a837afe542100": {
+    "assetId": "eip155:56/bep20:0xa94fb437b8bacb591c6b828bef5a837afe542100",
+    "chainId": "eip155:56",
+    "name": "NETZERO",
+    "precision": 18,
+    "color": "#16ACF1",
+    "icon": "https://assets.coingecko.com/coins/images/27676/thumb/Untitled_design_%281%29.png?1696526704",
+    "symbol": "NZERO",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xa975be9202ce26dde8bce29034be42bcd4861e36": {
+    "assetId": "eip155:56/bep20:0xa975be9202ce26dde8bce29034be42bcd4861e36",
+    "chainId": "eip155:56",
+    "name": "VIRTUAL X",
+    "precision": 8,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/32876/thumb/VRL.jpg?1699705530",
+    "symbol": "VRL",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xa997e5aaae60987eb0b59a336dce6b158b113100": {
+    "assetId": "eip155:56/bep20:0xa997e5aaae60987eb0b59a336dce6b158b113100",
+    "chainId": "eip155:56",
+    "name": "SeChain on BNB Smart Chain",
+    "precision": 3,
+    "color": "#F8F5CF",
+    "icon": "https://assets.coingecko.com/coins/images/11961/thumb/2AsGMTeI_400x400.jpg?1696511821",
+    "symbol": "SNN",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xa9b038285f43cd6fe9e16b4c80b4b9bccd3c161b": {
+    "assetId": "eip155:56/bep20:0xa9b038285f43cd6fe9e16b4c80b4b9bccd3c161b",
+    "chainId": "eip155:56",
+    "name": "Flourishing AI",
+    "precision": 18,
+    "color": "#382F7E",
+    "icon": "https://assets.coingecko.com/coins/images/17127/thumb/logo-circle.png?1696516686",
+    "symbol": "AI",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xa9c41a46a6b3531d28d5c32f6633dd2ff05dfb90": {
+    "assetId": "eip155:56/bep20:0xa9c41a46a6b3531d28d5c32f6633dd2ff05dfb90",
+    "chainId": "eip155:56",
+    "name": "WaultSwap",
+    "precision": 18,
+    "color": "#D4E4E6",
+    "icon": "https://assets.coingecko.com/coins/images/14882/thumb/wex_v3.png?1696514546",
+    "symbol": "WEX",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xa9cf023a5f6de6863f02761f6166799ec2595758": {
+    "assetId": "eip155:56/bep20:0xa9cf023a5f6de6863f02761f6166799ec2595758",
+    "chainId": "eip155:56",
+    "name": "Blast Frontiers",
+    "precision": 18,
+    "color": "#141F24",
+    "icon": "https://assets.coingecko.com/coins/images/30857/thumb/IMG_20230625_123548_616.jpg?1696529704",
+    "symbol": "BLAST",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xa9d75cc3405f0450955050c520843f99aff8749d": {
+    "assetId": "eip155:56/bep20:0xa9d75cc3405f0450955050c520843f99aff8749d",
+    "chainId": "eip155:56",
+    "name": "Warena",
+    "precision": 18,
+    "color": "#1D1C2C",
+    "icon": "https://assets.coingecko.com/coins/images/18888/thumb/RENA_Web_Black_Square.png?1696518347",
+    "symbol": "RENA",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xa9e22e82d5a497c764a9fcd566bc8df933b74fbe": {
+    "assetId": "eip155:56/bep20:0xa9e22e82d5a497c764a9fcd566bc8df933b74fbe",
+    "chainId": "eip155:56",
+    "name": "Agritech",
+    "precision": 19,
+    "color": "#042504",
+    "icon": "https://assets.coingecko.com/coins/images/30052/thumb/Agritech_Final_200x200_.png?1696528974",
+    "symbol": "AGT",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xa9f059f63cd432b65a723eeeff69304fd780070c": {
+    "assetId": "eip155:56/bep20:0xa9f059f63cd432b65a723eeeff69304fd780070c",
+    "chainId": "eip155:56",
+    "name": "Sanji Inu",
+    "precision": 9,
+    "color": "#CBC47B",
+    "icon": "https://assets.coingecko.com/coins/images/28301/thumb/photo_2022-04-04_23-49-34.jpg?1696527300",
+    "symbol": "SANJI",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xaa076b62efc6f357882e07665157a271ab46a063": {
+    "assetId": "eip155:56/bep20:0xaa076b62efc6f357882e07665157a271ab46a063",
+    "chainId": "eip155:56",
+    "name": "Pleasure Coin on BNB Smart Chain",
+    "precision": 18,
+    "color": "#8F04CA",
+    "icon": "https://assets.coingecko.com/coins/images/15315/thumb/pleasurecoin-icon.png?1696514965",
+    "symbol": "NSFW",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xaa20c2e278d99f978989daa4460f933745f862d5": {
+    "assetId": "eip155:56/bep20:0xaa20c2e278d99f978989daa4460f933745f862d5",
+    "chainId": "eip155:56",
+    "name": "Ark Rivals",
+    "precision": 18,
+    "color": "#211618",
+    "icon": "https://assets.coingecko.com/coins/images/23852/thumb/logo1--1-.png?1696523054",
+    "symbol": "ARKN",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xaa3ed6e6ea3ed78d4d57e373aabd6f54df5bb508": {
+    "assetId": "eip155:56/bep20:0xaa3ed6e6ea3ed78d4d57e373aabd6f54df5bb508",
+    "chainId": "eip155:56",
+    "name": "NGATiger",
+    "precision": 18,
+    "color": "#578C79",
+    "icon": "https://assets.coingecko.com/coins/images/29633/thumb/nga200.png?1696528571",
+    "symbol": "NGA",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xaa4ce8d0adfda33dcef335c595c7d042b5cadcf2": {
+    "assetId": "eip155:56/bep20:0xaa4ce8d0adfda33dcef335c595c7d042b5cadcf2",
+    "chainId": "eip155:56",
+    "name": "ToEarnNow",
+    "precision": 18,
+    "color": "#B10C71",
+    "icon": "https://assets.coingecko.com/coins/images/31710/thumb/IMG_3147.PNG?1696530532",
+    "symbol": "NOW",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xaa88c603d142c371ea0eac8756123c5805edee03": {
+    "assetId": "eip155:56/bep20:0xaa88c603d142c371ea0eac8756123c5805edee03",
+    "chainId": "eip155:56",
+    "name": "The Doge NFT on BNB Smart Chain",
+    "precision": 18,
+    "color": "#D0B882",
+    "icon": "https://assets.coingecko.com/coins/images/18111/thumb/Doge.png?1696517615",
+    "symbol": "DOG",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xaa88fd757fa81ebbbce0eb1f324172d0e446093e": {
+    "assetId": "eip155:56/bep20:0xaa88fd757fa81ebbbce0eb1f324172d0e446093e",
+    "chainId": "eip155:56",
+    "name": "Reign of Terror",
+    "precision": 18,
+    "color": "#D4141C",
+    "icon": "https://assets.coingecko.com/coins/images/29804/thumb/Reign_of_Terror_Symbol.png?1696528733",
+    "symbol": "REIGN",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xaa9826732f3a4973ff8b384b3f4e3c70c2984651": {
+    "assetId": "eip155:56/bep20:0xaa9826732f3a4973ff8b384b3f4e3c70c2984651",
+    "chainId": "eip155:56",
+    "name": "CryptoXpress",
+    "precision": 18,
+    "color": "#7492BD",
+    "icon": "https://assets.coingecko.com/coins/images/20467/thumb/xvlKHAMJ_400x400.jpg?1696519876",
+    "symbol": "XPRESS",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xaa9e582e5751d703f85912903bacaddfed26484c": {
+    "assetId": "eip155:56/bep20:0xaa9e582e5751d703f85912903bacaddfed26484c",
+    "chainId": "eip155:56",
+    "name": "Hacken on BNB Smart Chain",
+    "precision": 8,
+    "color": "#3CF3D3",
+    "icon": "https://assets.coingecko.com/coins/images/11081/thumb/hacken-symbol-with-bg.png?1696511022",
+    "symbol": "HAI",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xaaa9214f675316182eaa21c85f0ca99160cc3aaa": {
+    "assetId": "eip155:56/bep20:0xaaa9214f675316182eaa21c85f0ca99160cc3aaa",
+    "chainId": "eip155:56",
+    "name": "QANplatform on BNB Smart Chain",
+    "precision": 18,
+    "color": "#9C9C9C",
+    "icon": "https://assets.coingecko.com/coins/images/15977/thumb/qanx.png?1696515591",
+    "symbol": "QANX",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xaab09b5cd1694d12c8c980306f5e2f5d65b00e1c": {
+    "assetId": "eip155:56/bep20:0xaab09b5cd1694d12c8c980306f5e2f5d65b00e1c",
+    "chainId": "eip155:56",
+    "name": "Revomon",
+    "precision": 18,
+    "color": "#2752C9",
+    "icon": "https://assets.coingecko.com/coins/images/31269/thumb/revo.png?1696530093",
+    "symbol": "REVO",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xab15b79880f11cffb58db25ec2bc39d28c4d80d2": {
+    "assetId": "eip155:56/bep20:0xab15b79880f11cffb58db25ec2bc39d28c4d80d2",
+    "chainId": "eip155:56",
+    "name": "StarMon",
+    "precision": 18,
+    "color": "#DF8D0B",
+    "icon": "https://assets.coingecko.com/coins/images/18130/thumb/StarMon.png?1696517633",
+    "symbol": "SMON",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xab287e6d370c61f105630e656b5468acb4d00423": {
+    "assetId": "eip155:56/bep20:0xab287e6d370c61f105630e656b5468acb4d00423",
+    "chainId": "eip155:56",
+    "name": "BinStarter",
+    "precision": 18,
+    "color": "#FCBC04",
+    "icon": "https://assets.coingecko.com/coins/images/17554/thumb/BSR200X200.png?1696517090",
+    "symbol": "BSR",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xab3bcb0e39b505de2a3545ce721e117de75d1e1d": {
+    "assetId": "eip155:56/bep20:0xab3bcb0e39b505de2a3545ce721e117de75d1e1d",
+    "chainId": "eip155:56",
+    "name": "Strelka AI",
+    "precision": 18,
+    "color": "#EAE2E3",
+    "icon": "https://assets.coingecko.com/coins/images/29208/thumb/Strelka-logo.png?1696528167",
+    "symbol": "STRELKAAI",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xab49ca143fc26f098823b9f05926657b806952a6": {
+    "assetId": "eip155:56/bep20:0xab49ca143fc26f098823b9f05926657b806952a6",
+    "chainId": "eip155:56",
+    "name": "GainSpot",
+    "precision": 18,
+    "color": "#DA0CA4",
+    "icon": "https://assets.coingecko.com/coins/images/32093/thumb/Logo-200x200-1.png?1696530891",
+    "symbol": "GAIN",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xab4e026a2f6f6265c29bbb4c565e66968e3d4962": {
+    "assetId": "eip155:56/bep20:0xab4e026a2f6f6265c29bbb4c565e66968e3d4962",
+    "chainId": "eip155:56",
+    "name": "ScapesMania",
+    "precision": 18,
+    "color": "#F4DC84",
+    "icon": "https://assets.coingecko.com/coins/images/30406/thumb/token_scapesmania_200x200px.png?1696529295",
+    "symbol": "MANIA",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xab725d0a10c3f24725c89f5765ae5794a26c1336": {
+    "assetId": "eip155:56/bep20:0xab725d0a10c3f24725c89f5765ae5794a26c1336",
+    "chainId": "eip155:56",
+    "name": "Inery",
+    "precision": 18,
+    "color": "#0C0840",
+    "icon": "https://assets.coingecko.com/coins/images/26215/thumb/R9hQxqQK_400x400.jpg?1696525300",
+    "symbol": "INR",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xab785054251db0fc44538f5deebe7507b748b692": {
+    "assetId": "eip155:56/bep20:0xab785054251db0fc44538f5deebe7507b748b692",
+    "chainId": "eip155:56",
+    "name": "Jasan Wellness",
+    "precision": 8,
+    "color": "#836B3D",
+    "icon": "https://assets.coingecko.com/coins/images/26143/thumb/jw.png?1696525231",
+    "symbol": "JW",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xab8c98491816fede394582f7758a5effeb4368d7": {
+    "assetId": "eip155:56/bep20:0xab8c98491816fede394582f7758a5effeb4368d7",
+    "chainId": "eip155:56",
+    "name": "TrumpCoin",
+    "precision": 9,
+    "color": "#151921",
+    "icon": "https://assets.coingecko.com/coins/images/30391/thumb/photo_2023-05-12_01-14-11.png?1696529280",
+    "symbol": "DTC",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xabc66bfd5fba9c5985c01805413d0beedd5d4267": {
+    "assetId": "eip155:56/bep20:0xabc66bfd5fba9c5985c01805413d0beedd5d4267",
+    "chainId": "eip155:56",
+    "name": "Floki CEO Coin",
+    "precision": 7,
+    "color": "#543E48",
+    "icon": "https://assets.coingecko.com/coins/images/29414/thumb/LOGO.png?1696528363",
+    "symbol": "FCC",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xabc69f2025bdb12efcdb8fd048d240fff943ca82": {
+    "assetId": "eip155:56/bep20:0xabc69f2025bdb12efcdb8fd048d240fff943ca82",
+    "chainId": "eip155:56",
+    "name": "Vanity",
+    "precision": 9,
+    "color": "#252526",
+    "icon": "https://assets.coingecko.com/coins/images/15899/thumb/GGkuplD_%281%29.png?1696515514",
+    "symbol": "VNY",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xac41fb8013c0b63588fc63997785a5d79e73eb28": {
+    "assetId": "eip155:56/bep20:0xac41fb8013c0b63588fc63997785a5d79e73eb28",
+    "chainId": "eip155:56",
+    "name": "Frz Solar System",
+    "precision": 18,
+    "color": "#F3F0E1",
+    "icon": "https://assets.coingecko.com/coins/images/24368/thumb/1100x800_cropped.jpg?1696523552",
+    "symbol": "FRZSS",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xac472d0eed2b8a2f57a6e304ea7ebd8e88d1d36f": {
+    "assetId": "eip155:56/bep20:0xac472d0eed2b8a2f57a6e304ea7ebd8e88d1d36f",
+    "chainId": "eip155:56",
+    "name": "Anime on BNB Smart Chain",
+    "precision": 18,
+    "color": "#A6AFCA",
+    "icon": "https://assets.coingecko.com/coins/images/13792/thumb/ani.png?1696513541",
+    "symbol": "ANI",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xac4ff793053c9fe8163020df5054865d925f9bbd": {
+    "assetId": "eip155:56/bep20:0xac4ff793053c9fe8163020df5054865d925f9bbd",
+    "chainId": "eip155:56",
+    "name": "Plxyer",
+    "precision": 18,
+    "color": "#242A34",
+    "icon": "https://assets.coingecko.com/coins/images/31346/thumb/200X200.png?1696530163",
+    "symbol": "PLXY",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xac51066d7bec65dc4589368da368b212745d63e8": {
+    "assetId": "eip155:56/bep20:0xac51066d7bec65dc4589368da368b212745d63e8",
+    "chainId": "eip155:56",
+    "name": "My Neighbor Alice on BNB Smart Chain",
+    "precision": 6,
+    "color": "#F6F5F4",
+    "icon": "https://assets.coingecko.com/coins/images/14375/thumb/alice_logo.jpg?1696514067",
+    "symbol": "ALICE",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xac55b04af8e9067d6c53785b34113e99e10c2a11": {
+    "assetId": "eip155:56/bep20:0xac55b04af8e9067d6c53785b34113e99e10c2a11",
+    "chainId": "eip155:56",
+    "name": "Doom Hero Dao",
+    "precision": 18,
+    "color": "#6E584B",
+    "icon": "https://assets.coingecko.com/coins/images/22234/thumb/dhd.PNG?1696521575",
+    "symbol": "DHD",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xac5d23ce5e4a5eb11a5407a5fbee201a75e8c8ad": {
+    "assetId": "eip155:56/bep20:0xac5d23ce5e4a5eb11a5407a5fbee201a75e8c8ad",
+    "chainId": "eip155:56",
+    "name": "Internet Money  BSC ",
+    "precision": 18,
+    "color": "#FBCC15",
+    "icon": "https://assets.coingecko.com/coins/images/29449/thumb/IM_Circle_200.png?1696528396",
+    "symbol": "IM",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xac68931b666e086e9de380cfdb0fb5704a35dc2d": {
+    "assetId": "eip155:56/bep20:0xac68931b666e086e9de380cfdb0fb5704a35dc2d",
+    "chainId": "eip155:56",
+    "name": "BNB Tiger Inu",
+    "precision": 9,
+    "color": "#C89A5D",
+    "icon": "https://assets.coingecko.com/coins/images/22565/thumb/IMG-20220111-212721-633.jpg?1696521884",
+    "symbol": "BNBTIGER",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xac83271abb4ec95386f08ad2b904a46c61777cef": {
+    "assetId": "eip155:56/bep20:0xac83271abb4ec95386f08ad2b904a46c61777cef",
+    "chainId": "eip155:56",
+    "name": "NFTrade on BNB Smart Chain",
+    "precision": 18,
+    "color": "#ECF4FC",
+    "icon": "https://assets.coingecko.com/coins/images/18578/thumb/nftrade.png?1696518055",
+    "symbol": "NFTD",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xac86e5f9ba48d680516df50c72928c2ec50f3025": {
+    "assetId": "eip155:56/bep20:0xac86e5f9ba48d680516df50c72928c2ec50f3025",
+    "chainId": "eip155:56",
+    "name": "Phoenix Finance on BNB Smart Chain",
+    "precision": 18,
+    "color": "#CD2628",
+    "icon": "https://assets.coingecko.com/coins/images/17675/thumb/phx_logo.png?1696517205",
+    "symbol": "PHX",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xac927db34e4648781a32a9a4b673cee28c4ec4fe": {
+    "assetId": "eip155:56/bep20:0xac927db34e4648781a32a9a4b673cee28c4ec4fe",
+    "chainId": "eip155:56",
+    "name": "4 Next Unicorn",
+    "precision": 8,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/33061/thumb/4_Next_Unicorn_LOGO.png?1700493326",
+    "symbol": "NXTU",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xacb2d47827c9813ae26de80965845d80935afd0b": {
+    "assetId": "eip155:56/bep20:0xacb2d47827c9813ae26de80965845d80935afd0b",
+    "chainId": "eip155:56",
+    "name": "MacaronSwap on BNB Smart Chain",
+    "precision": 18,
+    "color": "#6A4A84",
+    "icon": "https://assets.coingecko.com/coins/images/14633/thumb/macaron.png?1696514311",
+    "symbol": "MCRN",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xacb8f52dc63bb752a51186d1c55868adbffee9c1": {
+    "assetId": "eip155:56/bep20:0xacb8f52dc63bb752a51186d1c55868adbffee9c1",
+    "chainId": "eip155:56",
+    "name": "BunnyPark",
+    "precision": 18,
+    "color": "#ED7F95",
+    "icon": "https://assets.coingecko.com/coins/images/15382/thumb/8zt0tjy.jpg?1696515029",
+    "symbol": "BP",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xacbe25ad33b998c7c4b8442f21d914da0902aeb6": {
+    "assetId": "eip155:56/bep20:0xacbe25ad33b998c7c4b8442f21d914da0902aeb6",
+    "chainId": "eip155:56",
+    "name": "SwirlToken",
+    "precision": 9,
+    "color": "#F6F4E5",
+    "icon": "https://assets.coingecko.com/coins/images/31143/thumb/gAV4qo_s_400x400.jpg?1696529972",
+    "symbol": "SWIRL",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xace3574b8b054e074473a9bd002e5dc6dd3dff1b": {
+    "assetId": "eip155:56/bep20:0xace3574b8b054e074473a9bd002e5dc6dd3dff1b",
+    "chainId": "eip155:56",
+    "name": "RBX on BNB Smart Chain",
+    "precision": 18,
+    "color": "#B43C2C",
+    "icon": "https://assets.coingecko.com/coins/images/19253/thumb/output-onlinepngtools-9.png?1696518698",
+    "symbol": "RBX",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xacf34edcc424128cccc730bf85cdaceebcb3eece": {
+    "assetId": "eip155:56/bep20:0xacf34edcc424128cccc730bf85cdaceebcb3eece",
+    "chainId": "eip155:56",
+    "name": "Voice Street on BNB Smart Chain",
+    "precision": 18,
+    "color": "#C8D2CE",
+    "icon": "https://assets.coingecko.com/coins/images/23147/thumb/LbMUkaD9_400x400.jpg?1696522439",
+    "symbol": "VST",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xacfc95585d80ab62f67a14c566c1b7a49fe91167": {
+    "assetId": "eip155:56/bep20:0xacfc95585d80ab62f67a14c566c1b7a49fe91167",
+    "chainId": "eip155:56",
+    "name": "FEG BSC  OLD ",
+    "precision": 9,
+    "color": "#3A7EFA",
+    "icon": "https://assets.coingecko.com/coins/images/14533/thumb/feg.png?1696514217",
+    "symbol": "FEG",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xacff4e9e9110971e1a4d8f013f5f97dd8fb4f430": {
+    "assetId": "eip155:56/bep20:0xacff4e9e9110971e1a4d8f013f5f97dd8fb4f430",
+    "chainId": "eip155:56",
+    "name": "KING FOREVER",
+    "precision": 9,
+    "color": "#D09A2E",
+    "icon": "https://assets.coingecko.com/coins/images/21706/thumb/king200.png?1696521062",
+    "symbol": "KFR",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xad04ac36791d923deb082da4f91ab71675dd18fb": {
+    "assetId": "eip155:56/bep20:0xad04ac36791d923deb082da4f91ab71675dd18fb",
+    "chainId": "eip155:56",
+    "name": "Meli Games",
+    "precision": 18,
+    "color": "#A45C36",
+    "icon": "https://assets.coingecko.com/coins/images/20211/thumb/meli_games.PNG?1696519621",
+    "symbol": "MELI",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xad0926ecf31719263dc86426024794332d9dd9a3": {
+    "assetId": "eip155:56/bep20:0xad0926ecf31719263dc86426024794332d9dd9a3",
+    "chainId": "eip155:56",
+    "name": "Arcas",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/17404/thumb/IMG_6452.jpeg?1699087325",
+    "symbol": "ARCAS",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xad1898d4d222ccb2ae8e36585c7bf2a59984a736": {
+    "assetId": "eip155:56/bep20:0xad1898d4d222ccb2ae8e36585c7bf2a59984a736",
+    "chainId": "eip155:56",
+    "name": "Edgeware on BNB Smart Chain",
+    "precision": 18,
+    "color": "#FC3C84",
+    "icon": "https://assets.coingecko.com/coins/images/8452/thumb/logo-edgeware.png?1696508638",
+    "symbol": "EDG",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xad29abb318791d579433d831ed122afeaf29dcfe": {
+    "assetId": "eip155:56/bep20:0xad29abb318791d579433d831ed122afeaf29dcfe",
+    "chainId": "eip155:56",
+    "name": "Wrapped Fantom on BNB Smart Chain",
+    "precision": 18,
+    "color": "#8ED8F4",
+    "icon": "https://assets.coingecko.com/coins/images/16036/thumb/Fantom.png?1696515646",
+    "symbol": "WFTM",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xad2c9433c8cada6aa01271edb300975a68db7d02": {
+    "assetId": "eip155:56/bep20:0xad2c9433c8cada6aa01271edb300975a68db7d02",
+    "chainId": "eip155:56",
+    "name": "WORLD FOOTBALL1",
+    "precision": 18,
+    "color": "#433552",
+    "icon": "https://assets.coingecko.com/coins/images/32291/thumb/wofo1_logo_200-200.png?1697182848",
+    "symbol": "WOFO1",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xad3063fe9df7355fc6e008c04f8da6e02b40304e": {
+    "assetId": "eip155:56/bep20:0xad3063fe9df7355fc6e008c04f8da6e02b40304e",
+    "chainId": "eip155:56",
+    "name": "Optimus Al  BSC ",
+    "precision": 9,
+    "color": "#A6A6A2",
+    "icon": "https://assets.coingecko.com/coins/images/29724/thumb/IMG_20230327_231606_933.png?1696528655",
+    "symbol": "OPTIMUSAL",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xad5452be97e257f7312ac7c681407a8b49ff1408": {
+    "assetId": "eip155:56/bep20:0xad5452be97e257f7312ac7c681407a8b49ff1408",
+    "chainId": "eip155:56",
+    "name": "Superstake",
+    "precision": 18,
+    "color": "#3F402C",
+    "icon": "https://assets.coingecko.com/coins/images/29008/thumb/logo200x200.png?1696527979",
+    "symbol": "SUPERSTAKE",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xad6742a35fb341a9cc6ad674738dd8da98b94fb1": {
+    "assetId": "eip155:56/bep20:0xad6742a35fb341a9cc6ad674738dd8da98b94fb1",
+    "chainId": "eip155:56",
+    "name": "Wombat Exchange on BNB Smart Chain",
+    "precision": 18,
+    "color": "#EDCE56",
+    "icon": "https://assets.coingecko.com/coins/images/26946/thumb/Wombat_Token.png?1696526001",
+    "symbol": "WOM",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xad86d0e9764ba90ddd68747d64bffbd79879a238": {
+    "assetId": "eip155:56/bep20:0xad86d0e9764ba90ddd68747d64bffbd79879a238",
+    "chainId": "eip155:56",
+    "name": "PAID Network on BNB Smart Chain",
+    "precision": 18,
+    "color": "#232360",
+    "icon": "https://assets.coingecko.com/coins/images/13761/thumb/512.png?1696513503",
+    "symbol": "PAID",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xadaae082237cb1772c9e079db95c117e6dd0c5af": {
+    "assetId": "eip155:56/bep20:0xadaae082237cb1772c9e079db95c117e6dd0c5af",
+    "chainId": "eip155:56",
+    "name": "VizslaSwap",
+    "precision": 18,
+    "color": "#47A59A",
+    "icon": "https://assets.coingecko.com/coins/images/25809/thumb/E66D3A9B-3FB7-4D14-AAE9-7476F3C3F546.png?1696524894",
+    "symbol": "VIZSLASWAP",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xadccd9b784b1398d95c2e952df4c78dc62c7dad9": {
+    "assetId": "eip155:56/bep20:0xadccd9b784b1398d95c2e952df4c78dc62c7dad9",
+    "chainId": "eip155:56",
+    "name": "AUREO",
+    "precision": 18,
+    "color": "#F3E9C3",
+    "icon": "https://assets.coingecko.com/coins/images/18427/thumb/W7l4Jxsh_400x400.jpg?1696517916",
+    "symbol": "AUR",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xadcfc6bf853a0a8ad7f9ff4244140d10cf01363c": {
+    "assetId": "eip155:56/bep20:0xadcfc6bf853a0a8ad7f9ff4244140d10cf01363c",
+    "chainId": "eip155:56",
+    "name": "TrustPad",
+    "precision": 9,
+    "color": "#2C3D40",
+    "icon": "https://assets.coingecko.com/coins/images/15272/thumb/p3zMHrp1_400x400.jpg?1696514924",
+    "symbol": "TPAD",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xadf6d29572af16de3c44e6b89d2d8e0380044fa6": {
+    "assetId": "eip155:56/bep20:0xadf6d29572af16de3c44e6b89d2d8e0380044fa6",
+    "chainId": "eip155:56",
+    "name": "NXD Next",
+    "precision": 18,
+    "color": "#5F5C58",
+    "icon": "https://assets.coingecko.com/coins/images/27578/thumb/nxdt.png?1696526611",
+    "symbol": "NXDT",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xadfaed188291ae479f458ee2d3f88fe7e8cc712f": {
+    "assetId": "eip155:56/bep20:0xadfaed188291ae479f458ee2d3f88fe7e8cc712f",
+    "chainId": "eip155:56",
+    "name": "Pepe CEO BSC",
+    "precision": 18,
+    "color": "#2F8CFC",
+    "icon": "https://assets.coingecko.com/coins/images/30678/thumb/IMG_20230529_212005_413.png?1696529547",
+    "symbol": "PEPECEO",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xae10e5980f05a80ae09fd0e5bcda3dacd49aaec1": {
+    "assetId": "eip155:56/bep20:0xae10e5980f05a80ae09fd0e5bcda3dacd49aaec1",
+    "chainId": "eip155:56",
+    "name": "Astrava on BNB Smart Chain",
+    "precision": 18,
+    "color": "#F0E0F1",
+    "icon": "https://assets.coingecko.com/coins/images/31122/thumb/Astrava2.jpeg?1696529952",
+    "symbol": "AST",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xae20bc46300bab5d85612c6bc6ea87ea0f186035": {
+    "assetId": "eip155:56/bep20:0xae20bc46300bab5d85612c6bc6ea87ea0f186035",
+    "chainId": "eip155:56",
+    "name": "CrossFi on BNB Smart Chain",
+    "precision": 18,
+    "color": "#04D4D4",
+    "icon": "https://assets.coingecko.com/coins/images/15162/thumb/11901619752967_.pic_hd.png?1696514817",
+    "symbol": "CRFI",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xae28714390e95b8df1ef847c58aeac23ed457702": {
+    "assetId": "eip155:56/bep20:0xae28714390e95b8df1ef847c58aeac23ed457702",
+    "chainId": "eip155:56",
+    "name": "GIBX Swap",
+    "precision": 18,
+    "color": "#7570FC",
+    "icon": "https://assets.coingecko.com/coins/images/18412/thumb/x.PNG?1696517902",
+    "symbol": "X",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xae2df9f730c54400934c06a17462c41c08a06ed8": {
+    "assetId": "eip155:56/bep20:0xae2df9f730c54400934c06a17462c41c08a06ed8",
+    "chainId": "eip155:56",
+    "name": "DogeBonk on BNB Smart Chain",
+    "precision": 9,
+    "color": "#C5B7B0",
+    "icon": "https://assets.coingecko.com/coins/images/19153/thumb/dobo.png?1696518604",
+    "symbol": "DOBO",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xae36155a55f04a696b8362777620027882b31db5": {
+    "assetId": "eip155:56/bep20:0xae36155a55f04a696b8362777620027882b31db5",
+    "chainId": "eip155:56",
+    "name": "Kishimoto on BNB Smart Chain",
+    "precision": 9,
+    "color": "#6C6C6C",
+    "icon": "https://assets.coingecko.com/coins/images/28011/thumb/kishimoto.png?1696527027",
+    "symbol": "KISHIMOTO",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xae459484c895a335cec08058290d94551dbf5fbb": {
+    "assetId": "eip155:56/bep20:0xae459484c895a335cec08058290d94551dbf5fbb",
+    "chainId": "eip155:56",
+    "name": "eFin Decentralized",
+    "precision": 8,
+    "color": "#ECECEC",
+    "icon": "https://assets.coingecko.com/coins/images/23117/thumb/We-Fin-Logo.png?1696522405",
+    "symbol": "WEFIN",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xae4e9243755a6dcf1809f6ee6809635fa2e4fd0b": {
+    "assetId": "eip155:56/bep20:0xae4e9243755a6dcf1809f6ee6809635fa2e4fd0b",
+    "chainId": "eip155:56",
+    "name": "Cashback",
+    "precision": 18,
+    "color": "#F9D905",
+    "icon": "https://assets.coingecko.com/coins/images/30729/thumb/Cashback_Token_Logo.png?1696529600",
+    "symbol": "CBK",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xae7300b51a8cd43d5b74be0dd5047715b7017e3e": {
+    "assetId": "eip155:56/bep20:0xae7300b51a8cd43d5b74be0dd5047715b7017e3e",
+    "chainId": "eip155:56",
+    "name": "Fragments of Arker",
+    "precision": 18,
+    "color": "#29DA96",
+    "icon": "https://assets.coingecko.com/coins/images/22103/thumb/16642.png?1696521446",
+    "symbol": "FOA",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xae7c682ba26ad6835b6150ffb35f22db9987f509": {
+    "assetId": "eip155:56/bep20:0xae7c682ba26ad6835b6150ffb35f22db9987f509",
+    "chainId": "eip155:56",
+    "name": "Infinity Games",
+    "precision": 18,
+    "color": "#040606",
+    "icon": "https://assets.coingecko.com/coins/images/27651/thumb/ing.png?1696526680",
+    "symbol": "ING",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xae90ca218f9c3b1aa84af33a7907e4890ec6a167": {
+    "assetId": "eip155:56/bep20:0xae90ca218f9c3b1aa84af33a7907e4890ec6a167",
+    "chainId": "eip155:56",
+    "name": "ECLAT",
+    "precision": 18,
+    "color": "#D3A241",
+    "icon": "https://assets.coingecko.com/coins/images/27812/thumb/Eclat_Logo_-_100kb.png?1696526831",
+    "symbol": "ELT",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xae9269f27437f0fcbc232d39ec814844a51d6b8f": {
+    "assetId": "eip155:56/bep20:0xae9269f27437f0fcbc232d39ec814844a51d6b8f",
+    "chainId": "eip155:56",
+    "name": "BurgerCities",
+    "precision": 18,
+    "color": "#1D2523",
+    "icon": "https://assets.coingecko.com/coins/images/12563/thumb/burger.png?1696512372",
+    "symbol": "BURGER",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xae98e63db1c4646bf5b40b29c664bc922f71bc65": {
+    "assetId": "eip155:56/bep20:0xae98e63db1c4646bf5b40b29c664bc922f71bc65",
+    "chainId": "eip155:56",
+    "name": "Energyfi",
+    "precision": 18,
+    "color": "#8154C6",
+    "icon": "https://assets.coingecko.com/coins/images/23498/thumb/fbb562_28b2de266adc4c63b6d58e3021158c44_mv2.png?1696522708",
+    "symbol": "EFT",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xaec23008b1098e39c0f8de90bf7431d185efe8b3": {
+    "assetId": "eip155:56/bep20:0xaec23008b1098e39c0f8de90bf7431d185efe8b3",
+    "chainId": "eip155:56",
+    "name": "Crazy Bunny Equity",
+    "precision": 18,
+    "color": "#CDD7E0",
+    "icon": "https://assets.coingecko.com/coins/images/19675/thumb/500x500px.png?1696519103",
+    "symbol": "CBUNNY",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xaec945e04baf28b135fa7c640f624f8d90f1c3a6": {
+    "assetId": "eip155:56/bep20:0xaec945e04baf28b135fa7c640f624f8d90f1c3a6",
+    "chainId": "eip155:56",
+    "name": "Coin98 on BNB Smart Chain",
+    "precision": 18,
+    "color": "#E4C255",
+    "icon": "https://assets.coingecko.com/coins/images/17117/thumb/logo.png?1696516677",
+    "symbol": "C98",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xaecf6d1aff214fef70042740054f0f6d0caa98ab": {
+    "assetId": "eip155:56/bep20:0xaecf6d1aff214fef70042740054f0f6d0caa98ab",
+    "chainId": "eip155:56",
+    "name": "Baby Shiba Inu on BNB Smart Chain",
+    "precision": 9,
+    "color": "#D9AA62",
+    "icon": "https://assets.coingecko.com/coins/images/16805/thumb/BabyShiba.png?1696516375",
+    "symbol": "BABYSHIBAINU",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xaed361021d6fb2ef2ce65049e7b0e814ce5fa2c1": {
+    "assetId": "eip155:56/bep20:0xaed361021d6fb2ef2ce65049e7b0e814ce5fa2c1",
+    "chainId": "eip155:56",
+    "name": "FINX",
+    "precision": 18,
+    "color": "#191A44",
+    "icon": "https://assets.coingecko.com/coins/images/30263/thumb/FINX_logo.png?1696529171",
+    "symbol": "FINX",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xaed8bd0608ef3cc45290a8d0e4223ef4c92dd3dc": {
+    "assetId": "eip155:56/bep20:0xaed8bd0608ef3cc45290a8d0e4223ef4c92dd3dc",
+    "chainId": "eip155:56",
+    "name": "Avoteo",
+    "precision": 18,
+    "color": "#140405",
+    "icon": "https://assets.coingecko.com/coins/images/27659/thumb/photo_2022-10-06_13-03-48.jpg?1696526688",
+    "symbol": "AVO",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xaee234825dc4687fae606485c1ebd06336052bcc": {
+    "assetId": "eip155:56/bep20:0xaee234825dc4687fae606485c1ebd06336052bcc",
+    "chainId": "eip155:56",
+    "name": "Duke Inu",
+    "precision": 9,
+    "color": "#EADACA",
+    "icon": "https://assets.coingecko.com/coins/images/16121/thumb/3axfBIw.jpeg?1696515727",
+    "symbol": "DUKE",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xaee4164c1ee46ed0bbc34790f1a3d1fc87796668": {
+    "assetId": "eip155:56/bep20:0xaee4164c1ee46ed0bbc34790f1a3d1fc87796668",
+    "chainId": "eip155:56",
+    "name": "Poly Peg Mdex",
+    "precision": 18,
+    "color": "#C8C8CE",
+    "icon": "https://assets.coingecko.com/coins/images/18504/thumb/Capture.PNG?1696517986",
+    "symbol": "HMDX",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xaee433adebe0fbb88daa47ef0c1a513caa52ef02": {
+    "assetId": "eip155:56/bep20:0xaee433adebe0fbb88daa47ef0c1a513caa52ef02",
+    "chainId": "eip155:56",
+    "name": "Pontoon on BNB Smart Chain",
+    "precision": 18,
+    "color": "#E44E3B",
+    "icon": "https://assets.coingecko.com/coins/images/19575/thumb/pontoon.PNG?1696519007",
+    "symbol": "TOON",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xaef0d72a118ce24fee3cd1d43d383897d05b4e99": {
+    "assetId": "eip155:56/bep20:0xaef0d72a118ce24fee3cd1d43d383897d05b4e99",
+    "chainId": "eip155:56",
+    "name": "WINkLink BSC",
+    "precision": 18,
+    "color": "#11172D",
+    "icon": "https://assets.coingecko.com/coins/images/15472/thumb/hDLzwfqu_400x400.jpg?1696515118",
+    "symbol": "WIN",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xaf00aac2431b04ef6afd904d19b08d5146e3a9a0": {
+    "assetId": "eip155:56/bep20:0xaf00aac2431b04ef6afd904d19b08d5146e3a9a0",
+    "chainId": "eip155:56",
+    "name": "Portion on BNB Smart Chain",
+    "precision": 18,
+    "color": "#0F455C",
+    "icon": "https://assets.coingecko.com/coins/images/13617/thumb/OKeO2FI.png?1696513366",
+    "symbol": "PRT",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xaf027427dc6d31a3e7e162a710a5fe27e63e275f": {
+    "assetId": "eip155:56/bep20:0xaf027427dc6d31a3e7e162a710a5fe27e63e275f",
+    "chainId": "eip155:56",
+    "name": "LinkDao",
+    "precision": 18,
+    "color": "#04E4CC",
+    "icon": "https://assets.coingecko.com/coins/images/26446/thumb/linkdao200x200.png?1696525520",
+    "symbol": "LKD",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xaf099ef77575a9f981660b1c9e3b78a3ba89ffd9": {
+    "assetId": "eip155:56/bep20:0xaf099ef77575a9f981660b1c9e3b78a3ba89ffd9",
+    "chainId": "eip155:56",
+    "name": "CoinSale Token",
+    "precision": 18,
+    "color": "#F0F9FA",
+    "icon": "https://assets.coingecko.com/coins/images/29760/thumb/photo_2023-04-01_20-35-19.jpg?1696528692",
+    "symbol": "COINSALE",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xaf1736800d805723b9fc6a176badc1d189467bc8": {
+    "assetId": "eip155:56/bep20:0xaf1736800d805723b9fc6a176badc1d189467bc8",
+    "chainId": "eip155:56",
+    "name": "Dracoo Point",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/23517/thumb/logo_%282%29.png?1696522726",
+    "symbol": "DRA",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xaf20f5f19698f1d19351028cd7103b63d30de7d7": {
+    "assetId": "eip155:56/bep20:0xaf20f5f19698f1d19351028cd7103b63d30de7d7",
+    "chainId": "eip155:56",
+    "name": "Wagmi on BNB Smart Chain",
+    "precision": 18,
+    "color": "#CEB484",
+    "icon": "https://assets.coingecko.com/coins/images/31887/thumb/wagmi_token_logo.png?1696530698",
+    "symbol": "WAGMI",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xaf271839f2e37965a255945dcb8249d5f6a0b2d3": {
+    "assetId": "eip155:56/bep20:0xaf271839f2e37965a255945dcb8249d5f6a0b2d3",
+    "chainId": "eip155:56",
+    "name": "A I Genesis",
+    "precision": 18,
+    "color": "#EAE1F3",
+    "icon": "https://assets.coingecko.com/coins/images/32081/thumb/IMG_2583.jpeg?1696530880",
+    "symbol": "AIG",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xaf2f53cc6cc0384aba52275b0f715851fb5aff94": {
+    "assetId": "eip155:56/bep20:0xaf2f53cc6cc0384aba52275b0f715851fb5aff94",
+    "chainId": "eip155:56",
+    "name": "Mobipad",
+    "precision": 18,
+    "color": "#26C2CC",
+    "icon": "https://assets.coingecko.com/coins/images/26082/thumb/20182.png?1696525173",
+    "symbol": "MBP",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xaf3287cae99c982586c07401c0d911bf7de6cd82": {
+    "assetId": "eip155:56/bep20:0xaf3287cae99c982586c07401c0d911bf7de6cd82",
+    "chainId": "eip155:56",
+    "name": "H2O Dao",
+    "precision": 18,
+    "color": "#1794F1",
+    "icon": "https://assets.coingecko.com/coins/images/24588/thumb/M5-QvqZ8_400x400.jpg?1696523762",
+    "symbol": "H2O",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xaf41054c1487b0e5e2b9250c0332ecbce6ce9d71": {
+    "assetId": "eip155:56/bep20:0xaf41054c1487b0e5e2b9250c0332ecbce6ce9d71",
+    "chainId": "eip155:56",
+    "name": "Ellipsis X",
+    "precision": 18,
+    "color": "#508EE0",
+    "icon": "https://assets.coingecko.com/coins/images/25444/thumb/ellipsis-light_%281%29.png?1696524576",
+    "symbol": "EPX",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xaf535b6ed0c1ccf83fa7b32fb9a0c76ccc6f48d0": {
+    "assetId": "eip155:56/bep20:0xaf535b6ed0c1ccf83fa7b32fb9a0c76ccc6f48d0",
+    "chainId": "eip155:56",
+    "name": "Zoci on BNB Smart Chain",
+    "precision": 18,
+    "color": "#FC7434",
+    "icon": "https://assets.coingecko.com/coins/images/31809/thumb/200x.png?1696530624",
+    "symbol": "ZOCI",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xaf53d56ff99f1322515e54fdde93ff8b3b7dafd5": {
+    "assetId": "eip155:56/bep20:0xaf53d56ff99f1322515e54fdde93ff8b3b7dafd5",
+    "chainId": "eip155:56",
+    "name": "Prom on BNB Smart Chain",
+    "precision": 18,
+    "color": "#E4C47C",
+    "icon": "https://assets.coingecko.com/coins/images/8825/thumb/Ticker.png?1696508978",
+    "symbol": "PROM",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xaf55e53cfa099a59aa30554fe106f33c47564a25": {
+    "assetId": "eip155:56/bep20:0xaf55e53cfa099a59aa30554fe106f33c47564a25",
+    "chainId": "eip155:56",
+    "name": "ElvishMagic",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/29198/thumb/bunny.png?1700348862",
+    "symbol": "EMAGIC",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xaf6162dc717cfc8818efc8d6f46a41cf7042fcba": {
+    "assetId": "eip155:56/bep20:0xaf6162dc717cfc8818efc8d6f46a41cf7042fcba",
+    "chainId": "eip155:56",
+    "name": "Atlas USV on BNB Smart Chain",
+    "precision": 9,
+    "color": "#081623",
+    "icon": "https://assets.coingecko.com/coins/images/22066/thumb/7iUyjg5t.png?1696521410",
+    "symbol": "USV",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xaf7c3e578621aabab184c706bad94ffb1a2e0179": {
+    "assetId": "eip155:56/bep20:0xaf7c3e578621aabab184c706bad94ffb1a2e0179",
+    "chainId": "eip155:56",
+    "name": "Dao Space",
+    "precision": 18,
+    "color": "#040404",
+    "icon": "https://assets.coingecko.com/coins/images/30066/thumb/daospacelogo200.png?1696528988",
+    "symbol": "DAOP",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xaf8e0bce56615edf2810fab024c307de352a431f": {
+    "assetId": "eip155:56/bep20:0xaf8e0bce56615edf2810fab024c307de352a431f",
+    "chainId": "eip155:56",
+    "name": "CAT INU",
+    "precision": 9,
+    "color": "#F3DF71",
+    "icon": "https://assets.coingecko.com/coins/images/31683/thumb/3E8C1EF1-8FE1-47D2-8FBF-2931F0E28CE3.jpeg?1696530502",
+    "symbol": "CAT",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xaf96a19c2dd4a0f6b077d9481fcc8c9102faa141": {
+    "assetId": "eip155:56/bep20:0xaf96a19c2dd4a0f6b077d9481fcc8c9102faa141",
+    "chainId": "eip155:56",
+    "name": "Moonarch",
+    "precision": 9,
+    "color": "#8C8C8C",
+    "icon": "https://assets.coingecko.com/coins/images/15567/thumb/android-chrome-256x256.png?1696515207",
+    "symbol": "MOONARCH",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xafc4d521df3c0566d61931f81f02f1a525bad04d": {
+    "assetId": "eip155:56/bep20:0xafc4d521df3c0566d61931f81f02f1a525bad04d",
+    "chainId": "eip155:56",
+    "name": "Wasdaq Finance on BNB Smart Chain",
+    "precision": 9,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/21268/thumb/Dn1G5rLx_400x400.jpg?1696520639",
+    "symbol": "WSDQ",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xafe3321309a994831884fc1725f4c3236ac79f76": {
+    "assetId": "eip155:56/bep20:0xafe3321309a994831884fc1725f4c3236ac79f76",
+    "chainId": "eip155:56",
+    "name": "Memeflate",
+    "precision": 9,
+    "color": "#E5AC0C",
+    "icon": "https://assets.coingecko.com/coins/images/19598/thumb/mflate.PNG?1696519028",
+    "symbol": "MFLATE",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xaffeabc20b2cafa80d2d7ff220ad37e4ec7541d7": {
+    "assetId": "eip155:56/bep20:0xaffeabc20b2cafa80d2d7ff220ad37e4ec7541d7",
+    "chainId": "eip155:56",
+    "name": "Links",
+    "precision": 18,
+    "color": "#D29E26",
+    "icon": "https://assets.coingecko.com/coins/images/21351/thumb/getlinks-coin.png?1696520716",
+    "symbol": "LINKS",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xb001f1e7c8bda414ac7cf7ecba5469fe8d24b6de": {
+    "assetId": "eip155:56/bep20:0xb001f1e7c8bda414ac7cf7ecba5469fe8d24b6de",
+    "chainId": "eip155:56",
+    "name": "Archethic on BNB Smart Chain",
+    "precision": 18,
+    "color": "#040607",
+    "icon": "https://assets.coingecko.com/coins/images/12330/thumb/Archethic_logo.png?1696512158",
+    "symbol": "UCO",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xb003c68917bab76812797d1b8056822f48e2e4fe": {
+    "assetId": "eip155:56/bep20:0xb003c68917bab76812797d1b8056822f48e2e4fe",
+    "chainId": "eip155:56",
+    "name": "Yummy",
+    "precision": 9,
+    "color": "#ECEAE7",
+    "icon": "https://assets.coingecko.com/coins/images/15589/thumb/eFjXvUxN_400x400.jpg?1696515224",
+    "symbol": "YUMMY",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xb020805e0bc7f0e353d1343d67a239f417d57bbf": {
+    "assetId": "eip155:56/bep20:0xb020805e0bc7f0e353d1343d67a239f417d57bbf",
+    "chainId": "eip155:56",
+    "name": "Krypton DAO",
+    "precision": 18,
+    "color": "#6EEA66",
+    "icon": "https://assets.coingecko.com/coins/images/25467/thumb/krd.png?1696524597",
+    "symbol": "KRD",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xb032de897cfeac9dc76cccf36a62040b24e4ec8a": {
+    "assetId": "eip155:56/bep20:0xb032de897cfeac9dc76cccf36a62040b24e4ec8a",
+    "chainId": "eip155:56",
+    "name": "Duzu World",
+    "precision": 8,
+    "color": "#291608",
+    "icon": "https://assets.coingecko.com/coins/images/31598/thumb/IMG_3545.JPG?1696530415",
+    "symbol": "DUZU",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xb0458283033e5a3f7867f409477f53754b667dcc": {
+    "assetId": "eip155:56/bep20:0xb0458283033e5a3f7867f409477f53754b667dcc",
+    "chainId": "eip155:56",
+    "name": "Blurt",
+    "precision": 18,
+    "color": "#2C1208",
+    "icon": "https://assets.coingecko.com/coins/images/12996/thumb/8SzwQc8j2KJa5zQFn3ArqGwN8arxoZj3EEz8h4AtHCdLzKWsjWiXAgTPKaNsZAkzyJZdMHrdemGtWAUeeQuaxEks6SKbYTWEoHj9gRv7t322LQ7xh1p.png?1696512786",
+    "symbol": "BLURT",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xb0461d7e8212d311b842a58e9989ede849ac6816": {
+    "assetId": "eip155:56/bep20:0xb0461d7e8212d311b842a58e9989ede849ac6816",
+    "chainId": "eip155:56",
+    "name": "OceanLand",
+    "precision": 18,
+    "color": "#25688E",
+    "icon": "https://assets.coingecko.com/coins/images/24841/thumb/jP1nV5sb_400x400.jpg?1696523997",
+    "symbol": "OLAND",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xb09fe1613fe03e7361319d2a43edc17422f36b09": {
+    "assetId": "eip155:56/bep20:0xb09fe1613fe03e7361319d2a43edc17422f36b09",
+    "chainId": "eip155:56",
+    "name": "Bogged Finance on BNB Smart Chain",
+    "precision": 18,
+    "color": "#1D222D",
+    "icon": "https://assets.coingecko.com/coins/images/15980/thumb/bog.png?1696515593",
+    "symbol": "BOG",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xb0a480e2fa5af51c733a0af9fcb4de62bc48c38b": {
+    "assetId": "eip155:56/bep20:0xb0a480e2fa5af51c733a0af9fcb4de62bc48c38b",
+    "chainId": "eip155:56",
+    "name": "Starly",
+    "precision": 8,
+    "color": "#343434",
+    "icon": "https://assets.coingecko.com/coins/images/23713/thumb/15139.png?1696522913",
+    "symbol": "STARLY",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xb0b195aefa3650a6908f15cdac7d92f8a5791b0b": {
+    "assetId": "eip155:56/bep20:0xb0b195aefa3650a6908f15cdac7d92f8a5791b0b",
+    "chainId": "eip155:56",
+    "name": "BOB on BNB Smart Chain",
+    "precision": 18,
+    "color": "#A265FC",
+    "icon": "https://assets.coingecko.com/coins/images/27266/thumb/Bob-logo.png?1696526318",
+    "symbol": "BOB",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xb0c4080a8fa7afa11a09473f3be14d44af3f8743": {
+    "assetId": "eip155:56/bep20:0xb0c4080a8fa7afa11a09473f3be14d44af3f8743",
+    "chainId": "eip155:56",
+    "name": "Stobox on BNB Smart Chain",
+    "precision": 18,
+    "color": "#282C36",
+    "icon": "https://assets.coingecko.com/coins/images/12637/thumb/123456826.png?1696512445",
+    "symbol": "STBU",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xb0cb8dd3b2aa9558ba632a350e242f58d2e289b0": {
+    "assetId": "eip155:56/bep20:0xb0cb8dd3b2aa9558ba632a350e242f58d2e289b0",
+    "chainId": "eip155:56",
+    "name": "X MASK",
+    "precision": 18,
+    "color": "#D9F2F2",
+    "icon": "https://assets.coingecko.com/coins/images/28348/thumb/200.png?1696527352",
+    "symbol": "XMC",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xb0d502e938ed5f4df2e681fe6e419ff29631d62b": {
+    "assetId": "eip155:56/bep20:0xb0d502e938ed5f4df2e681fe6e419ff29631d62b",
+    "chainId": "eip155:56",
+    "name": "Stargate Finance on BNB Smart Chain",
+    "precision": 18,
+    "color": "#8C8C8C",
+    "icon": "https://assets.coingecko.com/coins/images/24413/thumb/STG_LOGO.png?1696523595",
+    "symbol": "STG",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xb0df5519f460e96117c12ea667557b161866189c": {
+    "assetId": "eip155:56/bep20:0xb0df5519f460e96117c12ea667557b161866189c",
+    "chainId": "eip155:56",
+    "name": "Dx Spot",
+    "precision": 8,
+    "color": "#51401D",
+    "icon": "https://assets.coingecko.com/coins/images/24224/thumb/DX-ICON.png?1696523410",
+    "symbol": "DXS",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xb0e1fc65c1a741b4662b813eb787d369b8614af1": {
+    "assetId": "eip155:56/bep20:0xb0e1fc65c1a741b4662b813eb787d369b8614af1",
+    "chainId": "eip155:56",
+    "name": "Impossible Finance",
+    "precision": 18,
+    "color": "#070F5F",
+    "icon": "https://assets.coingecko.com/coins/images/15009/thumb/if.PNG?1696514672",
+    "symbol": "IF",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xb0ff8188f374902bb180bd186d17967b5b1188f2": {
+    "assetId": "eip155:56/bep20:0xb0ff8188f374902bb180bd186d17967b5b1188f2",
+    "chainId": "eip155:56",
+    "name": "ArchAngel on BNB Smart Chain",
+    "precision": 9,
+    "color": "#060404",
+    "icon": "https://assets.coingecko.com/coins/images/18814/thumb/Archa_200_x_200_PNG.png?1696518276",
+    "symbol": "ARCHA",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xb10be3f4c7e1f870d86ed6cfd412fed6615feb6f": {
+    "assetId": "eip155:56/bep20:0xb10be3f4c7e1f870d86ed6cfd412fed6615feb6f",
+    "chainId": "eip155:56",
+    "name": "Privateum Global",
+    "precision": 18,
+    "color": "#F49A2E",
+    "icon": "https://assets.coingecko.com/coins/images/14995/thumb/c9C2piFC_400x400.png?1696514659",
+    "symbol": "PRI",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xb139ed26b743c7254a246cf91eb594d097238524": {
+    "assetId": "eip155:56/bep20:0xb139ed26b743c7254a246cf91eb594d097238524",
+    "chainId": "eip155:56",
+    "name": "FALCONS",
+    "precision": 18,
+    "color": "#EE1F1F",
+    "icon": "https://assets.coingecko.com/coins/images/19164/thumb/FalconSwapsLogo.png?1696518614",
+    "symbol": "FALCONS",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xb148df3c114b1233b206160a0f2a74999bb2fbf3": {
+    "assetId": "eip155:56/bep20:0xb148df3c114b1233b206160a0f2a74999bb2fbf3",
+    "chainId": "eip155:56",
+    "name": "DeHealth",
+    "precision": 18,
+    "color": "#F0EAFC",
+    "icon": "https://assets.coingecko.com/coins/images/24839/thumb/DeHealth_FB.png?1696523995",
+    "symbol": "DHLT",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xb149b030cfa47880af0bde4cd36539e4c928b3eb": {
+    "assetId": "eip155:56/bep20:0xb149b030cfa47880af0bde4cd36539e4c928b3eb",
+    "chainId": "eip155:56",
+    "name": "NUTGAIN",
+    "precision": 9,
+    "color": "#F1E3D7",
+    "icon": "https://assets.coingecko.com/coins/images/25567/thumb/nutgv2.png?1696524700",
+    "symbol": "NUTGV2",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xb1528a7be5a96b77de5337988ba69029ca6e2c7a": {
+    "assetId": "eip155:56/bep20:0xb1528a7be5a96b77de5337988ba69029ca6e2c7a",
+    "chainId": "eip155:56",
+    "name": "Barking",
+    "precision": 18,
+    "color": "#9EB8B9",
+    "icon": "https://assets.coingecko.com/coins/images/15828/thumb/bark.png?1696515446",
+    "symbol": "BARK",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xb15488af39bd1de209d501672a293bcd05f82ab4": {
+    "assetId": "eip155:56/bep20:0xb15488af39bd1de209d501672a293bcd05f82ab4",
+    "chainId": "eip155:56",
+    "name": "Nanomatic",
+    "precision": 18,
+    "color": "#843CEC",
+    "icon": "https://assets.coingecko.com/coins/images/30339/thumb/60D90D25-960C-4260-BB27-63E3FD37AFDC.png?1696529240",
+    "symbol": "NANO",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xb160a5f19ebccd8e0549549327e43ddd1d023526": {
+    "assetId": "eip155:56/bep20:0xb160a5f19ebccd8e0549549327e43ddd1d023526",
+    "chainId": "eip155:56",
+    "name": "Winkies on BNB Smart Chain",
+    "precision": 18,
+    "color": "#363638",
+    "icon": "https://assets.coingecko.com/coins/images/22260/thumb/wnk.png?1696521605",
+    "symbol": "WNK",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xb19289b436b2f7a92891ac391d8f52580d3087e4": {
+    "assetId": "eip155:56/bep20:0xb19289b436b2f7a92891ac391d8f52580d3087e4",
+    "chainId": "eip155:56",
+    "name": "ProjectOasis",
+    "precision": 18,
+    "color": "#503D2C",
+    "icon": "https://assets.coingecko.com/coins/images/18755/thumb/Oasis_Logo_1.2%28scaled%29.png?1696518220",
+    "symbol": "OASIS",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xb194d48350bc336520080d0732069ebf26cdf648": {
+    "assetId": "eip155:56/bep20:0xb194d48350bc336520080d0732069ebf26cdf648",
+    "chainId": "eip155:56",
+    "name": "Bogey",
+    "precision": 18,
+    "color": "#0E0D0B",
+    "icon": "https://assets.coingecko.com/coins/images/30948/thumb/photo_2023-07-09_10-37-56.jpg?1696529787",
+    "symbol": "BOGEY",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xb1a1d06d42a43a8fcfdc7fdcd744f7ef03e8ad1a": {
+    "assetId": "eip155:56/bep20:0xb1a1d06d42a43a8fcfdc7fdcd744f7ef03e8ad1a",
+    "chainId": "eip155:56",
+    "name": "HongKongDAO",
+    "precision": 18,
+    "color": "#E8F2FC",
+    "icon": "https://assets.coingecko.com/coins/images/29871/thumb/IMG_20230418_130235_323.png?1696528796",
+    "symbol": "HKD",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xb1ce906c610004e27e74415aa9bcc90e46366f90": {
+    "assetId": "eip155:56/bep20:0xb1ce906c610004e27e74415aa9bcc90e46366f90",
+    "chainId": "eip155:56",
+    "name": "Dynamite on BNB Smart Chain",
+    "precision": 2,
+    "color": "#E0C4C9",
+    "icon": "https://assets.coingecko.com/coins/images/8951/thumb/dynamite_logo.jpg?1696509098",
+    "symbol": "DYNMT",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xb1ced2e320e3f4c8e3511b1dc59203303493f382": {
+    "assetId": "eip155:56/bep20:0xb1ced2e320e3f4c8e3511b1dc59203303493f382",
+    "chainId": "eip155:56",
+    "name": "Moonlight",
+    "precision": 9,
+    "color": "#EC4F67",
+    "icon": "https://assets.coingecko.com/coins/images/15908/thumb/logo-200x200_%284%29.png?1696515522",
+    "symbol": "MOONLIGHT",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xb1ebdd56729940089ecc3ad0bbeeb12b6842ea6f": {
+    "assetId": "eip155:56/bep20:0xb1ebdd56729940089ecc3ad0bbeeb12b6842ea6f",
+    "chainId": "eip155:56",
+    "name": "Valas Finance",
+    "precision": 18,
+    "color": "#ECE5E0",
+    "icon": "https://assets.coingecko.com/coins/images/24733/thumb/valas-finance.png?1696523896",
+    "symbol": "VALAS",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xb1ff83ef5e44862d634413be77ca4dc6ac50b74f": {
+    "assetId": "eip155:56/bep20:0xb1ff83ef5e44862d634413be77ca4dc6ac50b74f",
+    "chainId": "eip155:56",
+    "name": "CryptoUnity",
+    "precision": 9,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/33072/thumb/transparent-Logo_ikona_%282%29-2.png?1700541805",
+    "symbol": "CUT",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xb2192a2829a5220bafd5b0a67f3328e209887bee": {
+    "assetId": "eip155:56/bep20:0xb2192a2829a5220bafd5b0a67f3328e209887bee",
+    "chainId": "eip155:56",
+    "name": "Getaverse",
+    "precision": 18,
+    "color": "#DCBC50",
+    "icon": "https://assets.coingecko.com/coins/images/30939/thumb/GETA_LOGO_2.jpg?1696529778",
+    "symbol": "GETA",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xb21d59547140c9a028efb943e723e04015597e97": {
+    "assetId": "eip155:56/bep20:0xb21d59547140c9a028efb943e723e04015597e97",
+    "chainId": "eip155:56",
+    "name": "MetaPuss",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/29141/thumb/Twitter_Profile_%281%29.png?1696528101",
+    "symbol": "MTP",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xb2343143f814639c9b1f42961c698247171df34a": {
+    "assetId": "eip155:56/bep20:0xb2343143f814639c9b1f42961c698247171df34a",
+    "chainId": "eip155:56",
+    "name": "CORE MultiChain on BNB Smart Chain",
+    "precision": 18,
+    "color": "#F47256",
+    "icon": "https://assets.coingecko.com/coins/images/18848/thumb/O4IzY2CQ_400x400.png?1696518309",
+    "symbol": "CMCX",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xb248a295732e0225acd3337607cc01068e3b9c10": {
+    "assetId": "eip155:56/bep20:0xb248a295732e0225acd3337607cc01068e3b9c10",
+    "chainId": "eip155:56",
+    "name": "Venus XRP",
+    "precision": 8,
+    "color": "#FCC146",
+    "icon": "https://assets.coingecko.com/coins/images/13921/thumb/vxrp.png?1696513661",
+    "symbol": "VXRP",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xb25583e5e2db32b7fcbffe3f5e8e305c36157e54": {
+    "assetId": "eip155:56/bep20:0xb25583e5e2db32b7fcbffe3f5e8e305c36157e54",
+    "chainId": "eip155:56",
+    "name": "Rex",
+    "precision": 18,
+    "color": "#161616",
+    "icon": "https://assets.coingecko.com/coins/images/26434/thumb/token-icon-rex.jpg?1696525508",
+    "symbol": "XRX",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xb27607d439751555003506455dd9e763a53e5b1d": {
+    "assetId": "eip155:56/bep20:0xb27607d439751555003506455dd9e763a53e5b1d",
+    "chainId": "eip155:56",
+    "name": "Timeseries AI",
+    "precision": 9,
+    "color": "#1F67EA",
+    "icon": "https://assets.coingecko.com/coins/images/29516/thumb/timeseries_200.png?1696528460",
+    "symbol": "TIMESERIES",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xb27adaffb9fea1801459a1a81b17218288c097cc": {
+    "assetId": "eip155:56/bep20:0xb27adaffb9fea1801459a1a81b17218288c097cc",
+    "chainId": "eip155:56",
+    "name": "PooCoin",
+    "precision": 8,
+    "color": "#7F583A",
+    "icon": "https://assets.coingecko.com/coins/images/14855/thumb/w4_9ayk3_400x400.png?1696514521",
+    "symbol": "POOCOIN",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xb27b68431c9a1819c8633ff75a2dd14f54799a21": {
+    "assetId": "eip155:56/bep20:0xb27b68431c9a1819c8633ff75a2dd14f54799a21",
+    "chainId": "eip155:56",
+    "name": "Piratera",
+    "precision": 18,
+    "color": "#CA830C",
+    "icon": "https://assets.coingecko.com/coins/images/21979/thumb/PIRA_coin_copy.png?1696521327",
+    "symbol": "PIRA",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xb28a7f8f5328faffdd862985177583c2bb71e016": {
+    "assetId": "eip155:56/bep20:0xb28a7f8f5328faffdd862985177583c2bb71e016",
+    "chainId": "eip155:56",
+    "name": "NftyPlay",
+    "precision": 18,
+    "color": "#8824D4",
+    "icon": "https://assets.coingecko.com/coins/images/17572/thumb/polkaplay_logo_transparent_200.png?1696517107",
+    "symbol": "POLO",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xb2cb83e8e1b326373b7f1068d10c50ebfa04f070": {
+    "assetId": "eip155:56/bep20:0xb2cb83e8e1b326373b7f1068d10c50ebfa04f070",
+    "chainId": "eip155:56",
+    "name": "Pepito",
+    "precision": 9,
+    "color": "#9B4932",
+    "icon": "https://assets.coingecko.com/coins/images/30062/thumb/IMG_20230428_101018_444.png?1696528984",
+    "symbol": "PEPI",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xb2cd463aa00e0a86936df1c3e64feec6128388bc": {
+    "assetId": "eip155:56/bep20:0xb2cd463aa00e0a86936df1c3e64feec6128388bc",
+    "chainId": "eip155:56",
+    "name": "Smart Trade BOT",
+    "precision": 18,
+    "color": "#E0EFEC",
+    "icon": "https://assets.coingecko.com/coins/images/31668/thumb/200-White.png?1696530484",
+    "symbol": "SMART-BOT",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xb2e841894b1c3d638948517f6234c6e06d3b8e1c": {
+    "assetId": "eip155:56/bep20:0xb2e841894b1c3d638948517f6234c6e06d3b8e1c",
+    "chainId": "eip155:56",
+    "name": "Zone of Avoidance",
+    "precision": 18,
+    "color": "#040404",
+    "icon": "https://assets.coingecko.com/coins/images/25202/thumb/ZoA-CMC.png?1696524345",
+    "symbol": "ZOA",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xb2ea51baa12c461327d12a2069d47b30e680b69d": {
+    "assetId": "eip155:56/bep20:0xb2ea51baa12c461327d12a2069d47b30e680b69d",
+    "chainId": "eip155:56",
+    "name": "Space Misfits",
+    "precision": 18,
+    "color": "#170E2D",
+    "icon": "https://assets.coingecko.com/coins/images/24394/thumb/6htFQIdk_400x400.jpg?1696523577",
+    "symbol": "SMCW",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xb32d4817908f001c2a53c15bff8c14d8813109be": {
+    "assetId": "eip155:56/bep20:0xb32d4817908f001c2a53c15bff8c14d8813109be",
+    "chainId": "eip155:56",
+    "name": "smARTOFGIVING on BNB Smart Chain",
+    "precision": 18,
+    "color": "#AD831D",
+    "icon": "https://assets.coingecko.com/coins/images/6050/thumb/logo_%286%29.png?1696506459",
+    "symbol": "AOG",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xb346c52874c7023df183068c39478c3b7b2515bc": {
+    "assetId": "eip155:56/bep20:0xb346c52874c7023df183068c39478c3b7b2515bc",
+    "chainId": "eip155:56",
+    "name": "True PNL on BNB Smart Chain",
+    "precision": 18,
+    "color": "#34BC33",
+    "icon": "https://assets.coingecko.com/coins/images/15282/thumb/256x256logo.png?1696514933",
+    "symbol": "PNL",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xb350aebaedb1ed3269b0e25d5e593a9bb4b9f9d5": {
+    "assetId": "eip155:56/bep20:0xb350aebaedb1ed3269b0e25d5e593a9bb4b9f9d5",
+    "chainId": "eip155:56",
+    "name": "Ryoshi",
+    "precision": 18,
+    "color": "#28241E",
+    "icon": "https://assets.coingecko.com/coins/images/16394/thumb/RyoshiLogo.png.jpg?1696515992",
+    "symbol": "RYOSHI",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xb38a5cdc7304ad3d53ce280a8dc63b2921d0a72f": {
+    "assetId": "eip155:56/bep20:0xb38a5cdc7304ad3d53ce280a8dc63b2921d0a72f",
+    "chainId": "eip155:56",
+    "name": "Doge Blue",
+    "precision": 8,
+    "color": "#60C5F6",
+    "icon": "https://assets.coingecko.com/coins/images/30030/thumb/tmhaYKc.png?1696528953",
+    "symbol": "DOGEBLUE",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xb38b3c34e4bb6144c1e5283af720e046ee833a2a": {
+    "assetId": "eip155:56/bep20:0xb38b3c34e4bb6144c1e5283af720e046ee833a2a",
+    "chainId": "eip155:56",
+    "name": "DeSpace Protocol on BNB Smart Chain",
+    "precision": 18,
+    "color": "#1E1520",
+    "icon": "https://assets.coingecko.com/coins/images/18517/thumb/NQQu-EsT_400x400.jpg?1696517998",
+    "symbol": "DES",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xb3a6381070b1a15169dea646166ec0699fdaea79": {
+    "assetId": "eip155:56/bep20:0xb3a6381070b1a15169dea646166ec0699fdaea79",
+    "chainId": "eip155:56",
+    "name": "CyberDragon Gold",
+    "precision": 18,
+    "color": "#D6A52A",
+    "icon": "https://assets.coingecko.com/coins/images/18010/thumb/htvlAXaQ3yqLeOn.png?1696517526",
+    "symbol": "GOLD",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xb3a7713521007d79e757f83ce763ded56bb0f6b3": {
+    "assetId": "eip155:56/bep20:0xb3a7713521007d79e757f83ce763ded56bb0f6b3",
+    "chainId": "eip155:56",
+    "name": "chabit",
+    "precision": 18,
+    "color": "#A08132",
+    "icon": "https://assets.coingecko.com/coins/images/32488/thumb/CB8.jpg?1698292741",
+    "symbol": "CB8",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xb3a95bdbe4ac65b0628db1e6600f71ed59b89255": {
+    "assetId": "eip155:56/bep20:0xb3a95bdbe4ac65b0628db1e6600f71ed59b89255",
+    "chainId": "eip155:56",
+    "name": "Unityventures",
+    "precision": 18,
+    "color": "#E0E7E8",
+    "icon": "https://assets.coingecko.com/coins/images/19673/thumb/IMG_0302_%281%29.JPG?1696519101",
+    "symbol": "UV",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xb3ba14f6a482dfdebc3c2fb726ac10df91ee504c": {
+    "assetId": "eip155:56/bep20:0xb3ba14f6a482dfdebc3c2fb726ac10df91ee504c",
+    "chainId": "eip155:56",
+    "name": "City Tycoon Games",
+    "precision": 18,
+    "color": "#D5D5D5",
+    "icon": "https://assets.coingecko.com/coins/images/28118/thumb/ctg.png?1696527126",
+    "symbol": "CTG",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xb3cb6d2f8f2fde203a022201c81a96c167607f15": {
+    "assetId": "eip155:56/bep20:0xb3cb6d2f8f2fde203a022201c81a96c167607f15",
+    "chainId": "eip155:56",
+    "name": "Green Planet",
+    "precision": 18,
+    "color": "#0A3414",
+    "icon": "https://assets.coingecko.com/coins/images/20895/thumb/gamma.png?1696520287",
+    "symbol": "GAMMA",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xb3d691125514db7a5be3326af86a72ecdc2cde16": {
+    "assetId": "eip155:56/bep20:0xb3d691125514db7a5be3326af86a72ecdc2cde16",
+    "chainId": "eip155:56",
+    "name": "Zoo on BNB Smart Chain",
+    "precision": 9,
+    "color": "#D1E8DA",
+    "icon": "https://assets.coingecko.com/coins/images/15629/thumb/gyzERsO.png?1696515262",
+    "symbol": "ZOOT",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xb3ed0a426155b79b898849803e3b36552f7ed507": {
+    "assetId": "eip155:56/bep20:0xb3ed0a426155b79b898849803e3b36552f7ed507",
+    "chainId": "eip155:56",
+    "name": "Pendle on BNB Smart Chain",
+    "precision": 18,
+    "color": "#D4D4DC",
+    "icon": "https://assets.coingecko.com/coins/images/15069/thumb/Pendle_Logo_Normal-03.png?1696514728",
+    "symbol": "PENDLE",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xb44c63a09adf51f5e62cc7b63628b1b789941fa0": {
+    "assetId": "eip155:56/bep20:0xb44c63a09adf51f5e62cc7b63628b1b789941fa0",
+    "chainId": "eip155:56",
+    "name": "Reflex on BNB Smart Chain",
+    "precision": 9,
+    "color": "#4E85D0",
+    "icon": "https://assets.coingecko.com/coins/images/12745/thumb/2MKGMRCT_400x400.png?1696512543",
+    "symbol": "RFX",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xb452bc9cead0b08c4ef99da0feb8e10ef6bb86bb": {
+    "assetId": "eip155:56/bep20:0xb452bc9cead0b08c4ef99da0feb8e10ef6bb86bb",
+    "chainId": "eip155:56",
+    "name": "EZZY Game",
+    "precision": 18,
+    "color": "#3494E4",
+    "icon": "https://assets.coingecko.com/coins/images/28250/thumb/ezzy_app_icon.png?1696527252",
+    "symbol": "EZY",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xb46049c79d77ff1d555a67835fba6978536581af": {
+    "assetId": "eip155:56/bep20:0xb46049c79d77ff1d555a67835fba6978536581af",
+    "chainId": "eip155:56",
+    "name": "MoonFarm Finance",
+    "precision": 18,
+    "color": "#0CDDE8",
+    "icon": "https://assets.coingecko.com/coins/images/16337/thumb/logo-mf-new-200px-trans.png?1696515938",
+    "symbol": "MFO",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xb465f3cb6aba6ee375e12918387de1eac2301b05": {
+    "assetId": "eip155:56/bep20:0xb465f3cb6aba6ee375e12918387de1eac2301b05",
+    "chainId": "eip155:56",
+    "name": "Trivians",
+    "precision": 3,
+    "color": "#C1AB5F",
+    "icon": "https://assets.coingecko.com/coins/images/26303/thumb/trv-icon-full.png?1696525386",
+    "symbol": "TRIVIA",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xb47e21328b4f1c6d685c213d707fab3edb234fa0": {
+    "assetId": "eip155:56/bep20:0xb47e21328b4f1c6d685c213d707fab3edb234fa0",
+    "chainId": "eip155:56",
+    "name": "beFITTER Health",
+    "precision": 18,
+    "color": "#21AE67",
+    "icon": "https://assets.coingecko.com/coins/images/26569/thumb/HEE.png?1696525641",
+    "symbol": "HEE",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xb49988a9ecbf0455b3b43fff7e64960d8399ccb8": {
+    "assetId": "eip155:56/bep20:0xb49988a9ecbf0455b3b43fff7e64960d8399ccb8",
+    "chainId": "eip155:56",
+    "name": "BitZipp",
+    "precision": 18,
+    "color": "#D0B884",
+    "icon": "https://assets.coingecko.com/coins/images/19122/thumb/91uivPTI_400x400.png?1696518573",
+    "symbol": "BZP",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xb49b7e0742ecb4240ffe91661d2a580677460b6a": {
+    "assetId": "eip155:56/bep20:0xb49b7e0742ecb4240ffe91661d2a580677460b6a",
+    "chainId": "eip155:56",
+    "name": "PERI Finance on BNB Smart Chain",
+    "precision": 18,
+    "color": "#140C5C",
+    "icon": "https://assets.coingecko.com/coins/images/15313/thumb/6xVEMS1.png?1696514963",
+    "symbol": "PERI",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xb4bf64b17e270b50d00658e3c0e2fbdefabdd87b": {
+    "assetId": "eip155:56/bep20:0xb4bf64b17e270b50d00658e3c0e2fbdefabdd87b",
+    "chainId": "eip155:56",
+    "name": "Cheese Swap",
+    "precision": 18,
+    "color": "#FBF304",
+    "icon": "https://assets.coingecko.com/coins/images/17730/thumb/CHEESE_Transparent_%28200px%29.png?1696517256",
+    "symbol": "CHEESE",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xb4cb54a2078816516ea1b176fba58b0a0bde815f": {
+    "assetId": "eip155:56/bep20:0xb4cb54a2078816516ea1b176fba58b0a0bde815f",
+    "chainId": "eip155:56",
+    "name": "Green Grass Hopper",
+    "precision": 18,
+    "color": "#6DB43D",
+    "icon": "https://assets.coingecko.com/coins/images/31705/thumb/IMG_8200.jpeg?1696530529",
+    "symbol": "GGH",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xb4ebc6fd70a852d052163f25949c70fb9506d6a0": {
+    "assetId": "eip155:56/bep20:0xb4ebc6fd70a852d052163f25949c70fb9506d6a0",
+    "chainId": "eip155:56",
+    "name": "Social Capitalism",
+    "precision": 18,
+    "color": "#F68C9A",
+    "icon": "https://assets.coingecko.com/coins/images/26083/thumb/oPT2utjj_400x400.png?1696525174",
+    "symbol": "SOCAP",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xb5102cee1528ce2c760893034a4603663495fd72": {
+    "assetId": "eip155:56/bep20:0xb5102cee1528ce2c760893034a4603663495fd72",
+    "chainId": "eip155:56",
+    "name": "dForce USD on BNB Smart Chain",
+    "precision": 18,
+    "color": "#FC9C04",
+    "icon": "https://assets.coingecko.com/coins/images/17422/thumb/usx_32.png?1696516969",
+    "symbol": "USX",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xb52575ce47c4534f7b0ba88acfba7546350197d8": {
+    "assetId": "eip155:56/bep20:0xb52575ce47c4534f7b0ba88acfba7546350197d8",
+    "chainId": "eip155:56",
+    "name": "Perry The BNB",
+    "precision": 18,
+    "color": "#EEA83F",
+    "icon": "https://assets.coingecko.com/coins/images/30207/thumb/009836CD-8341-4057-BAB9-C01AD6BC6166.png?1696529117",
+    "symbol": "PERRY",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xb534b21082e44a9c5865876f41f8dd348278fdf2": {
+    "assetId": "eip155:56/bep20:0xb534b21082e44a9c5865876f41f8dd348278fdf2",
+    "chainId": "eip155:56",
+    "name": "Homie Wars",
+    "precision": 18,
+    "color": "#E0A421",
+    "icon": "https://assets.coingecko.com/coins/images/28699/thumb/logo-homie_wars.png?1696527681",
+    "symbol": "HOMIECOIN",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xb5489d935be23f1e6acc02766971936045f05b57": {
+    "assetId": "eip155:56/bep20:0xb5489d935be23f1e6acc02766971936045f05b57",
+    "chainId": "eip155:56",
+    "name": "JobAi",
+    "precision": 18,
+    "color": "#504BE4",
+    "icon": "https://assets.coingecko.com/coins/images/32374/thumb/Jobai-200x200-logo.png?1698032489",
+    "symbol": "JOB",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xb55ee890426341fe45ee6dc788d2d93d25b59063": {
+    "assetId": "eip155:56/bep20:0xb55ee890426341fe45ee6dc788d2d93d25b59063",
+    "chainId": "eip155:56",
+    "name": "Love io on BNB Smart Chain",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/33011/thumb/IMG_7458.png?1700124277",
+    "symbol": "LOVE",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xb583961e033dfe0fff161952f7ba21c411b6103d": {
+    "assetId": "eip155:56/bep20:0xb583961e033dfe0fff161952f7ba21c411b6103d",
+    "chainId": "eip155:56",
+    "name": "Youwho on BNB Smart Chain",
+    "precision": 18,
+    "color": "#06CC94",
+    "icon": "https://assets.coingecko.com/coins/images/25353/thumb/youwho_200.png?1696524487",
+    "symbol": "YOU",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xb5be8d87fce6ce87a24b90abdb019458a8ec31f9": {
+    "assetId": "eip155:56/bep20:0xb5be8d87fce6ce87a24b90abdb019458a8ec31f9",
+    "chainId": "eip155:56",
+    "name": "Obortech on BNB Smart Chain",
+    "precision": 18,
+    "color": "#EC1A22",
+    "icon": "https://assets.coingecko.com/coins/images/14929/thumb/OBORTECH_200.png?1696514590",
+    "symbol": "OBOT",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xb5bea8a26d587cf665f2d78f077cca3c7f6341bd": {
+    "assetId": "eip155:56/bep20:0xb5bea8a26d587cf665f2d78f077cca3c7f6341bd",
+    "chainId": "eip155:56",
+    "name": "Polis",
+    "precision": 18,
+    "color": "#1B6EB4",
+    "icon": "https://assets.coingecko.com/coins/images/2452/thumb/circlePolisLogo.png?1696503283",
+    "symbol": "POLIS",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xb60501346240fcde1615de56ea9fff1ac1da5673": {
+    "assetId": "eip155:56/bep20:0xb60501346240fcde1615de56ea9fff1ac1da5673",
+    "chainId": "eip155:56",
+    "name": "BSClaunch",
+    "precision": 18,
+    "color": "#F4CC2C",
+    "icon": "https://assets.coingecko.com/coins/images/16044/thumb/Logo_BSCLaunch_Final_Expand-03.png?1696515654",
+    "symbol": "BSL",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xb6090a50f66046e3c6afb9311846a6432e45060a": {
+    "assetId": "eip155:56/bep20:0xb6090a50f66046e3c6afb9311846a6432e45060a",
+    "chainId": "eip155:56",
+    "name": "PinkMoon",
+    "precision": 9,
+    "color": "#EFA298",
+    "icon": "https://assets.coingecko.com/coins/images/15018/thumb/pink-logo-200.png?1696514680",
+    "symbol": "PINKM",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xb626213cb1d52caa1ed71e2a0e62c0113ed8d642": {
+    "assetId": "eip155:56/bep20:0xb626213cb1d52caa1ed71e2a0e62c0113ed8d642",
+    "chainId": "eip155:56",
+    "name": "HUGHUG",
+    "precision": 8,
+    "color": "#BC9B62",
+    "icon": "https://assets.coingecko.com/coins/images/20172/thumb/512hug.png?1696519585",
+    "symbol": "HGHG",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xb6307cc320c76101e87456e06557fa939accc71f": {
+    "assetId": "eip155:56/bep20:0xb6307cc320c76101e87456e06557fa939accc71f",
+    "chainId": "eip155:56",
+    "name": "Girlfriend",
+    "precision": 18,
+    "color": "#E6BEBE",
+    "icon": "https://assets.coingecko.com/coins/images/30642/thumb/Untitled_design_%281%29_%281%29.png?1696529514",
+    "symbol": "GF",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xb64e280e9d1b5dbec4accedb2257a87b400db149": {
+    "assetId": "eip155:56/bep20:0xb64e280e9d1b5dbec4accedb2257a87b400db149",
+    "chainId": "eip155:56",
+    "name": "Level on BNB Smart Chain",
+    "precision": 18,
+    "color": "#FCB415",
+    "icon": "https://assets.coingecko.com/coins/images/28628/thumb/Token.png?1696527613",
+    "symbol": "LVL",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xb64fde8f199f073f41c132b9ec7ad5b61de0b1b7": {
+    "assetId": "eip155:56/bep20:0xb64fde8f199f073f41c132b9ec7ad5b61de0b1b7",
+    "chainId": "eip155:56",
+    "name": "Incognito on BNB Smart Chain",
+    "precision": 9,
+    "color": "#363636",
+    "icon": "https://assets.coingecko.com/coins/images/21971/thumb/50738351.png?1696521319",
+    "symbol": "PRV",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xb661f4576d5e0b622fee6ab041fd5451fe02ba4c": {
+    "assetId": "eip155:56/bep20:0xb661f4576d5e0b622fee6ab041fd5451fe02ba4c",
+    "chainId": "eip155:56",
+    "name": "Defigram",
+    "precision": 18,
+    "color": "#526DD8",
+    "icon": "https://assets.coingecko.com/coins/images/25162/thumb/19590.png?1696524309",
+    "symbol": "DFG",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xb66279ce85ff79df18901946e65216777b093967": {
+    "assetId": "eip155:56/bep20:0xb66279ce85ff79df18901946e65216777b093967",
+    "chainId": "eip155:56",
+    "name": "HUNDRED  BSC ",
+    "precision": 18,
+    "color": "#DADADA",
+    "icon": "https://assets.coingecko.com/coins/images/31876/thumb/mQM7_dCk_400x400.jpg?1696530688",
+    "symbol": "HUNDRED",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xb6adb74efb5801160ff749b1985fd3bd5000e938": {
+    "assetId": "eip155:56/bep20:0xb6adb74efb5801160ff749b1985fd3bd5000e938",
+    "chainId": "eip155:56",
+    "name": "GameZone",
+    "precision": 18,
+    "color": "#355A2D",
+    "icon": "https://assets.coingecko.com/coins/images/18697/thumb/Th98fbg__400x400.jpg?1696518165",
+    "symbol": "GZONE",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xb6b8ccd230bb4235c7b87986274e7ab550b72261": {
+    "assetId": "eip155:56/bep20:0xb6b8ccd230bb4235c7b87986274e7ab550b72261",
+    "chainId": "eip155:56",
+    "name": "HALOnft art",
+    "precision": 18,
+    "color": "#241C34",
+    "icon": "https://assets.coingecko.com/coins/images/29325/thumb/halo.png?1696528276",
+    "symbol": "HALO",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xb6c423c6a8bbc83fb05814d0f8334407e7031f8e": {
+    "assetId": "eip155:56/bep20:0xb6c423c6a8bbc83fb05814d0f8334407e7031f8e",
+    "chainId": "eip155:56",
+    "name": "YOJ",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/32713/thumb/YOJ.png?1699000609",
+    "symbol": "YOJ",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xb6c53431608e626ac81a9776ac3e999c5556717c": {
+    "assetId": "eip155:56/bep20:0xb6c53431608e626ac81a9776ac3e999c5556717c",
+    "chainId": "eip155:56",
+    "name": "Wrapped Telos on BNB Smart Chain",
+    "precision": 18,
+    "color": "#6847B2",
+    "icon": "https://assets.coingecko.com/coins/images/23952/thumb/tL4cEmvt_400x400.png?1696523147",
+    "symbol": "WTLOS",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xb6d053e260d410eac02ea28755696f90a8ecca2b": {
+    "assetId": "eip155:56/bep20:0xb6d053e260d410eac02ea28755696f90a8ecca2b",
+    "chainId": "eip155:56",
+    "name": "Shikoku Inu",
+    "precision": 9,
+    "color": "#C87319",
+    "icon": "https://assets.coingecko.com/coins/images/16442/thumb/shiko.PNG?1696516039",
+    "symbol": "SHIKO",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xb6d48fcef36e19681ee29896b19c1b6cbd1eab1b": {
+    "assetId": "eip155:56/bep20:0xb6d48fcef36e19681ee29896b19c1b6cbd1eab1b",
+    "chainId": "eip155:56",
+    "name": "Fanadise",
+    "precision": 18,
+    "color": "#ECD9E7",
+    "icon": "https://assets.coingecko.com/coins/images/17417/thumb/logo_fanadise_new_200x200.png?1696516964",
+    "symbol": "FAN",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xb700597d8425ced17677bc68042d7d92764acf59": {
+    "assetId": "eip155:56/bep20:0xb700597d8425ced17677bc68042d7d92764acf59",
+    "chainId": "eip155:56",
+    "name": "FaceDAO",
+    "precision": 18,
+    "color": "#B7F026",
+    "icon": "https://assets.coingecko.com/coins/images/24309/thumb/1I7nII0c_400x400.jpg?1696523490",
+    "symbol": "FACE",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xb72842d6f5fedf91d22d56202802bb9a79c6322e": {
+    "assetId": "eip155:56/bep20:0xb72842d6f5fedf91d22d56202802bb9a79c6322e",
+    "chainId": "eip155:56",
+    "name": "Mochi Market on BNB Smart Chain",
+    "precision": 18,
+    "color": "#D13C7F",
+    "icon": "https://assets.coingecko.com/coins/images/14993/thumb/mochi.PNG?1696514657",
+    "symbol": "MOMA",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xb72962568345253f71a18318d67e13a282b187e6": {
+    "assetId": "eip155:56/bep20:0xb72962568345253f71a18318d67e13a282b187e6",
+    "chainId": "eip155:56",
+    "name": "ETH Fan Token Ecosystem",
+    "precision": 18,
+    "color": "#100F0F",
+    "icon": "https://assets.coingecko.com/coins/images/22612/thumb/eft.png?1696521929",
+    "symbol": "EFT",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xb72a20c7b8bd666f80ac053b0f4de20a787080f5": {
+    "assetId": "eip155:56/bep20:0xb72a20c7b8bd666f80ac053b0f4de20a787080f5",
+    "chainId": "eip155:56",
+    "name": "Media Licensing Token on BNB Smart Chain",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/15659/thumb/milc_200x200.png?1696515290",
+    "symbol": "MLT",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xb78e0ff3a82c487295074465ff714e45a6e7b39c": {
+    "assetId": "eip155:56/bep20:0xb78e0ff3a82c487295074465ff714e45a6e7b39c",
+    "chainId": "eip155:56",
+    "name": "Cosmic Chain",
+    "precision": 18,
+    "color": "#18101F",
+    "icon": "https://assets.coingecko.com/coins/images/30000/thumb/photo_2023-04-06_06-19-48.jpg?1696528925",
+    "symbol": "COSMIC",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xb7bda6a89e724f63572ce68fddc1a6d1d5d24bcf": {
+    "assetId": "eip155:56/bep20:0xb7bda6a89e724f63572ce68fddc1a6d1d5d24bcf",
+    "chainId": "eip155:56",
+    "name": "OGzClub on BNB Smart Chain",
+    "precision": 18,
+    "color": "#E7801B",
+    "icon": "https://assets.coingecko.com/coins/images/31121/thumb/25832.png?1696529951",
+    "symbol": "OGZ",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xb7dacf54a54bfea818f21472d3e71a89287841a7": {
+    "assetId": "eip155:56/bep20:0xb7dacf54a54bfea818f21472d3e71a89287841a7",
+    "chainId": "eip155:56",
+    "name": "WealthSecrets",
+    "precision": 18,
+    "color": "#E6D979",
+    "icon": "https://assets.coingecko.com/coins/images/20106/thumb/logo-box.png?1696519521",
+    "symbol": "WSC",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xb800aff8391abacdeb0199ab9cebf63771fcf491": {
+    "assetId": "eip155:56/bep20:0xb800aff8391abacdeb0199ab9cebf63771fcf491",
+    "chainId": "eip155:56",
+    "name": "NovaX",
+    "precision": 18,
+    "color": "#EFE0F7",
+    "icon": "https://assets.coingecko.com/coins/images/31973/thumb/Logo_NovaX.png?1696530778",
+    "symbol": "NOVAX",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xb81408a1cc2f4be70a6a3178d351ca95a77c5a06": {
+    "assetId": "eip155:56/bep20:0xb81408a1cc2f4be70a6a3178d351ca95a77c5a06",
+    "chainId": "eip155:56",
+    "name": "Xodex",
+    "precision": 18,
+    "color": "#0D977C",
+    "icon": "https://assets.coingecko.com/coins/images/25551/thumb/200_%281%29.png?1696524684",
+    "symbol": "XODEX",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xb8167c0e58f4ca0ec7a6d967a8d138f05b3a981f": {
+    "assetId": "eip155:56/bep20:0xb8167c0e58f4ca0ec7a6d967a8d138f05b3a981f",
+    "chainId": "eip155:56",
+    "name": "JEN COIN",
+    "precision": 18,
+    "color": "#835813",
+    "icon": "https://assets.coingecko.com/coins/images/26912/thumb/200x200.png?1696525969",
+    "symbol": "JEN",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xb823746401d03ce7b4d748bb3e9c7a4912c68377": {
+    "assetId": "eip155:56/bep20:0xb823746401d03ce7b4d748bb3e9c7a4912c68377",
+    "chainId": "eip155:56",
+    "name": "PayX",
+    "precision": 18,
+    "color": "#13173F",
+    "icon": "https://assets.coingecko.com/coins/images/31795/thumb/pay-X-logo-200.png?1696530611",
+    "symbol": "PAYX",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xb84cbbf09b3ed388a45cd875ebba41a20365e6e7": {
+    "assetId": "eip155:56/bep20:0xb84cbbf09b3ed388a45cd875ebba41a20365e6e7",
+    "chainId": "eip155:56",
+    "name": "BitShiba",
+    "precision": 18,
+    "color": "#ECC8A2",
+    "icon": "https://assets.coingecko.com/coins/images/20205/thumb/3g2LGTkS_400x400.jpg?1696519615",
+    "symbol": "SHIBA",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xb8501a9a9aaae239a2490f44e00b284baa0b131a": {
+    "assetId": "eip155:56/bep20:0xb8501a9a9aaae239a2490f44e00b284baa0b131a",
+    "chainId": "eip155:56",
+    "name": "Cremation Coin on BNB Smart Chain",
+    "precision": 18,
+    "color": "#0A1814",
+    "icon": "https://assets.coingecko.com/coins/images/29793/thumb/photo_2023-02-07_04-43-14.jpg?1696528723",
+    "symbol": "CREMAT",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xb850cac12ab85d4400db61ac78dc5fc2418b6868": {
+    "assetId": "eip155:56/bep20:0xb850cac12ab85d4400db61ac78dc5fc2418b6868",
+    "chainId": "eip155:56",
+    "name": "Ctomorrow Platform",
+    "precision": 8,
+    "color": "#756CE2",
+    "icon": "https://assets.coingecko.com/coins/images/22256/thumb/dchSzDny_400x400.jpg?1696521600",
+    "symbol": "CTP",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xb86126b872e3f23bc62d6a4a3152ec65202a2073": {
+    "assetId": "eip155:56/bep20:0xb86126b872e3f23bc62d6a4a3152ec65202a2073",
+    "chainId": "eip155:56",
+    "name": "Pin Token",
+    "precision": 18,
+    "color": "#226BB5",
+    "icon": "https://assets.coingecko.com/coins/images/30988/thumb/coin.png?1696529826",
+    "symbol": "PIN",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xb86abcb37c3a4b64f74f59301aff131a1becc787": {
+    "assetId": "eip155:56/bep20:0xb86abcb37c3a4b64f74f59301aff131a1becc787",
+    "chainId": "eip155:56",
+    "name": "Zilliqa",
+    "precision": 12,
+    "color": "#348D95",
+    "icon": "https://assets.coingecko.com/coins/images/2687/thumb/Zilliqa-logo.png?1696503475",
+    "symbol": "ZIL",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xb897d0a0f68800f8be7d69ffdd1c24b69f57bf3e": {
+    "assetId": "eip155:56/bep20:0xb897d0a0f68800f8be7d69ffdd1c24b69f57bf3e",
+    "chainId": "eip155:56",
+    "name": "Electra Protocol",
+    "precision": 8,
+    "color": "#143F99",
+    "icon": "https://assets.coingecko.com/coins/images/13589/thumb/Apple-iPhone-Icon-Retina.png?1696513341",
+    "symbol": "XEP",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xb8c3e8ff71513afc8cfb2dddc5a994a501db1916": {
+    "assetId": "eip155:56/bep20:0xb8c3e8ff71513afc8cfb2dddc5a994a501db1916",
+    "chainId": "eip155:56",
+    "name": "YESorNO",
+    "precision": 18,
+    "color": "#FCF0E8",
+    "icon": "https://assets.coingecko.com/coins/images/21214/thumb/K91jws5t_400x400.png?1696520588",
+    "symbol": "YON",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xb8e3bb633f7276cc17735d86154e0ad5ec9928c0": {
+    "assetId": "eip155:56/bep20:0xb8e3bb633f7276cc17735d86154e0ad5ec9928c0",
+    "chainId": "eip155:56",
+    "name": "VelasPad on BNB Smart Chain",
+    "precision": 18,
+    "color": "#099CB4",
+    "icon": "https://assets.coingecko.com/coins/images/18535/thumb/11654.png?1696518015",
+    "symbol": "VLXPAD",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xb8edd4261031c620431fe070b9e4b516571e9918": {
+    "assetId": "eip155:56/bep20:0xb8edd4261031c620431fe070b9e4b516571e9918",
+    "chainId": "eip155:56",
+    "name": "TAHU",
+    "precision": 18,
+    "color": "#2AC8E6",
+    "icon": "https://assets.coingecko.com/coins/images/18284/thumb/TAHU_LOGO_trans_200x200.png?1696517777",
+    "symbol": "TAHU",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xb919149a7f1fcf4b5e7a05e6ea6f951ca6d73b5b": {
+    "assetId": "eip155:56/bep20:0xb919149a7f1fcf4b5e7a05e6ea6f951ca6d73b5b",
+    "chainId": "eip155:56",
+    "name": "To The Moon Token",
+    "precision": 18,
+    "color": "#24DC8C",
+    "icon": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAIAAAACACAMAAAD04JH5AAADAFBMVEUtN0gm2Iv///8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABh6JxmAAABAHRSTlP/////AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAf6K/dgAAQItJREFUeNoBgEB/vwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgEBAQEBAQEBAQEBAQAAAgICAgICAgICAgICAgICAgICAgICAQEBAQEBAQEBAQEBAQECAgICAgICAQEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgAAAAAAAAAAAAACAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMBAQEBAQEBAQEBAQAAAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMBAQEBAQEBAQEBAQAAAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMBAQEBAQEBAQEBAQAAAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMBAQEBAQEBAQEBAQAAAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMBAQEBAQEBAQEBAQAAAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMBAQEBAQEBAQEBAQAAAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAAAAwMDAwMDAwMDAwMDAwICAgICAgIDAwMDAwMDAwMDAwMDAwMBAQEBAQECAgICAgICAAMDAwMDAwMDAwMDAwMDAwMDAwMDAgICAgICAgEBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgIDAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgIDAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgIDAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgIDAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgIDAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgIDAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgIDAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAgICAgICAgEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgIDAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAgICAgICAgMBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgIDAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAgICAgICAgMBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgIDAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAgICAgICAgMBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgIDAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAgICAgICAgMBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgIDAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAgICAgICAgMBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgIDAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAgICAgICAgMBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgIDAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwMDAwMDAwICAgICAgIBAQEBAQAAAgICAgICAgMAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgIDAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQICAgICAgIDAQEBAQAAAgICAgICAgMAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgIDAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQICAgICAgIDAQEBAQAAAgICAgICAgMAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgIDAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQICAgICAgIDAQEBAQAAAgICAgICAgMAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgIDAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQICAgICAgIDAQEBAQAAAgICAgICAgMAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgIDAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQICAgICAgIDAQEBAQAAAgICAgICAgMAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgIDAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQICAgICAgIDAQEBAQAAAgICAgICAgMAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgIDAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEDAwMDAwMCAgICAgICAgICAgICAgMAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgIDAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAgICAgICAgMAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgIDAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAgICAgICAgMAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgIDAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAgICAgICAgMAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgIDAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAgICAgICAgMAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgIDAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAgICAgICAgMAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAACAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAgICAgICAgMAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAgICAgICAgMAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAACAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAgICAgICAgMAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAwMDAwMDAgICAgICAgMAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAACAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAgICAgICAgMAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAACAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAgICAgICAgMAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAACAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAgICAgICAgMAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAACAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAgICAgICAgMAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAACAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAgICAgICAgMAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAACAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAgICAgICAgMAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAwMDAwMDAgICAgICAgICAgICAgICAgICAgICAAMDAwMDAwMAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgICAgICAgICAgICAgICAgICAgICAwAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgICAgICAgICAgICAgICAgICAgICAwAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgICAgICAgICAgICAgICAgICAgICAwAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgICAgICAgICAgICAgICAgICAgICAwAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgICAgICAgICAgICAgICAgICAgICAwAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgICAgICAgICAgICAgICAgICAgICAwAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEDAwMDAwMDAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMDAwMDAwMDAwMDAwMDAwMDAwMDAwAAAAAAAAAAAAAAAAAAAwMDAwMDAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAMDAwMDAwMAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOQmLl9WtLceAAAAAElFTkSuQmCC",
+    "symbol": "TON",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xb922aa024e71a25077d78b593bd6f11f2f412e72": {
+    "assetId": "eip155:56/bep20:0xb922aa024e71a25077d78b593bd6f11f2f412e72",
+    "chainId": "eip155:56",
+    "name": "RecoveryDAO",
+    "precision": 18,
+    "color": "#F4F8F2",
+    "icon": "https://assets.coingecko.com/coins/images/29378/thumb/847604A0-DA56-434C-9215-E320CAD098C5.jpeg?1696528325",
+    "symbol": "REC",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xb92c5e0135a510a4a3a8803f143d2cb085bbaf73": {
+    "assetId": "eip155:56/bep20:0xb92c5e0135a510a4a3a8803f143d2cb085bbaf73",
+    "chainId": "eip155:56",
+    "name": "Metaverser",
+    "precision": 18,
+    "color": "#1D9AC2",
+    "icon": "https://assets.coingecko.com/coins/images/27472/thumb/s4Ce6y1r_400x400.jpeg?1696526511",
+    "symbol": "MTVT",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xb955b4cab9aa3b49e23aeb5204ebc5ff6678e86d": {
+    "assetId": "eip155:56/bep20:0xb955b4cab9aa3b49e23aeb5204ebc5ff6678e86d",
+    "chainId": "eip155:56",
+    "name": "Asian Fintech on BNB Smart Chain",
+    "precision": 18,
+    "color": "#51A243",
+    "icon": "https://assets.coingecko.com/coins/images/7519/thumb/Afinlogo-200x200.png?1696507786",
+    "symbol": "AFIN",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xb972c4027818223bb7b9399b3ca3ca58186e1590": {
+    "assetId": "eip155:56/bep20:0xb972c4027818223bb7b9399b3ca3ca58186e1590",
+    "chainId": "eip155:56",
+    "name": "Supe Infinity",
+    "precision": 18,
+    "color": "#A279D6",
+    "icon": "https://assets.coingecko.com/coins/images/21874/thumb/nF9bWyQe_400x400.jpg?1696521228",
+    "symbol": "SUPE",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xb99172949554e6c10c28c880ec0306d2a9d5c753": {
+    "assetId": "eip155:56/bep20:0xb99172949554e6c10c28c880ec0306d2a9d5c753",
+    "chainId": "eip155:56",
+    "name": "LunaDoge",
+    "precision": 9,
+    "color": "#89B9D4",
+    "icon": "https://assets.coingecko.com/coins/images/15647/thumb/LunaDoge.png?1696515279",
+    "symbol": "LOGE",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xb9b41da7fa895b093b95340a3379383bba36735e": {
+    "assetId": "eip155:56/bep20:0xb9b41da7fa895b093b95340a3379383bba36735e",
+    "chainId": "eip155:56",
+    "name": "Centaurify on BNB Smart Chain",
+    "precision": 18,
+    "color": "#336144",
+    "icon": "https://assets.coingecko.com/coins/images/20512/thumb/Centaurify_Symbol_Black-01.png?1696519918",
+    "symbol": "CENT",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xb9c255c115636d8cbe107fc953364b243cacdbce": {
+    "assetId": "eip155:56/bep20:0xb9c255c115636d8cbe107fc953364b243cacdbce",
+    "chainId": "eip155:56",
+    "name": "Neural AI",
+    "precision": 18,
+    "color": "#070822",
+    "icon": "https://assets.coingecko.com/coins/images/29049/thumb/Neural-AI-logo_%281%29.png?1696528017",
+    "symbol": "NEURALAI",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xb9d35811424600fa9e8cd62a0471fbd025131cb8": {
+    "assetId": "eip155:56/bep20:0xb9d35811424600fa9e8cd62a0471fbd025131cb8",
+    "chainId": "eip155:56",
+    "name": "Yes World",
+    "precision": 18,
+    "color": "#1FA4D1",
+    "icon": "https://assets.coingecko.com/coins/images/26492/thumb/Yes-World-200-X-200-Pixl-PNG.png?1696525566",
+    "symbol": "YES",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xba08da6b46e3dd153dd8b66a6e4cfd37a6359559": {
+    "assetId": "eip155:56/bep20:0xba08da6b46e3dd153dd8b66a6e4cfd37a6359559",
+    "chainId": "eip155:56",
+    "name": "CUSTODIY",
+    "precision": 18,
+    "color": "#9822E1",
+    "icon": "https://assets.coingecko.com/coins/images/26702/thumb/IMG_20220804_011032_777.jpg?1696525775",
+    "symbol": "CTY",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xba26397cdff25f0d26e815d218ef3c77609ae7f1": {
+    "assetId": "eip155:56/bep20:0xba26397cdff25f0d26e815d218ef3c77609ae7f1",
+    "chainId": "eip155:56",
+    "name": "Lyptus",
+    "precision": 18,
+    "color": "#34B293",
+    "icon": "https://assets.coingecko.com/coins/images/15992/thumb/logo_-_2021-06-01T193417.635.png?1696515604",
+    "symbol": "LYPTUS",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xba2ae424d960c26247dd6c32edc70b295c744c43": {
+    "assetId": "eip155:56/bep20:0xba2ae424d960c26247dd6c32edc70b295c744c43",
+    "chainId": "eip155:56",
+    "name": "Binance Peg Dogecoin",
+    "precision": 8,
+    "color": "#F4EDDC",
+    "icon": "https://assets.coingecko.com/coins/images/15768/thumb/dogecoin.png?1696515392",
+    "symbol": "DOGE",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xba625fdcc8d35e43e9b9e337779d4e4794a80dac": {
+    "assetId": "eip155:56/bep20:0xba625fdcc8d35e43e9b9e337779d4e4794a80dac",
+    "chainId": "eip155:56",
+    "name": "kiwi",
+    "precision": 18,
+    "color": "#A1BB60",
+    "icon": "https://assets.coingecko.com/coins/images/28986/thumb/kiwi.png?1696527959",
+    "symbol": "KIWI",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xba7e020d5a463f29535b35137ccb4aa6f4359272": {
+    "assetId": "eip155:56/bep20:0xba7e020d5a463f29535b35137ccb4aa6f4359272",
+    "chainId": "eip155:56",
+    "name": "PulseFolio",
+    "precision": 18,
+    "color": "#D0D0D0",
+    "icon": "https://assets.coingecko.com/coins/images/29664/thumb/our_logo.png?1696528599",
+    "symbol": "PULSE",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xba8a6ef5f15ed18e7184f44a775060a6bf91d8d0": {
+    "assetId": "eip155:56/bep20:0xba8a6ef5f15ed18e7184f44a775060a6bf91d8d0",
+    "chainId": "eip155:56",
+    "name": "Spaceswap SHAKE on BNB Smart Chain",
+    "precision": 18,
+    "color": "#151E91",
+    "icon": "https://assets.coingecko.com/coins/images/12765/thumb/shake.png?1696512562",
+    "symbol": "SHAKE",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xbabacc135bbf2ce30f9c0f12665b244d3689a29c": {
+    "assetId": "eip155:56/bep20:0xbabacc135bbf2ce30f9c0f12665b244d3689a29c",
+    "chainId": "eip155:56",
+    "name": "Cosmic FOMO",
+    "precision": 18,
+    "color": "#4D84EC",
+    "icon": "https://assets.coingecko.com/coins/images/30315/thumb/cosmic_logo.png?1696529216",
+    "symbol": "COSMIC",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xbac1df744df160877cdc45e13d0394c06bc388ff": {
+    "assetId": "eip155:56/bep20:0xbac1df744df160877cdc45e13d0394c06bc388ff",
+    "chainId": "eip155:56",
+    "name": "NFTmall on BNB Smart Chain",
+    "precision": 18,
+    "color": "#D4A454",
+    "icon": "https://assets.coingecko.com/coins/images/16217/thumb/Icon-1000x1000.png?1696515817",
+    "symbol": "GEM",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xbaea9aba1454df334943951d51116ae342eab255": {
+    "assetId": "eip155:56/bep20:0xbaea9aba1454df334943951d51116ae342eab255",
+    "chainId": "eip155:56",
+    "name": "Poolz Finance",
+    "precision": 18,
+    "color": "#040404",
+    "icon": "https://assets.coingecko.com/coins/images/29625/thumb/logomark-black_%282%29.png?1696528561",
+    "symbol": "POOLX",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xbaf928369eb10c71461cda6972f35eede6d2f5fd": {
+    "assetId": "eip155:56/bep20:0xbaf928369eb10c71461cda6972f35eede6d2f5fd",
+    "chainId": "eip155:56",
+    "name": "TopDown Survival Shooter",
+    "precision": 18,
+    "color": "#846BB6",
+    "icon": "https://assets.coingecko.com/coins/images/29940/thumb/TD_Survival_Shooter_LOGO.png?1696528867",
+    "symbol": "SHOOTER",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xbb0fa2fbe9b37444f5d1dbd22e0e5bdd2afbbe85": {
+    "assetId": "eip155:56/bep20:0xbb0fa2fbe9b37444f5d1dbd22e0e5bdd2afbbe85",
+    "chainId": "eip155:56",
+    "name": "USD Mars",
+    "precision": 18,
+    "color": "#EAECEB",
+    "icon": "https://assets.coingecko.com/coins/images/21252/thumb/WeChat_Image_20211230181747.jpg?1696520625",
+    "symbol": "USDM",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xbb46693ebbea1ac2070e59b4d043b47e2e095f86": {
+    "assetId": "eip155:56/bep20:0xbb46693ebbea1ac2070e59b4d043b47e2e095f86",
+    "chainId": "eip155:56",
+    "name": "BetFury",
+    "precision": 18,
+    "color": "#1E212D",
+    "icon": "https://assets.coingecko.com/coins/images/18108/thumb/bfg.png?1696517612",
+    "symbol": "BFG",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xbb4cdb9cbd36b01bd1cbaebf2de08d9173bc095c": {
+    "assetId": "eip155:56/bep20:0xbb4cdb9cbd36b01bd1cbaebf2de08d9173bc095c",
+    "chainId": "eip155:56",
+    "name": "Wrapped BNB on BNB Smart Chain",
+    "precision": 18,
+    "color": "#F4BC2C",
+    "icon": "https://assets.coingecko.com/coins/images/12591/thumb/binance-coin-logo.png?1696512401",
+    "symbol": "WBNB",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xbb6cdedac5cab4a420211a4a8e8b5dca879b31de": {
+    "assetId": "eip155:56/bep20:0xbb6cdedac5cab4a420211a4a8e8b5dca879b31de",
+    "chainId": "eip155:56",
+    "name": "MetaFighter",
+    "precision": 18,
+    "color": "#BE9C6A",
+    "icon": "https://assets.coingecko.com/coins/images/23261/thumb/TXirEzAw_400x400.jpg?1696522481",
+    "symbol": "MF",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xbb95cc1c662d89822bda29d2e147b124406e6e42": {
+    "assetId": "eip155:56/bep20:0xbb95cc1c662d89822bda29d2e147b124406e6e42",
+    "chainId": "eip155:56",
+    "name": "Terran Coin on BNB Smart Chain",
+    "precision": 18,
+    "color": "#1C5494",
+    "icon": "https://assets.coingecko.com/coins/images/15351/thumb/TERRAN-500px.png?1696515000",
+    "symbol": "TRR",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xbb9f216bac27046c6b8bdaae660b761b851ab068": {
+    "assetId": "eip155:56/bep20:0xbb9f216bac27046c6b8bdaae660b761b851ab068",
+    "chainId": "eip155:56",
+    "name": "Foho Coin on BNB Smart Chain",
+    "precision": 8,
+    "color": "#31A6CD",
+    "icon": "https://assets.coingecko.com/coins/images/17933/thumb/FOHO.Coin_colour-02-1.png?1696517454",
+    "symbol": "FOHO",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xbbbcb350c64fe974e5c42a55c7070644191823f3": {
+    "assetId": "eip155:56/bep20:0xbbbcb350c64fe974e5c42a55c7070644191823f3",
+    "chainId": "eip155:56",
+    "name": "CheersLand",
+    "precision": 18,
+    "color": "#F0E5D3",
+    "icon": "https://assets.coingecko.com/coins/images/23906/thumb/15236.png?1696523106",
+    "symbol": "CHEERS",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xbbca42c60b5290f2c48871a596492f93ff0ddc82": {
+    "assetId": "eip155:56/bep20:0xbbca42c60b5290f2c48871a596492f93ff0ddc82",
+    "chainId": "eip155:56",
+    "name": "Domi on BNB Smart Chain",
+    "precision": 18,
+    "color": "#D3AD53",
+    "icon": "https://assets.coingecko.com/coins/images/21633/thumb/Transparent_Circle_Logo_2.png?1696520993",
+    "symbol": "DOMI",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xbbcb0356bb9e6b3faa5cbf9e5f36185d53403ac9": {
+    "assetId": "eip155:56/bep20:0xbbcb0356bb9e6b3faa5cbf9e5f36185d53403ac9",
+    "chainId": "eip155:56",
+    "name": "Backed Coinbase Global on BNB Smart Chain",
+    "precision": 18,
+    "color": "#0548DB",
+    "icon": "https://assets.coingecko.com/coins/images/31872/thumb/b-COIN-200x200.png?1696530684",
+    "symbol": "BCOIN",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xbbcf57177d8752b21d080bf30a06ce20ad6333f8": {
+    "assetId": "eip155:56/bep20:0xbbcf57177d8752b21d080bf30a06ce20ad6333f8",
+    "chainId": "eip155:56",
+    "name": "Zam io on BNB Smart Chain",
+    "precision": 18,
+    "color": "#17233C",
+    "icon": "https://assets.coingecko.com/coins/images/19522/thumb/zam.png?1696518956",
+    "symbol": "ZAM",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xbbdac6ca30ba9189c7bf67a1f7160379f7e25835": {
+    "assetId": "eip155:56/bep20:0xbbdac6ca30ba9189c7bf67a1f7160379f7e25835",
+    "chainId": "eip155:56",
+    "name": "ViteX Coin",
+    "precision": 18,
+    "color": "#1861F5",
+    "icon": "https://assets.coingecko.com/coins/images/10346/thumb/ViteX.png?1696510347",
+    "symbol": "VX",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xbbf1889f22d37640bc70c58b2f643106db0542de": {
+    "assetId": "eip155:56/bep20:0xbbf1889f22d37640bc70c58b2f643106db0542de",
+    "chainId": "eip155:56",
+    "name": "Galaxy Arena Metaverse",
+    "precision": 18,
+    "color": "#4CC4EC",
+    "icon": "https://assets.coingecko.com/coins/images/27923/thumb/esnc.png?1696526943",
+    "symbol": "ESNC",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xbbf8b05ef7af53ccbff8e3673e73714f939bfd84": {
+    "assetId": "eip155:56/bep20:0xbbf8b05ef7af53ccbff8e3673e73714f939bfd84",
+    "chainId": "eip155:56",
+    "name": "FROG CEO",
+    "precision": 9,
+    "color": "#3F853C",
+    "icon": "https://assets.coingecko.com/coins/images/29500/thumb/200.png?1696528445",
+    "symbol": "FROGCEO",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xbc12ad556581ff7162e595e5956f5f3845fdb38c": {
+    "assetId": "eip155:56/bep20:0xbc12ad556581ff7162e595e5956f5f3845fdb38c",
+    "chainId": "eip155:56",
+    "name": "Helicopter Finance",
+    "precision": 9,
+    "color": "#ECEBEF",
+    "icon": "https://assets.coingecko.com/coins/images/15217/thumb/att1YJDb_400x400.jpg?1696514872",
+    "symbol": "COPTER",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xbc194e6f748a222754c3e8b9946922c09e7d4e91": {
+    "assetId": "eip155:56/bep20:0xbc194e6f748a222754c3e8b9946922c09e7d4e91",
+    "chainId": "eip155:56",
+    "name": "Lever Network on BNB Smart Chain",
+    "precision": 18,
+    "color": "#242B3B",
+    "icon": "https://assets.coingecko.com/coins/images/15323/thumb/lever.PNG?1696514972",
+    "symbol": "LEV",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xbc1aff2c8fbcf65a96e4a634f2d69d2cd483036a": {
+    "assetId": "eip155:56/bep20:0xbc1aff2c8fbcf65a96e4a634f2d69d2cd483036a",
+    "chainId": "eip155:56",
+    "name": "Viva",
+    "precision": 18,
+    "color": "#7CBCA8",
+    "icon": "https://assets.coingecko.com/coins/images/25300/thumb/Logo-ReverseWebsiteColor.png?1696524437",
+    "symbol": "VIVA",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xbc2a152ce36a76e3071ce221761e2445c1c496d4": {
+    "assetId": "eip155:56/bep20:0xbc2a152ce36a76e3071ce221761e2445c1c496d4",
+    "chainId": "eip155:56",
+    "name": "XSPACE",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/33179/thumb/xspace-200.png?1700924807",
+    "symbol": "XSP",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xbc648cbd7b2b2c666f9f46ac5c5ce6ee77f9c407": {
+    "assetId": "eip155:56/bep20:0xbc648cbd7b2b2c666f9f46ac5c5ce6ee77f9c407",
+    "chainId": "eip155:56",
+    "name": "Work Quest on BNB Smart Chain",
+    "precision": 18,
+    "color": "#0F67A6",
+    "icon": "https://assets.coingecko.com/coins/images/30040/thumb/WQT-1_%281%29.png?1696528963",
+    "symbol": "WQT",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xbc7370641ddcf16a27eea11230af4a9f247b61f9": {
+    "assetId": "eip155:56/bep20:0xbc7370641ddcf16a27eea11230af4a9f247b61f9",
+    "chainId": "eip155:56",
+    "name": "XANA on BNB Smart Chain",
+    "precision": 18,
+    "color": "#1A0557",
+    "icon": "https://assets.coingecko.com/coins/images/24379/thumb/XANA_Logo_neon_pink.png?1696523562",
+    "symbol": "XETA",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xbc7a566b85ef73f935e640a06b5a8b031cd975df": {
+    "assetId": "eip155:56/bep20:0xbc7a566b85ef73f935e640a06b5a8b031cd975df",
+    "chainId": "eip155:56",
+    "name": "Blockasset",
+    "precision": 6,
+    "color": "#34BDBC",
+    "icon": "https://assets.coingecko.com/coins/images/21332/thumb/Blockasset-Logo-Symbol.png?1696520699",
+    "symbol": "BLOCK",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xbc7d6b50616989655afd682fb42743507003056d": {
+    "assetId": "eip155:56/bep20:0xbc7d6b50616989655afd682fb42743507003056d",
+    "chainId": "eip155:56",
+    "name": "Alchemy Pay on BNB Smart Chain",
+    "precision": 8,
+    "color": "#040444",
+    "icon": "https://assets.coingecko.com/coins/images/12390/thumb/ACH_%281%29.png?1696512213",
+    "symbol": "ACH",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xbcb24afb019be7e93ea9c43b7e22bb55d5b7f45d": {
+    "assetId": "eip155:56/bep20:0xbcb24afb019be7e93ea9c43b7e22bb55d5b7f45d",
+    "chainId": "eip155:56",
+    "name": "BSCS",
+    "precision": 18,
+    "color": "#D4A419",
+    "icon": "https://assets.coingecko.com/coins/images/14963/thumb/BSCS_LOGO.png?1696514623",
+    "symbol": "BSCS",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xbcb3ac7a3ceb2d0c5e162a03901d6d7bb8602912": {
+    "assetId": "eip155:56/bep20:0xbcb3ac7a3ceb2d0c5e162a03901d6d7bb8602912",
+    "chainId": "eip155:56",
+    "name": "Ltradex",
+    "precision": 18,
+    "color": "#C5AE58",
+    "icon": "https://assets.coingecko.com/coins/images/22001/thumb/photo1637249460-removebg-preview-1.png?1696521348",
+    "symbol": "LTEX",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xbcbdecf8e76a5c32dba69de16985882ace1678c6": {
+    "assetId": "eip155:56/bep20:0xbcbdecf8e76a5c32dba69de16985882ace1678c6",
+    "chainId": "eip155:56",
+    "name": "Revenue Coin",
+    "precision": 18,
+    "color": "#A7CA11",
+    "icon": "https://assets.coingecko.com/coins/images/21625/thumb/RVC_logo_200_200.png?1696520985",
+    "symbol": "RVC",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xbcc608002765339db153d07250d516bc4356531b": {
+    "assetId": "eip155:56/bep20:0xbcc608002765339db153d07250d516bc4356531b",
+    "chainId": "eip155:56",
+    "name": "Leonidasbilic",
+    "precision": 18,
+    "color": "#E00488",
+    "icon": "https://assets.coingecko.com/coins/images/27084/thumb/output-onlinepngtools-55.png?1696526134",
+    "symbol": "LIO",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xbccd27062ae1a2bea5731c904b96edfb163aba21": {
+    "assetId": "eip155:56/bep20:0xbccd27062ae1a2bea5731c904b96edfb163aba21",
+    "chainId": "eip155:56",
+    "name": "Dogcoin on BNB Smart Chain",
+    "precision": 9,
+    "color": "#F9DEAC",
+    "icon": "https://assets.coingecko.com/coins/images/29065/thumb/1024_%281%29.png?1696528032",
+    "symbol": "DOGS",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xbcd192f38457619fbdef609a194e8ab467cc3a58": {
+    "assetId": "eip155:56/bep20:0xbcd192f38457619fbdef609a194e8ab467cc3a58",
+    "chainId": "eip155:56",
+    "name": "Cherish",
+    "precision": 6,
+    "color": "#EC648C",
+    "icon": "https://assets.coingecko.com/coins/images/24274/thumb/logo-svg.png?1696523457",
+    "symbol": "CHC",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xbceee918077f63fb1b9e10403f59ca40c7061341": {
+    "assetId": "eip155:56/bep20:0xbceee918077f63fb1b9e10403f59ca40c7061341",
+    "chainId": "eip155:56",
+    "name": "Papa Doge",
+    "precision": 18,
+    "color": "#EFF0E7",
+    "icon": "https://assets.coingecko.com/coins/images/16721/thumb/PAPADOGE.jpg?1696516295",
+    "symbol": "PAPADOGE",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xbd01a5b92ebef331f42d2ea99ff087e5834621ac": {
+    "assetId": "eip155:56/bep20:0xbd01a5b92ebef331f42d2ea99ff087e5834621ac",
+    "chainId": "eip155:56",
+    "name": "BaseBank",
+    "precision": 18,
+    "color": "#DAE2FC",
+    "icon": "https://assets.coingecko.com/coins/images/31847/thumb/bbanklogo.png?1696530661",
+    "symbol": "BBANK",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xbd100d061e120b2c67a24453cf6368e63f1be056": {
+    "assetId": "eip155:56/bep20:0xbd100d061e120b2c67a24453cf6368e63f1be056",
+    "chainId": "eip155:56",
+    "name": "iDypius on BNB Smart Chain",
+    "precision": 18,
+    "color": "#A4EAA0",
+    "icon": "https://assets.coingecko.com/coins/images/21976/thumb/iDYP-200x200px.png?1696521324",
+    "symbol": "IDYP",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xbd2949f67dcdc549c6ebe98696449fa79d988a9f": {
+    "assetId": "eip155:56/bep20:0xbd2949f67dcdc549c6ebe98696449fa79d988a9f",
+    "chainId": "eip155:56",
+    "name": "Meter Governance",
+    "precision": 18,
+    "color": "#040C34",
+    "icon": "https://assets.coingecko.com/coins/images/11848/thumb/meter.png?1696511719",
+    "symbol": "MTRG",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xbd2c43da85d007b0b3cd856fd55c299578d832bc": {
+    "assetId": "eip155:56/bep20:0xbd2c43da85d007b0b3cd856fd55c299578d832bc",
+    "chainId": "eip155:56",
+    "name": "Lifty",
+    "precision": 18,
+    "color": "#121212",
+    "icon": "https://assets.coingecko.com/coins/images/16384/thumb/ktQzdAe.png?1696515982",
+    "symbol": "LQT",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xbd4b29918d92d613b019252091ab0189f354534f": {
+    "assetId": "eip155:56/bep20:0xbd4b29918d92d613b019252091ab0189f354534f",
+    "chainId": "eip155:56",
+    "name": "Matsuri Shiba Inu",
+    "precision": 18,
+    "color": "#173436",
+    "icon": "https://assets.coingecko.com/coins/images/31393/thumb/IMG_20230820_203650_706.jpg?1696530209",
+    "symbol": "MSHIBA",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xbd4c4dc19f208cda6caacadadc0bff4cd975fa34": {
+    "assetId": "eip155:56/bep20:0xbd4c4dc19f208cda6caacadadc0bff4cd975fa34",
+    "chainId": "eip155:56",
+    "name": "Dogs Rock",
+    "precision": 9,
+    "color": "#AC7358",
+    "icon": "https://assets.coingecko.com/coins/images/32542/thumb/DOGELOGOPNG200.png?1698473490",
+    "symbol": "DOGSROCK",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xbd525e51384905c6c0936a431bc7efb6c4903ea0": {
+    "assetId": "eip155:56/bep20:0xbd525e51384905c6c0936a431bc7efb6c4903ea0",
+    "chainId": "eip155:56",
+    "name": "Bistroo on BNB Smart Chain",
+    "precision": 18,
+    "color": "#FC6754",
+    "icon": "https://assets.coingecko.com/coins/images/15645/thumb/bistroo.png?1696515277",
+    "symbol": "BIST",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xbd6ceeef56985b608252c3651dd903a3fcc34910": {
+    "assetId": "eip155:56/bep20:0xbd6ceeef56985b608252c3651dd903a3fcc34910",
+    "chainId": "eip155:56",
+    "name": "Twelve Zodiac",
+    "precision": 18,
+    "color": "#393965",
+    "icon": "https://assets.coingecko.com/coins/images/30418/thumb/Twelve_Zodiac.png?1696529306",
+    "symbol": "TWELVE",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xbd7b8e4de08d9b01938f7ff2058f110ee1e0e8d4": {
+    "assetId": "eip155:56/bep20:0xbd7b8e4de08d9b01938f7ff2058f110ee1e0e8d4",
+    "chainId": "eip155:56",
+    "name": "GamerCoin on BNB Smart Chain",
+    "precision": 18,
+    "color": "#FBF4F4",
+    "icon": "https://assets.coingecko.com/coins/images/14714/thumb/ghx_icon.png?1696514385",
+    "symbol": "GHX",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xbd817c2e531b1b31f211f50f59fbc87ebc50ef48": {
+    "assetId": "eip155:56/bep20:0xbd817c2e531b1b31f211f50f59fbc87ebc50ef48",
+    "chainId": "eip155:56",
+    "name": "Quick Transfer Coin Plus",
+    "precision": 18,
+    "color": "#0F0C07",
+    "icon": "https://assets.coingecko.com/coins/images/30448/thumb/200x200.png?1696529335",
+    "symbol": "QTCC",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xbd83010eb60f12112908774998f65761cf9f6f9a": {
+    "assetId": "eip155:56/bep20:0xbd83010eb60f12112908774998f65761cf9f6f9a",
+    "chainId": "eip155:56",
+    "name": "Mogul Productions on BNB Smart Chain",
+    "precision": 18,
+    "color": "#E4BC5C",
+    "icon": "https://assets.coingecko.com/coins/images/14975/thumb/STARS_LOGO_PNG.png?1696514635",
+    "symbol": "STARS",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xbd8ccac4bd523cb2fdb34876de2f596dbf75885e": {
+    "assetId": "eip155:56/bep20:0xbd8ccac4bd523cb2fdb34876de2f596dbf75885e",
+    "chainId": "eip155:56",
+    "name": "Trendsy",
+    "precision": 8,
+    "color": "#8C8CFC",
+    "icon": "https://assets.coingecko.com/coins/images/23088/thumb/Trendsy-logo-200x200-1.png?1696522378",
+    "symbol": "TRNDZ",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xbdc3b3639f7aa19e623a4d603a3fb7ab20115a91": {
+    "assetId": "eip155:56/bep20:0xbdc3b3639f7aa19e623a4d603a3fb7ab20115a91",
+    "chainId": "eip155:56",
+    "name": "Coin of the champions on BNB Smart Chain",
+    "precision": 18,
+    "color": "#E4F404",
+    "icon": "https://assets.coingecko.com/coins/images/18478/thumb/COC-Yellow-Transparent-1.png?1696517963",
+    "symbol": "COC",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xbdd2e3fdb879aa42748e9d47b7359323f226ba22": {
+    "assetId": "eip155:56/bep20:0xbdd2e3fdb879aa42748e9d47b7359323f226ba22",
+    "chainId": "eip155:56",
+    "name": "Predictcoin",
+    "precision": 18,
+    "color": "#2C5AF4",
+    "icon": "https://assets.coingecko.com/coins/images/21684/thumb/pc.png?1696521040",
+    "symbol": "PRED",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xbdeae1ca48894a1759a8374d63925f21f2ee2639": {
+    "assetId": "eip155:56/bep20:0xbdeae1ca48894a1759a8374d63925f21f2ee2639",
+    "chainId": "eip155:56",
+    "name": "Open Campus on BNB Smart Chain",
+    "precision": 18,
+    "color": "#04ECBC",
+    "icon": "https://assets.coingecko.com/coins/images/29948/thumb/EDU_Logo.png?1696528874",
+    "symbol": "EDU",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xbe0d3526fc797583dada3f30bc390013062a048b": {
+    "assetId": "eip155:56/bep20:0xbe0d3526fc797583dada3f30bc390013062a048b",
+    "chainId": "eip155:56",
+    "name": "PLEARN",
+    "precision": 18,
+    "color": "#422D21",
+    "icon": "https://assets.coingecko.com/coins/images/24723/thumb/plearn200x200.png?1696523887",
+    "symbol": "PLN",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xbe1a001fe942f96eea22ba08783140b9dcc09d28": {
+    "assetId": "eip155:56/bep20:0xbe1a001fe942f96eea22ba08783140b9dcc09d28",
+    "chainId": "eip155:56",
+    "name": "Beta Finance on BNB Smart Chain",
+    "precision": 18,
+    "color": "#2D1C2C",
+    "icon": "https://assets.coingecko.com/coins/images/18715/thumb/beta_finance.jpg?1696518183",
+    "symbol": "BETA",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xbe2b6c5e31f292009f495ddbda88e28391c9815e": {
+    "assetId": "eip155:56/bep20:0xbe2b6c5e31f292009f495ddbda88e28391c9815e",
+    "chainId": "eip155:56",
+    "name": "Level Governance",
+    "precision": 18,
+    "color": "#FCB411",
+    "icon": "https://assets.coingecko.com/coins/images/28629/thumb/LGO-256.png?1696527613",
+    "symbol": "LGO",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xbe2d8ac2a370972c4328bed520b224c3903a4941": {
+    "assetId": "eip155:56/bep20:0xbe2d8ac2a370972c4328bed520b224c3903a4941",
+    "chainId": "eip155:56",
+    "name": "Novem Pro",
+    "precision": 18,
+    "color": "#B17F28",
+    "icon": "https://assets.coingecko.com/coins/images/24804/thumb/photo_5972293329968282493_x.jpg?1696523963",
+    "symbol": "NVM",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xbe3fd4d1e0d244ddd98686a28f67355efe223346": {
+    "assetId": "eip155:56/bep20:0xbe3fd4d1e0d244ddd98686a28f67355efe223346",
+    "chainId": "eip155:56",
+    "name": "Monopoly Millionaire Control",
+    "precision": 8,
+    "color": "#F7F5F0",
+    "icon": "https://assets.coingecko.com/coins/images/26608/thumb/zdtbAbZJ_400x400.jpeg?1696525682",
+    "symbol": "MMC",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xbe4cb2c354480042a39350a0c6c26bf54786539f": {
+    "assetId": "eip155:56/bep20:0xbe4cb2c354480042a39350a0c6c26bf54786539f",
+    "chainId": "eip155:56",
+    "name": "DeFinity on BNB Smart Chain",
+    "precision": 18,
+    "color": "#0494AC",
+    "icon": "https://assets.coingecko.com/coins/images/15875/thumb/definity-listing-logo.png?1696515490",
+    "symbol": "DEFX",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xbe5166e8e8a5cb801f09a6a0a46c42b7c27be755": {
+    "assetId": "eip155:56/bep20:0xbe5166e8e8a5cb801f09a6a0a46c42b7c27be755",
+    "chainId": "eip155:56",
+    "name": "KEEPs Coin on BNB Smart Chain",
+    "precision": 18,
+    "color": "#E0EDEF",
+    "icon": "https://assets.coingecko.com/coins/images/19622/thumb/keeps.PNG?1696519051",
+    "symbol": "KVERSE",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xbe80ffaab00fc3a6d590959c551bb670bc50c717": {
+    "assetId": "eip155:56/bep20:0xbe80ffaab00fc3a6d590959c551bb670bc50c717",
+    "chainId": "eip155:56",
+    "name": "Kalkulus",
+    "precision": 18,
+    "color": "#D7C049",
+    "icon": "https://assets.coingecko.com/coins/images/3952/thumb/kalkulus.png?1696504596",
+    "symbol": "KLKS",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xbe96fcf736ad906b1821ef74a0e4e346c74e6221": {
+    "assetId": "eip155:56/bep20:0xbe96fcf736ad906b1821ef74a0e4e346c74e6221",
+    "chainId": "eip155:56",
+    "name": "NIX",
+    "precision": 18,
+    "color": "#8670C6",
+    "icon": "https://assets.coingecko.com/coins/images/31507/thumb/1000002051.jpg?1696530317",
+    "symbol": "NIX",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xbea7086c99a85d4b5e6a0494c18b037fdd8ee932": {
+    "assetId": "eip155:56/bep20:0xbea7086c99a85d4b5e6a0494c18b037fdd8ee932",
+    "chainId": "eip155:56",
+    "name": "Freedom Reserve on BNB Smart Chain",
+    "precision": 18,
+    "color": "#9CAF61",
+    "icon": "https://assets.coingecko.com/coins/images/13342/thumb/J6uNL2FS_400x400.jpg?1696513109",
+    "symbol": "FR",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xbeafb3262fac740fdb5ae40393d88884ad6d8bdd": {
+    "assetId": "eip155:56/bep20:0xbeafb3262fac740fdb5ae40393d88884ad6d8bdd",
+    "chainId": "eip155:56",
+    "name": "DecenFi",
+    "precision": 18,
+    "color": "#7D879F",
+    "icon": "https://assets.coingecko.com/coins/images/32115/thumb/dcn.jpg?1696585635",
+    "symbol": "DFI",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xbededdf2ef49e87037c4fb2ca34d1ff3d3992a11": {
+    "assetId": "eip155:56/bep20:0xbededdf2ef49e87037c4fb2ca34d1ff3d3992a11",
+    "chainId": "eip155:56",
+    "name": "FEG BSC",
+    "precision": 18,
+    "color": "#397EFA",
+    "icon": "https://assets.coingecko.com/coins/images/29644/thumb/feg.png?1696528581",
+    "symbol": "FEG",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xbef05cf52d8b244eeca6033fb8b9b69e1974f681": {
+    "assetId": "eip155:56/bep20:0xbef05cf52d8b244eeca6033fb8b9b69e1974f681",
+    "chainId": "eip155:56",
+    "name": "Shiba CEO",
+    "precision": 9,
+    "color": "#553E79",
+    "icon": "https://assets.coingecko.com/coins/images/29376/thumb/A0D7C0ED-60CE-4B76-B279-E6901F2A4449.jpeg?1696528323",
+    "symbol": "SHIBCEO",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xbf05279f9bf1ce69bbfed670813b7e431142afa4": {
+    "assetId": "eip155:56/bep20:0xbf05279f9bf1ce69bbfed670813b7e431142afa4",
+    "chainId": "eip155:56",
+    "name": "Million on BNB Smart Chain",
+    "precision": 18,
+    "color": "#F1AB0D",
+    "icon": "https://assets.coingecko.com/coins/images/16825/thumb/logo200x200.png?1696516393",
+    "symbol": "MM",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xbf151f63d8d1287db5fc7a3bc104a9c38124cdeb": {
+    "assetId": "eip155:56/bep20:0xbf151f63d8d1287db5fc7a3bc104a9c38124cdeb",
+    "chainId": "eip155:56",
+    "name": "AVNRich",
+    "precision": 18,
+    "color": "#BFF14D",
+    "icon": "https://assets.coingecko.com/coins/images/14819/thumb/avn.png?1696514487",
+    "symbol": "AVN",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xbf27b3163c25113be5439d56f8acf2209ef3e5bd": {
+    "assetId": "eip155:56/bep20:0xbf27b3163c25113be5439d56f8acf2209ef3e5bd",
+    "chainId": "eip155:56",
+    "name": "Hotel of Secrets on BNB Smart Chain",
+    "precision": 18,
+    "color": "#8464FC",
+    "icon": "https://assets.coingecko.com/coins/images/31567/thumb/Hotel_of_Secrets_icon.png?1696530379",
+    "symbol": "HOS",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xbf27da33a58de2bc6eb1c7dab6cf2e84e825d7dc": {
+    "assetId": "eip155:56/bep20:0xbf27da33a58de2bc6eb1c7dab6cf2e84e825d7dc",
+    "chainId": "eip155:56",
+    "name": "ZambesiGold",
+    "precision": 18,
+    "color": "#524F61",
+    "icon": "https://assets.coingecko.com/coins/images/25544/thumb/lD1w22TUaUn2AkWmkgI5WWSufl5kZ-1Gu3s-g-2A9qZ-DyW5g9UrrBRaOxKp5fcLEghB2VR-XBxw-4mu4M76SjH3YDCvh27CH4RTfKAbtlrEWHNP7oHN9Y6eBrqwfGu_-M0SAJf-dqDRnMNLWIxP8hKtAxaIFR0_JmxdInlMpBJa2WONniOHCeGomlyYeGfBKa4bYytvpIKDwZNBC-b_-enFwb.jpg?1696524677",
+    "symbol": "ZGD",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xbf37f781473f3b50e82c668352984865eac9853f": {
+    "assetId": "eip155:56/bep20:0xbf37f781473f3b50e82c668352984865eac9853f",
+    "chainId": "eip155:56",
+    "name": "The Crypto You",
+    "precision": 18,
+    "color": "#D5D4D4",
+    "icon": "https://assets.coingecko.com/coins/images/21308/thumb/milk200.png?1696520677",
+    "symbol": "MILK",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xbf3950db0522a7f5caa107d4cbbbd84de9e047e2": {
+    "assetId": "eip155:56/bep20:0xbf3950db0522a7f5caa107d4cbbbd84de9e047e2",
+    "chainId": "eip155:56",
+    "name": "JUSD on BNB Smart Chain",
+    "precision": 18,
+    "color": "#1844C8",
+    "icon": "https://assets.coingecko.com/coins/images/32302/thumb/200x200.png?1697186770",
+    "symbol": "JUSD",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xbf5140a22578168fd562dccf235e5d43a02ce9b1": {
+    "assetId": "eip155:56/bep20:0xbf5140a22578168fd562dccf235e5d43a02ce9b1",
+    "chainId": "eip155:56",
+    "name": "Uniswap on BNB Smart Chain",
+    "precision": 18,
+    "color": "#FCECF5",
+    "icon": "https://assets.coingecko.com/coins/images/12504/thumb/uni.jpg?1696512319",
+    "symbol": "UNI",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xbf758f2afec32b92e8008b5671088d42af616515": {
+    "assetId": "eip155:56/bep20:0xbf758f2afec32b92e8008b5671088d42af616515",
+    "chainId": "eip155:56",
+    "name": "DogeArmy",
+    "precision": 9,
+    "color": "#6D7131",
+    "icon": "https://assets.coingecko.com/coins/images/29212/thumb/dogearmy.png?1696528170",
+    "symbol": "DOGRMY",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xbf76dbf84b16da71366fc73cf8c19600449ce71a": {
+    "assetId": "eip155:56/bep20:0xbf76dbf84b16da71366fc73cf8c19600449ce71a",
+    "chainId": "eip155:56",
+    "name": "Mimbo",
+    "precision": 18,
+    "color": "#151E23",
+    "icon": "https://assets.coingecko.com/coins/images/31297/thumb/%ED%8B%B0%EC%BB%A4%EC%9E%91%EC%97%85_%EC%99%84%EB%A3%8C.png?1696530117",
+    "symbol": "MIMBO",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xbf776e4fca664d791c4ee3a71e2722990e003283": {
+    "assetId": "eip155:56/bep20:0xbf776e4fca664d791c4ee3a71e2722990e003283",
+    "chainId": "eip155:56",
+    "name": "Smoothy on BNB Smart Chain",
+    "precision": 18,
+    "color": "#5A5F6C",
+    "icon": "https://assets.coingecko.com/coins/images/15039/thumb/dDxKgwPN_400x400.jpg?1696514698",
+    "symbol": "SMTY",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xbf7c81fff98bbe61b40ed186e4afd6ddd01337fe": {
+    "assetId": "eip155:56/bep20:0xbf7c81fff98bbe61b40ed186e4afd6ddd01337fe",
+    "chainId": "eip155:56",
+    "name": "Wrapped EGLD",
+    "precision": 18,
+    "color": "#0E1B1A",
+    "icon": "https://assets.coingecko.com/coins/images/22255/thumb/wrapped_elrond.jpg?1696521600",
+    "symbol": "WEGLD",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xbf8bab33600d5bca18e4464e34c2a8d532031f5c": {
+    "assetId": "eip155:56/bep20:0xbf8bab33600d5bca18e4464e34c2a8d532031f5c",
+    "chainId": "eip155:56",
+    "name": "Ozone Metaverse",
+    "precision": 18,
+    "color": "#04070E",
+    "icon": "https://assets.coingecko.com/coins/images/31679/thumb/Copy_of_token-icon-purple-blue_%283%29.png?1696530498",
+    "symbol": "OZONE",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xbfb1a68962fb4ed040fd3a0a71dc2c2015bcc667": {
+    "assetId": "eip155:56/bep20:0xbfb1a68962fb4ed040fd3a0a71dc2c2015bcc667",
+    "chainId": "eip155:56",
+    "name": "4JNET",
+    "precision": 9,
+    "color": "#144987",
+    "icon": "https://assets.coingecko.com/coins/images/21145/thumb/4jnet.PNG?1696520523",
+    "symbol": "4JNET",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xbfb8f92e8f3a9034019ac97fd9f85c6dfb513834": {
+    "assetId": "eip155:56/bep20:0xbfb8f92e8f3a9034019ac97fd9f85c6dfb513834",
+    "chainId": "eip155:56",
+    "name": "CeBioLabs",
+    "precision": 18,
+    "color": "#0C2130",
+    "icon": "https://assets.coingecko.com/coins/images/27523/thumb/XQ1K7Vy1_400x400.jpeg?1696526561",
+    "symbol": "CBSL",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xbfbee3dac982148ac793161f7362344925506903": {
+    "assetId": "eip155:56/bep20:0xbfbee3dac982148ac793161f7362344925506903",
+    "chainId": "eip155:56",
+    "name": "CatzCoin",
+    "precision": 18,
+    "color": "#D5BF84",
+    "icon": "https://assets.coingecko.com/coins/images/15519/thumb/MX0hFr7.jpeg?1696515162",
+    "symbol": "CATZ",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xbfda21db28d5f3dc9586c190804871f831c6eb4f": {
+    "assetId": "eip155:56/bep20:0xbfda21db28d5f3dc9586c190804871f831c6eb4f",
+    "chainId": "eip155:56",
+    "name": "Mr Rabbit Coin",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/32850/thumb/MRABBIT_LOGO_200x200_PNG.png?1699663009",
+    "symbol": "MRABBIT",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xbfdfa2143d1aa3efea094e5177295df9e77202a8": {
+    "assetId": "eip155:56/bep20:0xbfdfa2143d1aa3efea094e5177295df9e77202a8",
+    "chainId": "eip155:56",
+    "name": "Hokkaido Inu",
+    "precision": 9,
+    "color": "#DDD1BD",
+    "icon": "https://assets.coingecko.com/coins/images/29595/thumb/HOKKA.png?1696528534",
+    "symbol": "HOKA",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xbfea674ce7d16e26e39e3c088810367a708ef94c": {
+    "assetId": "eip155:56/bep20:0xbfea674ce7d16e26e39e3c088810367a708ef94c",
+    "chainId": "eip155:56",
+    "name": "April",
+    "precision": 18,
+    "color": "#F45C24",
+    "icon": "https://assets.coingecko.com/coins/images/15689/thumb/200-by-200-01.png?1696515318",
+    "symbol": "APRIL",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xbfef6ccfc830d3baca4f6766a0d4aaa242ca9f3d": {
+    "assetId": "eip155:56/bep20:0xbfef6ccfc830d3baca4f6766a0d4aaa242ca9f3d",
+    "chainId": "eip155:56",
+    "name": "Navcoin",
+    "precision": 8,
+    "color": "#F1F3F4",
+    "icon": "https://assets.coingecko.com/coins/images/233/thumb/Navcoin_Logo.png?1696501588",
+    "symbol": "NAV",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xbfff3571f9fd637ae7cfb63ac2112fd18264ce62": {
+    "assetId": "eip155:56/bep20:0xbfff3571f9fd637ae7cfb63ac2112fd18264ce62",
+    "chainId": "eip155:56",
+    "name": "Tarmex  OLD ",
+    "precision": 18,
+    "color": "#04050D",
+    "icon": "https://assets.coingecko.com/coins/images/28935/thumb/Tarmex_Logo.png?1696527909",
+    "symbol": "TARM",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xc001bbe2b87079294c63ece98bdd0a88d761434e": {
+    "assetId": "eip155:56/bep20:0xc001bbe2b87079294c63ece98bdd0a88d761434e",
+    "chainId": "eip155:56",
+    "name": "EverGrow Coin",
+    "precision": 9,
+    "color": "#F6E7F9",
+    "icon": "https://assets.coingecko.com/coins/images/18645/thumb/cmc_egc_200x200_circ.png?1696518116",
+    "symbol": "EGC",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xc003f5193cabe3a6cbb56948dfeaae2276a6aa5e": {
+    "assetId": "eip155:56/bep20:0xc003f5193cabe3a6cbb56948dfeaae2276a6aa5e",
+    "chainId": "eip155:56",
+    "name": "TruBadger",
+    "precision": 18,
+    "color": "#F6D642",
+    "icon": "https://assets.coingecko.com/coins/images/16398/thumb/trubadger_logo.PNG?1696515995",
+    "symbol": "TRUBGR",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xc01444175ff3c39047f1548507cdf2183dc55e06": {
+    "assetId": "eip155:56/bep20:0xc01444175ff3c39047f1548507cdf2183dc55e06",
+    "chainId": "eip155:56",
+    "name": "Web3Frontier",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/33192/thumb/w3f-cg.png?1700969746",
+    "symbol": "W3F",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xc029a12e4a002c6858878fd9d3cc74e227cc2dda": {
+    "assetId": "eip155:56/bep20:0xc029a12e4a002c6858878fd9d3cc74e227cc2dda",
+    "chainId": "eip155:56",
+    "name": "Velorex",
+    "precision": 9,
+    "color": "#141E19",
+    "icon": "https://assets.coingecko.com/coins/images/15793/thumb/vex.png?1696515416",
+    "symbol": "VEX",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xc0366a104b429f0806bfa98d0008daa9555b2bed": {
+    "assetId": "eip155:56/bep20:0xc0366a104b429f0806bfa98d0008daa9555b2bed",
+    "chainId": "eip155:56",
+    "name": "Safemars Protocol",
+    "precision": 9,
+    "color": "#F25D04",
+    "icon": "https://assets.coingecko.com/coins/images/16143/thumb/83904828.png?1623118918",
+    "symbol": "SMARS",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xc03fbf20a586fa89c2a5f6f941458e1fbc40c661": {
+    "assetId": "eip155:56/bep20:0xc03fbf20a586fa89c2a5f6f941458e1fbc40c661",
+    "chainId": "eip155:56",
+    "name": "COMBO on BNB Smart Chain",
+    "precision": 18,
+    "color": "#09080C",
+    "icon": "https://assets.coingecko.com/coins/images/4932/thumb/COMBO.jpg?1696505472",
+    "symbol": "COMBO",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xc06e83828aaf80a2b4883f1e260b1896bfc5bca3": {
+    "assetId": "eip155:56/bep20:0xc06e83828aaf80a2b4883f1e260b1896bfc5bca3",
+    "chainId": "eip155:56",
+    "name": "Hudex",
+    "precision": 18,
+    "color": "#942089",
+    "icon": "https://assets.coingecko.com/coins/images/29887/thumb/logo200x200.png?1696528812",
+    "symbol": "HU",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xc07beee9fe5ab11b81cc1fc8af257c9accf98ca7": {
+    "assetId": "eip155:56/bep20:0xc07beee9fe5ab11b81cc1fc8af257c9accf98ca7",
+    "chainId": "eip155:56",
+    "name": "Sonicpad",
+    "precision": 18,
+    "color": "#0A8AC8",
+    "icon": "https://assets.coingecko.com/coins/images/32368/thumb/IMG_0001.png?1698030490",
+    "symbol": "SNC",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xc07f685bcf67ed7069b67d28556835b7c3bda55f": {
+    "assetId": "eip155:56/bep20:0xc07f685bcf67ed7069b67d28556835b7c3bda55f",
+    "chainId": "eip155:56",
+    "name": "zkNFTex",
+    "precision": 18,
+    "color": "#F1F2F8",
+    "icon": "https://assets.coingecko.com/coins/images/28610/thumb/_ZKN.jpg?1696527596",
+    "symbol": "ZKN",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xc08aa06c1d707bf910ada0bdeef1353f379e64e1": {
+    "assetId": "eip155:56/bep20:0xc08aa06c1d707bf910ada0bdeef1353f379e64e1",
+    "chainId": "eip155:56",
+    "name": "Ink Fantom on BNB Smart Chain",
+    "precision": 18,
+    "color": "#3A3B41",
+    "icon": "https://assets.coingecko.com/coins/images/23511/thumb/v3INKLogo-03.png?1696522720",
+    "symbol": "INK",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xc0924edefb2c0c303de2d0c21bff07ab763163b5": {
+    "assetId": "eip155:56/bep20:0xc0924edefb2c0c303de2d0c21bff07ab763163b5",
+    "chainId": "eip155:56",
+    "name": "Steam Exchange",
+    "precision": 9,
+    "color": "#815817",
+    "icon": "https://assets.coingecko.com/coins/images/16914/thumb/steamx.png?1696516485",
+    "symbol": "STEAMX",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xc0994af94fee0361a1e1e1ccf72bce19d5fd86fb": {
+    "assetId": "eip155:56/bep20:0xc0994af94fee0361a1e1e1ccf72bce19d5fd86fb",
+    "chainId": "eip155:56",
+    "name": "RichCity",
+    "precision": 9,
+    "color": "#28BDD5",
+    "icon": "https://assets.coingecko.com/coins/images/16985/thumb/Richcity.png?1696516551",
+    "symbol": "RICH",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xc0c6e4c6e70c6231b20979bda581a66f062a7967": {
+    "assetId": "eip155:56/bep20:0xc0c6e4c6e70c6231b20979bda581a66f062a7967",
+    "chainId": "eip155:56",
+    "name": "Atari on BNB Smart Chain",
+    "precision": 0,
+    "color": "#EB545A",
+    "icon": "https://assets.coingecko.com/coins/images/12992/thumb/AtariLogoPS_200x200_%281%29.png?1696512782",
+    "symbol": "ATRI",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xc0cc1e5761ba5786916fd055562551798e50d573": {
+    "assetId": "eip155:56/bep20:0xc0cc1e5761ba5786916fd055562551798e50d573",
+    "chainId": "eip155:56",
+    "name": "ASYAGRO",
+    "precision": 18,
+    "color": "#396E81",
+    "icon": "https://assets.coingecko.com/coins/images/10632/thumb/c0Q4z8HJ_400x400.jpg?1696510608",
+    "symbol": "ASY",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xc0dc5adfae1dada9111f376810d772cabd9b6f13": {
+    "assetId": "eip155:56/bep20:0xc0dc5adfae1dada9111f376810d772cabd9b6f13",
+    "chainId": "eip155:56",
+    "name": "CPOS Cloud Payment",
+    "precision": 18,
+    "color": "#1D6FFA",
+    "icon": "https://assets.coingecko.com/coins/images/19229/thumb/cpos.PNG?1696518675",
+    "symbol": "CPOS",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xc0ecb8499d8da2771abcbf4091db7f65158f1468": {
+    "assetId": "eip155:56/bep20:0xc0ecb8499d8da2771abcbf4091db7f65158f1468",
+    "chainId": "eip155:56",
+    "name": "Carbon Protocol on BNB Smart Chain",
+    "precision": 8,
+    "color": "#3E8DAC",
+    "icon": "https://assets.coingecko.com/coins/images/3645/thumb/SWTH_Symbol_Origin.png?1696504327",
+    "symbol": "SWTH",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xc0eff7749b125444953ef89682201fb8c6a917cd": {
+    "assetId": "eip155:56/bep20:0xc0eff7749b125444953ef89682201fb8c6a917cd",
+    "chainId": "eip155:56",
+    "name": "Horizon Protocol",
+    "precision": 18,
+    "color": "#3474FC",
+    "icon": "https://assets.coingecko.com/coins/images/14795/thumb/horizon-logo-200-cg.png?1696514464",
+    "symbol": "HZN",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xc0f42b31d154234a0a3ebe7ec52c662101c1d9bc": {
+    "assetId": "eip155:56/bep20:0xc0f42b31d154234a0a3ebe7ec52c662101c1d9bc",
+    "chainId": "eip155:56",
+    "name": "ShoeFy on BNB Smart Chain",
+    "precision": 18,
+    "color": "#261A4F",
+    "icon": "https://assets.coingecko.com/coins/images/19082/thumb/SHOEFY.jpg?1696518532",
+    "symbol": "SHOE",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xc1012af7be06c250f7ebd21392c169acc64fec95": {
+    "assetId": "eip155:56/bep20:0xc1012af7be06c250f7ebd21392c169acc64fec95",
+    "chainId": "eip155:56",
+    "name": "YooshiApe",
+    "precision": 18,
+    "color": "#C1CC77",
+    "icon": "https://assets.coingecko.com/coins/images/31852/thumb/yooshiape_200.png?1696530666",
+    "symbol": "YOOSHIAPE",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xc10358f062663448a3489fc258139944534592ac": {
+    "assetId": "eip155:56/bep20:0xc10358f062663448a3489fc258139944534592ac",
+    "chainId": "eip155:56",
+    "name": "Blockchain Monster Hunt on BNB Smart Chain",
+    "precision": 18,
+    "color": "#EF8223",
+    "icon": "https://assets.coingecko.com/coins/images/19045/thumb/bcmc-coin-200x200.png?1696518496",
+    "symbol": "BCMC",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xc1165227519ffd22fdc77ceb1037b9b284eef068": {
+    "assetId": "eip155:56/bep20:0xc1165227519ffd22fdc77ceb1037b9b284eef068",
+    "chainId": "eip155:56",
+    "name": "BNSD Finance on BNB Smart Chain",
+    "precision": 18,
+    "color": "#6A2BE2",
+    "icon": "https://assets.coingecko.com/coins/images/12368/thumb/bnsd.png?1696512193",
+    "symbol": "BNSD",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xc134fb0200faa2f214b779bcfeafc44519f3f353": {
+    "assetId": "eip155:56/bep20:0xc134fb0200faa2f214b779bcfeafc44519f3f353",
+    "chainId": "eip155:56",
+    "name": "BearAI",
+    "precision": 18,
+    "color": "#3A151F",
+    "icon": "https://assets.coingecko.com/coins/images/31741/thumb/Bear-ai-200x200.png?1696530560",
+    "symbol": "BAI",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xc1357d32bf23fd5fe3280681a36755b6f150442e": {
+    "assetId": "eip155:56/bep20:0xc1357d32bf23fd5fe3280681a36755b6f150442e",
+    "chainId": "eip155:56",
+    "name": "HotMoon",
+    "precision": 18,
+    "color": "#F6DEE1",
+    "icon": "https://assets.coingecko.com/coins/images/25206/thumb/hotmoon-coinGecko.png?1696524350",
+    "symbol": "HOTMOON",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xc13b7a43223bb9bf4b69bd68ab20ca1b79d81c75": {
+    "assetId": "eip155:56/bep20:0xc13b7a43223bb9bf4b69bd68ab20ca1b79d81c75",
+    "chainId": "eip155:56",
+    "name": "Juggernaut on BNB Smart Chain",
+    "precision": 18,
+    "color": "#443C2C",
+    "icon": "https://assets.coingecko.com/coins/images/12761/thumb/juggernaut_logo.png?1696512558",
+    "symbol": "JGN",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xc17c30e98541188614df99239cabd40280810ca3": {
+    "assetId": "eip155:56/bep20:0xc17c30e98541188614df99239cabd40280810ca3",
+    "chainId": "eip155:56",
+    "name": "EverRise on BNB Smart Chain",
+    "precision": 18,
+    "color": "#EFDEDE",
+    "icon": "https://assets.coingecko.com/coins/images/16367/thumb/Logo_EverRise_Icon_logo.png?1696515966",
+    "symbol": "RISE",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xc183062db25fc96325485ea369c979ce881ac0ea": {
+    "assetId": "eip155:56/bep20:0xc183062db25fc96325485ea369c979ce881ac0ea",
+    "chainId": "eip155:56",
+    "name": "ShibElon on BNB Smart Chain",
+    "precision": 4,
+    "color": "#BEE6E3",
+    "icon": "https://assets.coingecko.com/coins/images/20434/thumb/shibelon.png?1696519841",
+    "symbol": "SHIBELON",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xc18358243294ecf28955f7029559a253f04b4ad9": {
+    "assetId": "eip155:56/bep20:0xc18358243294ecf28955f7029559a253f04b4ad9",
+    "chainId": "eip155:56",
+    "name": "Mobster",
+    "precision": 18,
+    "color": "#100F1A",
+    "icon": "https://assets.coingecko.com/coins/images/31793/thumb/200X200.png?1696530609",
+    "symbol": "MOB",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xc1a59a17f87ba6651eb8e8f707db7672647c45bd": {
+    "assetId": "eip155:56/bep20:0xc1a59a17f87ba6651eb8e8f707db7672647c45bd",
+    "chainId": "eip155:56",
+    "name": "Lunar",
+    "precision": 18,
+    "color": "#F4ECFC",
+    "icon": "https://assets.coingecko.com/coins/images/27664/thumb/LNRTokenLogo2_%281%29.png?1696526693",
+    "symbol": "LNR",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xc1cbfb96a1d5361590b8df04ef78de2fa3178390": {
+    "assetId": "eip155:56/bep20:0xc1cbfb96a1d5361590b8df04ef78de2fa3178390",
+    "chainId": "eip155:56",
+    "name": "Peachfolio",
+    "precision": 18,
+    "color": "#F8E0CF",
+    "icon": "https://assets.coingecko.com/coins/images/16529/thumb/7d578071-601e-4ef6-9a98-cc7984b258c4.png?1696516092",
+    "symbol": "PCHF",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xc1e0510a0df7646817b6632d32caa681a425a5e6": {
+    "assetId": "eip155:56/bep20:0xc1e0510a0df7646817b6632d32caa681a425a5e6",
+    "chainId": "eip155:56",
+    "name": "CFL365 Finance on BNB Smart Chain",
+    "precision": 18,
+    "color": "#2F3944",
+    "icon": "https://assets.coingecko.com/coins/images/17548/thumb/cfl365.PNG?1696517084",
+    "symbol": "CFL365",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xc1fdbed7dac39cae2ccc0748f7a80dc446f6a594": {
+    "assetId": "eip155:56/bep20:0xc1fdbed7dac39cae2ccc0748f7a80dc446f6a594",
+    "chainId": "eip155:56",
+    "name": "BiLira on BNB Smart Chain",
+    "precision": 6,
+    "color": "#8B98E8",
+    "icon": "https://assets.coingecko.com/coins/images/10119/thumb/JBs9jiXO_400x400.jpg?1696510144",
+    "symbol": "TRYB",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xc22e8114818a918260662375450e19ac73d32852": {
+    "assetId": "eip155:56/bep20:0xc22e8114818a918260662375450e19ac73d32852",
+    "chainId": "eip155:56",
+    "name": "KittyCake",
+    "precision": 18,
+    "color": "#F1D0DD",
+    "icon": "https://assets.coingecko.com/coins/images/17319/thumb/logo_-_2021-07-26T173233.519.png?1696516873",
+    "symbol": "KCAKE",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xc23be03f64a834b3fa6ae62c97ac8b40f3eec6a9": {
+    "assetId": "eip155:56/bep20:0xc23be03f64a834b3fa6ae62c97ac8b40f3eec6a9",
+    "chainId": "eip155:56",
+    "name": "Peoplez",
+    "precision": 18,
+    "color": "#404F81",
+    "icon": "https://assets.coingecko.com/coins/images/21185/thumb/peoplez.PNG?1696520561",
+    "symbol": "LEZ",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xc2c23a86def9e9f5972a633b3d25f7ecbfa5e575": {
+    "assetId": "eip155:56/bep20:0xc2c23a86def9e9f5972a633b3d25f7ecbfa5e575",
+    "chainId": "eip155:56",
+    "name": "UniLayer on BNB Smart Chain",
+    "precision": 18,
+    "color": "#D0A0B6",
+    "icon": "https://assets.coingecko.com/coins/images/12164/thumb/logo-layer.jpg?1696512002",
+    "symbol": "LAYER",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xc2cb89bbb5bba6e21db1dfe13493dfd7dcbabd68": {
+    "assetId": "eip155:56/bep20:0xc2cb89bbb5bba6e21db1dfe13493dfd7dcbabd68",
+    "chainId": "eip155:56",
+    "name": "Manga",
+    "precision": 18,
+    "color": "#25BEFC",
+    "icon": "https://assets.coingecko.com/coins/images/17982/thumb/logo-200x200_%287%29.png?1696517500",
+    "symbol": "MANGA",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xc2e9d07f66a89c44062459a47a0d2dc038e4fb16": {
+    "assetId": "eip155:56/bep20:0xc2e9d07f66a89c44062459a47a0d2dc038e4fb16",
+    "chainId": "eip155:56",
+    "name": "pSTAKE Staked BNB",
+    "precision": 18,
+    "color": "#E4B521",
+    "icon": "https://assets.coingecko.com/coins/images/26725/thumb/stkBNB.png?1696525795",
+    "symbol": "STKBNB",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xc2eaaf69e6439abab12dd21f560ba0ec7f17cff7": {
+    "assetId": "eip155:56/bep20:0xc2eaaf69e6439abab12dd21f560ba0ec7f17cff7",
+    "chainId": "eip155:56",
+    "name": "Pepe Original Version on BNB Smart Chain",
+    "precision": 18,
+    "color": "#060906",
+    "icon": "https://assets.coingecko.com/coins/images/30121/thumb/our_logo.png?1696529043",
+    "symbol": "POV",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xc2eb046621b59f604c7abdb1600d01636adc4fed": {
+    "assetId": "eip155:56/bep20:0xc2eb046621b59f604c7abdb1600d01636adc4fed",
+    "chainId": "eip155:56",
+    "name": "ZENEX on BNB Smart Chain",
+    "precision": 6,
+    "color": "#55BC2D",
+    "icon": "https://assets.coingecko.com/coins/images/29638/thumb/znx-logo.png?1696528575",
+    "symbol": "ZNX",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xc2ebaa5f640b30c0d6712a6e0656fb816c10a7d4": {
+    "assetId": "eip155:56/bep20:0xc2ebaa5f640b30c0d6712a6e0656fb816c10a7d4",
+    "chainId": "eip155:56",
+    "name": "BIDZ Coin",
+    "precision": 18,
+    "color": "#0D264C",
+    "icon": "https://assets.coingecko.com/coins/images/26177/thumb/O99u27zU_400x400.png?1696525265",
+    "symbol": "BIDZ",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xc2fd585d2e6a33fe48a0ffc65072216b0e3b2e07": {
+    "assetId": "eip155:56/bep20:0xc2fd585d2e6a33fe48a0ffc65072216b0e3b2e07",
+    "chainId": "eip155:56",
+    "name": "ReBaseChain",
+    "precision": 18,
+    "color": "#2A575C",
+    "icon": "https://assets.coingecko.com/coins/images/31390/thumb/IMG_20230810_041420_033.png?1696530206",
+    "symbol": "BASE",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xc3028fbc1742a16a5d69de1b334cbce28f5d7eb3": {
+    "assetId": "eip155:56/bep20:0xc3028fbc1742a16a5d69de1b334cbce28f5d7eb3",
+    "chainId": "eip155:56",
+    "name": "StarSharks",
+    "precision": 18,
+    "color": "#140F08",
+    "icon": "https://assets.coingecko.com/coins/images/21667/thumb/FLjJKQd0_400x400.jpg?1696521024",
+    "symbol": "SSS",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xc30f12cd65f61ded24db6c415c84f999c9704ebc": {
+    "assetId": "eip155:56/bep20:0xc30f12cd65f61ded24db6c415c84f999c9704ebc",
+    "chainId": "eip155:56",
+    "name": "Sabaka Inu",
+    "precision": 9,
+    "color": "#AD8C63",
+    "icon": "https://assets.coingecko.com/coins/images/15748/thumb/Logo.png?1696515373",
+    "symbol": "SABAKAINU",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xc3137c696796d69f783cd0be4ab4bb96814234aa": {
+    "assetId": "eip155:56/bep20:0xc3137c696796d69f783cd0be4ab4bb96814234aa",
+    "chainId": "eip155:56",
+    "name": "Pepa Inu",
+    "precision": 9,
+    "color": "#CBA3AB",
+    "icon": "https://assets.coingecko.com/coins/images/29557/thumb/IMG_20230324_010229_652.jpg?1696528497",
+    "symbol": "PEPA",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xc32bb619966b9a56cf2472528a36fd099ce979e0": {
+    "assetId": "eip155:56/bep20:0xc32bb619966b9a56cf2472528a36fd099ce979e0",
+    "chainId": "eip155:56",
+    "name": "Matrix Labs on BNB Smart Chain",
+    "precision": 18,
+    "color": "#047459",
+    "icon": "https://assets.coingecko.com/coins/images/18297/thumb/matrixlabs.png?1696517789",
+    "symbol": "MATRIX",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xc34326533e8606e742c7e3775f59994a3ed9fb2f": {
+    "assetId": "eip155:56/bep20:0xc34326533e8606e742c7e3775f59994a3ed9fb2f",
+    "chainId": "eip155:56",
+    "name": "bYSL",
+    "precision": 18,
+    "color": "#DCDCDC",
+    "icon": "https://assets.coingecko.com/coins/images/30588/thumb/bYSL_Light_Mode.png?1696529457",
+    "symbol": "BYSL",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xc350caa89eb963d5d6b964324a0a7736d8d65533": {
+    "assetId": "eip155:56/bep20:0xc350caa89eb963d5d6b964324a0a7736d8d65533",
+    "chainId": "eip155:56",
+    "name": "Infinitee",
+    "precision": 18,
+    "color": "#4DE5FC",
+    "icon": "https://assets.coingecko.com/coins/images/17010/thumb/infinitee_logo.png?1696516575",
+    "symbol": "INFTEE",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xc3afde95b6eb9ba8553cdaea6645d45fb3a7faf5": {
+    "assetId": "eip155:56/bep20:0xc3afde95b6eb9ba8553cdaea6645d45fb3a7faf5",
+    "chainId": "eip155:56",
+    "name": "Kiba Inu on BNB Smart Chain",
+    "precision": 18,
+    "color": "#312322",
+    "icon": "https://assets.coingecko.com/coins/images/19525/thumb/kiba.png?1696518959",
+    "symbol": "KIBA",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xc3ca60a7176f6614b538b9e056480accac4e7999": {
+    "assetId": "eip155:56/bep20:0xc3ca60a7176f6614b538b9e056480accac4e7999",
+    "chainId": "eip155:56",
+    "name": "Crypto Pepe Mines",
+    "precision": 18,
+    "color": "#626D47",
+    "icon": "https://assets.coingecko.com/coins/images/31025/thumb/cpm-token.png?1696529861",
+    "symbol": "CPM",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xc3dad9394cb5bdad8a1d3343996d0b9553dfd652": {
+    "assetId": "eip155:56/bep20:0xc3dad9394cb5bdad8a1d3343996d0b9553dfd652",
+    "chainId": "eip155:56",
+    "name": "MineSee",
+    "precision": 18,
+    "color": "#F46D28",
+    "icon": "https://assets.coingecko.com/coins/images/32283/thumb/logo1_%281%29.png?1697181562",
+    "symbol": "SEE",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xc409ec8a33f31437ed753c82eed3c5f16d6d7e22": {
+    "assetId": "eip155:56/bep20:0xc409ec8a33f31437ed753c82eed3c5f16d6d7e22",
+    "chainId": "eip155:56",
+    "name": "Tokyo AU",
+    "precision": 18,
+    "color": "#D7CEF4",
+    "icon": "https://assets.coingecko.com/coins/images/16182/thumb/TOKAU.jpg?1696515784",
+    "symbol": "TOKAU",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xc41689a727469c1573009757200371edf36d540e": {
+    "assetId": "eip155:56/bep20:0xc41689a727469c1573009757200371edf36d540e",
+    "chainId": "eip155:56",
+    "name": "Dynamix",
+    "precision": 9,
+    "color": "#FCAB0A",
+    "icon": "https://assets.coingecko.com/coins/images/18747/thumb/12275.png?1696518212",
+    "symbol": "DYNA",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xc45c56bf1aaf119a3c266f97bb28bf19646d0b1d": {
+    "assetId": "eip155:56/bep20:0xc45c56bf1aaf119a3c266f97bb28bf19646d0b1d",
+    "chainId": "eip155:56",
+    "name": "Self Token",
+    "precision": 0,
+    "color": "#FCCC3C",
+    "icon": "https://assets.coingecko.com/coins/images/29857/thumb/Self-Token-logo-yellow-200x200.png?1696528783",
+    "symbol": "SELF",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xc4736f2611a62d545dc2d0d8f0766283617e6fcb": {
+    "assetId": "eip155:56/bep20:0xc4736f2611a62d545dc2d0d8f0766283617e6fcb",
+    "chainId": "eip155:56",
+    "name": "TopGoal",
+    "precision": 18,
+    "color": "#3C178E",
+    "icon": "https://assets.coingecko.com/coins/images/29229/thumb/YRDnlXib_400x400.jpg?1696528186",
+    "symbol": "GOAL",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xc519a8fc44dbdbf1aac2205847b8d7549339215e": {
+    "assetId": "eip155:56/bep20:0xc519a8fc44dbdbf1aac2205847b8d7549339215e",
+    "chainId": "eip155:56",
+    "name": "Anagata",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/32848/thumb/AHA_Logo_CG_200x200.png?1699633062",
+    "symbol": "AHA",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xc5326b32e8baef125acd68f8bc646fd646104f1c": {
+    "assetId": "eip155:56/bep20:0xc5326b32e8baef125acd68f8bc646fd646104f1c",
+    "chainId": "eip155:56",
+    "name": "Zap on BNB Smart Chain",
+    "precision": 18,
+    "color": "#0495FC",
+    "icon": "https://assets.coingecko.com/coins/images/2180/thumb/zap.png?1696503138",
+    "symbol": "ZAP",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xc53708664b99df348dd27c3ac0759d2da9c40462": {
+    "assetId": "eip155:56/bep20:0xc53708664b99df348dd27c3ac0759d2da9c40462",
+    "chainId": "eip155:56",
+    "name": "Gourmet Galaxy on BNB Smart Chain",
+    "precision": 18,
+    "color": "#B8B5C8",
+    "icon": "https://assets.coingecko.com/coins/images/13846/thumb/gum.png?1696513592",
+    "symbol": "GUM",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xc53ca0d56c420e8f913316e84d2c492ede99c61e": {
+    "assetId": "eip155:56/bep20:0xc53ca0d56c420e8f913316e84d2c492ede99c61e",
+    "chainId": "eip155:56",
+    "name": "GROK",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/32833/thumb/IMG_20231107_074737_872.jpg?1699586067",
+    "symbol": "GROK",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xc54a4640907044283e8e4885090e205992b9813e": {
+    "assetId": "eip155:56/bep20:0xc54a4640907044283e8e4885090e205992b9813e",
+    "chainId": "eip155:56",
+    "name": "Forus",
+    "precision": 18,
+    "color": "#2323DA",
+    "icon": "https://assets.coingecko.com/coins/images/24090/thumb/Foruslogo.png?1696523283",
+    "symbol": "FORS",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xc598275452fa319d75ee5f176fd3b8384925b425": {
+    "assetId": "eip155:56/bep20:0xc598275452fa319d75ee5f176fd3b8384925b425",
+    "chainId": "eip155:56",
+    "name": "StreamCoin",
+    "precision": 18,
+    "color": "#E4242C",
+    "icon": "https://assets.coingecko.com/coins/images/25438/thumb/17464.png?1696524571",
+    "symbol": "STRM",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xc5b18dc5302f76c96a8f627e018a0e4d359c8edc": {
+    "assetId": "eip155:56/bep20:0xc5b18dc5302f76c96a8f627e018a0e4d359c8edc",
+    "chainId": "eip155:56",
+    "name": "Spoony",
+    "precision": 9,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/33095/thumb/Safeimagekit-resized-img_%288%29.png?1700635116",
+    "symbol": "SPOON",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xc5e6689c9c8b02be7c49912ef19e79cf24977f03": {
+    "assetId": "eip155:56/bep20:0xc5e6689c9c8b02be7c49912ef19e79cf24977f03",
+    "chainId": "eip155:56",
+    "name": "Alpaca City on BNB Smart Chain",
+    "precision": 18,
+    "color": "#FC775C",
+    "icon": "https://assets.coingecko.com/coins/images/13070/thumb/alpaca_logo.png?1696512859",
+    "symbol": "ALPA",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xc5ec27250b3cd0c187296556ccb5af2fe07a3e18": {
+    "assetId": "eip155:56/bep20:0xc5ec27250b3cd0c187296556ccb5af2fe07a3e18",
+    "chainId": "eip155:56",
+    "name": "GROK2 0",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/33053/thumb/IMG_20231114_114157_879.jpg?1700474984",
+    "symbol": "GROK20",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xc5f0f7b66764f6ec8c8dff7ba683102295e16409": {
+    "assetId": "eip155:56/bep20:0xc5f0f7b66764f6ec8c8dff7ba683102295e16409",
+    "chainId": "eip155:56",
+    "name": "First Digital USD on BNB Smart Chain",
+    "precision": 18,
+    "color": "#0D1210",
+    "icon": "https://assets.coingecko.com/coins/images/31079/thumb/firstfigital.jpeg?1696529912",
+    "symbol": "FDUSD",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xc60dee4852ee6190cc440e87fc06796ec5ed4bb0": {
+    "assetId": "eip155:56/bep20:0xc60dee4852ee6190cc440e87fc06796ec5ed4bb0",
+    "chainId": "eip155:56",
+    "name": "LionCEO",
+    "precision": 18,
+    "color": "#0C1215",
+    "icon": "https://assets.coingecko.com/coins/images/29738/thumb/IMG_20230406_222831_168.png?1696528668",
+    "symbol": "LCEO",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xc628d60b7ec7504b7482bc8a65348f3b7afccbe0": {
+    "assetId": "eip155:56/bep20:0xc628d60b7ec7504b7482bc8a65348f3b7afccbe0",
+    "chainId": "eip155:56",
+    "name": "OKEYCOIN",
+    "precision": 8,
+    "color": "#FC0C42",
+    "icon": "https://assets.coingecko.com/coins/images/26821/thumb/OKEYCOIN_LOGO.png?1696525880",
+    "symbol": "OKEY",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xc632f90affec7121120275610bf17df9963f181c": {
+    "assetId": "eip155:56/bep20:0xc632f90affec7121120275610bf17df9963f181c",
+    "chainId": "eip155:56",
+    "name": "The Debt Box",
+    "precision": 8,
+    "color": "#13B9A0",
+    "icon": "https://assets.coingecko.com/coins/images/26349/thumb/imgonline-com-ua-Resize-FsfTbGcy5U.png?1696525426",
+    "symbol": "DEBT",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xc6660965869fae1776f83b56e68e32555067ea85": {
+    "assetId": "eip155:56/bep20:0xc6660965869fae1776f83b56e68e32555067ea85",
+    "chainId": "eip155:56",
+    "name": "UltraNote Infinity  BSC ",
+    "precision": 6,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/32822/thumb/android-chrome-512x512.png?1699582191",
+    "symbol": "BXUNI",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xc669a70e0b3d07e3514afd97ebfb3d134077a4a1": {
+    "assetId": "eip155:56/bep20:0xc669a70e0b3d07e3514afd97ebfb3d134077a4a1",
+    "chainId": "eip155:56",
+    "name": "PIAS",
+    "precision": 18,
+    "color": "#D1EBC4",
+    "icon": "https://assets.coingecko.com/coins/images/28080/thumb/41DF3535-B5AA-44E0-994D-ABC56B3DE2F4.png?1696527090",
+    "symbol": "PIAS",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xc6759a4fc56b3ce9734035a56b36e8637c45b77e": {
+    "assetId": "eip155:56/bep20:0xc6759a4fc56b3ce9734035a56b36e8637c45b77e",
+    "chainId": "eip155:56",
+    "name": "Grimace Coin",
+    "precision": 18,
+    "color": "#8B5ED6",
+    "icon": "https://assets.coingecko.com/coins/images/24207/thumb/ustF4Y_V_400x400.jpg?1696523394",
+    "symbol": "GRIMACE",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xc6dddb5bc6e61e0841c54f3e723ae1f3a807260b": {
+    "assetId": "eip155:56/bep20:0xc6dddb5bc6e61e0841c54f3e723ae1f3a807260b",
+    "chainId": "eip155:56",
+    "name": "Aurox on BNB Smart Chain",
+    "precision": 18,
+    "color": "#070F16",
+    "icon": "https://assets.coingecko.com/coins/images/14122/thumb/Aurox.png?1696513842",
+    "symbol": "URUS",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xc6f509274fcc1f485644167cb911fd0c61545e6c": {
+    "assetId": "eip155:56/bep20:0xc6f509274fcc1f485644167cb911fd0c61545e6c",
+    "chainId": "eip155:56",
+    "name": "Obsidium",
+    "precision": 18,
+    "color": "#9D55FC",
+    "icon": "https://assets.coingecko.com/coins/images/19499/thumb/New-Obsidium-Logo-Circle-200x200.png?1696518935",
+    "symbol": "OBS",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xc70636a779118e57e1c6fdafdd1f919fae912d2f": {
+    "assetId": "eip155:56/bep20:0xc70636a779118e57e1c6fdafdd1f919fae912d2f",
+    "chainId": "eip155:56",
+    "name": "Munch on BNB Smart Chain",
+    "precision": 9,
+    "color": "#512E27",
+    "icon": "https://assets.coingecko.com/coins/images/14804/thumb/logo_-_2021-04-16T082627.266.png?1696514472",
+    "symbol": "MUNCH",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xc7091aa18598b87588e37501b6ce865263cd67ce": {
+    "assetId": "eip155:56/bep20:0xc7091aa18598b87588e37501b6ce865263cd67ce",
+    "chainId": "eip155:56",
+    "name": "CheesecakeSwap on BNB Smart Chain",
+    "precision": 18,
+    "color": "#7CE1EA",
+    "icon": "https://assets.coingecko.com/coins/images/14547/thumb/CCAKElogo.png?1696514230",
+    "symbol": "CCAKE",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xc732b6586a93b6b7cf5fed3470808bc74998224d": {
+    "assetId": "eip155:56/bep20:0xc732b6586a93b6b7cf5fed3470808bc74998224d",
+    "chainId": "eip155:56",
+    "name": "Kryptomon",
+    "precision": 18,
+    "color": "#F434AC",
+    "icon": "https://assets.coingecko.com/coins/images/17886/thumb/kryptomon.png?1696517407",
+    "symbol": "KMON",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xc748673057861a797275cd8a068abb95a902e8de": {
+    "assetId": "eip155:56/bep20:0xc748673057861a797275cd8a068abb95a902e8de",
+    "chainId": "eip155:56",
+    "name": "Baby Doge Coin on BNB Smart Chain",
+    "precision": 9,
+    "color": "#F3E05B",
+    "icon": "https://assets.coingecko.com/coins/images/16125/thumb/babydoge.jpg?1696515731",
+    "symbol": "BABYDOGE",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xc74cd0042c837ce59210857504ebb0859e06aa22": {
+    "assetId": "eip155:56/bep20:0xc74cd0042c837ce59210857504ebb0859e06aa22",
+    "chainId": "eip155:56",
+    "name": "SAFU Protocol",
+    "precision": 9,
+    "color": "#08A0AD",
+    "icon": "https://assets.coingecko.com/coins/images/17021/thumb/safuyield.png?1696516584",
+    "symbol": "SAFU",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xc75835c00c7b1b8589d2438e8b8d83472d238306": {
+    "assetId": "eip155:56/bep20:0xc75835c00c7b1b8589d2438e8b8d83472d238306",
+    "chainId": "eip155:56",
+    "name": "Rectangle Finance",
+    "precision": 18,
+    "color": "#3B6CAF",
+    "icon": "https://assets.coingecko.com/coins/images/31638/thumb/200.png?1696530454",
+    "symbol": "RTG",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xc75aa1fa199eac5adabc832ea4522cff6dfd521a": {
+    "assetId": "eip155:56/bep20:0xc75aa1fa199eac5adabc832ea4522cff6dfd521a",
+    "chainId": "eip155:56",
+    "name": "HedgePay",
+    "precision": 18,
+    "color": "#073D3B",
+    "icon": "https://assets.coingecko.com/coins/images/27725/thumb/200x200CG.png?1696526749",
+    "symbol": "HPAY",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xc75cbd824d5d40b30739905e8b857ba091b8bf2a": {
+    "assetId": "eip155:56/bep20:0xc75cbd824d5d40b30739905e8b857ba091b8bf2a",
+    "chainId": "eip155:56",
+    "name": "MetaXCosmos",
+    "precision": 18,
+    "color": "#58D9EF",
+    "icon": "https://assets.coingecko.com/coins/images/29763/thumb/1212.png?1696528694",
+    "symbol": "METAX",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xc77dd3ade7b717583e0924466e4e474a5673332c": {
+    "assetId": "eip155:56/bep20:0xc77dd3ade7b717583e0924466e4e474a5673332c",
+    "chainId": "eip155:56",
+    "name": "Magic Beasties",
+    "precision": 9,
+    "color": "#DA1967",
+    "icon": "https://assets.coingecko.com/coins/images/18189/thumb/jqhZlCH.png?1696517689",
+    "symbol": "BSTS",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xc7981767f644c7f8e483dabdc413e8a371b83079": {
+    "assetId": "eip155:56/bep20:0xc7981767f644c7f8e483dabdc413e8a371b83079",
+    "chainId": "eip155:56",
+    "name": "Liquidus",
+    "precision": 18,
+    "color": "#142454",
+    "icon": "https://assets.coingecko.com/coins/images/18749/thumb/liq.png?1696518214",
+    "symbol": "LIQ",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xc79d1fd14f514cd713b5ca43d288a782ae53eab2": {
+    "assetId": "eip155:56/bep20:0xc79d1fd14f514cd713b5ca43d288a782ae53eab2",
+    "chainId": "eip155:56",
+    "name": "Xcel Defi",
+    "precision": 18,
+    "color": "#DCDCE4",
+    "icon": "https://assets.coingecko.com/coins/images/19318/thumb/PNG_XLD.png?1696518760",
+    "symbol": "XLD",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xc7ad2ce38f208eed77a368613c62062fce88f125": {
+    "assetId": "eip155:56/bep20:0xc7ad2ce38f208eed77a368613c62062fce88f125",
+    "chainId": "eip155:56",
+    "name": "Aerdrop",
+    "precision": 9,
+    "color": "#7AA7B9",
+    "icon": "https://assets.coingecko.com/coins/images/15528/thumb/BsoQCUVu_400x400.jpg?1696515170",
+    "symbol": "AER",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xc7b7844494c516b840a7a4575ff3e60ff0f056a9": {
+    "assetId": "eip155:56/bep20:0xc7b7844494c516b840a7a4575ff3e60ff0f056a9",
+    "chainId": "eip155:56",
+    "name": "Mech Master",
+    "precision": 18,
+    "color": "#3A4A53",
+    "icon": "https://assets.coingecko.com/coins/images/19403/thumb/mech_master.PNG?1696518843",
+    "symbol": "MECH",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xc7cba05f673cfab408a9fb0ef5fcc3c25a4abeba": {
+    "assetId": "eip155:56/bep20:0xc7cba05f673cfab408a9fb0ef5fcc3c25a4abeba",
+    "chainId": "eip155:56",
+    "name": "TradeX AI",
+    "precision": 18,
+    "color": "#1C1445",
+    "icon": "https://assets.coingecko.com/coins/images/31723/thumb/TradeX_AI.png?1696530544",
+    "symbol": "TRADEX",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xc7d5c26b9d31e0dbd6e230b2a7da76701914b23b": {
+    "assetId": "eip155:56/bep20:0xc7d5c26b9d31e0dbd6e230b2a7da76701914b23b",
+    "chainId": "eip155:56",
+    "name": "Goricher",
+    "precision": 18,
+    "color": "#E7E5E4",
+    "icon": "https://assets.coingecko.com/coins/images/32350/thumb/goricher.jpg?1697474729",
+    "symbol": "GORICHER",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xc822bb8f72c212f0f9477ab064f3bdf116c193e6": {
+    "assetId": "eip155:56/bep20:0xc822bb8f72c212f0f9477ab064f3bdf116c193e6",
+    "chainId": "eip155:56",
+    "name": "UpBots on BNB Smart Chain",
+    "precision": 18,
+    "color": "#F4F4FC",
+    "icon": "https://assets.coingecko.com/coins/images/12476/thumb/UBXT.png?1696512294",
+    "symbol": "UBXN",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xc8354507f0361712143efa635cce060788888888": {
+    "assetId": "eip155:56/bep20:0xc8354507f0361712143efa635cce060788888888",
+    "chainId": "eip155:56",
+    "name": "AICoin",
+    "precision": 18,
+    "color": "#F6F3EA",
+    "icon": "https://assets.coingecko.com/coins/images/30308/thumb/HZixmXSs_400x400.jpg?1696529211",
+    "symbol": "AI",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xc841780c34c17190bceeefb6d986aaca4fb95e31": {
+    "assetId": "eip155:56/bep20:0xc841780c34c17190bceeefb6d986aaca4fb95e31",
+    "chainId": "eip155:56",
+    "name": "Alterna Network",
+    "precision": 18,
+    "color": "#7C3BB4",
+    "icon": "https://assets.coingecko.com/coins/images/30087/thumb/alternalogo.png?1696529011",
+    "symbol": "ALTN",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xc85a2576693e5a6206398fe1c498c4bfe214df58": {
+    "assetId": "eip155:56/bep20:0xc85a2576693e5a6206398fe1c498c4bfe214df58",
+    "chainId": "eip155:56",
+    "name": "CLIQ",
+    "precision": 18,
+    "color": "#244C8C",
+    "icon": "https://assets.coingecko.com/coins/images/21687/thumb/SpottR_logo.png?1696521042",
+    "symbol": "CT",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xc864019047b864b6ab609a968ae2725dfaee808a": {
+    "assetId": "eip155:56/bep20:0xc864019047b864b6ab609a968ae2725dfaee808a",
+    "chainId": "eip155:56",
+    "name": "Biconomy Exchange Token",
+    "precision": 9,
+    "color": "#126CBD",
+    "icon": "https://assets.coingecko.com/coins/images/18198/thumb/mGky0OOh_400x400.jpg?1696517697",
+    "symbol": "BIT",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xc868642d123289f0a6cb34a3c2810a0a46141947": {
+    "assetId": "eip155:56/bep20:0xc868642d123289f0a6cb34a3c2810a0a46141947",
+    "chainId": "eip155:56",
+    "name": "Bitcoin E wallet",
+    "precision": 6,
+    "color": "#D1D1D1",
+    "icon": "https://assets.coingecko.com/coins/images/27378/thumb/photo.jpg?1696526421",
+    "symbol": "BITWALLET",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xc8a11f433512c16ed895245f34bcc2ca44eb06bd": {
+    "assetId": "eip155:56/bep20:0xc8a11f433512c16ed895245f34bcc2ca44eb06bd",
+    "chainId": "eip155:56",
+    "name": "Kissan",
+    "precision": 18,
+    "color": "#F18B04",
+    "icon": "https://assets.coingecko.com/coins/images/26414/thumb/200x200-2.png?1696525490",
+    "symbol": "KSN",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xc8ab61bed1d2baa1237f7aa4641e68342c58824f": {
+    "assetId": "eip155:56/bep20:0xc8ab61bed1d2baa1237f7aa4641e68342c58824f",
+    "chainId": "eip155:56",
+    "name": "kang3n",
+    "precision": 9,
+    "color": "#9FDAF2",
+    "icon": "https://assets.coingecko.com/coins/images/23898/thumb/27C4962A-FC83-42E1-B644-2B6F66E4C3A2.png?1696523098",
+    "symbol": "KANG3N",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xc8c06a58e4ad7c01b9bb5af6c76a7a1cfebd0319": {
+    "assetId": "eip155:56/bep20:0xc8c06a58e4ad7c01b9bb5af6c76a7a1cfebd0319",
+    "chainId": "eip155:56",
+    "name": "ICLICK Inu on BNB Smart Chain",
+    "precision": 18,
+    "color": "#158182",
+    "icon": "https://assets.coingecko.com/coins/images/32060/thumb/Iclick.png?1696530857",
+    "symbol": "ICLICK",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xc8c488fdbbb2e72e41710ade67784f0812160210": {
+    "assetId": "eip155:56/bep20:0xc8c488fdbbb2e72e41710ade67784f0812160210",
+    "chainId": "eip155:56",
+    "name": "ZAT Project",
+    "precision": 7,
+    "color": "#8CC4EC",
+    "icon": "https://assets.coingecko.com/coins/images/25633/thumb/cmc.png?1696524766",
+    "symbol": "ZPRO",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xc8cc4bbd33264db465e4c9ea011f895d02505959": {
+    "assetId": "eip155:56/bep20:0xc8cc4bbd33264db465e4c9ea011f895d02505959",
+    "chainId": "eip155:56",
+    "name": "Sorcery Finance",
+    "precision": 18,
+    "color": "#7053E5",
+    "icon": "https://assets.coingecko.com/coins/images/31635/thumb/New_Project_%2866%29.png?1696530450",
+    "symbol": "SOR",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xc91324601b20ea0e238b63c9fafca18d32600722": {
+    "assetId": "eip155:56/bep20:0xc91324601b20ea0e238b63c9fafca18d32600722",
+    "chainId": "eip155:56",
+    "name": "Sword BSC Token",
+    "precision": 18,
+    "color": "#84641C",
+    "icon": "https://assets.coingecko.com/coins/images/28715/thumb/swdb_200x200.png?1696527696",
+    "symbol": "SWDB",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xc9132c76060f6b319764ea075973a650a1a53bc9": {
+    "assetId": "eip155:56/bep20:0xc9132c76060f6b319764ea075973a650a1a53bc9",
+    "chainId": "eip155:56",
+    "name": "DuckDaoDime on BNB Smart Chain",
+    "precision": 18,
+    "color": "#F1C166",
+    "icon": "https://assets.coingecko.com/coins/images/12146/thumb/token_DDIM-01.png?1696511987",
+    "symbol": "DDIM",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xc9457161320210d22f0d0d5fc1309acb383d4609": {
+    "assetId": "eip155:56/bep20:0xc9457161320210d22f0d0d5fc1309acb383d4609",
+    "chainId": "eip155:56",
+    "name": "Dovu  OLD  on BNB Smart Chain",
+    "precision": 18,
+    "color": "#C2D8FC",
+    "icon": "https://assets.coingecko.com/coins/images/1072/thumb/dove.png?1696502174",
+    "symbol": "DOV",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xc9849e6fdb743d08faee3e34dd2d1bc69ea11a51": {
+    "assetId": "eip155:56/bep20:0xc9849e6fdb743d08faee3e34dd2d1bc69ea11a51",
+    "chainId": "eip155:56",
+    "name": "Pancake Bunny",
+    "precision": 18,
+    "color": "#ED719C",
+    "icon": "https://assets.coingecko.com/coins/images/13148/thumb/wallet-logo-bunny.png?1696512933",
+    "symbol": "BUNNY",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xc9882def23bc42d53895b8361d0b1edc7570bc6a": {
+    "assetId": "eip155:56/bep20:0xc9882def23bc42d53895b8361d0b1edc7570bc6a",
+    "chainId": "eip155:56",
+    "name": "Fistbump",
+    "precision": 6,
+    "color": "#FCF4D4",
+    "icon": "https://assets.coingecko.com/coins/images/25051/thumb/download.png?1696524202",
+    "symbol": "FIST",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xc98a8ec7a07f1b743e86896a52434c4c6a0dbc42": {
+    "assetId": "eip155:56/bep20:0xc98a8ec7a07f1b743e86896a52434c4c6a0dbc42",
+    "chainId": "eip155:56",
+    "name": "ASIX",
+    "precision": 9,
+    "color": "#6CAA72",
+    "icon": "https://assets.coingecko.com/coins/images/23282/thumb/asix.png?1696522501",
+    "symbol": "ASIX",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xc99a0ad9fb77e74dda20ac805223b760ad3bdfd5": {
+    "assetId": "eip155:56/bep20:0xc99a0ad9fb77e74dda20ac805223b760ad3bdfd5",
+    "chainId": "eip155:56",
+    "name": "Myteamcoin",
+    "precision": 18,
+    "color": "#F4E42C",
+    "icon": "https://assets.coingecko.com/coins/images/16041/thumb/200x2001.png?1696515651",
+    "symbol": "MYC",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xc9ad37e9baf41377540df5a77831db98c1915128": {
+    "assetId": "eip155:56/bep20:0xc9ad37e9baf41377540df5a77831db98c1915128",
+    "chainId": "eip155:56",
+    "name": "Green Shiba Inu",
+    "precision": 18,
+    "color": "#40AA60",
+    "icon": "https://assets.coingecko.com/coins/images/15649/thumb/inu-logo-new-200x200.png?1696515281",
+    "symbol": "GINUX",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xc9bcf3f71e37579a4a42591b09c9dd93dfe27965": {
+    "assetId": "eip155:56/bep20:0xc9bcf3f71e37579a4a42591b09c9dd93dfe27965",
+    "chainId": "eip155:56",
+    "name": "Milkshake Swap",
+    "precision": 18,
+    "color": "#F16592",
+    "icon": "https://assets.coingecko.com/coins/images/18654/thumb/Logo200x200_%2810%29.png?1696518124",
+    "symbol": "MILK",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xc9c0133f5d5227b059bffee0dbdcfc3f6a8ba434": {
+    "assetId": "eip155:56/bep20:0xc9c0133f5d5227b059bffee0dbdcfc3f6a8ba434",
+    "chainId": "eip155:56",
+    "name": "Pepe Dash AI",
+    "precision": 18,
+    "color": "#137439",
+    "icon": "https://assets.coingecko.com/coins/images/30478/thumb/IMG-1457_1_.png?1696529365",
+    "symbol": "PEPEDASHAI",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xc9f8c639135fc1412f011cc84810635d6bbca19d": {
+    "assetId": "eip155:56/bep20:0xc9f8c639135fc1412f011cc84810635d6bbca19d",
+    "chainId": "eip155:56",
+    "name": "TLifeCoin",
+    "precision": 8,
+    "color": "#C29C4B",
+    "icon": "https://assets.coingecko.com/coins/images/31673/thumb/tlife_logo.png?1696530489",
+    "symbol": "TLIFE",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xca01f271694224d9b82084c40590dbc75241796b": {
+    "assetId": "eip155:56/bep20:0xca01f271694224d9b82084c40590dbc75241796b",
+    "chainId": "eip155:56",
+    "name": "SWYP Foundation",
+    "precision": 18,
+    "color": "#1C1A1D",
+    "icon": "https://assets.coingecko.com/coins/images/32138/thumb/SWYP_LOGO.jpeg?1696591848",
+    "symbol": "SWYP",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xca0c1c12466a57b26850b05a0ba2fb39f9763a0c": {
+    "assetId": "eip155:56/bep20:0xca0c1c12466a57b26850b05a0ba2fb39f9763a0c",
+    "chainId": "eip155:56",
+    "name": "Ezillion",
+    "precision": 9,
+    "color": "#170B0B",
+    "icon": "https://assets.coingecko.com/coins/images/25472/thumb/ezi.jpg?1696524606",
+    "symbol": "EZI",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xca0d640a401406f3405b4c252a5d0c4d17f38ebb": {
+    "assetId": "eip155:56/bep20:0xca0d640a401406f3405b4c252a5d0c4d17f38ebb",
+    "chainId": "eip155:56",
+    "name": "Metarun",
+    "precision": 18,
+    "color": "#05050A",
+    "icon": "https://assets.coingecko.com/coins/images/24219/thumb/GDgQSjgZ_400x400.jpg?1696523405",
+    "symbol": "MRUN",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xca1262e77fb25c0a4112cfc9bad3ff54f617f2e6": {
+    "assetId": "eip155:56/bep20:0xca1262e77fb25c0a4112cfc9bad3ff54f617f2e6",
+    "chainId": "eip155:56",
+    "name": "Jax Network on BNB Smart Chain",
+    "precision": 0,
+    "color": "#DDDBD3",
+    "icon": "https://assets.coingecko.com/coins/images/18737/thumb/photo.jpg?1696518203",
+    "symbol": "WJXN",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xca1e6f584e0d7eec74f553e9a7b64a4ded8a4b61": {
+    "assetId": "eip155:56/bep20:0xca1e6f584e0d7eec74f553e9a7b64a4ded8a4b61",
+    "chainId": "eip155:56",
+    "name": "Valentine Floki",
+    "precision": 18,
+    "color": "#DBAC7F",
+    "icon": "https://assets.coingecko.com/coins/images/23311/thumb/flov.png?1696522528",
+    "symbol": "FLOV",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xca39370ab6cf858343cea824a1c784964e5bf247": {
+    "assetId": "eip155:56/bep20:0xca39370ab6cf858343cea824a1c784964e5bf247",
+    "chainId": "eip155:56",
+    "name": "RecTime",
+    "precision": 9,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/33159/thumb/IMG_20231102_235030_095.jpg?1700829092",
+    "symbol": "RTIME",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xca3c1dc12b0dd0d65964abaa533106cf4f372c78": {
+    "assetId": "eip155:56/bep20:0xca3c1dc12b0dd0d65964abaa533106cf4f372c78",
+    "chainId": "eip155:56",
+    "name": "ChubbyAkita",
+    "precision": 9,
+    "color": "#B84F64",
+    "icon": "https://assets.coingecko.com/coins/images/15563/thumb/cakita.jpg?1696515203",
+    "symbol": "CAKITA",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xca6d678e74f553f0e59cccc03ae644a3c2c5ee7d": {
+    "assetId": "eip155:56/bep20:0xca6d678e74f553f0e59cccc03ae644a3c2c5ee7d",
+    "chainId": "eip155:56",
+    "name": "Planet Token on BNB Smart Chain",
+    "precision": 18,
+    "color": "#04DDCC",
+    "icon": "https://assets.coingecko.com/coins/images/30767/thumb/Logo-Planet.png?1696529635",
+    "symbol": "PLANET",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xca830317146bfdde71e7c0b880e2ec1f66e273ee": {
+    "assetId": "eip155:56/bep20:0xca830317146bfdde71e7c0b880e2ec1f66e273ee",
+    "chainId": "eip155:56",
+    "name": "PolyGod",
+    "precision": 18,
+    "color": "#CECECE",
+    "icon": "https://assets.coingecko.com/coins/images/20590/thumb/polygod.PNG?1696519997",
+    "symbol": "GULL",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xca861e289f04cb9c67fd6b87ca7eafa59192f164": {
+    "assetId": "eip155:56/bep20:0xca861e289f04cb9c67fd6b87ca7eafa59192f164",
+    "chainId": "eip155:56",
+    "name": "UnityMeta Token",
+    "precision": 18,
+    "color": "#040426",
+    "icon": "https://assets.coingecko.com/coins/images/30859/thumb/Unitymeta_Token_Logo_200.png?1696529706",
+    "symbol": "UMT",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xca8a893a7464e82bdee582017c749b92e5b45b48": {
+    "assetId": "eip155:56/bep20:0xca8a893a7464e82bdee582017c749b92e5b45b48",
+    "chainId": "eip155:56",
+    "name": "MetaWorld",
+    "precision": 18,
+    "color": "#0C0A06",
+    "icon": "https://assets.coingecko.com/coins/images/21918/thumb/8QIPjNO.png?1696521269",
+    "symbol": "MW",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xca981cb99478d190cac2de266ed04e06e341e30e": {
+    "assetId": "eip155:56/bep20:0xca981cb99478d190cac2de266ed04e06e341e30e",
+    "chainId": "eip155:56",
+    "name": "DashSports",
+    "precision": 9,
+    "color": "#3C3436",
+    "icon": "https://assets.coingecko.com/coins/images/16793/thumb/200_200.png?1696516364",
+    "symbol": "DASS",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xcae3d82d63e2b0094bc959752993d3d3743b5d08": {
+    "assetId": "eip155:56/bep20:0xcae3d82d63e2b0094bc959752993d3d3743b5d08",
+    "chainId": "eip155:56",
+    "name": "BTAF token",
+    "precision": 18,
+    "color": "#2D3E3D",
+    "icon": "https://assets.coingecko.com/coins/images/28871/thumb/BTAF_BSC200x200-CoinGecko.png?1696527849",
+    "symbol": "BTAF",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xcae4f3977c084ab12b73a920e670e1665b3fa7d5": {
+    "assetId": "eip155:56/bep20:0xcae4f3977c084ab12b73a920e670e1665b3fa7d5",
+    "chainId": "eip155:56",
+    "name": "Synergy Diamonds",
+    "precision": 18,
+    "color": "#D4D4D4",
+    "icon": "https://assets.coingecko.com/coins/images/28961/thumb/866C1AC4-3F58-4E4A-9EAC-FAA5DC7B04FA.png?1696527934",
+    "symbol": "DIA",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xcaf5191fc480f43e4df80106c7695eca56e48b18": {
+    "assetId": "eip155:56/bep20:0xcaf5191fc480f43e4df80106c7695eca56e48b18",
+    "chainId": "eip155:56",
+    "name": "DEAPCOIN on BNB Smart Chain",
+    "precision": 18,
+    "color": "#F0B52C",
+    "icon": "https://assets.coingecko.com/coins/images/10970/thumb/DEAPcoin_01.png?1696510917",
+    "symbol": "DEP",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xcafe001067cdef266afb7eb5a286dcfd277f3de5": {
+    "assetId": "eip155:56/bep20:0xcafe001067cdef266afb7eb5a286dcfd277f3de5",
+    "chainId": "eip155:56",
+    "name": "ParaSwap on BNB Smart Chain",
+    "precision": 18,
+    "color": "#F6FAF5",
+    "icon": "https://assets.coingecko.com/coins/images/20403/thumb/ep7GqM19_400x400.jpg?1696519812",
+    "symbol": "PSP",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xcb2b25e783a414f0d20a65afa741c51b1ad84c49": {
+    "assetId": "eip155:56/bep20:0xcb2b25e783a414f0d20a65afa741c51b1ad84c49",
+    "chainId": "eip155:56",
+    "name": "Starpad",
+    "precision": 18,
+    "color": "#222646",
+    "icon": "https://assets.coingecko.com/coins/images/18631/thumb/starpunk.PNG?1696518103",
+    "symbol": "SRP",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xcb492c701f7fe71bc9c4b703b84b0da933ff26bb": {
+    "assetId": "eip155:56/bep20:0xcb492c701f7fe71bc9c4b703b84b0da933ff26bb",
+    "chainId": "eip155:56",
+    "name": "Nimbus Utility",
+    "precision": 18,
+    "color": "#FC5404",
+    "icon": "https://assets.coingecko.com/coins/images/28579/thumb/nimb.png?1696527567",
+    "symbol": "NIMB",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xcb4e83b660e941e021c6842fc6eb63ad638600e3": {
+    "assetId": "eip155:56/bep20:0xcb4e83b660e941e021c6842fc6eb63ad638600e3",
+    "chainId": "eip155:56",
+    "name": "Crypto News Flash AI",
+    "precision": 9,
+    "color": "#9CDC24",
+    "icon": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAIAAAACACAMAAAD04JH5AAADAFBMVEUtN0if2Cb///8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACzzsTsAAABAHRSTlP/////AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAf6K/dgAAQItJREFUeNoBgEB/vwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgICAgICAgICAgICAgICAQEBAQEBAQEBAQEBAQECAgICAgICAAAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgEBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMAAAAAAAAAAAAAAAAAAAEBAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMAAAAAAAAAAAAAAAAAAAEBAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMAAAAAAAAAAAAAAAAAAAEBAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMAAAAAAAAAAAAAAAAAAAEBAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMAAAAAAAAAAAAAAAAAAAEBAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMAAAAAAAAAAAACAgICAgICAQMDAwMDAwMDAwMDAwMDAwMDAwMDAgICAgICAgEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAQMDAwMDAwMBAQEBAQECAgICAgICAgICAgICAgAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAgICAgICAgMAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAgICAgICAgMAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAgICAgICAgMAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAgICAgICAgMAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAgICAgICAgMAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAgICAgICAgMAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAwMDAwMDAwICAgICAgIAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAICAgICAgIDAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAwAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAICAgICAgIDAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAwAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAICAgICAgIDAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAwAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAICAgICAgIDAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAwAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAICAgICAgIDAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAwAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAICAgICAgIDAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAwAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAADAwMDAwMCAgICAgICAgICAgICAgMBAQEBAQECAgICAgICAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAACAgICAgICAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAACAgICAgICAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAACAgICAgICAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAACAgICAgICAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAACAgICAgICAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAACAgICAgICAwAAAAAAAAAAAAAAAAACAgICAgICAgICAgICAgMAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgAAAAAAAAACAgICAgICAwAAAAAAAAAAAAAAAAAAAwMDAwMDAgICAgICAgMAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAACAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAgICAgICAgMAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAACAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAgICAgICAgMAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAACAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAgICAgICAgMAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAACAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAgICAgICAgMAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAACAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAgICAgICAgMAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAACAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAgICAgICAgMAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAwMDAwMDAgICAgICAgICAgICAgICAgICAgICAAMDAwMDAwMAAAAAAAACAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAgICAgICAgMAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgICAgICAgICAgICAgICAwAAAAAAAAAAAAAAAAACAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAgICAgICAgMAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgICAgICAgICAgICAgICAwAAAAAAAAAAAAAAAAACAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAgICAgICAgMAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgICAgICAgICAgICAgICAwAAAAAAAAAAAAAAAAACAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAgICAgICAgMAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgICAgICAgICAgICAgICAwAAAAAAAAAAAAAAAAACAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAgICAgICAgMAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgICAgICAgICAgICAgICAwAAAAAAAAAAAAAAAAACAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAgICAgICAgMAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgICAgICAgICAgICAgICAwAAAAAAAAAAAAAAAAACAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAgICAgICAgMAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQMDAwMDAwMDAwMDAwMDAwMDAwMDAwAAAAAAAAAAAAAAAAAAAwMDAwMDAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAMDAwMDAwMAAAAAAAAAAwMDAwMDAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMdgLfNGDvauAAAAAElFTkSuQmCC",
+    "symbol": "CNF",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xcb5327ed4649548e0d73e70b633cdfd99af6da87": {
+    "assetId": "eip155:56/bep20:0xcb5327ed4649548e0d73e70b633cdfd99af6da87",
+    "chainId": "eip155:56",
+    "name": "PRIMAL on BNB Smart Chain",
+    "precision": 18,
+    "color": "#F62F3C",
+    "icon": "https://assets.coingecko.com/coins/images/28435/thumb/PRIMAL_ICON_200px.jpg?1696527432",
+    "symbol": "PRIMAL",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xcbbb3e5099f769f6d4e2b8b92dc0e268f7e099d8": {
+    "assetId": "eip155:56/bep20:0xcbbb3e5099f769f6d4e2b8b92dc0e268f7e099d8",
+    "chainId": "eip155:56",
+    "name": "BitcoinZ",
+    "precision": 8,
+    "color": "#E8CD46",
+    "icon": "https://assets.coingecko.com/coins/images/1004/thumb/BTCZ_LOGO-1.png?1696502115",
+    "symbol": "BTCZ",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xcbcd9c0f344960f40c5ce7eb17a17e837fe8bb92": {
+    "assetId": "eip155:56/bep20:0xcbcd9c0f344960f40c5ce7eb17a17e837fe8bb92",
+    "chainId": "eip155:56",
+    "name": "WOLFCOIN",
+    "precision": 18,
+    "color": "#CEA529",
+    "icon": "https://assets.coingecko.com/coins/images/23934/thumb/6E433721-C204-48ED-8467-EFA2FBA79794.png?1696523130",
+    "symbol": "WOLF",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xcbe5bca571628894a38836b0bae833ff012f71d8": {
+    "assetId": "eip155:56/bep20:0xcbe5bca571628894a38836b0bae833ff012f71d8",
+    "chainId": "eip155:56",
+    "name": "Infinity Rocket",
+    "precision": 18,
+    "color": "#0D2047",
+    "icon": "https://assets.coingecko.com/coins/images/20619/thumb/irt.PNG?1696520024",
+    "symbol": "IRT",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xcbf593286085e617e2a60bf195e2866cd8587734": {
+    "assetId": "eip155:56/bep20:0xcbf593286085e617e2a60bf195e2866cd8587734",
+    "chainId": "eip155:56",
+    "name": "Dogelogy",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/33148/thumb/WhatsApp_Image_2023-11-22_at_16.40.30.jpeg?1700824587",
+    "symbol": "DOGE01",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xcc42724c6683b7e57334c4e856f4c9965ed682bd": {
+    "assetId": "eip155:56/bep20:0xcc42724c6683b7e57334c4e856f4c9965ed682bd",
+    "chainId": "eip155:56",
+    "name": "Polygon on BNB Smart Chain",
+    "precision": 18,
+    "color": "#8445E4",
+    "icon": "https://assets.coingecko.com/coins/images/4713/thumb/polygon.png?1698233745",
+    "symbol": "MATIC",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xcc7a91413769891de2e9ebbfc96d2eb1874b5760": {
+    "assetId": "eip155:56/bep20:0xcc7a91413769891de2e9ebbfc96d2eb1874b5760",
+    "chainId": "eip155:56",
+    "name": "GovWorld",
+    "precision": 18,
+    "color": "#862EF4",
+    "icon": "https://assets.coingecko.com/coins/images/22261/thumb/govworld.PNG?1696521606",
+    "symbol": "GOV",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xcc9b175e4b88a22543c44f1cc65b73f63b0d4efe": {
+    "assetId": "eip155:56/bep20:0xcc9b175e4b88a22543c44f1cc65b73f63b0d4efe",
+    "chainId": "eip155:56",
+    "name": "Baby Shark",
+    "precision": 9,
+    "color": "#BFD3E5",
+    "icon": "https://assets.coingecko.com/coins/images/15653/thumb/Resized_Shark_Logo.png?1696515284",
+    "symbol": "SHARK",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xcce8fd1eb636632e0c0cd2353264d56a37d2246b": {
+    "assetId": "eip155:56/bep20:0xcce8fd1eb636632e0c0cd2353264d56a37d2246b",
+    "chainId": "eip155:56",
+    "name": "Elon Cat on BNB Smart Chain",
+    "precision": 18,
+    "color": "#08060E",
+    "icon": "https://assets.coingecko.com/coins/images/32101/thumb/eloncatlogo_.png?1696530898",
+    "symbol": "ELONCAT",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xcd03f8a59252f317a679eddb5315150f40d06e5e": {
+    "assetId": "eip155:56/bep20:0xcd03f8a59252f317a679eddb5315150f40d06e5e",
+    "chainId": "eip155:56",
+    "name": "Mooner",
+    "precision": 18,
+    "color": "#0D96C7",
+    "icon": "https://assets.coingecko.com/coins/images/24391/thumb/logo-200x200.png?1696523574",
+    "symbol": "MNR",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xcd1b51b87a8a7137d6421ba5a976225187a26777": {
+    "assetId": "eip155:56/bep20:0xcd1b51b87a8a7137d6421ba5a976225187a26777",
+    "chainId": "eip155:56",
+    "name": "L7DEX",
+    "precision": 18,
+    "color": "#DCC4A1",
+    "icon": "https://assets.coingecko.com/coins/images/31801/thumb/mmexport1694431271547_copy_200x200.jpg?1696530616",
+    "symbol": "LSD",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xcd392021084683803525fe5e6c00cae9c6be5774": {
+    "assetId": "eip155:56/bep20:0xcd392021084683803525fe5e6c00cae9c6be5774",
+    "chainId": "eip155:56",
+    "name": "Adonis",
+    "precision": 18,
+    "color": "#D3AC2B",
+    "icon": "https://assets.coingecko.com/coins/images/26793/thumb/Jugvt5z5_400x400.jpeg?1696525855",
+    "symbol": "ADON",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xcd40f2670cf58720b694968698a5514e924f742d": {
+    "assetId": "eip155:56/bep20:0xcd40f2670cf58720b694968698a5514e924f742d",
+    "chainId": "eip155:56",
+    "name": "Oddz on BNB Smart Chain",
+    "precision": 18,
+    "color": "#B4D4FC",
+    "icon": "https://assets.coingecko.com/coins/images/14421/thumb/NewLogo.png?1696514112",
+    "symbol": "ODDZ",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xcd6926193308d3b371fdd6a6219067e550000000": {
+    "assetId": "eip155:56/bep20:0xcd6926193308d3b371fdd6a6219067e550000000",
+    "chainId": "eip155:56",
+    "name": "Nest Protocol on BNB Smart Chain",
+    "precision": 18,
+    "color": "#050505",
+    "icon": "https://assets.coingecko.com/coins/images/11284/thumb/52954052.png?1696511207",
+    "symbol": "NEST",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xcd76bc49a69bcdc5222d81c18d4a04dc8a387297": {
+    "assetId": "eip155:56/bep20:0xcd76bc49a69bcdc5222d81c18d4a04dc8a387297",
+    "chainId": "eip155:56",
+    "name": "Vision Metaverse",
+    "precision": 6,
+    "color": "#D2D2D2",
+    "icon": "https://assets.coingecko.com/coins/images/24542/thumb/W0jkQVDm_400x400.png?1696523719",
+    "symbol": "VS",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xcd7c5025753a49f1881b31c48caa7c517bb46308": {
+    "assetId": "eip155:56/bep20:0xcd7c5025753a49f1881b31c48caa7c517bb46308",
+    "chainId": "eip155:56",
+    "name": "Raven Protocol",
+    "precision": 18,
+    "color": "#EAEEEF",
+    "icon": "https://assets.coingecko.com/coins/images/8673/thumb/Raven_Protocol.jpg?1696508841",
+    "symbol": "RAVEN",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xcd883a18f8d33cf823d13cf2c6787c913d09e640": {
+    "assetId": "eip155:56/bep20:0xcd883a18f8d33cf823d13cf2c6787c913d09e640",
+    "chainId": "eip155:56",
+    "name": "TalentIDO",
+    "precision": 18,
+    "color": "#E470F2",
+    "icon": "https://assets.coingecko.com/coins/images/31596/thumb/Coin_logo_1.png?1696530413",
+    "symbol": "TAL",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xcdb3d3642fb4d48d2b5e4fb4a014448a2761c063": {
+    "assetId": "eip155:56/bep20:0xcdb3d3642fb4d48d2b5e4fb4a014448a2761c063",
+    "chainId": "eip155:56",
+    "name": "Justus",
+    "precision": 18,
+    "color": "#ED8A14",
+    "icon": "https://assets.coingecko.com/coins/images/31812/thumb/jtt.jpeg?1696530627",
+    "symbol": "JTT",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xcdb96d3aef363a036c6cf6c9b5736d79f0e404e2": {
+    "assetId": "eip155:56/bep20:0xcdb96d3aef363a036c6cf6c9b5736d79f0e404e2",
+    "chainId": "eip155:56",
+    "name": "InpulseX",
+    "precision": 18,
+    "color": "#CB7DA8",
+    "icon": "https://assets.coingecko.com/coins/images/30112/thumb/inpulse-x.jpg?1696529034",
+    "symbol": "IPX",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xcdc3a010a3473c0c4b2cb03d8489d6ba387b83cd": {
+    "assetId": "eip155:56/bep20:0xcdc3a010a3473c0c4b2cb03d8489d6ba387b83cd",
+    "chainId": "eip155:56",
+    "name": "Liquid Driver liveTHE",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/33137/thumb/liveTHE_new.png?1700808192",
+    "symbol": "LIVETHE",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xcdf204cbbaa96ed34be4497d6794dfb54e4c66bc": {
+    "assetId": "eip155:56/bep20:0xcdf204cbbaa96ed34be4497d6794dfb54e4c66bc",
+    "chainId": "eip155:56",
+    "name": "Virtual Reality Glasses",
+    "precision": 9,
+    "color": "#C4402F",
+    "icon": "https://assets.coingecko.com/coins/images/28648/thumb/IMG_20230104_154530_217.png?1696527633",
+    "symbol": "VRG",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xcdf937995a55a9ab551d81b463ac0f7f02795368": {
+    "assetId": "eip155:56/bep20:0xcdf937995a55a9ab551d81b463ac0f7f02795368",
+    "chainId": "eip155:56",
+    "name": "Vyvo Smart Chain on BNB Smart Chain",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/32105/thumb/Vyvo.png?1696530902",
+    "symbol": "VSC",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xce186ad6430e2fe494a22c9edbd4c68794a28b35": {
+    "assetId": "eip155:56/bep20:0xce186ad6430e2fe494a22c9edbd4c68794a28b35",
+    "chainId": "eip155:56",
+    "name": "LoopNetwork",
+    "precision": 18,
+    "color": "#EC1C24",
+    "icon": "https://assets.coingecko.com/coins/images/24259/thumb/loop.png?1696523443",
+    "symbol": "LOOP",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xce1b3e5087e8215876af976032382dd338cf8401": {
+    "assetId": "eip155:56/bep20:0xce1b3e5087e8215876af976032382dd338cf8401",
+    "chainId": "eip155:56",
+    "name": "Thoreum V3",
+    "precision": 18,
+    "color": "#E2D1A5",
+    "icon": "https://assets.coingecko.com/coins/images/22759/thumb/Thoreum_V3_logo_200x200.png?1696522062",
+    "symbol": "THOREUM",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xce1e3cc1950d2aaeb47de04de2dec2dc86380e0a": {
+    "assetId": "eip155:56/bep20:0xce1e3cc1950d2aaeb47de04de2dec2dc86380e0a",
+    "chainId": "eip155:56",
+    "name": "Ethos Reserve Note on BNB Smart Chain",
+    "precision": 18,
+    "color": "#0C0C0C",
+    "icon": "https://assets.coingecko.com/coins/images/29744/thumb/ERN200x200.png?1696528676",
+    "symbol": "ERN",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xce237db5a3458f1250a553cf395c9c3cf658b3d1": {
+    "assetId": "eip155:56/bep20:0xce237db5a3458f1250a553cf395c9c3cf658b3d1",
+    "chainId": "eip155:56",
+    "name": "Vimmer",
+    "precision": 18,
+    "color": "#241C04",
+    "icon": "https://assets.coingecko.com/coins/images/31711/thumb/viz-200x200.png?1696530534",
+    "symbol": "VIZ",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xce6b8b2787c657f1b98b7a66b5b63178863fd719": {
+    "assetId": "eip155:56/bep20:0xce6b8b2787c657f1b98b7a66b5b63178863fd719",
+    "chainId": "eip155:56",
+    "name": "ZFMCOIN",
+    "precision": 18,
+    "color": "#2778E3",
+    "icon": "https://assets.coingecko.com/coins/images/28232/thumb/20221106_193725.png?1696527235",
+    "symbol": "ZFM",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xce6bd1833bd077f62b2c1f9a777bb829801d6811": {
+    "assetId": "eip155:56/bep20:0xce6bd1833bd077f62b2c1f9a777bb829801d6811",
+    "chainId": "eip155:56",
+    "name": "Bobcoin on BNB Smart Chain",
+    "precision": 18,
+    "color": "#AA9266",
+    "icon": "https://assets.coingecko.com/coins/images/24264/thumb/bobc.png?1696523448",
+    "symbol": "BOBC",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xce6c9c70f91c6797873efc80505f972290a88f5d": {
+    "assetId": "eip155:56/bep20:0xce6c9c70f91c6797873efc80505f972290a88f5d",
+    "chainId": "eip155:56",
+    "name": "IceCreamSwap",
+    "precision": 18,
+    "color": "#F47C99",
+    "icon": "https://assets.coingecko.com/coins/images/26237/thumb/icecream.png?1696525321",
+    "symbol": "ICE",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xce7de646e7208a4ef112cb6ed5038fa6cc6b12e3": {
+    "assetId": "eip155:56/bep20:0xce7de646e7208a4ef112cb6ed5038fa6cc6b12e3",
+    "chainId": "eip155:56",
+    "name": "TRON  BSC ",
+    "precision": 6,
+    "color": "#FCBAC2",
+    "icon": "https://assets.coingecko.com/coins/images/15468/thumb/NxLfA-LK_400x400.png?1696515114",
+    "symbol": "TRX",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xcea59dce6a6d73a24e6d6944cfabc330814c098a": {
+    "assetId": "eip155:56/bep20:0xcea59dce6a6d73a24e6d6944cfabc330814c098a",
+    "chainId": "eip155:56",
+    "name": "TORG on BNB Smart Chain",
+    "precision": 18,
+    "color": "#0C5CFC",
+    "icon": "https://assets.coingecko.com/coins/images/17596/thumb/TORG_Logo_200x200.png?1696517129",
+    "symbol": "TORG",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xceb244a0e126f6ccbf37d631c7b102cf3e11a536": {
+    "assetId": "eip155:56/bep20:0xceb244a0e126f6ccbf37d631c7b102cf3e11a536",
+    "chainId": "eip155:56",
+    "name": "RevivalX",
+    "precision": 18,
+    "color": "#C0B6C5",
+    "icon": "https://assets.coingecko.com/coins/images/26534/thumb/circle.png?1696525608",
+    "symbol": "RVLX",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xcebef3df1f3c5bfd90fde603e71f31a53b11944d": {
+    "assetId": "eip155:56/bep20:0xcebef3df1f3c5bfd90fde603e71f31a53b11944d",
+    "chainId": "eip155:56",
+    "name": "LitLab Games",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/29930/thumb/_LITT_token_logo.png?1696528858",
+    "symbol": "LITT",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xcee4e6f4d8e634e329c457a4f98c090afafb1c4b": {
+    "assetId": "eip155:56/bep20:0xcee4e6f4d8e634e329c457a4f98c090afafb1c4b",
+    "chainId": "eip155:56",
+    "name": "2024PUMP",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/33052/thumb/200x200_2024_logo.png?1700474858",
+    "symbol": "PUMP",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xcf1b55d79e824da0ae0652f96c66fe33263d743f": {
+    "assetId": "eip155:56/bep20:0xcf1b55d79e824da0ae0652f96c66fe33263d743f",
+    "chainId": "eip155:56",
+    "name": "MixMarvel on BNB Smart Chain",
+    "precision": 18,
+    "color": "#D177E9",
+    "icon": "https://assets.coingecko.com/coins/images/8222/thumb/8878caf93b1e3b6cfb3b414bda3b5250.png?1696508428",
+    "symbol": "MIX",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xcf3bb6ac0f6d987a5727e2d15e39c2d6061d5bec": {
+    "assetId": "eip155:56/bep20:0xcf3bb6ac0f6d987a5727e2d15e39c2d6061d5bec",
+    "chainId": "eip155:56",
+    "name": "SHELTERZ",
+    "precision": 18,
+    "color": "#E8E1EE",
+    "icon": "https://assets.coingecko.com/coins/images/29251/thumb/TERZ_200.png?1696528206",
+    "symbol": "TERZ",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xcf5b48bd28dc1459ad575c0c83a839fef2a463bc": {
+    "assetId": "eip155:56/bep20:0xcf5b48bd28dc1459ad575c0c83a839fef2a463bc",
+    "chainId": "eip155:56",
+    "name": "LightCycle",
+    "precision": 9,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/33223/thumb/logo.png?1701089067",
+    "symbol": "LILC",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xcf6bb5389c92bdda8a3747ddb454cb7a64626c63": {
+    "assetId": "eip155:56/bep20:0xcf6bb5389c92bdda8a3747ddb454cb7a64626c63",
+    "chainId": "eip155:56",
+    "name": "Venus",
+    "precision": 18,
+    "color": "#4092BD",
+    "icon": "https://assets.coingecko.com/coins/images/12677/thumb/download.jpg?1696512482",
+    "symbol": "XVS",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xcf87ccf958d728f50d8ae5e4f15bc4ca5733cdf5": {
+    "assetId": "eip155:56/bep20:0xcf87ccf958d728f50d8ae5e4f15bc4ca5733cdf5",
+    "chainId": "eip155:56",
+    "name": "Atlantis",
+    "precision": 9,
+    "color": "#3525A6",
+    "icon": "https://assets.coingecko.com/coins/images/20922/thumb/15211.png?1696520312",
+    "symbol": "ATLAS",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xcf87d3d50a98a7832f5cfdf99ae1b88c7cfba4a7": {
+    "assetId": "eip155:56/bep20:0xcf87d3d50a98a7832f5cfdf99ae1b88c7cfba4a7",
+    "chainId": "eip155:56",
+    "name": "0x nodes on BNB Smart Chain",
+    "precision": 18,
+    "color": "#378060",
+    "icon": "https://assets.coingecko.com/coins/images/15600/thumb/BIOS_01.png?1696515235",
+    "symbol": "BIOS",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xcf9f991b14620f5ad144eec11f9bc7bf08987622": {
+    "assetId": "eip155:56/bep20:0xcf9f991b14620f5ad144eec11f9bc7bf08987622",
+    "chainId": "eip155:56",
+    "name": "PornRocket",
+    "precision": 9,
+    "color": "#F2E6CE",
+    "icon": "https://assets.coingecko.com/coins/images/16207/thumb/PornRocket.png?1696515807",
+    "symbol": "PORNROCKET",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xcfa65d49541a0a930a19321c797e442123822fb4": {
+    "assetId": "eip155:56/bep20:0xcfa65d49541a0a930a19321c797e442123822fb4",
+    "chainId": "eip155:56",
+    "name": "STAR QUACKS",
+    "precision": 18,
+    "color": "#C29937",
+    "icon": "https://assets.coingecko.com/coins/images/30302/thumb/IMG-20230510-WA0029.jpg?1696529206",
+    "symbol": "QUACKS",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xcfa784a3e9e7e9c88a845ab9afa8f3b95fcdf5d0": {
+    "assetId": "eip155:56/bep20:0xcfa784a3e9e7e9c88a845ab9afa8f3b95fcdf5d0",
+    "chainId": "eip155:56",
+    "name": "SHREE",
+    "precision": 18,
+    "color": "#C7A644",
+    "icon": "https://assets.coingecko.com/coins/images/26457/thumb/Cgupkjb__400x400.jpeg?1696525530",
+    "symbol": "SHR",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xcfb24d3c3767364391340a2e6d99c64f1cbd7a3d": {
+    "assetId": "eip155:56/bep20:0xcfb24d3c3767364391340a2e6d99c64f1cbd7a3d",
+    "chainId": "eip155:56",
+    "name": "Launchpool on BNB Smart Chain",
+    "precision": 18,
+    "color": "#272728",
+    "icon": "https://assets.coingecko.com/coins/images/14041/thumb/dGUvV0HQ_400x400.jpg?1696513767",
+    "symbol": "LPOOL",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xcfcecfe2bd2fed07a9145222e8a7ad9cf1ccd22a": {
+    "assetId": "eip155:56/bep20:0xcfcecfe2bd2fed07a9145222e8a7ad9cf1ccd22a",
+    "chainId": "eip155:56",
+    "name": "Adshares on BNB Smart Chain",
+    "precision": 11,
+    "color": "#FC444C",
+    "icon": "https://assets.coingecko.com/coins/images/868/thumb/rnO9DyJ.png?1696502001",
+    "symbol": "ADS",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xcfefa64b0ddd611b125157c41cd3827f2e8e8615": {
+    "assetId": "eip155:56/bep20:0xcfefa64b0ddd611b125157c41cd3827f2e8e8615",
+    "chainId": "eip155:56",
+    "name": "KickPad",
+    "precision": 18,
+    "color": "#F6F6F7",
+    "icon": "https://assets.coingecko.com/coins/images/14531/thumb/kickpad_logo.jpg?1696514216",
+    "symbol": "KPAD",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xcffd4d3b517b77be32c76da768634de6c738889b": {
+    "assetId": "eip155:56/bep20:0xcffd4d3b517b77be32c76da768634de6c738889b",
+    "chainId": "eip155:56",
+    "name": "ESPL Arena",
+    "precision": 18,
+    "color": "#A83676",
+    "icon": "https://assets.coingecko.com/coins/images/28728/thumb/200x200_Logo.png?1696527708",
+    "symbol": "ARENA",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xd02d45df2d9e8ee28a15d199689aefb1b4a74043": {
+    "assetId": "eip155:56/bep20:0xd02d45df2d9e8ee28a15d199689aefb1b4a74043",
+    "chainId": "eip155:56",
+    "name": "ROVI Protocol on BNB Smart Chain",
+    "precision": 18,
+    "color": "#BD841B",
+    "icon": "https://assets.coingecko.com/coins/images/28936/thumb/rovi-coin.png?1696527910",
+    "symbol": "ROVI",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xd04c116c4f02f3cca44b7d4e5209225c8779c8b8": {
+    "assetId": "eip155:56/bep20:0xd04c116c4f02f3cca44b7d4e5209225c8779c8b8",
+    "chainId": "eip155:56",
+    "name": "BunnyPark Game",
+    "precision": 18,
+    "color": "#C5AEBD",
+    "icon": "https://assets.coingecko.com/coins/images/21422/thumb/BG_TOKEN.png?1696520786",
+    "symbol": "BG",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xd051b29c5cb6c19532529d7544dd0718dd40ecc8": {
+    "assetId": "eip155:56/bep20:0xd051b29c5cb6c19532529d7544dd0718dd40ecc8",
+    "chainId": "eip155:56",
+    "name": "RocketCoin",
+    "precision": 18,
+    "color": "#070404",
+    "icon": "https://assets.coingecko.com/coins/images/21108/thumb/Screenshot-2021-12-01-at-03-39-43.png?1696520488",
+    "symbol": "ROCKET",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xd06716e1ff2e492cc5034c2e81805562dd3b45fa": {
+    "assetId": "eip155:56/bep20:0xd06716e1ff2e492cc5034c2e81805562dd3b45fa",
+    "chainId": "eip155:56",
+    "name": "Magpie on BNB Smart Chain",
+    "precision": 18,
+    "color": "#98C2F1",
+    "icon": "https://assets.coingecko.com/coins/images/27972/thumb/MagpieLogo.png?1696526991",
+    "symbol": "MGP",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xd069599e718f963bd84502b49ba8f8657faf5b3a": {
+    "assetId": "eip155:56/bep20:0xd069599e718f963bd84502b49ba8f8657faf5b3a",
+    "chainId": "eip155:56",
+    "name": "XCAD Network PLAY",
+    "precision": 18,
+    "color": "#131313",
+    "icon": "https://assets.coingecko.com/coins/images/29565/thumb/play2_%281%29.png?1696528505",
+    "symbol": "PLAY",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xd0840d5f67206f865aee7cce075bd4484cd3cc81": {
+    "assetId": "eip155:56/bep20:0xd0840d5f67206f865aee7cce075bd4484cd3cc81",
+    "chainId": "eip155:56",
+    "name": "AFEN Blockchain",
+    "precision": 18,
+    "color": "#E4CC68",
+    "icon": "https://assets.coingecko.com/coins/images/14957/thumb/cropped-cropped-afen-e1616095076861.png?1696514615",
+    "symbol": "AFEN",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xd0aa796e2160ed260c668e90ac5f237b4ebd4b0d": {
+    "assetId": "eip155:56/bep20:0xd0aa796e2160ed260c668e90ac5f237b4ebd4b0d",
+    "chainId": "eip155:56",
+    "name": "Waifu",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/28181/thumb/200.png?1696527184",
+    "symbol": "WAIFU",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xd0c4bc4520854bafe7bfd699089d648726ab349b": {
+    "assetId": "eip155:56/bep20:0xd0c4bc4520854bafe7bfd699089d648726ab349b",
+    "chainId": "eip155:56",
+    "name": "Cex Trade",
+    "precision": 18,
+    "color": "#E3E1D9",
+    "icon": "https://assets.coingecko.com/coins/images/29635/thumb/cex-logo-200.png?1696528572",
+    "symbol": "CEXD",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xd0e98827d675a3231c2ea69d1f3ed12270df1435": {
+    "assetId": "eip155:56/bep20:0xd0e98827d675a3231c2ea69d1f3ed12270df1435",
+    "chainId": "eip155:56",
+    "name": "Super Rare Ball Potion",
+    "precision": 18,
+    "color": "#F4E1AA",
+    "icon": "https://assets.coingecko.com/coins/images/25825/thumb/6295ae88b46cd60001d5ac25_SRBS_160.png?1696524910",
+    "symbol": "SRBP",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xd0f4afa85a667d27837e9c07c81169869c16dd16": {
+    "assetId": "eip155:56/bep20:0xd0f4afa85a667d27837e9c07c81169869c16dd16",
+    "chainId": "eip155:56",
+    "name": "Privapp Network",
+    "precision": 8,
+    "color": "#F6BA14",
+    "icon": "https://assets.coingecko.com/coins/images/15252/thumb/priv.png?1696514905",
+    "symbol": "BPRIVA",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xd10332818d6a9b4b84bf5d87dbf9d80012fdf913": {
+    "assetId": "eip155:56/bep20:0xd10332818d6a9b4b84bf5d87dbf9d80012fdf913",
+    "chainId": "eip155:56",
+    "name": "MarhabaDeFi",
+    "precision": 18,
+    "color": "#F4D434",
+    "icon": "https://assets.coingecko.com/coins/images/18613/thumb/MRHB_DeFi-02.png?1696518086",
+    "symbol": "MRHB",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xd15c444f1199ae72795eba15e8c1db44e47abf62": {
+    "assetId": "eip155:56/bep20:0xd15c444f1199ae72795eba15e8c1db44e47abf62",
+    "chainId": "eip155:56",
+    "name": "TEN",
+    "precision": 18,
+    "color": "#EC543C",
+    "icon": "https://assets.coingecko.com/coins/images/15631/thumb/TEN-Square200.png?1696515264",
+    "symbol": "TENFI",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xd15cee1deafbad6c0b3fd7489677cc102b141464": {
+    "assetId": "eip155:56/bep20:0xd15cee1deafbad6c0b3fd7489677cc102b141464",
+    "chainId": "eip155:56",
+    "name": "Circuits of Value on BNB Smart Chain",
+    "precision": 8,
+    "color": "#625F59",
+    "icon": "https://assets.coingecko.com/coins/images/588/thumb/coval-logo.png?1696501792",
+    "symbol": "COVAL",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xd15d3baf3f40988810c5f9da54394ffb5246ded6": {
+    "assetId": "eip155:56/bep20:0xd15d3baf3f40988810c5f9da54394ffb5246ded6",
+    "chainId": "eip155:56",
+    "name": "Seba",
+    "precision": 18,
+    "color": "#ED8F13",
+    "icon": "https://assets.coingecko.com/coins/images/24475/thumb/seba.png?1696523654",
+    "symbol": "SEBA",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xd1738eb733a636d1b8665f48bc8a24da889c2562": {
+    "assetId": "eip155:56/bep20:0xd1738eb733a636d1b8665f48bc8a24da889c2562",
+    "chainId": "eip155:56",
+    "name": "Frax Price Index Share on BNB Smart Chain",
+    "precision": 18,
+    "color": "#C9C9C9",
+    "icon": "https://assets.coingecko.com/coins/images/24944/thumb/FPIS_icon.png?1696524099",
+    "symbol": "FPIS",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xd17479997f34dd9156deef8f95a52d81d265be9c": {
+    "assetId": "eip155:56/bep20:0xd17479997f34dd9156deef8f95a52d81d265be9c",
+    "chainId": "eip155:56",
+    "name": "USDD on BNB Smart Chain",
+    "precision": 18,
+    "color": "#3D7564",
+    "icon": "https://assets.coingecko.com/coins/images/25380/thumb/UUSD.jpg?1696524513",
+    "symbol": "USDD",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xd18a65de8dd028139f088cbd87cdd7fd196c00d7": {
+    "assetId": "eip155:56/bep20:0xd18a65de8dd028139f088cbd87cdd7fd196c00d7",
+    "chainId": "eip155:56",
+    "name": "MatchNova Champion Coin",
+    "precision": 18,
+    "color": "#38BF4C",
+    "icon": "https://assets.coingecko.com/coins/images/30260/thumb/Logo200*200MatchNova.png?1696529168",
+    "symbol": "MCC",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xd18dcd429c4c44b98242042cc35a3e03bfabdb08": {
+    "assetId": "eip155:56/bep20:0xd18dcd429c4c44b98242042cc35a3e03bfabdb08",
+    "chainId": "eip155:56",
+    "name": "Streakk Chain",
+    "precision": 18,
+    "color": "#DCF0FC",
+    "icon": "https://assets.coingecko.com/coins/images/30730/thumb/STREAKK_Logo_Round-1.png?1696529601",
+    "symbol": "STKC",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xd1e007d66470d3f775f1d4de52ed158fcc3b7189": {
+    "assetId": "eip155:56/bep20:0xd1e007d66470d3f775f1d4de52ed158fcc3b7189",
+    "chainId": "eip155:56",
+    "name": "ART CAN DIE",
+    "precision": 18,
+    "color": "#EEB2AF",
+    "icon": "https://assets.coingecko.com/coins/images/30457/thumb/Art_Can_Die.png?1696529344",
+    "symbol": "DIE",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xd20738760aededa73f6cd91a3d357746e0283a0e": {
+    "assetId": "eip155:56/bep20:0xd20738760aededa73f6cd91a3d357746e0283a0e",
+    "chainId": "eip155:56",
+    "name": "Tanks",
+    "precision": 18,
+    "color": "#263F41",
+    "icon": "https://assets.coingecko.com/coins/images/19819/thumb/tank-200.png?1696519239",
+    "symbol": "TANKS",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xd21a1f1fcec9479d38b570a2eca3277b1b2a959a": {
+    "assetId": "eip155:56/bep20:0xd21a1f1fcec9479d38b570a2eca3277b1b2a959a",
+    "chainId": "eip155:56",
+    "name": "Malgo Finance",
+    "precision": 18,
+    "color": "#0C0C0A",
+    "icon": "https://assets.coingecko.com/coins/images/29315/thumb/CMC_Logo_Round__%286%29.png?1696528266",
+    "symbol": "MGXG",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xd21d29b38374528675c34936bf7d5dd693d2a577": {
+    "assetId": "eip155:56/bep20:0xd21d29b38374528675c34936bf7d5dd693d2a577",
+    "chainId": "eip155:56",
+    "name": "PARSIQ on BNB Smart Chain",
+    "precision": 18,
+    "color": "#045CC4",
+    "icon": "https://assets.coingecko.com/coins/images/11973/thumb/DsNgK0O.png?1696511831",
+    "symbol": "PRQ",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xd23811058eb6e7967d9a00dc3886e75610c4abba": {
+    "assetId": "eip155:56/bep20:0xd23811058eb6e7967d9a00dc3886e75610c4abba",
+    "chainId": "eip155:56",
+    "name": "KnightSwap",
+    "precision": 18,
+    "color": "#0B4376",
+    "icon": "https://assets.coingecko.com/coins/images/24132/thumb/knightswap.png?1696523323",
+    "symbol": "KNIGHT",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xd24616870ca41bc01074446988faeb0085a71190": {
+    "assetId": "eip155:56/bep20:0xd24616870ca41bc01074446988faeb0085a71190",
+    "chainId": "eip155:56",
+    "name": "Lord of Dragons Reward Token",
+    "precision": 18,
+    "color": "#D7D8D7",
+    "icon": "https://assets.coingecko.com/coins/images/30630/thumb/logo_200.png?1696529503",
+    "symbol": "LORT",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xd25b432b40dcd837fa10e98c25141d12e33d8365": {
+    "assetId": "eip155:56/bep20:0xd25b432b40dcd837fa10e98c25141d12e33d8365",
+    "chainId": "eip155:56",
+    "name": "X Pepe",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/32853/thumb/200xN.png?1699663751",
+    "symbol": "XPEP",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xd2a685ed5c93f149ee876958a278f981625f28da": {
+    "assetId": "eip155:56/bep20:0xd2a685ed5c93f149ee876958a278f981625f28da",
+    "chainId": "eip155:56",
+    "name": "Coffeeswap",
+    "precision": 18,
+    "color": "#C08646",
+    "icon": "https://assets.coingecko.com/coins/images/30873/thumb/676f733b4f3dbad89513c161af7aadc.png?1696529721",
+    "symbol": "CF",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xd2b6bf88b7d9da599331719e338fcdeb235a0b99": {
+    "assetId": "eip155:56/bep20:0xd2b6bf88b7d9da599331719e338fcdeb235a0b99",
+    "chainId": "eip155:56",
+    "name": "Limoverse",
+    "precision": 18,
+    "color": "#1974B8",
+    "icon": "https://assets.coingecko.com/coins/images/29732/thumb/limoverse-blue-logo_200x200.jpg?1696528662",
+    "symbol": "LIMO",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xd2cdfd5d26dfa1d11116b9ed7dbd7c6b88c6e1d3": {
+    "assetId": "eip155:56/bep20:0xd2cdfd5d26dfa1d11116b9ed7dbd7c6b88c6e1d3",
+    "chainId": "eip155:56",
+    "name": "BlackCoin",
+    "precision": 18,
+    "color": "#B29550",
+    "icon": "https://assets.coingecko.com/coins/images/50/thumb/blackcoin.png?1696501446",
+    "symbol": "BLK",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xd2e7b964770fcf51df088a5f0bb2d33a3c60cccf": {
+    "assetId": "eip155:56/bep20:0xd2e7b964770fcf51df088a5f0bb2d33a3c60cccf",
+    "chainId": "eip155:56",
+    "name": "Ispolink on BNB Smart Chain",
+    "precision": 18,
+    "color": "#5B5BEC",
+    "icon": "https://assets.coingecko.com/coins/images/15283/thumb/isolink.PNG?1696514934",
+    "symbol": "ISP",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xd2ed1973d55488b7118ea81d5a30cd7b61c68a49": {
+    "assetId": "eip155:56/bep20:0xd2ed1973d55488b7118ea81d5a30cd7b61c68a49",
+    "chainId": "eip155:56",
+    "name": "Ultron Vault",
+    "precision": 18,
+    "color": "#A5048F",
+    "icon": "https://assets.coingecko.com/coins/images/29956/thumb/logo.png?1696528882",
+    "symbol": "ULTRON",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xd306c124282880858a634e7396383ae58d37c79c": {
+    "assetId": "eip155:56/bep20:0xd306c124282880858a634e7396383ae58d37c79c",
+    "chainId": "eip155:56",
+    "name": "The Wasted Lands on BNB Smart Chain",
+    "precision": 18,
+    "color": "#CA9F62",
+    "icon": "https://assets.coingecko.com/coins/images/24273/thumb/Coin_WAL_%281%29.png?1696523456",
+    "symbol": "WAL",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xd3253fc0a42e6dcf4f66ab147f628e3f29e9b214": {
+    "assetId": "eip155:56/bep20:0xd3253fc0a42e6dcf4f66ab147f628e3f29e9b214",
+    "chainId": "eip155:56",
+    "name": "Sandwich Network",
+    "precision": 18,
+    "color": "#F8EA9A",
+    "icon": "https://assets.coingecko.com/coins/images/23562/thumb/Sandwich_Token_Logo.png?1696522767",
+    "symbol": "SANDWICH",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xd32d01a43c869edcd1117c640fbdcfcfd97d9d65": {
+    "assetId": "eip155:56/bep20:0xd32d01a43c869edcd1117c640fbdcfcfd97d9d65",
+    "chainId": "eip155:56",
+    "name": "Nominex",
+    "precision": 18,
+    "color": "#94D4FC",
+    "icon": "https://assets.coingecko.com/coins/images/14424/thumb/NMX_c_200px.png?1696514114",
+    "symbol": "NMX",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xd347deffbb2e750c752b2d4aa5c26fd57ab90d64": {
+    "assetId": "eip155:56/bep20:0xd347deffbb2e750c752b2d4aa5c26fd57ab90d64",
+    "chainId": "eip155:56",
+    "name": "VeriBlock",
+    "precision": 18,
+    "color": "#D7ECF1",
+    "icon": "https://assets.coingecko.com/coins/images/8075/thumb/photo_2021-02-03_11.54.55.jpeg?1696508297",
+    "symbol": "VBK",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xd3513dc0df25f60c71822e7bacac14f9391845ff": {
+    "assetId": "eip155:56/bep20:0xd3513dc0df25f60c71822e7bacac14f9391845ff",
+    "chainId": "eip155:56",
+    "name": "ReelFi",
+    "precision": 18,
+    "color": "#9C9AC0",
+    "icon": "https://assets.coingecko.com/coins/images/29447/thumb/logo_200x200.png?1696528394",
+    "symbol": "REELFI",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xd38c1b7b95d359978996e01b8a85286f65b3c011": {
+    "assetId": "eip155:56/bep20:0xd38c1b7b95d359978996e01b8a85286f65b3c011",
+    "chainId": "eip155:56",
+    "name": "Rage Fan on BNB Smart Chain",
+    "precision": 18,
+    "color": "#AA1C55",
+    "icon": "https://assets.coingecko.com/coins/images/14585/thumb/Copy_of_RAGE_FAN_LOGO_ONLY.png?1696514265",
+    "symbol": "RAGE",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xd3987cb8a59e8ef6aab0d95b92254344ed9c3c6f": {
+    "assetId": "eip155:56/bep20:0xd3987cb8a59e8ef6aab0d95b92254344ed9c3c6f",
+    "chainId": "eip155:56",
+    "name": "WEBFOUR",
+    "precision": 18,
+    "color": "#4372C4",
+    "icon": "https://assets.coingecko.com/coins/images/22323/thumb/WebFourLogoNoText.png?1696521667",
+    "symbol": "WEBFOUR",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xd3a26b1329caa71b3c8175b454caf61e5b49c9ae": {
+    "assetId": "eip155:56/bep20:0xd3a26b1329caa71b3c8175b454caf61e5b49c9ae",
+    "chainId": "eip155:56",
+    "name": "Chica Chain",
+    "precision": 18,
+    "color": "#1D1D1D",
+    "icon": "https://assets.coingecko.com/coins/images/32187/thumb/CIHKA.jpg?1696743794",
+    "symbol": "CHICA",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xd3af8e09894d69e937e37eef46df1cbf82b35c81": {
+    "assetId": "eip155:56/bep20:0xd3af8e09894d69e937e37eef46df1cbf82b35c81",
+    "chainId": "eip155:56",
+    "name": "Nano Dogecoin",
+    "precision": 9,
+    "color": "#BED1EF",
+    "icon": "https://assets.coingecko.com/coins/images/17477/thumb/Untitled-design-6.png?1696517019",
+    "symbol": "INDC",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xd3b71117e6c1558c1553305b44988cd944e97300": {
+    "assetId": "eip155:56/bep20:0xd3b71117e6c1558c1553305b44988cd944e97300",
+    "chainId": "eip155:56",
+    "name": "Yel Finance on BNB Smart Chain",
+    "precision": 18,
+    "color": "#8E2EBF",
+    "icon": "https://assets.coingecko.com/coins/images/17429/thumb/Logo200.png?1696516976",
+    "symbol": "YEL",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xd3b77ac07c963b8cead47000a5208434d9a8734d": {
+    "assetId": "eip155:56/bep20:0xd3b77ac07c963b8cead47000a5208434d9a8734d",
+    "chainId": "eip155:56",
+    "name": "Safetrees",
+    "precision": 9,
+    "color": "#FCEDD5",
+    "icon": "https://assets.coingecko.com/coins/images/16202/thumb/ST_newLogo_200x.png?1696515802",
+    "symbol": "TREES",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xd3c325848d7c6e29b574cb0789998b2ff901f17e": {
+    "assetId": "eip155:56/bep20:0xd3c325848d7c6e29b574cb0789998b2ff901f17e",
+    "chainId": "eip155:56",
+    "name": "OneArt on BNB Smart Chain",
+    "precision": 18,
+    "color": "#4E7CD9",
+    "icon": "https://assets.coingecko.com/coins/images/19307/thumb/token_light_3x.png?1696518749",
+    "symbol": "1ART",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xd3c7e51caab1089002ec05569a04d14bcc478bc4": {
+    "assetId": "eip155:56/bep20:0xd3c7e51caab1089002ec05569a04d14bcc478bc4",
+    "chainId": "eip155:56",
+    "name": "D3D Social",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/28921/thumb/LogoD3D.png?1696527896",
+    "symbol": "D3D",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xd3cceb42b544e91eee02eb585cc9a7b47247bfde": {
+    "assetId": "eip155:56/bep20:0xd3cceb42b544e91eee02eb585cc9a7b47247bfde",
+    "chainId": "eip155:56",
+    "name": "Dtube Coin on BNB Smart Chain",
+    "precision": 2,
+    "color": "#F41C34",
+    "icon": "https://assets.coingecko.com/coins/images/13126/thumb/dtube_logo.png?1696512913",
+    "symbol": "DTUBE",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xd3f7c3052aa17d45718eb72a707f8046af665719": {
+    "assetId": "eip155:56/bep20:0xd3f7c3052aa17d45718eb72a707f8046af665719",
+    "chainId": "eip155:56",
+    "name": "Planet Hares",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/32744/thumb/200*200.png?1699261996",
+    "symbol": "HAC",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xd4099a517f2fbe8a730d2ecaad1d0824b75e084a": {
+    "assetId": "eip155:56/bep20:0xd4099a517f2fbe8a730d2ecaad1d0824b75e084a",
+    "chainId": "eip155:56",
+    "name": "The Monopolist",
+    "precision": 18,
+    "color": "#F9D14B",
+    "icon": "https://assets.coingecko.com/coins/images/21184/thumb/ab05Nt4UN1q5.png?1696520560",
+    "symbol": "MONO",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xd40bedb44c081d2935eeba6ef5a3c8a31a1bbe13": {
+    "assetId": "eip155:56/bep20:0xd40bedb44c081d2935eeba6ef5a3c8a31a1bbe13",
+    "chainId": "eip155:56",
+    "name": "Metahero",
+    "precision": 18,
+    "color": "#0B1F1C",
+    "icon": "https://assets.coingecko.com/coins/images/16911/thumb/AVATAR2.png?1696516482",
+    "symbol": "HERO",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xd41c4805a9a3128f9f7a7074da25965371ba50d5": {
+    "assetId": "eip155:56/bep20:0xd41c4805a9a3128f9f7a7074da25965371ba50d5",
+    "chainId": "eip155:56",
+    "name": "Coinscope",
+    "precision": 18,
+    "color": "#74C3C5",
+    "icon": "https://assets.coingecko.com/coins/images/20649/thumb/IpSQZCFv_400x400.jpg?1696520051",
+    "symbol": "COINSCOPE",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xd41fdb03ba84762dd66a0af1a6c8540ff1ba5dfb": {
+    "assetId": "eip155:56/bep20:0xd41fdb03ba84762dd66a0af1a6c8540ff1ba5dfb",
+    "chainId": "eip155:56",
+    "name": "SafePal on BNB Smart Chain",
+    "precision": 18,
+    "color": "#D0C7FA",
+    "icon": "https://assets.coingecko.com/coins/images/13905/thumb/sfp.png?1696513647",
+    "symbol": "SFP",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xd44fd09d74cd13838f137b590497595d6b3feea4": {
+    "assetId": "eip155:56/bep20:0xd44fd09d74cd13838f137b590497595d6b3feea4",
+    "chainId": "eip155:56",
+    "name": "CryptoMines Eternal",
+    "precision": 18,
+    "color": "#866CE8",
+    "icon": "https://assets.coingecko.com/coins/images/18344/thumb/rn78txF.png?1696517834",
+    "symbol": "ETERNAL",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xd467d078fa363985805b1c3624f26045ba5709df": {
+    "assetId": "eip155:56/bep20:0xd467d078fa363985805b1c3624f26045ba5709df",
+    "chainId": "eip155:56",
+    "name": "Geek Protocol",
+    "precision": 18,
+    "color": "#040B08",
+    "icon": "https://assets.coingecko.com/coins/images/28553/thumb/logo300black2.png?1696527544",
+    "symbol": "GEEK",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xd48474e7444727bf500a32d5abe01943f3a59a64": {
+    "assetId": "eip155:56/bep20:0xd48474e7444727bf500a32d5abe01943f3a59a64",
+    "chainId": "eip155:56",
+    "name": "BitBook",
+    "precision": 8,
+    "color": "#5E99F6",
+    "icon": "https://assets.coingecko.com/coins/images/15965/thumb/bitbook.PNG?1696515576",
+    "symbol": "BBT",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xd48d639f72ef29458b72cdc9a47a95fa46101529": {
+    "assetId": "eip155:56/bep20:0xd48d639f72ef29458b72cdc9a47a95fa46101529",
+    "chainId": "eip155:56",
+    "name": "HelpKidz Coin",
+    "precision": 12,
+    "color": "#635424",
+    "icon": "https://assets.coingecko.com/coins/images/25348/thumb/HelpKidz_Coin_200.png?1696524482",
+    "symbol": "HKC",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xd4c73fd18f732bc6ee9fb193d109b2eed815df80": {
+    "assetId": "eip155:56/bep20:0xd4c73fd18f732bc6ee9fb193d109b2eed815df80",
+    "chainId": "eip155:56",
+    "name": "Monsterra MAG on BNB Smart Chain",
+    "precision": 18,
+    "color": "#3CCEAF",
+    "icon": "https://assets.coingecko.com/coins/images/27152/thumb/MAG.png?1696526203",
+    "symbol": "MAG",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xd4d55b811d9ede2adce61a98d67d7f91bffce495": {
+    "assetId": "eip155:56/bep20:0xd4d55b811d9ede2adce61a98d67d7f91bffce495",
+    "chainId": "eip155:56",
+    "name": "PulseDoge",
+    "precision": 18,
+    "color": "#AFD3DC",
+    "icon": "https://assets.coingecko.com/coins/images/19695/thumb/pulse.png?1696519122",
+    "symbol": "PULSEDOGE",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xd4fbc57b6233f268e7fba3b66e62719d74deecbc": {
+    "assetId": "eip155:56/bep20:0xd4fbc57b6233f268e7fba3b66e62719d74deecbc",
+    "chainId": "eip155:56",
+    "name": "Modefi on BNB Smart Chain",
+    "precision": 18,
+    "color": "#24C4EC",
+    "icon": "https://assets.coingecko.com/coins/images/13980/thumb/modefi_logo.png?1696513713",
+    "symbol": "MOD",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xd50b6c116b05be1bbe50a19bc5273fa1e6f48026": {
+    "assetId": "eip155:56/bep20:0xd50b6c116b05be1bbe50a19bc5273fa1e6f48026",
+    "chainId": "eip155:56",
+    "name": "Purr",
+    "precision": 18,
+    "color": "#E4B4BD",
+    "icon": "https://assets.coingecko.com/coins/images/31442/thumb/IMG_20230822_112421_407.jpg?1696530256",
+    "symbol": "PURR",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xd517ce9206c09dfaa7e7f40f98e59f54fb10e09f": {
+    "assetId": "eip155:56/bep20:0xd517ce9206c09dfaa7e7f40f98e59f54fb10e09f",
+    "chainId": "eip155:56",
+    "name": "Meta Merge Mana",
+    "precision": 18,
+    "color": "#9218C0",
+    "icon": "https://assets.coingecko.com/coins/images/30881/thumb/M3_1.png?1696529728",
+    "symbol": "MMM",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xd522a1dce1ca4b138dda042a78672307eb124cc2": {
+    "assetId": "eip155:56/bep20:0xd522a1dce1ca4b138dda042a78672307eb124cc2",
+    "chainId": "eip155:56",
+    "name": "SWAPZ app",
+    "precision": 18,
+    "color": "#DB393B",
+    "icon": "https://assets.coingecko.com/coins/images/16811/thumb/EWV5xQB.jpeg?1696516381",
+    "symbol": "SWAPZ",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xd5239b38b93b54a31b348afaac3edcdf9e3c546a": {
+    "assetId": "eip155:56/bep20:0xd5239b38b93b54a31b348afaac3edcdf9e3c546a",
+    "chainId": "eip155:56",
+    "name": "HashBit",
+    "precision": 18,
+    "color": "#CEA768",
+    "icon": "https://assets.coingecko.com/coins/images/16375/thumb/HASHBIT.png?1696515974",
+    "symbol": "HBIT",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xd52669712f253cd6b2fe8a8638f66ed726cb770c": {
+    "assetId": "eip155:56/bep20:0xd52669712f253cd6b2fe8a8638f66ed726cb770c",
+    "chainId": "eip155:56",
+    "name": "Curate on BNB Smart Chain",
+    "precision": 8,
+    "color": "#D4D6D8",
+    "icon": "https://assets.coingecko.com/coins/images/13327/thumb/400x400_%281%29_%283%29_%282%29.png?1696513096",
+    "symbol": "XCUR",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xd585f9c5953ca97da3551f20725a274c9e442ff3": {
+    "assetId": "eip155:56/bep20:0xd585f9c5953ca97da3551f20725a274c9e442ff3",
+    "chainId": "eip155:56",
+    "name": "Pegazus Finance",
+    "precision": 9,
+    "color": "#D0B324",
+    "icon": "https://assets.coingecko.com/coins/images/15610/thumb/Pegazus.png?1696515245",
+    "symbol": "PEG",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xd58b8747307936d1324bf8c40f45687c7bacc6b9": {
+    "assetId": "eip155:56/bep20:0xd58b8747307936d1324bf8c40f45687c7bacc6b9",
+    "chainId": "eip155:56",
+    "name": "MHCASH",
+    "precision": 18,
+    "color": "#CCBC98",
+    "icon": "https://assets.coingecko.com/coins/images/32540/thumb/icon256.png?1698473190",
+    "symbol": "MHCASH",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xd5d0322b6bab6a762c79f8c81a0b674778e13aed": {
+    "assetId": "eip155:56/bep20:0xd5d0322b6bab6a762c79f8c81a0b674778e13aed",
+    "chainId": "eip155:56",
+    "name": "Binance Peg Firo",
+    "precision": 8,
+    "color": "#AC4854",
+    "icon": "https://assets.coingecko.com/coins/images/20128/thumb/firocoingecko.png?1696519544",
+    "symbol": "FIRO",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xd5fa8fba4786a5411fe6588fee62402c76e7c141": {
+    "assetId": "eip155:56/bep20:0xd5fa8fba4786a5411fe6588fee62402c76e7c141",
+    "chainId": "eip155:56",
+    "name": "DOGE FLOKI 2 0",
+    "precision": 9,
+    "color": "#D3CCCA",
+    "icon": "https://assets.coingecko.com/coins/images/31682/thumb/200.png?1696530501",
+    "symbol": "DOFI20",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xd6163cec51f2e7c5974f3f4ce8fdb9c80abf142e": {
+    "assetId": "eip155:56/bep20:0xd6163cec51f2e7c5974f3f4ce8fdb9c80abf142e",
+    "chainId": "eip155:56",
+    "name": "Mythic Ore",
+    "precision": 18,
+    "color": "#487BCE",
+    "icon": "https://assets.coingecko.com/coins/images/28825/thumb/cg.png?1696527801",
+    "symbol": "MORE",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xd618ad98e6557532d3c65e88bf1ff765724f21c9": {
+    "assetId": "eip155:56/bep20:0xd618ad98e6557532d3c65e88bf1ff765724f21c9",
+    "chainId": "eip155:56",
+    "name": "Trade Tech AI",
+    "precision": 18,
+    "color": "#40C6B4",
+    "icon": "https://assets.coingecko.com/coins/images/29502/thumb/TAI__logo_200.png?1696528447",
+    "symbol": "TTAI",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xd61ec800066d4b8b1b3609ef91d50817193e6056": {
+    "assetId": "eip155:56/bep20:0xd61ec800066d4b8b1b3609ef91d50817193e6056",
+    "chainId": "eip155:56",
+    "name": "impactMarket on BNB Smart Chain",
+    "precision": 18,
+    "color": "#A6C0FC",
+    "icon": "https://assets.coingecko.com/coins/images/21907/thumb/PACT_Token_Ticker_Blue_2x.png?1696521258",
+    "symbol": "PACT",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xd632bd021a07af70592ce1e18717ab9aa126decb": {
+    "assetId": "eip155:56/bep20:0xd632bd021a07af70592ce1e18717ab9aa126decb",
+    "chainId": "eip155:56",
+    "name": "Kangal on BNB Smart Chain",
+    "precision": 18,
+    "color": "#45382F",
+    "icon": "https://assets.coingecko.com/coins/images/14241/thumb/logo-200.png?1696513956",
+    "symbol": "KANGAL",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xd635b32688f36ee4a7fe117b4c91dd811277acb6": {
+    "assetId": "eip155:56/bep20:0xd635b32688f36ee4a7fe117b4c91dd811277acb6",
+    "chainId": "eip155:56",
+    "name": "Copycat Finance",
+    "precision": 18,
+    "color": "#CFB6F5",
+    "icon": "https://assets.coingecko.com/coins/images/18276/thumb/copycat.PNG?1696517770",
+    "symbol": "COPYCAT",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xd675ff2b0ff139e14f86d87b7a6049ca7c66d76e": {
+    "assetId": "eip155:56/bep20:0xd675ff2b0ff139e14f86d87b7a6049ca7c66d76e",
+    "chainId": "eip155:56",
+    "name": "Defily",
+    "precision": 18,
+    "color": "#114161",
+    "icon": "https://assets.coingecko.com/coins/images/18261/thumb/defily.PNG?1696517756",
+    "symbol": "DFL",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xd68e5c52f7563486cc1a15d00efa12c8644a907e": {
+    "assetId": "eip155:56/bep20:0xd68e5c52f7563486cc1a15d00efa12c8644a907e",
+    "chainId": "eip155:56",
+    "name": "Egoras Credit",
+    "precision": 18,
+    "color": "#0C2314",
+    "icon": "https://assets.coingecko.com/coins/images/20987/thumb/RSGoYMG.png?1696520372",
+    "symbol": "EGC",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xd691d9a68c887bdf34da8c36f63487333acfd103": {
+    "assetId": "eip155:56/bep20:0xd691d9a68c887bdf34da8c36f63487333acfd103",
+    "chainId": "eip155:56",
+    "name": "Maverick Protocol on BNB Smart Chain",
+    "precision": 18,
+    "color": "#7A0CFC",
+    "icon": "https://assets.coingecko.com/coins/images/30850/thumb/MAV_Logo.png?1696529701",
+    "symbol": "MAV",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xd6bf5a972e0c18d38f3a5e132880e39e6871f8a2": {
+    "assetId": "eip155:56/bep20:0xd6bf5a972e0c18d38f3a5e132880e39e6871f8a2",
+    "chainId": "eip155:56",
+    "name": "Oscarswap",
+    "precision": 18,
+    "color": "#6F1C33",
+    "icon": "https://assets.coingecko.com/coins/images/30724/thumb/oscar_swap_post_10_june_2023_o-03.png?1696529595",
+    "symbol": "OSCAR",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xd6cce248263ea1e2b8cb765178c944fc16ed0727": {
+    "assetId": "eip155:56/bep20:0xd6cce248263ea1e2b8cb765178c944fc16ed0727",
+    "chainId": "eip155:56",
+    "name": "Creator Platform on BNB Smart Chain",
+    "precision": 18,
+    "color": "#7C66E4",
+    "icon": "https://assets.coingecko.com/coins/images/18252/thumb/logo_%281%29.png?1696517748",
+    "symbol": "CTR",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xd6edbb510af7901b2c049ce778b65a740c4aeb7f": {
+    "assetId": "eip155:56/bep20:0xd6edbb510af7901b2c049ce778b65a740c4aeb7f",
+    "chainId": "eip155:56",
+    "name": "Hollywood Capital Group WARRIOR",
+    "precision": 18,
+    "color": "#F2BA6A",
+    "icon": "https://assets.coingecko.com/coins/images/29400/thumb/Name_3.png?1696528351",
+    "symbol": "WOR",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xd6f28f15a5cafc8d29556393c08177124b88de0d": {
+    "assetId": "eip155:56/bep20:0xd6f28f15a5cafc8d29556393c08177124b88de0d",
+    "chainId": "eip155:56",
+    "name": "Spellfire on BNB Smart Chain",
+    "precision": 18,
+    "color": "#EC2424",
+    "icon": "https://assets.coingecko.com/coins/images/23107/thumb/17316.png?1696522396",
+    "symbol": "SPELLFIRE",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xd6fdde76b8c1c45b33790cc8751d5b88984c44ec": {
+    "assetId": "eip155:56/bep20:0xd6fdde76b8c1c45b33790cc8751d5b88984c44ec",
+    "chainId": "eip155:56",
+    "name": "StrikeX",
+    "precision": 18,
+    "color": "#7364FC",
+    "icon": "https://assets.coingecko.com/coins/images/15839/thumb/StrikeX-Icon-200px.png?1696515456",
+    "symbol": "STRX",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xd70d1dd91ecd79c6f8de86924571a454ff587818": {
+    "assetId": "eip155:56/bep20:0xd70d1dd91ecd79c6f8de86924571a454ff587818",
+    "chainId": "eip155:56",
+    "name": "SeedLaunch",
+    "precision": 18,
+    "color": "#FACDC7",
+    "icon": "https://assets.coingecko.com/coins/images/29673/thumb/logosl.png?1696528608",
+    "symbol": "SLT",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xd711d7d893de57dc13ff465763218770bd42db1d": {
+    "assetId": "eip155:56/bep20:0xd711d7d893de57dc13ff465763218770bd42db1d",
+    "chainId": "eip155:56",
+    "name": "ARYZE eGBP on BNB Smart Chain",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/32989/thumb/ARYZE_eGBP.png?1700099647",
+    "symbol": "EGBP",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xd71239a33c8542bd42130c1b4aca0673b4e4f48b": {
+    "assetId": "eip155:56/bep20:0xd71239a33c8542bd42130c1b4aca0673b4e4f48b",
+    "chainId": "eip155:56",
+    "name": "Linked Finance World",
+    "precision": 18,
+    "color": "#4C1CDC",
+    "icon": "https://assets.coingecko.com/coins/images/19570/thumb/LFW_New_logo.png?1696519002",
+    "symbol": "LFW",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xd722bac68242bc0b830667cd8999ae6dcdfaac69": {
+    "assetId": "eip155:56/bep20:0xd722bac68242bc0b830667cd8999ae6dcdfaac69",
+    "chainId": "eip155:56",
+    "name": "Pacman",
+    "precision": 18,
+    "color": "#E8CB25",
+    "icon": "https://assets.coingecko.com/coins/images/31945/thumb/photo_2023-05-13_18-36-09.jpg?1696530752",
+    "symbol": "PAC",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xd73e883e203646e87f6d073baf3d7719bda68bcb": {
+    "assetId": "eip155:56/bep20:0xd73e883e203646e87f6d073baf3d7719bda68bcb",
+    "chainId": "eip155:56",
+    "name": "Rhythm",
+    "precision": 9,
+    "color": "#242524",
+    "icon": "https://assets.coingecko.com/coins/images/17698/thumb/rhythm.png?1696517226",
+    "symbol": "RHYTHM",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xd73f32833b6d5d9c8070c23e599e283a3039823c": {
+    "assetId": "eip155:56/bep20:0xd73f32833b6d5d9c8070c23e599e283a3039823c",
+    "chainId": "eip155:56",
+    "name": "Waterfall Governance on BNB Smart Chain",
+    "precision": 18,
+    "color": "#3477E7",
+    "icon": "https://assets.coingecko.com/coins/images/19189/thumb/wtf_icon_avatar_200x200.png?1696518637",
+    "symbol": "WTF",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xd74b782e05aa25c50e7330af541d46e18f36661c": {
+    "assetId": "eip155:56/bep20:0xd74b782e05aa25c50e7330af541d46e18f36661c",
+    "chainId": "eip155:56",
+    "name": "Rich Quack",
+    "precision": 9,
+    "color": "#CEA248",
+    "icon": "https://assets.coingecko.com/coins/images/16356/thumb/57198446-0-Get-Rich-Quick-Gober.png?1696515955",
+    "symbol": "QUACK",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xd7730681b1dc8f6f969166b29d8a5ea8568616a3": {
+    "assetId": "eip155:56/bep20:0xd7730681b1dc8f6f969166b29d8a5ea8568616a3",
+    "chainId": "eip155:56",
+    "name": "Nafter",
+    "precision": 18,
+    "color": "#F455AB",
+    "icon": "https://assets.coingecko.com/coins/images/15493/thumb/Nafter_White_logo_1_200x200.png?1696515137",
+    "symbol": "NAFT",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xd773affb89f9dbef8b1bcd2003a9de421f979416": {
+    "assetId": "eip155:56/bep20:0xd773affb89f9dbef8b1bcd2003a9de421f979416",
+    "chainId": "eip155:56",
+    "name": "LendrR",
+    "precision": 18,
+    "color": "#047FD9",
+    "icon": "https://assets.coingecko.com/coins/images/31620/thumb/LendrR_200x200.png?1696530436",
+    "symbol": "LNDRR",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xd7c5d2a3b7868e6dd539e145c98a565f29ef3fa4": {
+    "assetId": "eip155:56/bep20:0xd7c5d2a3b7868e6dd539e145c98a565f29ef3fa4",
+    "chainId": "eip155:56",
+    "name": "WeGro",
+    "precision": 18,
+    "color": "#3DBAB4",
+    "icon": "https://assets.coingecko.com/coins/images/21675/thumb/wegrocoin_logo_favicon.png?1696521031",
+    "symbol": "WEGRO",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xd7d5d7bcd0680cd8aa5afc34bc7037c3040f8210": {
+    "assetId": "eip155:56/bep20:0xd7d5d7bcd0680cd8aa5afc34bc7037c3040f8210",
+    "chainId": "eip155:56",
+    "name": "Green Block",
+    "precision": 18,
+    "color": "#F0F3F0",
+    "icon": "https://assets.coingecko.com/coins/images/28927/thumb/photo_2023-02-02_02-44-01.jpg?1696527902",
+    "symbol": "GBT",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xd8047afecb86e44eff3add991b9f063ed4ca716b": {
+    "assetId": "eip155:56/bep20:0xd8047afecb86e44eff3add991b9f063ed4ca716b",
+    "chainId": "eip155:56",
+    "name": "Good Games Guild",
+    "precision": 18,
+    "color": "#2D292C",
+    "icon": "https://assets.coingecko.com/coins/images/19269/thumb/Logo_%282%29_%281%29.jpg?1696518713",
+    "symbol": "GGG",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xd8126b749e4ec149c97bffbe875ab9960bdb8916": {
+    "assetId": "eip155:56/bep20:0xd8126b749e4ec149c97bffbe875ab9960bdb8916",
+    "chainId": "eip155:56",
+    "name": "Hey Floki Ai",
+    "precision": 9,
+    "color": "#C3C3C0",
+    "icon": "https://assets.coingecko.com/coins/images/29178/thumb/200x200.png?1696528136",
+    "symbol": "A2E",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xd83cec69ed9d8044597a793445c86a5e763b0e3d": {
+    "assetId": "eip155:56/bep20:0xd83cec69ed9d8044597a793445c86a5e763b0e3d",
+    "chainId": "eip155:56",
+    "name": "StopElon",
+    "precision": 9,
+    "color": "#F5DDD6",
+    "icon": "https://assets.coingecko.com/coins/images/16136/thumb/photo_2021-06-04_18-28-00.png?1696515741",
+    "symbol": "STOPELON",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xd85ad783cc94bd04196a13dc042a3054a9b52210": {
+    "assetId": "eip155:56/bep20:0xd85ad783cc94bd04196a13dc042a3054a9b52210",
+    "chainId": "eip155:56",
+    "name": "TribeOne on BNB Smart Chain",
+    "precision": 18,
+    "color": "#B91EA3",
+    "icon": "https://assets.coingecko.com/coins/images/16575/thumb/USqW1QX.png?1696516136",
+    "symbol": "HAKA",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xd882739fca9cbae00f3821c4c65189e2d7e26147": {
+    "assetId": "eip155:56/bep20:0xd882739fca9cbae00f3821c4c65189e2d7e26147",
+    "chainId": "eip155:56",
+    "name": "FOUR on BNB Smart Chain",
+    "precision": 18,
+    "color": "#74BCDC",
+    "icon": "https://assets.coingecko.com/coins/images/3434/thumb/FOUR.png?1696504127",
+    "symbol": "FOUR",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xd88ca08d8eec1e9e09562213ae83a7853ebb5d28": {
+    "assetId": "eip155:56/bep20:0xd88ca08d8eec1e9e09562213ae83a7853ebb5d28",
+    "chainId": "eip155:56",
+    "name": "xWIN Finance on BNB Smart Chain",
+    "precision": 18,
+    "color": "#81BA23",
+    "icon": "https://assets.coingecko.com/coins/images/15400/thumb/200x200_%28transparent_background%29.png?1696515046",
+    "symbol": "XWIN",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xd8cb4c2369db13c94c90c7fd3bebc9757900ee6b": {
+    "assetId": "eip155:56/bep20:0xd8cb4c2369db13c94c90c7fd3bebc9757900ee6b",
+    "chainId": "eip155:56",
+    "name": "Napoleon X on BNB Smart Chain",
+    "precision": 18,
+    "color": "#57524C",
+    "icon": "https://assets.coingecko.com/coins/images/1471/thumb/napoleon-x.jpg?1696502517",
+    "symbol": "NPX",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xd8fa690304d2b2824d918c0c7376e2823704557a": {
+    "assetId": "eip155:56/bep20:0xd8fa690304d2b2824d918c0c7376e2823704557a",
+    "chainId": "eip155:56",
+    "name": "SquidGrow on BNB Smart Chain",
+    "precision": 9,
+    "color": "#E4D81E",
+    "icon": "https://assets.coingecko.com/coins/images/26573/thumb/Squidgrow-Logo.png?1696525645",
+    "symbol": "SQUIDGROW",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xd9025e25bb6cf39f8c926a704039d2dd51088063": {
+    "assetId": "eip155:56/bep20:0xd9025e25bb6cf39f8c926a704039d2dd51088063",
+    "chainId": "eip155:56",
+    "name": "Coinary",
+    "precision": 18,
+    "color": "#DF4424",
+    "icon": "https://assets.coingecko.com/coins/images/17622/thumb/CYT-LOGO-1.png?1696517154",
+    "symbol": "CYT",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xd96e43fb44be20e9e9a5872ce1904ebaa9975ead": {
+    "assetId": "eip155:56/bep20:0xd96e43fb44be20e9e9a5872ce1904ebaa9975ead",
+    "chainId": "eip155:56",
+    "name": "Caw CEO",
+    "precision": 18,
+    "color": "#96643E",
+    "icon": "https://assets.coingecko.com/coins/images/30125/thumb/200x.png?1696529047",
+    "symbol": "CAWCEO",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xd983ab71a284d6371908420d8ac6407ca943f810": {
+    "assetId": "eip155:56/bep20:0xd983ab71a284d6371908420d8ac6407ca943f810",
+    "chainId": "eip155:56",
+    "name": "ULTRON on BNB Smart Chain",
+    "precision": 18,
+    "color": "#E9E2F4",
+    "icon": "https://assets.coingecko.com/coins/images/26977/thumb/ULTRON-Profile-Pic.jpg?1696526031",
+    "symbol": "ULX",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xd98438889ae7364c7e2a3540547fad042fb24642": {
+    "assetId": "eip155:56/bep20:0xd98438889ae7364c7e2a3540547fad042fb24642",
+    "chainId": "eip155:56",
+    "name": "Cellframe on BNB Smart Chain",
+    "precision": 18,
+    "color": "#060507",
+    "icon": "https://assets.coingecko.com/coins/images/14465/thumb/cellframe-coingecko.png?1696514152",
+    "symbol": "CELL",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xd98560689c6e748dc37bc410b4d3096b1aa3d8c2": {
+    "assetId": "eip155:56/bep20:0xd98560689c6e748dc37bc410b4d3096b1aa3d8c2",
+    "chainId": "eip155:56",
+    "name": "Defi For You",
+    "precision": 18,
+    "color": "#FABB04",
+    "icon": "https://assets.coingecko.com/coins/images/14561/thumb/DFY-200x200.png?1696514243",
+    "symbol": "DFY",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xd9907fcda91ac644f70477b8fc1607ad15b2d7a8": {
+    "assetId": "eip155:56/bep20:0xd9907fcda91ac644f70477b8fc1607ad15b2d7a8",
+    "chainId": "eip155:56",
+    "name": "MultiBTC on BNB Smart Chain",
+    "precision": 8,
+    "color": "#E7E5F7",
+    "icon": "https://assets.coingecko.com/coins/images/29495/thumb/MultiBTC.png?1696528438",
+    "symbol": "MULTIBTC",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xd99903242745e8e3ecf1e2a7d4f6052282f891ee": {
+    "assetId": "eip155:56/bep20:0xd99903242745e8e3ecf1e2a7d4f6052282f891ee",
+    "chainId": "eip155:56",
+    "name": "4D Twin Maps",
+    "precision": 18,
+    "color": "#9DBC72",
+    "icon": "https://assets.coingecko.com/coins/images/31220/thumb/27PGCqja_400x400.jpg?1696530046",
+    "symbol": "4DMAPS",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xd9a44c40584288505931880c9915c6a5eb5f2fb1": {
+    "assetId": "eip155:56/bep20:0xd9a44c40584288505931880c9915c6a5eb5f2fb1",
+    "chainId": "eip155:56",
+    "name": "TypeIt",
+    "precision": 18,
+    "color": "#B5BCBC",
+    "icon": "https://assets.coingecko.com/coins/images/30962/thumb/Type-It-logo-200-x-200.png?1696529802",
+    "symbol": "TYPE",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xd9c2d319cd7e6177336b0a9c93c21cb48d84fb54": {
+    "assetId": "eip155:56/bep20:0xd9c2d319cd7e6177336b0a9c93c21cb48d84fb54",
+    "chainId": "eip155:56",
+    "name": "HAPI on BNB Smart Chain",
+    "precision": 18,
+    "color": "#F5F310",
+    "icon": "https://assets.coingecko.com/coins/images/14298/thumb/Hapi_logo_square_%281%29.png?1696513995",
+    "symbol": "HAPI",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xd9de2b1973e57dc9dba90c35d6cd940ae4a3cbe1": {
+    "assetId": "eip155:56/bep20:0xd9de2b1973e57dc9dba90c35d6cd940ae4a3cbe1",
+    "chainId": "eip155:56",
+    "name": "Milo Inu",
+    "precision": 9,
+    "color": "#8BADBE",
+    "icon": "https://assets.coingecko.com/coins/images/23896/thumb/milo.png?1696523095",
+    "symbol": "MILO",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xd9e8d20bde081600fac0d94b88eafaddce55aa43": {
+    "assetId": "eip155:56/bep20:0xd9e8d20bde081600fac0d94b88eafaddce55aa43",
+    "chainId": "eip155:56",
+    "name": "Pussy Financial on BNB Smart Chain",
+    "precision": 18,
+    "color": "#34214B",
+    "icon": "https://assets.coingecko.com/coins/images/15213/thumb/pussytoken.png?1696514869",
+    "symbol": "PUSSY",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xd9eade302456aff8bf8d87ff0ef77dab1fb9230f": {
+    "assetId": "eip155:56/bep20:0xd9eade302456aff8bf8d87ff0ef77dab1fb9230f",
+    "chainId": "eip155:56",
+    "name": "King of Legends",
+    "precision": 18,
+    "color": "#2D6AE7",
+    "icon": "https://assets.coingecko.com/coins/images/27855/thumb/logo_200_200.png?1696526874",
+    "symbol": "KOL",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xda0638ea374c4c5bf2914e6f4d5b2335deb8d80d": {
+    "assetId": "eip155:56/bep20:0xda0638ea374c4c5bf2914e6f4d5b2335deb8d80d",
+    "chainId": "eip155:56",
+    "name": "GBANK APY",
+    "precision": 8,
+    "color": "#F7E7F8",
+    "icon": "https://assets.coingecko.com/coins/images/30533/thumb/IMG-20230519-WA0000.jpg?1696529406",
+    "symbol": "GBK",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xda2c0cdf7d764f8c587380cadf7129e5ecb7efb7": {
+    "assetId": "eip155:56/bep20:0xda2c0cdf7d764f8c587380cadf7129e5ecb7efb7",
+    "chainId": "eip155:56",
+    "name": "Puppets Coin",
+    "precision": 18,
+    "color": "#1D140C",
+    "icon": "https://assets.coingecko.com/coins/images/30178/thumb/200x200.png?1696529097",
+    "symbol": "PUPPETS",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xda2e636a6b6d3eaacb3a5fb00f86ead84e0d908f": {
+    "assetId": "eip155:56/bep20:0xda2e636a6b6d3eaacb3a5fb00f86ead84e0d908f",
+    "chainId": "eip155:56",
+    "name": "Equilibrium Exchange",
+    "precision": 18,
+    "color": "#7DADFC",
+    "icon": "https://assets.coingecko.com/coins/images/29435/thumb/logo.png?1696528383",
+    "symbol": "EDX",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xda4714fee90ad7de50bc185ccd06b175d23906c1": {
+    "assetId": "eip155:56/bep20:0xda4714fee90ad7de50bc185ccd06b175d23906c1",
+    "chainId": "eip155:56",
+    "name": "Godzilla",
+    "precision": 9,
+    "color": "#B2954E",
+    "icon": "https://assets.coingecko.com/coins/images/19672/thumb/13559.png?1696519100",
+    "symbol": "GODZ",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xda8929a6338f408cc78c1845fb4f71bffd2cfcfb": {
+    "assetId": "eip155:56/bep20:0xda8929a6338f408cc78c1845fb4f71bffd2cfcfb",
+    "chainId": "eip155:56",
+    "name": "Hillstone Finance on BNB Smart Chain",
+    "precision": 18,
+    "color": "#040404",
+    "icon": "https://assets.coingecko.com/coins/images/22335/thumb/logo_-_2022-01-07T094430.368.png?1696521679",
+    "symbol": "HSF",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xdaa64420e769fae36ccaa78e26024fe9f583e9d8": {
+    "assetId": "eip155:56/bep20:0xdaa64420e769fae36ccaa78e26024fe9f583e9d8",
+    "chainId": "eip155:56",
+    "name": "HowInu",
+    "precision": 18,
+    "color": "#28558E",
+    "icon": "https://assets.coingecko.com/coins/images/32593/thumb/IMG_20231017_021307_013.png?1698668562",
+    "symbol": "HOW",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xdaacb0ab6fb34d24e8a67bfa14bf4d95d4c7af92": {
+    "assetId": "eip155:56/bep20:0xdaacb0ab6fb34d24e8a67bfa14bf4d95d4c7af92",
+    "chainId": "eip155:56",
+    "name": "pNetwork on BNB Smart Chain",
+    "precision": 18,
+    "color": "#EE6361",
+    "icon": "https://assets.coingecko.com/coins/images/11659/thumb/pNetwork.png?1696511550",
+    "symbol": "PNT",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xdaca7c8e16ddfa5d5b266380228ca9e2288f3931": {
+    "assetId": "eip155:56/bep20:0xdaca7c8e16ddfa5d5b266380228ca9e2288f3931",
+    "chainId": "eip155:56",
+    "name": "DYZilla",
+    "precision": 18,
+    "color": "#21A16E",
+    "icon": "https://assets.coingecko.com/coins/images/28532/thumb/Dyzilla.png?1696527525",
+    "symbol": "DYZILLA",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xdacc0417add48b63cbefb77efbe4a3801aad51ba": {
+    "assetId": "eip155:56/bep20:0xdacc0417add48b63cbefb77efbe4a3801aad51ba",
+    "chainId": "eip155:56",
+    "name": "Bitzen",
+    "precision": 9,
+    "color": "#04052C",
+    "icon": "https://assets.coingecko.com/coins/images/27311/thumb/bzen.png?1696526361",
+    "symbol": "BZEN",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xdacd068618fcdb358f8951eca2af3e2d7e7555c6": {
+    "assetId": "eip155:56/bep20:0xdacd068618fcdb358f8951eca2af3e2d7e7555c6",
+    "chainId": "eip155:56",
+    "name": "GameAI",
+    "precision": 18,
+    "color": "#707150",
+    "icon": "https://assets.coingecko.com/coins/images/31669/thumb/IMG_20230827_004646_377.jpg?1696530485",
+    "symbol": "GAT",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xdad237477643b5bf0bea14616747ba00d0212f8c": {
+    "assetId": "eip155:56/bep20:0xdad237477643b5bf0bea14616747ba00d0212f8c",
+    "chainId": "eip155:56",
+    "name": "WATER",
+    "precision": 18,
+    "color": "#288E4C",
+    "icon": "https://assets.coingecko.com/coins/images/32310/thumb/IMG_20231009_151053_769.jpg?1697188908",
+    "symbol": "WATER",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xdae4f1dca49408288b55250022f67195eff2445a": {
+    "assetId": "eip155:56/bep20:0xdae4f1dca49408288b55250022f67195eff2445a",
+    "chainId": "eip155:56",
+    "name": "Hanu Yokia on BNB Smart Chain",
+    "precision": 12,
+    "color": "#12AC9A",
+    "icon": "https://assets.coingecko.com/coins/images/17161/thumb/Goji_Hanu_Logo_200x200.png?1696516720",
+    "symbol": "HANU",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xdae6c2a48bfaa66b43815c5548b10800919c993e": {
+    "assetId": "eip155:56/bep20:0xdae6c2a48bfaa66b43815c5548b10800919c993e",
+    "chainId": "eip155:56",
+    "name": "Kattana on BNB Smart Chain",
+    "precision": 18,
+    "color": "#F2C6CA",
+    "icon": "https://assets.coingecko.com/coins/images/14739/thumb/256-256-1.png?1696514409",
+    "symbol": "KTN",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xdb0170e2d0c1cc1b2e7a90313d9b9afa4f250289": {
+    "assetId": "eip155:56/bep20:0xdb0170e2d0c1cc1b2e7a90313d9b9afa4f250289",
+    "chainId": "eip155:56",
+    "name": "ADAPad on BNB Smart Chain",
+    "precision": 18,
+    "color": "#1C3A94",
+    "icon": "https://assets.coingecko.com/coins/images/18273/thumb/EhSqPTtG_400x400.jpg?1696517767",
+    "symbol": "ADAPAD",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xdb021b1b247fe2f1fa57e0a87c748cc1e321f07f": {
+    "assetId": "eip155:56/bep20:0xdb021b1b247fe2f1fa57e0a87c748cc1e321f07f",
+    "chainId": "eip155:56",
+    "name": "Ampleforth on BNB Smart Chain",
+    "precision": 9,
+    "color": "#D0D0D0",
+    "icon": "https://assets.coingecko.com/coins/images/4708/thumb/Ampleforth.png?1696505273",
+    "symbol": "AMPL",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xdb238123939637d65a03e4b2b485650b4f9d91cb": {
+    "assetId": "eip155:56/bep20:0xdb238123939637d65a03e4b2b485650b4f9d91cb",
+    "chainId": "eip155:56",
+    "name": "TasteNFT",
+    "precision": 9,
+    "color": "#96374B",
+    "icon": "https://assets.coingecko.com/coins/images/15532/thumb/3C1Qq1yf_400x400.jpg?1696515174",
+    "symbol": "TASTE",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xdb29192fc2b487bb5185e155752328d4f249743c": {
+    "assetId": "eip155:56/bep20:0xdb29192fc2b487bb5185e155752328d4f249743c",
+    "chainId": "eip155:56",
+    "name": "Ultra NFT",
+    "precision": 9,
+    "color": "#DAD3C9",
+    "icon": "https://assets.coingecko.com/coins/images/15506/thumb/VkZQUF7q_400x400.jpg?1696515149",
+    "symbol": "UNFT",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xdb612e3b52d8eda1a3e27bde2c82cc2d9ca9a61d": {
+    "assetId": "eip155:56/bep20:0xdb612e3b52d8eda1a3e27bde2c82cc2d9ca9a61d",
+    "chainId": "eip155:56",
+    "name": "PE PE POKEMOON",
+    "precision": 18,
+    "color": "#51AC5B",
+    "icon": "https://assets.coingecko.com/coins/images/30393/thumb/Artboard_10_%281%29.png?1696529282",
+    "symbol": "PEMON",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xdbccd9131405dd1fe7320090af337952b9845dfa": {
+    "assetId": "eip155:56/bep20:0xdbccd9131405dd1fe7320090af337952b9845dfa",
+    "chainId": "eip155:56",
+    "name": "Starbots",
+    "precision": 8,
+    "color": "#803AE7",
+    "icon": "https://assets.coingecko.com/coins/images/21823/thumb/coin_%286%29.png?1696521174",
+    "symbol": "BOT",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xdbf8265b1d5244a13424f13977723acf5395eab2": {
+    "assetId": "eip155:56/bep20:0xdbf8265b1d5244a13424f13977723acf5395eab2",
+    "chainId": "eip155:56",
+    "name": "Wagerr on BNB Smart Chain",
+    "precision": 18,
+    "color": "#AC0404",
+    "icon": "https://assets.coingecko.com/coins/images/759/thumb/syGKmAT.png?1696501912",
+    "symbol": "WGR",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xdc3541806d651ec79ba8639a1b495acf503eb2dd": {
+    "assetId": "eip155:56/bep20:0xdc3541806d651ec79ba8639a1b495acf503eb2dd",
+    "chainId": "eip155:56",
+    "name": "Metoshi",
+    "precision": 18,
+    "color": "#513252",
+    "icon": "https://assets.coingecko.com/coins/images/22097/thumb/logo200x200.png?1696521440",
+    "symbol": "METO",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xdc42c3a92c4a03f9b9f3fbaba0125286fdaa6772": {
+    "assetId": "eip155:56/bep20:0xdc42c3a92c4a03f9b9f3fbaba0125286fdaa6772",
+    "chainId": "eip155:56",
+    "name": "Drunk Skunks Drinking Club",
+    "precision": 18,
+    "color": "#070707",
+    "icon": "https://assets.coingecko.com/coins/images/28390/thumb/Cg_size.jpg?1696527389",
+    "symbol": "STINK",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xdc49d53330317cbc6924fa53042e0c9bca0a8d63": {
+    "assetId": "eip155:56/bep20:0xdc49d53330317cbc6924fa53042e0c9bca0a8d63",
+    "chainId": "eip155:56",
+    "name": "DOGEDI",
+    "precision": 12,
+    "color": "#1F3280",
+    "icon": "https://assets.coingecko.com/coins/images/21334/thumb/dogedi.png?1696520701",
+    "symbol": "DOGEDI",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xdc847755343c3a2b94d6afc0aae57651e1b14064": {
+    "assetId": "eip155:56/bep20:0xdc847755343c3a2b94d6afc0aae57651e1b14064",
+    "chainId": "eip155:56",
+    "name": "BODA",
+    "precision": 18,
+    "color": "#3D5348",
+    "icon": "https://assets.coingecko.com/coins/images/19168/thumb/BODAV2-New-logo-round-200.png?1696518617",
+    "symbol": "BODAV2",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xdc8c498cfc915dba55f0524fa9f5e57288110ab9": {
+    "assetId": "eip155:56/bep20:0xdc8c498cfc915dba55f0524fa9f5e57288110ab9",
+    "chainId": "eip155:56",
+    "name": "Thing",
+    "precision": 9,
+    "color": "#181B16",
+    "icon": "https://assets.coingecko.com/coins/images/31410/thumb/84df82ca-6235-4b5b-8dc9-966ea6649be1.jpg.0a0f00ac7b9be9f7e502b8d96e9e7c8b.jpg?1696530225",
+    "symbol": "THING",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xdcb624c870d73cdd0b3345762977cb14de598cd0": {
+    "assetId": "eip155:56/bep20:0xdcb624c870d73cdd0b3345762977cb14de598cd0",
+    "chainId": "eip155:56",
+    "name": "H2Finance",
+    "precision": 18,
+    "color": "#EFF5E0",
+    "icon": "https://assets.coingecko.com/coins/images/23077/thumb/wnzHxD5M_400x400.jpg?1696522367",
+    "symbol": "YFIH2",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xdcd103bc6d14829c39afc9c10c9c373ce385d2c5": {
+    "assetId": "eip155:56/bep20:0xdcd103bc6d14829c39afc9c10c9c373ce385d2c5",
+    "chainId": "eip155:56",
+    "name": "Frog Token",
+    "precision": 9,
+    "color": "#766F52",
+    "icon": "https://assets.coingecko.com/coins/images/30776/thumb/FROG_200x200.png?1696529644",
+    "symbol": "FROG",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xdd041e030ade3db3b2221ce681b65f9650f250d7": {
+    "assetId": "eip155:56/bep20:0xdd041e030ade3db3b2221ce681b65f9650f250d7",
+    "chainId": "eip155:56",
+    "name": "Biblecoin",
+    "precision": 18,
+    "color": "#E5F9FA",
+    "icon": "https://assets.coingecko.com/coins/images/26406/thumb/tLvtI1NT_400x400.jpeg?1696525482",
+    "symbol": "BIBL",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xdd17629d05e068a9d118ee35d11101d4140d0586": {
+    "assetId": "eip155:56/bep20:0xdd17629d05e068a9d118ee35d11101d4140d0586",
+    "chainId": "eip155:56",
+    "name": "YocoinYOCO",
+    "precision": 9,
+    "color": "#213E4F",
+    "icon": "https://assets.coingecko.com/coins/images/17395/thumb/yocoin.PNG?1696516944",
+    "symbol": "YOCO",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xdd1b6b259986571a85da82a84f461e1c212591c0": {
+    "assetId": "eip155:56/bep20:0xdd1b6b259986571a85da82a84f461e1c212591c0",
+    "chainId": "eip155:56",
+    "name": "BlazeX on BNB Smart Chain",
+    "precision": 9,
+    "color": "#FAAE9E",
+    "icon": "https://assets.coingecko.com/coins/images/31194/thumb/200x200.png?1696530022",
+    "symbol": "BLAZEX",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xdd5a149740c055bdcdc5c066888f739dbe0bf2d0": {
+    "assetId": "eip155:56/bep20:0xdd5a149740c055bdcdc5c066888f739dbe0bf2d0",
+    "chainId": "eip155:56",
+    "name": "MoneySwap",
+    "precision": 18,
+    "color": "#F4AC44",
+    "icon": "https://assets.coingecko.com/coins/images/13576/thumb/logo_%281%29.png?1696513329",
+    "symbol": "MSWAP",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xdd6978f36c98aff4287e5ac803c9cf1b865641f6": {
+    "assetId": "eip155:56/bep20:0xdd6978f36c98aff4287e5ac803c9cf1b865641f6",
+    "chainId": "eip155:56",
+    "name": "Jerry Inu",
+    "precision": 9,
+    "color": "#BF6E35",
+    "icon": "https://assets.coingecko.com/coins/images/30067/thumb/photo_6174436240632428438_y_%281%29.png?1696528989",
+    "symbol": "JERRY",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xdd80c9625e13db655840ed47af90cc78702367ed": {
+    "assetId": "eip155:56/bep20:0xdd80c9625e13db655840ed47af90cc78702367ed",
+    "chainId": "eip155:56",
+    "name": "Pepelon",
+    "precision": 9,
+    "color": "#1E8947",
+    "icon": "https://assets.coingecko.com/coins/images/30394/thumb/logo.png?1696529283",
+    "symbol": "PEPELON",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xdd848e0cbfd3771dc7845b10072d973c375271e2": {
+    "assetId": "eip155:56/bep20:0xdd848e0cbfd3771dc7845b10072d973c375271e2",
+    "chainId": "eip155:56",
+    "name": "Lanceria",
+    "precision": 18,
+    "color": "#E0D3EC",
+    "icon": "https://assets.coingecko.com/coins/images/17589/thumb/Logo_200.png?1696517122",
+    "symbol": "LANC",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xdd8b490001d081ed065239644dae8d1a77b8a91f": {
+    "assetId": "eip155:56/bep20:0xdd8b490001d081ed065239644dae8d1a77b8a91f",
+    "chainId": "eip155:56",
+    "name": "BitValley",
+    "precision": 18,
+    "color": "#AB5AF4",
+    "icon": "https://assets.coingecko.com/coins/images/22825/thumb/Screenshot-2022-01-19-at-17-00-20.png?1696522126",
+    "symbol": "BITV",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xdd97ab35e3c0820215bc85a395e13671d84ccba2": {
+    "assetId": "eip155:56/bep20:0xdd97ab35e3c0820215bc85a395e13671d84ccba2",
+    "chainId": "eip155:56",
+    "name": "AutoShark",
+    "precision": 18,
+    "color": "#6296BD",
+    "icon": "https://assets.coingecko.com/coins/images/16335/thumb/osP9madX_400x400.jpg?1696515936",
+    "symbol": "JAWS",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xddae2b90559f38eb41b93d946be21fb0dfb9a294": {
+    "assetId": "eip155:56/bep20:0xddae2b90559f38eb41b93d946be21fb0dfb9a294",
+    "chainId": "eip155:56",
+    "name": "YearnTogether",
+    "precision": 18,
+    "color": "#D5E3FC",
+    "icon": "https://assets.coingecko.com/coins/images/30560/thumb/YEARN-logo.png?1696529431",
+    "symbol": "YEARN",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xddae5f343b7768eadaad88a7f520fff54f198211": {
+    "assetId": "eip155:56/bep20:0xddae5f343b7768eadaad88a7f520fff54f198211",
+    "chainId": "eip155:56",
+    "name": "Bitcoiva",
+    "precision": 18,
+    "color": "#EB920C",
+    "icon": "https://assets.coingecko.com/coins/images/13016/thumb/Untitled-design-6-removebg-preview.png?1696512805",
+    "symbol": "BCA",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xddb082c34022141a73a9cd1a4403305c8df3910d": {
+    "assetId": "eip155:56/bep20:0xddb082c34022141a73a9cd1a4403305c8df3910d",
+    "chainId": "eip155:56",
+    "name": "ShoppingFriend AI",
+    "precision": 18,
+    "color": "#D4DEED",
+    "icon": "https://assets.coingecko.com/coins/images/32466/thumb/AIBUDDY.jpg?1698258888",
+    "symbol": "AIBUDDY",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xddbb3e6f8413d0e3adc700a731da304aec97bcbb": {
+    "assetId": "eip155:56/bep20:0xddbb3e6f8413d0e3adc700a731da304aec97bcbb",
+    "chainId": "eip155:56",
+    "name": "Wednesday Inu",
+    "precision": 9,
+    "color": "#E0D6A8",
+    "icon": "https://assets.coingecko.com/coins/images/30008/thumb/Wednesday_Inu.png?1696528932",
+    "symbol": "WED",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xddc0dbd7dc799ae53a98a60b54999cb6ebb3abf0": {
+    "assetId": "eip155:56/bep20:0xddc0dbd7dc799ae53a98a60b54999cb6ebb3abf0",
+    "chainId": "eip155:56",
+    "name": "SafeBlast on BNB Smart Chain",
+    "precision": 9,
+    "color": "#EA0609",
+    "icon": "https://assets.coingecko.com/coins/images/15686/thumb/safeblast.png?1696515315",
+    "symbol": "BLAST",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xddd394707fc1af81d98f132825df713dd9bb494e": {
+    "assetId": "eip155:56/bep20:0xddd394707fc1af81d98f132825df713dd9bb494e",
+    "chainId": "eip155:56",
+    "name": "SoulboundID",
+    "precision": 18,
+    "color": "#301645",
+    "icon": "https://assets.coingecko.com/coins/images/32457/thumb/Logo_200_200.jpg?1698241359",
+    "symbol": "SOULB",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xdde3ed0bb77c1cafabf8b38f9a1e81edddc7ddc9": {
+    "assetId": "eip155:56/bep20:0xdde3ed0bb77c1cafabf8b38f9a1e81edddc7ddc9",
+    "chainId": "eip155:56",
+    "name": "Metaverse VR",
+    "precision": 18,
+    "color": "#153B7C",
+    "icon": "https://assets.coingecko.com/coins/images/23437/thumb/cmc3.png?1696522650",
+    "symbol": "MEVR",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xdde5b33a56f3f1c22e5a6bd8429e6ad508bff24e": {
+    "assetId": "eip155:56/bep20:0xdde5b33a56f3f1c22e5a6bd8429e6ad508bff24e",
+    "chainId": "eip155:56",
+    "name": "VNDC on BNB Smart Chain",
+    "precision": 0,
+    "color": "#ECC674",
+    "icon": "https://assets.coingecko.com/coins/images/9670/thumb/vndc-gold-coin.png?1696509740",
+    "symbol": "VNDC",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xddfd6382a18ad7279eb6db4dfb78922ddc33d6e7": {
+    "assetId": "eip155:56/bep20:0xddfd6382a18ad7279eb6db4dfb78922ddc33d6e7",
+    "chainId": "eip155:56",
+    "name": "ShredN",
+    "precision": 18,
+    "color": "#4A65FC",
+    "icon": "https://assets.coingecko.com/coins/images/30996/thumb/shredn.png?1696529834",
+    "symbol": "SHRED",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xde009cb3371825bafb80a01004c58f8166ee13d5": {
+    "assetId": "eip155:56/bep20:0xde009cb3371825bafb80a01004c58f8166ee13d5",
+    "chainId": "eip155:56",
+    "name": "Little Ugly Duck",
+    "precision": 9,
+    "color": "#887864",
+    "icon": "https://assets.coingecko.com/coins/images/17764/thumb/whitelogo200x200.png?1696517290",
+    "symbol": "LUD",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xde1a0f6c7078c5da0a6236eeb04261f4699905c5": {
+    "assetId": "eip155:56/bep20:0xde1a0f6c7078c5da0a6236eeb04261f4699905c5",
+    "chainId": "eip155:56",
+    "name": "Soccer Crypto",
+    "precision": 18,
+    "color": "#DF9A48",
+    "icon": "https://assets.coingecko.com/coins/images/28339/thumb/wYXOL79.png?1696527345",
+    "symbol": "SOT",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xde2a66c92583332e8e1f0aeeb03deb749a3fd33a": {
+    "assetId": "eip155:56/bep20:0xde2a66c92583332e8e1f0aeeb03deb749a3fd33a",
+    "chainId": "eip155:56",
+    "name": "Goblin",
+    "precision": 18,
+    "color": "#EBF2EB",
+    "icon": "https://assets.coingecko.com/coins/images/22726/thumb/goblin.png?1696522030",
+    "symbol": "GOBLIN",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xde301d6a2569aefcfe271b9d98f318baee1d30a4": {
+    "assetId": "eip155:56/bep20:0xde301d6a2569aefcfe271b9d98f318baee1d30a4",
+    "chainId": "eip155:56",
+    "name": "Luna Rush",
+    "precision": 18,
+    "color": "#CE45E7",
+    "icon": "https://assets.coingecko.com/coins/images/22295/thumb/16197.png?1696521641",
+    "symbol": "LUS",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xde314a065aaaf11e794706f8585c77e3bb7a2741": {
+    "assetId": "eip155:56/bep20:0xde314a065aaaf11e794706f8585c77e3bb7a2741",
+    "chainId": "eip155:56",
+    "name": "Dex on Crypto",
+    "precision": 18,
+    "color": "#660434",
+    "icon": "https://assets.coingecko.com/coins/images/31591/thumb/icon-200.png?1696530407",
+    "symbol": "DOCSWAP",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xde3dbbe30cfa9f437b293294d1fd64b26045c71a": {
+    "assetId": "eip155:56/bep20:0xde3dbbe30cfa9f437b293294d1fd64b26045c71a",
+    "chainId": "eip155:56",
+    "name": "NFTb",
+    "precision": 18,
+    "color": "#802C50",
+    "icon": "https://assets.coingecko.com/coins/images/15484/thumb/nftb_logo.png?1696515128",
+    "symbol": "NFTB",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xde4addcc213f6750faabdad59c00a2eb57352737": {
+    "assetId": "eip155:56/bep20:0xde4addcc213f6750faabdad59c00a2eb57352737",
+    "chainId": "eip155:56",
+    "name": "Greenart Coin",
+    "precision": 18,
+    "color": "#E9F8E5",
+    "icon": "https://assets.coingecko.com/coins/images/32258/thumb/GAG.jpg?1697028985",
+    "symbol": "GAC",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xde51d1599339809cafb8194189ce67d5bdca9e9e": {
+    "assetId": "eip155:56/bep20:0xde51d1599339809cafb8194189ce67d5bdca9e9e",
+    "chainId": "eip155:56",
+    "name": "Cowrie",
+    "precision": 18,
+    "color": "#111110",
+    "icon": "https://assets.coingecko.com/coins/images/28879/thumb/photo_2023-01-29_22.18.24.jpeg?1696527856",
+    "symbol": "COWRIE",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xde5ed76e7c05ec5e4572cfc88d1acea165109e44": {
+    "assetId": "eip155:56/bep20:0xde5ed76e7c05ec5e4572cfc88d1acea165109e44",
+    "chainId": "eip155:56",
+    "name": "DEUS Finance on BNB Smart Chain",
+    "precision": 18,
+    "color": "#040708",
+    "icon": "https://assets.coingecko.com/coins/images/18778/thumb/Black_Background_200x200.png?1696518242",
+    "symbol": "DEUS",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xde619a9e0eeeaa9f8cd39522ed788234837f3b26": {
+    "assetId": "eip155:56/bep20:0xde619a9e0eeeaa9f8cd39522ed788234837f3b26",
+    "chainId": "eip155:56",
+    "name": "Hungarian Vizsla Inu",
+    "precision": 9,
+    "color": "#996644",
+    "icon": "https://assets.coingecko.com/coins/images/16812/thumb/k%C3%B6r-nincs_h%C3%A1tt%C3%A9r.png?1696516381",
+    "symbol": "HVI",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xde7d1ce109236b12809c45b23d22f30dba0ef424": {
+    "assetId": "eip155:56/bep20:0xde7d1ce109236b12809c45b23d22f30dba0ef424",
+    "chainId": "eip155:56",
+    "name": "SpiceUSD on BNB Smart Chain",
+    "precision": 18,
+    "color": "#5CBC5C",
+    "icon": "https://assets.coingecko.com/coins/images/25697/thumb/USDS.png?1696524824",
+    "symbol": "USDS",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xde83180dd1166d4f8e5c2b7de14a2163b1bb4a87": {
+    "assetId": "eip155:56/bep20:0xde83180dd1166d4f8e5c2b7de14a2163b1bb4a87",
+    "chainId": "eip155:56",
+    "name": "Diamond Launch",
+    "precision": 18,
+    "color": "#38D0CB",
+    "icon": "https://assets.coingecko.com/coins/images/27323/thumb/dlc.png?1696526371",
+    "symbol": "DLC",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xde9a73272bc2f28189ce3c243e36fafda2485212": {
+    "assetId": "eip155:56/bep20:0xde9a73272bc2f28189ce3c243e36fafda2485212",
+    "chainId": "eip155:56",
+    "name": "Channels",
+    "precision": 18,
+    "color": "#5474EC",
+    "icon": "https://assets.coingecko.com/coins/images/14093/thumb/KpSUqAH.png?1696513815",
+    "symbol": "CAN",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xdea12c8c23994ea2d88ed99ee1bdc0ff56f7f9d1": {
+    "assetId": "eip155:56/bep20:0xdea12c8c23994ea2d88ed99ee1bdc0ff56f7f9d1",
+    "chainId": "eip155:56",
+    "name": "L3USD on BNB Smart Chain",
+    "precision": 18,
+    "color": "#247B61",
+    "icon": "https://assets.coingecko.com/coins/images/26937/thumb/L3USD.png?1696525993",
+    "symbol": "L3USD",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xdef49c195099e30e41b2df7dad55e0bbbe60a0c5": {
+    "assetId": "eip155:56/bep20:0xdef49c195099e30e41b2df7dad55e0bbbe60a0c5",
+    "chainId": "eip155:56",
+    "name": "Syrup Finance",
+    "precision": 18,
+    "color": "#060504",
+    "icon": "https://assets.coingecko.com/coins/images/28620/thumb/srx.png?1696527605",
+    "symbol": "SRX",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xdefac16715671b7b6aeefe012125f1e19ee4b7d7": {
+    "assetId": "eip155:56/bep20:0xdefac16715671b7b6aeefe012125f1e19ee4b7d7",
+    "chainId": "eip155:56",
+    "name": "Defactor on BNB Smart Chain",
+    "precision": 18,
+    "color": "#5C5CEC",
+    "icon": "https://assets.coingecko.com/coins/images/19201/thumb/jFLSu4U9_400x400.png?1696518648",
+    "symbol": "FACTR",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xdefcafe7eac90d31bbba841038df365de3c4e207": {
+    "assetId": "eip155:56/bep20:0xdefcafe7eac90d31bbba841038df365de3c4e207",
+    "chainId": "eip155:56",
+    "name": "0xDEFCAFE on BNB Smart Chain",
+    "precision": 9,
+    "color": "#577D92",
+    "icon": "https://assets.coingecko.com/coins/images/31738/thumb/200x200.png?1696530557",
+    "symbol": "CAFE",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xdf0121a3ba5c10816ea2943c722650c4a4b0dbe6": {
+    "assetId": "eip155:56/bep20:0xdf0121a3ba5c10816ea2943c722650c4a4b0dbe6",
+    "chainId": "eip155:56",
+    "name": "Octopus Protocol",
+    "precision": 18,
+    "color": "#0F1823",
+    "icon": "https://assets.coingecko.com/coins/images/16383/thumb/ops_logo.jpg?1696515981",
+    "symbol": "OPS",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xdf061250302e5ccae091b18ca2b45914d785f214": {
+    "assetId": "eip155:56/bep20:0xdf061250302e5ccae091b18ca2b45914d785f214",
+    "chainId": "eip155:56",
+    "name": "Pop Token",
+    "precision": 18,
+    "color": "#5C4CFC",
+    "icon": "https://assets.coingecko.com/coins/images/32432/thumb/PPT_TOKEN.png?1698154771",
+    "symbol": "PPT",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xdf0816cc717216c8b0863af8d4f0fc20bc65d643": {
+    "assetId": "eip155:56/bep20:0xdf0816cc717216c8b0863af8d4f0fc20bc65d643",
+    "chainId": "eip155:56",
+    "name": "SHIBA BSC",
+    "precision": 18,
+    "color": "#F3E9E0",
+    "icon": "https://assets.coingecko.com/coins/images/15800/thumb/shibsc.png?1696515423",
+    "symbol": "SHIBSC",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xdf677713a2c661ecd0b2bd4d7485170aa8c1eceb": {
+    "assetId": "eip155:56/bep20:0xdf677713a2c661ecd0b2bd4d7485170aa8c1eceb",
+    "chainId": "eip155:56",
+    "name": "Metacraft",
+    "precision": 18,
+    "color": "#E0E0E0",
+    "icon": "https://assets.coingecko.com/coins/images/22332/thumb/F2iEsigu_400x400.jpg?1696521676",
+    "symbol": "MCT",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xdf7434d15656809f56dd17371b2339baacd9b494": {
+    "assetId": "eip155:56/bep20:0xdf7434d15656809f56dd17371b2339baacd9b494",
+    "chainId": "eip155:56",
+    "name": "Great Bounty Dealer",
+    "precision": 18,
+    "color": "#D3BA53",
+    "icon": "https://assets.coingecko.com/coins/images/19686/thumb/13606.png?1696519113",
+    "symbol": "GBD",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xdf9e1a85db4f985d5bb5644ad07d9d7ee5673b5e": {
+    "assetId": "eip155:56/bep20:0xdf9e1a85db4f985d5bb5644ad07d9d7ee5673b5e",
+    "chainId": "eip155:56",
+    "name": "MM72",
+    "precision": 18,
+    "color": "#A1A1A1",
+    "icon": "https://assets.coingecko.com/coins/images/25564/thumb/mm72.png?1696524697",
+    "symbol": "MM72",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xdfa1c5fcd4d64729cdf6d553b2fb1def11a7c689": {
+    "assetId": "eip155:56/bep20:0xdfa1c5fcd4d64729cdf6d553b2fb1def11a7c689",
+    "chainId": "eip155:56",
+    "name": "DCOREUM",
+    "precision": 18,
+    "color": "#143484",
+    "icon": "https://assets.coingecko.com/coins/images/29230/thumb/1677138170437-155492507193bb3547fcf8ce0ad2e340__1_-removebg-preview.png?1696528187",
+    "symbol": "DCO",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xdfaabaa57dec10c049335bdaa2e949b4ce2ead30": {
+    "assetId": "eip155:56/bep20:0xdfaabaa57dec10c049335bdaa2e949b4ce2ead30",
+    "chainId": "eip155:56",
+    "name": "Catbonk",
+    "precision": 9,
+    "color": "#101010",
+    "icon": "https://assets.coingecko.com/coins/images/20917/thumb/cabo.png?1696520307",
+    "symbol": "CABO",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xdfb3c678c32b9a547b3802d4c2f7cb063bdfe9c9": {
+    "assetId": "eip155:56/bep20:0xdfb3c678c32b9a547b3802d4c2f7cb063bdfe9c9",
+    "chainId": "eip155:56",
+    "name": "MerryChristmas",
+    "precision": 18,
+    "color": "#F0ECEC",
+    "icon": "https://assets.coingecko.com/coins/images/29263/thumb/merrychristmas.jpg?1696528217",
+    "symbol": "HOHOHO",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xdfc3829b127761a3218bfcee7fc92e1232c9d116": {
+    "assetId": "eip155:56/bep20:0xdfc3829b127761a3218bfcee7fc92e1232c9d116",
+    "chainId": "eip155:56",
+    "name": "PRivaCY Coin on BNB Smart Chain",
+    "precision": 8,
+    "color": "#319A8A",
+    "icon": "https://assets.coingecko.com/coins/images/14151/thumb/prcy.png?1696513870",
+    "symbol": "PRCY",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xdfd7b0dd7bf1012dfdf3307a964c36b972300ac8": {
+    "assetId": "eip155:56/bep20:0xdfd7b0dd7bf1012dfdf3307a964c36b972300ac8",
+    "chainId": "eip155:56",
+    "name": "Wonderman Nation",
+    "precision": 8,
+    "color": "#EC4434",
+    "icon": "https://assets.coingecko.com/coins/images/25461/thumb/Wonderman_Logo_Menu.png?1696524592",
+    "symbol": "WNDR",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xdfdec49462f7d3c3b0a48e729f77a0645cdfa7c0": {
+    "assetId": "eip155:56/bep20:0xdfdec49462f7d3c3b0a48e729f77a0645cdfa7c0",
+    "chainId": "eip155:56",
+    "name": "Safegem",
+    "precision": 9,
+    "color": "#8E8E8E",
+    "icon": "https://assets.coingecko.com/coins/images/15550/thumb/safegem_avatar_200x200.png?1696515191",
+    "symbol": "GEMS",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xe0167c41bea56432f8588a4ceff0f5f3642120e7": {
+    "assetId": "eip155:56/bep20:0xe0167c41bea56432f8588a4ceff0f5f3642120e7",
+    "chainId": "eip155:56",
+    "name": "Viking Elon",
+    "precision": 9,
+    "color": "#625952",
+    "icon": "https://assets.coingecko.com/coins/images/25346/thumb/Viking_Elon_200.png?1696524480",
+    "symbol": "VELON",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xe0191fefdd0d2b39b1a2e4e029ccda8a481b7995": {
+    "assetId": "eip155:56/bep20:0xe0191fefdd0d2b39b1a2e4e029ccda8a481b7995",
+    "chainId": "eip155:56",
+    "name": "CryptoMines Reborn",
+    "precision": 18,
+    "color": "#DED5E8",
+    "icon": "https://assets.coingecko.com/coins/images/24538/thumb/Webp.net-resizeimage_%281%29.png?1696523716",
+    "symbol": "CRUX",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xe02df9e3e622debdd69fb838bb799e3f168902c5": {
+    "assetId": "eip155:56/bep20:0xe02df9e3e622debdd69fb838bb799e3f168902c5",
+    "chainId": "eip155:56",
+    "name": "BakerySwap",
+    "precision": 18,
+    "color": "#F9F0D8",
+    "icon": "https://assets.coingecko.com/coins/images/12588/thumb/bakerytoken_logo.jpg?1696512398",
+    "symbol": "BAKE",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xe0399378f7a92a39da849eb64cddde2940e234bb": {
+    "assetId": "eip155:56/bep20:0xe0399378f7a92a39da849eb64cddde2940e234bb",
+    "chainId": "eip155:56",
+    "name": "ZionTopia",
+    "precision": 9,
+    "color": "#2D8142",
+    "icon": "https://assets.coingecko.com/coins/images/25902/thumb/logo.png?1696524983",
+    "symbol": "ZION",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xe045fc25581cfdc3cfb5c282501f3cd1a133a7ec": {
+    "assetId": "eip155:56/bep20:0xe045fc25581cfdc3cfb5c282501f3cd1a133a7ec",
+    "chainId": "eip155:56",
+    "name": "MatrixGPT",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/29160/thumb/200-200.png?1696528119",
+    "symbol": "MAI",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xe05a08226c49b636acf99c40da8dc6af83ce5bb3": {
+    "assetId": "eip155:56/bep20:0xe05a08226c49b636acf99c40da8dc6af83ce5bb3",
+    "chainId": "eip155:56",
+    "name": "Ankr Staked ETH on BNB Smart Chain",
+    "precision": 18,
+    "color": "#FBEA1C",
+    "icon": "https://assets.coingecko.com/coins/images/13403/thumb/aETHc.png?1696513165",
+    "symbol": "ANKRETH",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xe05d1c28b3f8127b5b058f101198ede30fe3961d": {
+    "assetId": "eip155:56/bep20:0xe05d1c28b3f8127b5b058f101198ede30fe3961d",
+    "chainId": "eip155:56",
+    "name": "Martin Shkreli Inu on BNB Smart Chain",
+    "precision": 18,
+    "color": "#F4E5E1",
+    "icon": "https://assets.coingecko.com/coins/images/26365/thumb/jEYEUxUI_400x400.jpeg?1696525442",
+    "symbol": "MSI",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xe061156135b7b7847fd4db74992ac8555c0cd5a7": {
+    "assetId": "eip155:56/bep20:0xe061156135b7b7847fd4db74992ac8555c0cd5a7",
+    "chainId": "eip155:56",
+    "name": "Zahnymous",
+    "precision": 18,
+    "color": "#DCBC7C",
+    "icon": "https://assets.coingecko.com/coins/images/30184/thumb/200x200.png?1696529103",
+    "symbol": "ZAH",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xe069af87450fb51fc0d0e044617f1c134163e591": {
+    "assetId": "eip155:56/bep20:0xe069af87450fb51fc0d0e044617f1c134163e591",
+    "chainId": "eip155:56",
+    "name": "Virtue Poker Points on BNB Smart Chain",
+    "precision": 18,
+    "color": "#29BBE4",
+    "icon": "https://assets.coingecko.com/coins/images/3386/thumb/vp-logo-200x200.png?1696504084",
+    "symbol": "VPP",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xe097bceb09bfb18047cf259f321cc129b7beba5e": {
+    "assetId": "eip155:56/bep20:0xe097bceb09bfb18047cf259f321cc129b7beba5e",
+    "chainId": "eip155:56",
+    "name": "TipsyCoin",
+    "precision": 18,
+    "color": "#36278D",
+    "icon": "https://assets.coingecko.com/coins/images/24821/thumb/TipsyCoin-Icon.png?1696523979",
+    "symbol": "TIPSY",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xe0b0c16038845bed3fcf70304d3e167df81ce225": {
+    "assetId": "eip155:56/bep20:0xe0b0c16038845bed3fcf70304d3e167df81ce225",
+    "chainId": "eip155:56",
+    "name": "CrossSwap on BNB Smart Chain",
+    "precision": 18,
+    "color": "#493D89",
+    "icon": "https://assets.coingecko.com/coins/images/18002/thumb/cross.png?1696517518",
+    "symbol": "CSWAP",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xe0e0fbc7e8d881953d39cf899409410b50b8c924": {
+    "assetId": "eip155:56/bep20:0xe0e0fbc7e8d881953d39cf899409410b50b8c924",
+    "chainId": "eip155:56",
+    "name": "Coin of Nature",
+    "precision": 9,
+    "color": "#3CB44C",
+    "icon": "https://assets.coingecko.com/coins/images/19834/thumb/logo_coinofnature-200.png?1696519256",
+    "symbol": "CON",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xe0e514c71282b6f4e823703a39374cf58dc3ea4f": {
+    "assetId": "eip155:56/bep20:0xe0e514c71282b6f4e823703a39374cf58dc3ea4f",
+    "chainId": "eip155:56",
+    "name": "Belt",
+    "precision": 18,
+    "color": "#F3B758",
+    "icon": "https://assets.coingecko.com/coins/images/14319/thumb/belt_logo.jpg?1696514007",
+    "symbol": "BELT",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xe0e81c29a68bfdd7c48072fd94e7c58f1f0146c1": {
+    "assetId": "eip155:56/bep20:0xe0e81c29a68bfdd7c48072fd94e7c58f1f0146c1",
+    "chainId": "eip155:56",
+    "name": "H2O Securities",
+    "precision": 18,
+    "color": "#D9DEEC",
+    "icon": "https://assets.coingecko.com/coins/images/26326/thumb/H2ON_logo_200_200.png?1696525408",
+    "symbol": "H2ON",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xe0f7c8682f865b417aeb80bf237025b4cb5ebaef": {
+    "assetId": "eip155:56/bep20:0xe0f7c8682f865b417aeb80bf237025b4cb5ebaef",
+    "chainId": "eip155:56",
+    "name": "SatoshiSwap",
+    "precision": 18,
+    "color": "#EBF2F7",
+    "icon": "https://assets.coingecko.com/coins/images/27298/thumb/7q2EUICG_400x400.jpeg?1696526349",
+    "symbol": "SWAP",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xe0f94ac5462997d2bc57287ac3a3ae4c31345d66": {
+    "assetId": "eip155:56/bep20:0xe0f94ac5462997d2bc57287ac3a3ae4c31345d66",
+    "chainId": "eip155:56",
+    "name": "CEEK Smart VR on BNB Smart Chain",
+    "precision": 18,
+    "color": "#8289C0",
+    "icon": "https://assets.coingecko.com/coins/images/2581/thumb/ceek-smart-vr-token-logo.png?1696503385",
+    "symbol": "CEEK",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xe11f1d5eee6be945bee3fa20dbf46febbc9f4a19": {
+    "assetId": "eip155:56/bep20:0xe11f1d5eee6be945bee3fa20dbf46febbc9f4a19",
+    "chainId": "eip155:56",
+    "name": "NUSA",
+    "precision": 18,
+    "color": "#0C1624",
+    "icon": "https://assets.coingecko.com/coins/images/27967/thumb/Asset_1_2x.png?1696526986",
+    "symbol": "NUSA",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xe138c66982fd5c890c60b94fdba1747faf092c20": {
+    "assetId": "eip155:56/bep20:0xe138c66982fd5c890c60b94fdba1747faf092c20",
+    "chainId": "eip155:56",
+    "name": "Offshift on BNB Smart Chain",
+    "precision": 18,
+    "color": "#3D047D",
+    "icon": "https://assets.coingecko.com/coins/images/11977/thumb/CsBrPiA.png?1696511835",
+    "symbol": "XFT",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xe1443170fab91fba2c535b3f78935d6fce55348d": {
+    "assetId": "eip155:56/bep20:0xe1443170fab91fba2c535b3f78935d6fce55348d",
+    "chainId": "eip155:56",
+    "name": "Global Virtual Coin",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/32732/thumb/GVC-Global-Virtual-Coin.png?1699218836",
+    "symbol": "GVC",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xe17fbdf671f3cce0f354cacbd27e03f4245a3ffe": {
+    "assetId": "eip155:56/bep20:0xe17fbdf671f3cce0f354cacbd27e03f4245a3ffe",
+    "chainId": "eip155:56",
+    "name": "Rikkei Finance on BNB Smart Chain",
+    "precision": 18,
+    "color": "#A68451",
+    "icon": "https://assets.coingecko.com/coins/images/21309/thumb/rikkei-finance.jpeg?1696520678",
+    "symbol": "RIFI",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xe1918c21ad0e6ee0f48a723830a2c5e2f6296f23": {
+    "assetId": "eip155:56/bep20:0xe1918c21ad0e6ee0f48a723830a2c5e2f6296f23",
+    "chainId": "eip155:56",
+    "name": "Insurabler",
+    "precision": 18,
+    "color": "#8B19F4",
+    "icon": "https://assets.coingecko.com/coins/images/30735/thumb/Insurabler.png?1696529605",
+    "symbol": "INSR",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xe19a9626aef55e20400a3b82a25c003403e88b7f": {
+    "assetId": "eip155:56/bep20:0xe19a9626aef55e20400a3b82a25c003403e88b7f",
+    "chainId": "eip155:56",
+    "name": "Spinada Cash",
+    "precision": 18,
+    "color": "#FCD0D0",
+    "icon": "https://assets.coingecko.com/coins/images/19881/thumb/7sV8g8d.png?1696519303",
+    "symbol": "SPIN",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xe1a0ce8b94c6a5e4791401086763d7bd0a6c18f5": {
+    "assetId": "eip155:56/bep20:0xe1a0ce8b94c6a5e4791401086763d7bd0a6c18f5",
+    "chainId": "eip155:56",
+    "name": "DeFiAI",
+    "precision": 18,
+    "color": "#766CC7",
+    "icon": "https://assets.coingecko.com/coins/images/23345/thumb/dfai.png?1696522561",
+    "symbol": "DFAI",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xe1bb77c8e012c1514373a40cfbb8645293075125": {
+    "assetId": "eip155:56/bep20:0xe1bb77c8e012c1514373a40cfbb8645293075125",
+    "chainId": "eip155:56",
+    "name": "Sports Artificial",
+    "precision": 18,
+    "color": "#2BB1CE",
+    "icon": "https://assets.coingecko.com/coins/images/29196/thumb/IMG_20230220_003747_737.jpg?1696528155",
+    "symbol": "SPORTS-AI",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xe1cace0527aa2e5962221d2db962c04498a8308b": {
+    "assetId": "eip155:56/bep20:0xe1cace0527aa2e5962221d2db962c04498a8308b",
+    "chainId": "eip155:56",
+    "name": "Xpad Network BETA",
+    "precision": 18,
+    "color": "#796C04",
+    "icon": "https://assets.coingecko.com/coins/images/31688/thumb/beta_bnb_adobe_express.png?1696530506",
+    "symbol": "BETA",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xe1d9adb6521c3c423acc0973fd5a481387c9c9ce": {
+    "assetId": "eip155:56/bep20:0xe1d9adb6521c3c423acc0973fd5a481387c9c9ce",
+    "chainId": "eip155:56",
+    "name": "HRC Crypto",
+    "precision": 8,
+    "color": "#A36B2B",
+    "icon": "https://assets.coingecko.com/coins/images/31842/thumb/hrcoin2_new_%281%29.png?1696530656",
+    "symbol": "HRCC",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xe20b9e246db5a0d21bf9209e4858bc9a3ff7a034": {
+    "assetId": "eip155:56/bep20:0xe20b9e246db5a0d21bf9209e4858bc9a3ff7a034",
+    "chainId": "eip155:56",
+    "name": "Wrapped Banano on BNB Smart Chain",
+    "precision": 18,
+    "color": "#373739",
+    "icon": "https://assets.coingecko.com/coins/images/32617/thumb/WBAN.jpg?1698749253",
+    "symbol": "WBAN",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xe239b561369aef79ed55dfdded84848a3bf60480": {
+    "assetId": "eip155:56/bep20:0xe239b561369aef79ed55dfdded84848a3bf60480",
+    "chainId": "eip155:56",
+    "name": "Paper on BNB Smart Chain",
+    "precision": 18,
+    "color": "#34A4C4",
+    "icon": "https://assets.coingecko.com/coins/images/23510/thumb/v3PAPERLogo-01.png?1696522719",
+    "symbol": "PAPER",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xe2604c9561d490624aa35e156e65e590eb749519": {
+    "assetId": "eip155:56/bep20:0xe2604c9561d490624aa35e156e65e590eb749519",
+    "chainId": "eip155:56",
+    "name": "GoldMiner",
+    "precision": 18,
+    "color": "#463C4E",
+    "icon": "https://assets.coingecko.com/coins/images/20416/thumb/LWzVDEkR_400x400.jpg?1696519824",
+    "symbol": "GM",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xe283d0e3b8c102badf5e8166b73e02d96d92f688": {
+    "assetId": "eip155:56/bep20:0xe283d0e3b8c102badf5e8166b73e02d96d92f688",
+    "chainId": "eip155:56",
+    "name": "Elephant Money",
+    "precision": 9,
+    "color": "#FAF2D8",
+    "icon": "https://assets.coingecko.com/coins/images/15549/thumb/elephant-200.png?1696515190",
+    "symbol": "ELEPHANT",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xe28832f94aa99d3ed4c61ef805330168556b4179": {
+    "assetId": "eip155:56/bep20:0xe28832f94aa99d3ed4c61ef805330168556b4179",
+    "chainId": "eip155:56",
+    "name": "Matrix Protocol",
+    "precision": 9,
+    "color": "#281537",
+    "icon": "https://assets.coingecko.com/coins/images/20084/thumb/MTX-200x200.png?1696519500",
+    "symbol": "MTX",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xe29142e14e52bdfbb8108076f66f49661f10ec10": {
+    "assetId": "eip155:56/bep20:0xe29142e14e52bdfbb8108076f66f49661f10ec10",
+    "chainId": "eip155:56",
+    "name": "Kryptonite on BNB Smart Chain",
+    "precision": 18,
+    "color": "#D4D4D4",
+    "icon": "https://assets.coingecko.com/coins/images/31252/thumb/Kryptonite_PFP-03.png?1696530076",
+    "symbol": "SEILOR",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xe2a59d5e33c6540e18aaa46bf98917ac3158db0d": {
+    "assetId": "eip155:56/bep20:0xe2a59d5e33c6540e18aaa46bf98917ac3158db0d",
+    "chainId": "eip155:56",
+    "name": "PureFi on BNB Smart Chain",
+    "precision": 18,
+    "color": "#284361",
+    "icon": "https://assets.coingecko.com/coins/images/17341/thumb/purefi.PNG?1696516893",
+    "symbol": "UFI",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xe2e7329499e8ddb1f2b04ee4b35a8d7f6881e4ea": {
+    "assetId": "eip155:56/bep20:0xe2e7329499e8ddb1f2b04ee4b35a8d7f6881e4ea",
+    "chainId": "eip155:56",
+    "name": "AnRKey X on BNB Smart Chain",
+    "precision": 18,
+    "color": "#B03A79",
+    "icon": "https://assets.coingecko.com/coins/images/13415/thumb/anrkey.jpg?1696513176",
+    "symbol": "ANRX",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xe2eb47954e821dc94e19013677004cd59be0b17f": {
+    "assetId": "eip155:56/bep20:0xe2eb47954e821dc94e19013677004cd59be0b17f",
+    "chainId": "eip155:56",
+    "name": "Triall on BNB Smart Chain",
+    "precision": 18,
+    "color": "#2D7E97",
+    "icon": "https://assets.coingecko.com/coins/images/18679/thumb/-B7ftfN8_400x400.png?1696518148",
+    "symbol": "TRL",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xe2ecc66e14efa96e9c55945f79564f468882d24c": {
+    "assetId": "eip155:56/bep20:0xe2ecc66e14efa96e9c55945f79564f468882d24c",
+    "chainId": "eip155:56",
+    "name": "Disney",
+    "precision": 18,
+    "color": "#504727",
+    "icon": "https://assets.coingecko.com/coins/images/30751/thumb/DIS200x200_%282%29.png?1696529620",
+    "symbol": "DIS",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xe2efe9d38e21293347018914ee1d23913ecb811c": {
+    "assetId": "eip155:56/bep20:0xe2efe9d38e21293347018914ee1d23913ecb811c",
+    "chainId": "eip155:56",
+    "name": "Intelly",
+    "precision": 18,
+    "color": "#0E1C14",
+    "icon": "https://assets.coingecko.com/coins/images/28782/thumb/logo_200x200.jpeg?1696527761",
+    "symbol": "INTL",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xe33012187af219072dff81f54060febed2a91337": {
+    "assetId": "eip155:56/bep20:0xe33012187af219072dff81f54060febed2a91337",
+    "chainId": "eip155:56",
+    "name": "Hubin Network",
+    "precision": 18,
+    "color": "#080812",
+    "icon": "https://assets.coingecko.com/coins/images/28467/thumb/kBBc9jeM_400x400.jpg?1696527461",
+    "symbol": "HBN",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xe336a772532650bc82828e9620dd0d5a3b78bfe8": {
+    "assetId": "eip155:56/bep20:0xe336a772532650bc82828e9620dd0d5a3b78bfe8",
+    "chainId": "eip155:56",
+    "name": "DigiMetaverse on BNB Smart Chain",
+    "precision": 18,
+    "color": "#112044",
+    "icon": "https://assets.coingecko.com/coins/images/23701/thumb/DigiCorpLabs_token.png?1696522902",
+    "symbol": "DGMV",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xe338d4250a4d959f88ff8789eaae8c32700bd175": {
+    "assetId": "eip155:56/bep20:0xe338d4250a4d959f88ff8789eaae8c32700bd175",
+    "chainId": "eip155:56",
+    "name": "Relay Chain on BNB Smart Chain",
+    "precision": 18,
+    "color": "#0CA4EC",
+    "icon": "https://assets.coingecko.com/coins/images/17816/thumb/relay-logo-200.png?1696517336",
+    "symbol": "RELAY",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xe350b08079f9523b24029b838184f177baf961ff": {
+    "assetId": "eip155:56/bep20:0xe350b08079f9523b24029b838184f177baf961ff",
+    "chainId": "eip155:56",
+    "name": "Helena Financial  OLD ",
+    "precision": 5,
+    "color": "#E0C89C",
+    "icon": "https://assets.coingecko.com/coins/images/28364/thumb/helenav2.png?1696527367",
+    "symbol": "HELENA",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xe356337a72d4990a3cfd4d13367659f14f304545": {
+    "assetId": "eip155:56/bep20:0xe356337a72d4990a3cfd4d13367659f14f304545",
+    "chainId": "eip155:56",
+    "name": "Stroke Prevention GenomicDAO",
+    "precision": 18,
+    "color": "#245CCC",
+    "icon": "https://assets.coingecko.com/coins/images/29200/thumb/GenomicDao_logo.png?1696528160",
+    "symbol": "PCSP",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xe356cb3efc9cb4320b945393a10fd71c77dc24a0": {
+    "assetId": "eip155:56/bep20:0xe356cb3efc9cb4320b945393a10fd71c77dc24a0",
+    "chainId": "eip155:56",
+    "name": "Tradetomato",
+    "precision": 18,
+    "color": "#F6F8F4",
+    "icon": "https://assets.coingecko.com/coins/images/32472/thumb/TTM.jpg?1698260129",
+    "symbol": "TTM",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xe369fec23380f9f14ffd07a1dc4b7c1a9fdd81c9": {
+    "assetId": "eip155:56/bep20:0xe369fec23380f9f14ffd07a1dc4b7c1a9fdd81c9",
+    "chainId": "eip155:56",
+    "name": "Froyo Games",
+    "precision": 18,
+    "color": "#D4A8BF",
+    "icon": "https://assets.coingecko.com/coins/images/22386/thumb/95039059.png?1696521730",
+    "symbol": "FROYO",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xe37dbf20a4fff3b88233e456355dc49b76b6fe19": {
+    "assetId": "eip155:56/bep20:0xe37dbf20a4fff3b88233e456355dc49b76b6fe19",
+    "chainId": "eip155:56",
+    "name": "Love Earn Enjoy",
+    "precision": 18,
+    "color": "#3DF5CE",
+    "icon": "https://assets.coingecko.com/coins/images/31158/thumb/LEE_200x200_PNG.png?1696529985",
+    "symbol": "LEE",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xe37f5e9c1e8199bda350243aaa50076959ea13d2": {
+    "assetId": "eip155:56/bep20:0xe37f5e9c1e8199bda350243aaa50076959ea13d2",
+    "chainId": "eip155:56",
+    "name": "MegaShibaZilla",
+    "precision": 9,
+    "color": "#CDDB8F",
+    "icon": "https://assets.coingecko.com/coins/images/19941/thumb/msb.png?1636335773",
+    "symbol": "MSZ",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xe3894cb9e92ca78524fb6a30ff072fa5e533c162": {
+    "assetId": "eip155:56/bep20:0xe3894cb9e92ca78524fb6a30ff072fa5e533c162",
+    "chainId": "eip155:56",
+    "name": "The Everlasting Parachain",
+    "precision": 18,
+    "color": "#3FBECA",
+    "icon": "https://assets.coingecko.com/coins/images/16230/thumb/y24nMGj.png?1696515831",
+    "symbol": "ELP",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xe39e2861ae9a45fa321c1b0155d2f99196b2a992": {
+    "assetId": "eip155:56/bep20:0xe39e2861ae9a45fa321c1b0155d2f99196b2a992",
+    "chainId": "eip155:56",
+    "name": "Eloin",
+    "precision": 9,
+    "color": "#E7BF85",
+    "icon": "https://assets.coingecko.com/coins/images/17656/thumb/Pics-Art-08-01-02-43-25.png?1696517187",
+    "symbol": "ELOIN",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xe3b4f0fa9f7ac0b29b29bf94503c3016eb56876d": {
+    "assetId": "eip155:56/bep20:0xe3b4f0fa9f7ac0b29b29bf94503c3016eb56876d",
+    "chainId": "eip155:56",
+    "name": "Baby Luffy",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/32717/thumb/IMG_20231028_121802_960.jpg?1699001090",
+    "symbol": "BLF",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xe3c1bdeec4db91cd90c336776332fae2e00fddd9": {
+    "assetId": "eip155:56/bep20:0xe3c1bdeec4db91cd90c336776332fae2e00fddd9",
+    "chainId": "eip155:56",
+    "name": "Ash Token",
+    "precision": 9,
+    "color": "#CB7F4B",
+    "icon": "https://assets.coingecko.com/coins/images/23870/thumb/Ash-Logo-256.png?1696523071",
+    "symbol": "ASH",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xe3e3f8218562a7c9b594bef2946ec72f1b043ae8": {
+    "assetId": "eip155:56/bep20:0xe3e3f8218562a7c9b594bef2946ec72f1b043ae8",
+    "chainId": "eip155:56",
+    "name": "Kyberdyne",
+    "precision": 18,
+    "color": "#0F050B",
+    "icon": "https://assets.coingecko.com/coins/images/24003/thumb/mrSWHBjQ_400x400.jpg?1696523197",
+    "symbol": "KBD",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xe48a3d7d0bc88d552f730b62c006bc925eadb9ee": {
+    "assetId": "eip155:56/bep20:0xe48a3d7d0bc88d552f730b62c006bc925eadb9ee",
+    "chainId": "eip155:56",
+    "name": "Frax Share on BNB Smart Chain",
+    "precision": 18,
+    "color": "#CECECE",
+    "icon": "https://assets.coingecko.com/coins/images/13423/thumb/Frax_Shares_icon.png?1696513183",
+    "symbol": "FXS",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xe4a4ad6e0b773f47d28f548742a23efd73798332": {
+    "assetId": "eip155:56/bep20:0xe4a4ad6e0b773f47d28f548742a23efd73798332",
+    "chainId": "eip155:56",
+    "name": "GNY on BNB Smart Chain",
+    "precision": 18,
+    "color": "#141414",
+    "icon": "https://assets.coingecko.com/coins/images/5300/thumb/GNY_LOGO_NEW_TRANS.png?1696505799",
+    "symbol": "GNY",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xe4c797d43631f4d660ec67b5cb0b78ef5c902532": {
+    "assetId": "eip155:56/bep20:0xe4c797d43631f4d660ec67b5cb0b78ef5c902532",
+    "chainId": "eip155:56",
+    "name": "Monsters Clan",
+    "precision": 18,
+    "color": "#EC5C21",
+    "icon": "https://assets.coingecko.com/coins/images/18382/thumb/Monstersclan_Icon_200X200.png?1696517874",
+    "symbol": "MONS",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xe4cc45bb5dbda06db6183e8bf016569f40497aa5": {
+    "assetId": "eip155:56/bep20:0xe4cc45bb5dbda06db6183e8bf016569f40497aa5",
+    "chainId": "eip155:56",
+    "name": "Galxe on BNB Smart Chain",
+    "precision": 18,
+    "color": "#E0F3F5",
+    "icon": "https://assets.coingecko.com/coins/images/24530/thumb/galaxy.jpg?1696523708",
+    "symbol": "GAL",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xe4e11e02aa14c7f24db749421986eaec1369e8c9": {
+    "assetId": "eip155:56/bep20:0xe4e11e02aa14c7f24db749421986eaec1369e8c9",
+    "chainId": "eip155:56",
+    "name": "MINATIVERSE",
+    "precision": 18,
+    "color": "#1A1A1A",
+    "icon": "https://assets.coingecko.com/coins/images/32012/thumb/MNTC.jpg?1696530810",
+    "symbol": "MNTC",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xe4e8e6878718bfe533702d4a6571eb74d79b0915": {
+    "assetId": "eip155:56/bep20:0xe4e8e6878718bfe533702d4a6571eb74d79b0915",
+    "chainId": "eip155:56",
+    "name": "LunaChow on BNB Smart Chain",
+    "precision": 18,
+    "color": "#D96A3C",
+    "icon": "https://assets.coingecko.com/coins/images/18805/thumb/J-MwYfhD_400x400.jpg?1696518267",
+    "symbol": "LUCHOW",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xe4f3252f268b6b5beae4b02a4b99b369bbea12f1": {
+    "assetId": "eip155:56/bep20:0xe4f3252f268b6b5beae4b02a4b99b369bbea12f1",
+    "chainId": "eip155:56",
+    "name": "Enigma Gaming",
+    "precision": 18,
+    "color": "#8D4BB8",
+    "icon": "https://assets.coingecko.com/coins/images/29998/thumb/Logo-gradient_%281%29_%284%29.png?1696528923",
+    "symbol": "ENG",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xe4fae3faa8300810c835970b9187c268f55d998f": {
+    "assetId": "eip155:56/bep20:0xe4fae3faa8300810c835970b9187c268f55d998f",
+    "chainId": "eip155:56",
+    "name": "CateCoin on BNB Smart Chain",
+    "precision": 9,
+    "color": "#D7891C",
+    "icon": "https://assets.coingecko.com/coins/images/15364/thumb/logo.png?1696515013",
+    "symbol": "CATE",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xe500acdbd53a8fcbe2b01c0f9c2ccc676d0fc6f6": {
+    "assetId": "eip155:56/bep20:0xe500acdbd53a8fcbe2b01c0f9c2ccc676d0fc6f6",
+    "chainId": "eip155:56",
+    "name": "TiraVerse",
+    "precision": 7,
+    "color": "#244028",
+    "icon": "https://assets.coingecko.com/coins/images/24591/thumb/tvrs.png?1696523765",
+    "symbol": "TVRS",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xe52bb35344cceedd014be2896d01e604ad992c85": {
+    "assetId": "eip155:56/bep20:0xe52bb35344cceedd014be2896d01e604ad992c85",
+    "chainId": "eip155:56",
+    "name": "Crypto Snack",
+    "precision": 18,
+    "color": "#D23F4F",
+    "icon": "https://assets.coingecko.com/coins/images/31133/thumb/SNACK.jpg?1696529962",
+    "symbol": "SNACK",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xe52c5a3590952f3ed6fccf89a0bd7f38e11c5b98": {
+    "assetId": "eip155:56/bep20:0xe52c5a3590952f3ed6fccf89a0bd7f38e11c5b98",
+    "chainId": "eip155:56",
+    "name": "DekBox",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/15968/thumb/DEKbox-02%281%29.png?1696515579",
+    "symbol": "DEK",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xe550a593d09fbc8dcd557b5c88cea6946a8b404a": {
+    "assetId": "eip155:56/bep20:0xe550a593d09fbc8dcd557b5c88cea6946a8b404a",
+    "chainId": "eip155:56",
+    "name": " Doge",
+    "precision": 8,
+    "color": "#060A0D",
+    "icon": "https://assets.coingecko.com/coins/images/15959/thumb/photo_2021-06-01_11-30-59.png?1696515570",
+    "symbol": "TDOGE",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xe55d97a97ae6a17706ee281486e98a84095d8aaf": {
+    "assetId": "eip155:56/bep20:0xe55d97a97ae6a17706ee281486e98a84095d8aaf",
+    "chainId": "eip155:56",
+    "name": "AIPad on BNB Smart Chain",
+    "precision": 18,
+    "color": "#ABADAD",
+    "icon": "https://assets.coingecko.com/coins/images/28894/thumb/JZadeHu.jpeg?1696527870",
+    "symbol": "AIPAD",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xe5653d5795a2c0c3bb0532e028656b703c0be002": {
+    "assetId": "eip155:56/bep20:0xe5653d5795a2c0c3bb0532e028656b703c0be002",
+    "chainId": "eip155:56",
+    "name": "RECYCLING AI",
+    "precision": 9,
+    "color": "#8ACC5F",
+    "icon": "https://assets.coingecko.com/coins/images/31754/thumb/logo-CYC-200x200-0xe5653d5795a2c0c3Bb0532e028656b703C0BE002-CYCAI.png?1696530573",
+    "symbol": "CYCAI",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xe56842ed550ff2794f010738554db45e60730371": {
+    "assetId": "eip155:56/bep20:0xe56842ed550ff2794f010738554db45e60730371",
+    "chainId": "eip155:56",
+    "name": "Binemon",
+    "precision": 18,
+    "color": "#404256",
+    "icon": "https://assets.coingecko.com/coins/images/17932/thumb/logo-v3.png?1696517453",
+    "symbol": "BIN",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xe5765e33e349b2dcf22a37b2b4e87c10ad43f165": {
+    "assetId": "eip155:56/bep20:0xe5765e33e349b2dcf22a37b2b4e87c10ad43f165",
+    "chainId": "eip155:56",
+    "name": "Christmas Floki",
+    "precision": 18,
+    "color": "#3E814B",
+    "icon": "https://assets.coingecko.com/coins/images/28396/thumb/Christmas_Floki.png?1696527395",
+    "symbol": "FLOC",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xe57f73eb27da9d17f90c994744d842e95700c100": {
+    "assetId": "eip155:56/bep20:0xe57f73eb27da9d17f90c994744d842e95700c100",
+    "chainId": "eip155:56",
+    "name": "Pepe AI",
+    "precision": 9,
+    "color": "#5C7C3B",
+    "icon": "https://assets.coingecko.com/coins/images/30148/thumb/logo_200px.png?1696529069",
+    "symbol": "PEPEAI",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xe580074a10360404af3abfe2d524d5806d993ea3": {
+    "assetId": "eip155:56/bep20:0xe580074a10360404af3abfe2d524d5806d993ea3",
+    "chainId": "eip155:56",
+    "name": "PayBolt on BNB Smart Chain",
+    "precision": 18,
+    "color": "#147CF4",
+    "icon": "https://assets.coingecko.com/coins/images/24175/thumb/logo.png?1696523363",
+    "symbol": "PAY",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xe5b5d4bea7468b4994fa676949308a79497aa24c": {
+    "assetId": "eip155:56/bep20:0xe5b5d4bea7468b4994fa676949308a79497aa24c",
+    "chainId": "eip155:56",
+    "name": "Sheikh Inu on BNB Smart Chain",
+    "precision": 18,
+    "color": "#F2B311",
+    "icon": "https://assets.coingecko.com/coins/images/28948/thumb/photo_2023-02-04_17-32-00_prev_ui_%282%29.png?1696527922",
+    "symbol": "SHINU",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xe5ba47fd94cb645ba4119222e34fb33f59c7cd90": {
+    "assetId": "eip155:56/bep20:0xe5ba47fd94cb645ba4119222e34fb33f59c7cd90",
+    "chainId": "eip155:56",
+    "name": "SAFUU",
+    "precision": 5,
+    "color": "#F5F4E6",
+    "icon": "https://assets.coingecko.com/coins/images/24290/thumb/86tZ8IKj_400x400.jpg?1696523472",
+    "symbol": "SAFUU",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xe5bc80382f1ebad820167714118201ae468a9929": {
+    "assetId": "eip155:56/bep20:0xe5bc80382f1ebad820167714118201ae468a9929",
+    "chainId": "eip155:56",
+    "name": "Figments Club",
+    "precision": 18,
+    "color": "#180912",
+    "icon": "https://assets.coingecko.com/coins/images/30476/thumb/IMG-20230519-WA0005.jpg?1696529362",
+    "symbol": "FIGMA",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xe60eaf5a997dfae83739e035b005a33afdcc6df5": {
+    "assetId": "eip155:56/bep20:0xe60eaf5a997dfae83739e035b005a33afdcc6df5",
+    "chainId": "eip155:56",
+    "name": "Deri Protocol on BNB Smart Chain",
+    "precision": 18,
+    "color": "#5B7890",
+    "icon": "https://assets.coingecko.com/coins/images/13931/thumb/200vs200.jpg?1696513670",
+    "symbol": "DERI",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xe610d6ee762f865f98b2458af87a79828fa724f3": {
+    "assetId": "eip155:56/bep20:0xe610d6ee762f865f98b2458af87a79828fa724f3",
+    "chainId": "eip155:56",
+    "name": "TRRXITTE International",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/13452/thumb/TRRXITTE_Int..png?1696513215",
+    "symbol": "TRRXITTE",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xe615c5e7219f9801c3b75bc76e45a4dab3c38e51": {
+    "assetId": "eip155:56/bep20:0xe615c5e7219f9801c3b75bc76e45a4dab3c38e51",
+    "chainId": "eip155:56",
+    "name": "Vemate",
+    "precision": 18,
+    "color": "#221877",
+    "icon": "https://assets.coingecko.com/coins/images/27953/thumb/Vemate.jpeg?1696526972",
+    "symbol": "VMT",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xe64017bdacbe7dfc84886c3704a26d566e7550de": {
+    "assetId": "eip155:56/bep20:0xe64017bdacbe7dfc84886c3704a26d566e7550de",
+    "chainId": "eip155:56",
+    "name": "Kingdom Karnage",
+    "precision": 18,
+    "color": "#303433",
+    "icon": "https://assets.coingecko.com/coins/images/22598/thumb/KKT_200x200.png?1696521915",
+    "symbol": "KKT",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xe64e30276c2f826febd3784958d6da7b55dfbad3": {
+    "assetId": "eip155:56/bep20:0xe64e30276c2f826febd3784958d6da7b55dfbad3",
+    "chainId": "eip155:56",
+    "name": "SWFTCOIN on BNB Smart Chain",
+    "precision": 18,
+    "color": "#BA8D2D",
+    "icon": "https://assets.coingecko.com/coins/images/2346/thumb/SWFTCoin.jpg?1696503223",
+    "symbol": "SWFTC",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xe65725fedb66586cbe32615e097a01c0aa43ae89": {
+    "assetId": "eip155:56/bep20:0xe65725fedb66586cbe32615e097a01c0aa43ae89",
+    "chainId": "eip155:56",
+    "name": "Gym AI",
+    "precision": 18,
+    "color": "#928AAD",
+    "icon": "https://assets.coingecko.com/coins/images/29061/thumb/200x200-removebg-preview.png?1696528028",
+    "symbol": "GYMAI",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xe6884e29ffe5c6f68f4958cf201b0e308f982ac9": {
+    "assetId": "eip155:56/bep20:0xe6884e29ffe5c6f68f4958cf201b0e308f982ac9",
+    "chainId": "eip155:56",
+    "name": "Vegasino",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/25905/thumb/third_about_img.png?1696524986",
+    "symbol": "VEGAS",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xe6a768464b042a6d029394db1fdef360cb60bbeb": {
+    "assetId": "eip155:56/bep20:0xe6a768464b042a6d029394db1fdef360cb60bbeb",
+    "chainId": "eip155:56",
+    "name": "Friend",
+    "precision": 18,
+    "color": "#44A5D4",
+    "icon": "https://assets.coingecko.com/coins/images/31147/thumb/fren.jpg?1696529975",
+    "symbol": "FREN",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xe6df015f66653ece085a5fbba8d42c356114ce4f": {
+    "assetId": "eip155:56/bep20:0xe6df015f66653ece085a5fbba8d42c356114ce4f",
+    "chainId": "eip155:56",
+    "name": "Pyrrho",
+    "precision": 18,
+    "color": "#040404",
+    "icon": "https://assets.coingecko.com/coins/images/22423/thumb/pyo.png?1696521764",
+    "symbol": "PYO",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xe6df05ce8c8301223373cf5b969afcb1498c5528": {
+    "assetId": "eip155:56/bep20:0xe6df05ce8c8301223373cf5b969afcb1498c5528",
+    "chainId": "eip155:56",
+    "name": "KOGE",
+    "precision": 18,
+    "color": "#FCC404",
+    "icon": "https://assets.coingecko.com/coins/images/13827/thumb/bnb48.png?1696513570",
+    "symbol": "KOGE",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xe6ffa2e574a8bbeb5243d2109b6b11d4a459f88b": {
+    "assetId": "eip155:56/bep20:0xe6ffa2e574a8bbeb5243d2109b6b11d4a459f88b",
+    "chainId": "eip155:56",
+    "name": "Hippo",
+    "precision": 18,
+    "color": "#6268A4",
+    "icon": "https://assets.coingecko.com/coins/images/17386/thumb/hip.PNG?1696516935",
+    "symbol": "HIP",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xe700ba35998fad8e669e3cca7b3a350f1fdcacf8": {
+    "assetId": "eip155:56/bep20:0xe700ba35998fad8e669e3cca7b3a350f1fdcacf8",
+    "chainId": "eip155:56",
+    "name": "Purchasa",
+    "precision": 18,
+    "color": "#4CCCFB",
+    "icon": "https://assets.coingecko.com/coins/images/28951/thumb/PCA.png?1696527924",
+    "symbol": "PCA",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xe702c303173f90094ce8c9c6ca3f198eca0e027c": {
+    "assetId": "eip155:56/bep20:0xe702c303173f90094ce8c9c6ca3f198eca0e027c",
+    "chainId": "eip155:56",
+    "name": "LonelyFans",
+    "precision": 9,
+    "color": "#18273E",
+    "icon": "https://assets.coingecko.com/coins/images/21317/thumb/lof.png?1696520685",
+    "symbol": "LOF",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xe703bcd08af361b3de09a617fb74f98520954fca": {
+    "assetId": "eip155:56/bep20:0xe703bcd08af361b3de09a617fb74f98520954fca",
+    "chainId": "eip155:56",
+    "name": "MOST Global",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/33212/thumb/mgp200x200.png?1701085068",
+    "symbol": "MGP",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xe7498f332c35a346b486f3f6a68f05934e92a228": {
+    "assetId": "eip155:56/bep20:0xe7498f332c35a346b486f3f6a68f05934e92a228",
+    "chainId": "eip155:56",
+    "name": "NevaCoin",
+    "precision": 18,
+    "color": "#DCFCD6",
+    "icon": "https://assets.coingecko.com/coins/images/1421/thumb/Neva_logo_600_600.png?1696502473",
+    "symbol": "NEVA",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xe75f36244902c1a2913623fce22b1e58ffe47192": {
+    "assetId": "eip155:56/bep20:0xe75f36244902c1a2913623fce22b1e58ffe47192",
+    "chainId": "eip155:56",
+    "name": "Bitcoin AI",
+    "precision": 18,
+    "color": "#EFB053",
+    "icon": "https://assets.coingecko.com/coins/images/32467/thumb/BITCOINAI.jpg?1698259645",
+    "symbol": "BITCOINAI",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xe762c095ce61f5dfef94ee41ecc3f6711a87a691": {
+    "assetId": "eip155:56/bep20:0xe762c095ce61f5dfef94ee41ecc3f6711a87a691",
+    "chainId": "eip155:56",
+    "name": "ZhaoDaVinci",
+    "precision": 9,
+    "color": "#242CDC",
+    "icon": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAIAAAACACAMAAAD04JH5AAADAFBMVEUtN0gmL9j///8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADiC5doAAABAHRSTlP/////AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAf6K/dgAAQItJREFUeNoBgEB/vwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgEBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgAAAAAAAAACAgICAgICAQEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgEBAQEBAQECAgICAgICAgICAgICAgICAgIAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAgICAgICAgICAgIDAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAgICAgICAgICAgIDAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAgICAgICAgICAgIDAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAgICAgICAgICAgIDAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAgICAgICAgICAgIDAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAgICAgICAgICAgIDAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQEBAwMDAwMDAwMDAwMDAwICAgICAgIDAwMDAwMDAwMDAwMDAwMAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQEBAwMDAwMDAwMDAwMDAwICAgIDAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQEBAQEBAQAAAAAAAAAAAAICAgIDAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQEBAQEBAQAAAAAAAAAAAAICAgIDAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQEBAQEBAQAAAAAAAAAAAAICAgIDAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQEBAQEBAQAAAAAAAAAAAAICAgIDAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQEBAQEBAQAAAAAAAAAAAAICAgIDAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQEBAQEBAQAAAAAAAAAAAAICAgIDAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAACAgICAgICAgICAgICAgEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQEBAQEBAQAAAAAAAAAAAAICAgIDAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAACAgICAgICAgICAgICAgMBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQEBAQEBAQAAAAAAAAAAAAICAgIDAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAACAgICAgICAgICAgICAgMBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQEBAQEBAQAAAAAAAAAAAAICAgIDAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAACAgICAgICAgICAgICAgMBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQEBAQEBAQAAAAAAAAAAAAICAgIDAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAACAgICAgICAgICAgICAgMBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQEBAQEBAQAAAAAAAAAAAAICAgIDAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAACAgICAgICAgICAgICAgMBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQEBAQEBAQAAAAAAAAAAAAICAgIDAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAACAgICAgICAgICAgICAgMBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQEBAQEBAQAAAAAAAAAAAAICAgIDAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAACAgICAgICAwMDAwMDAwICAgICAgIBAQEBAQEBAgICAgICAgMBAQEBAQEBAQEBAQAAAAAAAAAAAAICAgIDAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQICAgICAgIDAQEBAQEBAgICAgICAgMBAQEBAQEBAQEBAQAAAAAAAAAAAAICAgIDAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQICAgICAgIDAQEBAQEBAgICAgICAgMBAQEBAQEBAQEBAQAAAAAAAAAAAAICAgIDAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQICAgICAgIDAQEBAQEBAgICAgICAgMBAQEBAQEBAQEBAQAAAAAAAAAAAAICAgIDAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQICAgICAgIDAQEBAQEBAgICAgICAgMBAQEBAQEBAQEBAQAAAAAAAAAAAAICAgIDAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQICAgICAgIDAQEBAQEBAgICAgICAgMBAQEBAQEBAQEBAQAAAAAAAAAAAAICAgIDAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQICAgICAgIDAQEBAQEBAgICAgICAgMBAQEBAQEBAQEBAQAAAAAAAAAAAAICAgIDAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEDAwMDAwMCAgICAgICAgICAgICAgMBAQEBAQEBAQEBAQAAAAAAAAAAAAICAgIDAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAgICAgICAgMBAQEBAQEBAQEBAQAAAAAAAAAAAAICAgIDAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAgICAgICAgMBAQEBAQEBAQEBAQAAAAAAAAAAAAICAgIDAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAgICAgICAgMBAQEBAQEBAQEBAQAAAAAAAAAAAAICAgIDAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAgICAgICAgMBAQEBAQEBAQEBAQAAAAAAAAAAAAICAgIDAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgIDAQEBAQAAAAAAAAAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAgICAgICAgMBAQEBAQEBAQEBAQAAAAAAAAAAAAICAgIDAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQEBAQEBAQAAAAAAAAAAAAICAgICAgIDAAAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwAAAAAAAAAAAAAAAAACAgICAgICAgICAgICAgMBAQEBAQEBAQEBAQAAAAAAAAAAAAICAgIDAAAAAAACAgICAgICAQMDAwMDAwMBAQEBAQEBAQEBAQAAAAAAAAAAAAICAgICAgIDAAAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwAAAAAAAAAAAAAAAAAAAwMDAwMDAgICAgICAgMBAQEBAQEBAQEBAQAAAAAAAAAAAAICAgIDAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAICAgICAgIDAAAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQEBAQEBAQAAAAAAAAAAAAICAgIDAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAICAgICAgIDAAAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQEBAQEBAQAAAAAAAAAAAAICAgIDAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAICAgICAgIDAAAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQEBAQEBAQAAAAAAAAAAAAICAgIDAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAICAgICAgIDAAAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQEBAQEBAQAAAAAAAAAAAAICAgIDAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAICAgICAgIDAAAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQEBAQEBAQAAAAAAAAAAAAICAgIDAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAICAgICAgIDAAAAAAAAAAAAAAAAAAAAAAAAAAACAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQEBAQEBAQAAAAAAAAAAAAICAgIDAgICAgIAAwMDAwMDAwEBAQEBAQEBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgAAAAAAAAACAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAgICAgICAgICAgIDAgICAgIDAAAAAAEBAQEBAQEBAQEBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMAAAAAAAACAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAgICAgICAgICAgIDAgICAgIDAAAAAAEBAQEBAQEBAQEBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMAAAAAAAACAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAgICAgICAgICAgIDAgICAgIDAAAAAAEBAQEBAQEBAQEBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMAAAAAAAACAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAgICAgICAgICAgIDAgICAgIDAAAAAAEBAQEBAQEBAQEBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMAAAAAAAACAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAgICAgICAgICAgIDAgICAgIDAAAAAAEBAQEBAQEBAQEBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMAAAAAAAACAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAgICAgICAgICAgIDAgICAgIDAAAAAAEBAQEBAQEBAQEBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMAAAAAAAACAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAgICAgICAgICAgIDAAMDAwMDAAAAAAEBAQEBAQEBAQEBAQEBAQEBAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMAAAAAAAAAAwMDAwMDAwAAAAAAAAAAAAAAAAAAAAAAAAEBAQMDAwMDAwMBAQEBAQEBAwMDAwMDAwMDAwMDAwMDAwMDAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQXL44hbyqIAAAAAElFTkSuQmCC",
+    "symbol": "VINI",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xe77011ed703ed06927dbd78e60c549bababf913e": {
+    "assetId": "eip155:56/bep20:0xe77011ed703ed06927dbd78e60c549bababf913e",
+    "chainId": "eip155:56",
+    "name": "Micro Bitcoin Finance",
+    "precision": 18,
+    "color": "#BDD6F4",
+    "icon": "https://assets.coingecko.com/coins/images/16086/thumb/bitcoin-96x96.png?1696515694",
+    "symbol": "MBTC",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xe79a1163a95734ccfbd006cbaaba954f3e846beb": {
+    "assetId": "eip155:56/bep20:0xe79a1163a95734ccfbd006cbaaba954f3e846beb",
+    "chainId": "eip155:56",
+    "name": "Shack on BNB Smart Chain",
+    "precision": 18,
+    "color": "#EC1C24",
+    "icon": "https://assets.coingecko.com/coins/images/25699/thumb/shack_no_bg_no_pad3.png?1696524826",
+    "symbol": "SHACK",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xe7c9c6bc87b86f9e5b57072f907ee6460b593924": {
+    "assetId": "eip155:56/bep20:0xe7c9c6bc87b86f9e5b57072f907ee6460b593924",
+    "chainId": "eip155:56",
+    "name": "Tower on BNB Smart Chain",
+    "precision": 18,
+    "color": "#403D3F",
+    "icon": "https://assets.coingecko.com/coins/images/14134/thumb/tower-circular-1000.png?1696513854",
+    "symbol": "TOWER",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xe7f72bc0252ca7b16dbb72eeee1afcdb2429f2dd": {
+    "assetId": "eip155:56/bep20:0xe7f72bc0252ca7b16dbb72eeee1afcdb2429f2dd",
+    "chainId": "eip155:56",
+    "name": "NFTLaunch on BNB Smart Chain",
+    "precision": 18,
+    "color": "#E1E1E5",
+    "icon": "https://assets.coingecko.com/coins/images/18140/thumb/nftl.PNG?1696517643",
+    "symbol": "NFTL",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xe80772eaf6e2e18b651f160bc9158b2a5cafca65": {
+    "assetId": "eip155:56/bep20:0xe80772eaf6e2e18b651f160bc9158b2a5cafca65",
+    "chainId": "eip155:56",
+    "name": "Overnight fi USD  on BNB Smart Chain",
+    "precision": 6,
+    "color": "#BFC5D3",
+    "icon": "https://assets.coingecko.com/coins/images/25757/thumb/USD__logo.png?1696524843",
+    "symbol": "USD+",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xe81257d932280ae440b17afc5f07c8a110d21432": {
+    "assetId": "eip155:56/bep20:0xe81257d932280ae440b17afc5f07c8a110d21432",
+    "chainId": "eip155:56",
+    "name": "Zuki Moba",
+    "precision": 18,
+    "color": "#08232C",
+    "icon": "https://assets.coingecko.com/coins/images/20655/thumb/C1A1yP2J_400x400.jpg?1696520057",
+    "symbol": "ZUKI",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xe8176d414560cfe1bf82fd73b986823b89e4f545": {
+    "assetId": "eip155:56/bep20:0xe8176d414560cfe1bf82fd73b986823b89e4f545",
+    "chainId": "eip155:56",
+    "name": "Step Hero",
+    "precision": 18,
+    "color": "#C6BEB3",
+    "icon": "https://assets.coingecko.com/coins/images/17700/thumb/stephero.PNG?1696517228",
+    "symbol": "HERO",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xe81a79e9d951759aef3fccef17022276b3a0c7e5": {
+    "assetId": "eip155:56/bep20:0xe81a79e9d951759aef3fccef17022276b3a0c7e5",
+    "chainId": "eip155:56",
+    "name": "Momentum",
+    "precision": 18,
+    "color": "#287EAC",
+    "icon": "https://assets.coingecko.com/coins/images/28342/thumb/GLCoOxW.png?1696527348",
+    "symbol": "MASS",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xe82546b56b1b8a5f031bcd23ff6332282cb0124b": {
+    "assetId": "eip155:56/bep20:0xe82546b56b1b8a5f031bcd23ff6332282cb0124b",
+    "chainId": "eip155:56",
+    "name": "Brain Sync",
+    "precision": 18,
+    "color": "#4C6C74",
+    "icon": "https://assets.coingecko.com/coins/images/29472/thumb/our_logo.png?1696528417",
+    "symbol": "SYNCBRAIN",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xe8647ea19496e87c061bbad79f457928b2f52b5a": {
+    "assetId": "eip155:56/bep20:0xe8647ea19496e87c061bbad79f457928b2f52b5a",
+    "chainId": "eip155:56",
+    "name": "Popcorn on BNB Smart Chain",
+    "precision": 18,
+    "color": "#FCE45C",
+    "icon": "https://assets.coingecko.com/coins/images/21438/thumb/pop-1_200_x_200.png?1696520801",
+    "symbol": "POP",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xe8670901e86818745b28c8b30b17986958fce8cc": {
+    "assetId": "eip155:56/bep20:0xe8670901e86818745b28c8b30b17986958fce8cc",
+    "chainId": "eip155:56",
+    "name": "Citadel one",
+    "precision": 6,
+    "color": "#C6C6C6",
+    "icon": "https://assets.coingecko.com/coins/images/17852/thumb/logo200on200.png?1696517375",
+    "symbol": "XCT",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xe870aec45088bfd4a43852b39d9c3560a8cb9b14": {
+    "assetId": "eip155:56/bep20:0xe870aec45088bfd4a43852b39d9c3560a8cb9b14",
+    "chainId": "eip155:56",
+    "name": "CentroFi",
+    "precision": 12,
+    "color": "#65C1D8",
+    "icon": "https://assets.coingecko.com/coins/images/28353/thumb/logo.png?1696527357",
+    "symbol": "CENTRO",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xe87e15b9c7d989474cb6d8c56b3db4efad5b21e8": {
+    "assetId": "eip155:56/bep20:0xe87e15b9c7d989474cb6d8c56b3db4efad5b21e8",
+    "chainId": "eip155:56",
+    "name": "HOKK Finance on BNB Smart Chain",
+    "precision": 18,
+    "color": "#4CDDF9",
+    "icon": "https://assets.coingecko.com/coins/images/14985/thumb/hokk.png?1696514647",
+    "symbol": "HOKK",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xe8993ea85b9aa3e864fef4f7685966c485546161": {
+    "assetId": "eip155:56/bep20:0xe8993ea85b9aa3e864fef4f7685966c485546161",
+    "chainId": "eip155:56",
+    "name": "Baby Squid Game",
+    "precision": 9,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/32819/thumb/CoingeckoLogo_200x200.png?1699581911",
+    "symbol": "BSG",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xe8b4c953a204430a7ce064532d6283c70a609956": {
+    "assetId": "eip155:56/bep20:0xe8b4c953a204430a7ce064532d6283c70a609956",
+    "chainId": "eip155:56",
+    "name": "Apedoge",
+    "precision": 18,
+    "color": "#F1F1E7",
+    "icon": "https://assets.coingecko.com/coins/images/27899/thumb/photo_2022-10-20_14-01-21.jpg?1696526920",
+    "symbol": "APED",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xe8c93310af068aa50bd7bf0ebfa459df2a02ceba": {
+    "assetId": "eip155:56/bep20:0xe8c93310af068aa50bd7bf0ebfa459df2a02ceba",
+    "chainId": "eip155:56",
+    "name": "HoneyMOON",
+    "precision": 18,
+    "color": "#FBF9D6",
+    "icon": "https://assets.coingecko.com/coins/images/18187/thumb/download_%2833%29.png?1696517687",
+    "symbol": "MOON",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xe8d0658b9b52c00a15e4a1a738ce7c90dc95a44c": {
+    "assetId": "eip155:56/bep20:0xe8d0658b9b52c00a15e4a1a738ce7c90dc95a44c",
+    "chainId": "eip155:56",
+    "name": "Akino INU",
+    "precision": 18,
+    "color": "#2C5E4E",
+    "icon": "https://assets.coingecko.com/coins/images/31978/thumb/Design-sem-nome-57.png?1696530781",
+    "symbol": "AKI",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xe8e0d396f0881c0fab9319e441223f9780b8305c": {
+    "assetId": "eip155:56/bep20:0xe8e0d396f0881c0fab9319e441223f9780b8305c",
+    "chainId": "eip155:56",
+    "name": "Supreme Finance HYPES",
+    "precision": 18,
+    "color": "#F8F0F2",
+    "icon": "https://assets.coingecko.com/coins/images/27322/thumb/N9aAdTFH_400x400.jpeg?1696526371",
+    "symbol": "HYPES",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xe90d1567ecef9282cc1ab348d9e9e2ac95659b99": {
+    "assetId": "eip155:56/bep20:0xe90d1567ecef9282cc1ab348d9e9e2ac95659b99",
+    "chainId": "eip155:56",
+    "name": "CoinxPad",
+    "precision": 18,
+    "color": "#EAEBFA",
+    "icon": "https://assets.coingecko.com/coins/images/18626/thumb/cxpad.png?1696518098",
+    "symbol": "CXPAD",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xe916ead212ccbd0df36d0328891300adc9096021": {
+    "assetId": "eip155:56/bep20:0xe916ead212ccbd0df36d0328891300adc9096021",
+    "chainId": "eip155:56",
+    "name": "Christmas Shiba",
+    "precision": 9,
+    "color": "#BD7843",
+    "icon": "https://assets.coingecko.com/coins/images/28534/thumb/Qf4TU5kH_400x400.png?1696527527",
+    "symbol": "XSHIB",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xe919facc09ce21f98d1693e9781af9ea61460e2a": {
+    "assetId": "eip155:56/bep20:0xe919facc09ce21f98d1693e9781af9ea61460e2a",
+    "chainId": "eip155:56",
+    "name": "Infinity Box",
+    "precision": 18,
+    "color": "#050606",
+    "icon": "https://assets.coingecko.com/coins/images/29941/thumb/yMaHVj13_400x400.jpg?1696528868",
+    "symbol": "IBOX",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xe91a8d2c584ca93c7405f15c22cdfe53c29896e3": {
+    "assetId": "eip155:56/bep20:0xe91a8d2c584ca93c7405f15c22cdfe53c29896e3",
+    "chainId": "eip155:56",
+    "name": "DexTools on BNB Smart Chain",
+    "precision": 18,
+    "color": "#8EDAEA",
+    "icon": "https://assets.coingecko.com/coins/images/11603/thumb/dext.png?1696511498",
+    "symbol": "DEXT",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xe91cd52bd65fe23a3eae40e3eb87180e8306399f": {
+    "assetId": "eip155:56/bep20:0xe91cd52bd65fe23a3eae40e3eb87180e8306399f",
+    "chainId": "eip155:56",
+    "name": "Real Realm",
+    "precision": 18,
+    "color": "#D6D3D6",
+    "icon": "https://assets.coingecko.com/coins/images/20880/thumb/vYjuvOhQ_400x400.jpg?1696520273",
+    "symbol": "REAL",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xe932902b2f8b7d4959a311b16b2672501c42b3f7": {
+    "assetId": "eip155:56/bep20:0xe932902b2f8b7d4959a311b16b2672501c42b3f7",
+    "chainId": "eip155:56",
+    "name": "Memeverse",
+    "precision": 18,
+    "color": "#141808",
+    "icon": "https://assets.coingecko.com/coins/images/25098/thumb/meme.jpg?1696524248",
+    "symbol": "MEME",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xe95fd76cf16008c12ff3b3a937cb16cd9cc20284": {
+    "assetId": "eip155:56/bep20:0xe95fd76cf16008c12ff3b3a937cb16cd9cc20284",
+    "chainId": "eip155:56",
+    "name": "Sensitrust on BNB Smart Chain",
+    "precision": 18,
+    "color": "#218DB1",
+    "icon": "https://assets.coingecko.com/coins/images/15035/thumb/SETS-token-logo-200.png?1696514695",
+    "symbol": "SETS",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xe96a53af382c669848a87d42df3af6e08c34fa5e": {
+    "assetId": "eip155:56/bep20:0xe96a53af382c669848a87d42df3af6e08c34fa5e",
+    "chainId": "eip155:56",
+    "name": "GucciPepe",
+    "precision": 18,
+    "color": "#6E462C",
+    "icon": "https://assets.coingecko.com/coins/images/30425/thumb/200x200.png?1696529313",
+    "symbol": "GUCCIPEPE",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xe9a5c635c51002fa5f377f956a8ce58573d63d91": {
+    "assetId": "eip155:56/bep20:0xe9a5c635c51002fa5f377f956a8ce58573d63d91",
+    "chainId": "eip155:56",
+    "name": "Tethereum",
+    "precision": 18,
+    "color": "#C79B44",
+    "icon": "https://assets.coingecko.com/coins/images/30864/thumb/200x200.png?1696529711",
+    "symbol": "T99",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xe9b9c1c38dab5eab3b7e2ad295425e89bd8db066": {
+    "assetId": "eip155:56/bep20:0xe9b9c1c38dab5eab3b7e2ad295425e89bd8db066",
+    "chainId": "eip155:56",
+    "name": "Playcent on BNB Smart Chain",
+    "precision": 18,
+    "color": "#746CA4",
+    "icon": "https://assets.coingecko.com/coins/images/14335/thumb/1_B5bFcgBld5poUj_c-_K1Jw.png?1696514023",
+    "symbol": "PCNT",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xe9c1b765c3b69ff6178c7310fe3eb106421870a5": {
+    "assetId": "eip155:56/bep20:0xe9c1b765c3b69ff6178c7310fe3eb106421870a5",
+    "chainId": "eip155:56",
+    "name": "Buff Coin",
+    "precision": 18,
+    "color": "#2A8CC2",
+    "icon": "https://assets.coingecko.com/coins/images/28370/thumb/logo.png?1696527373",
+    "symbol": "BUFF",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xe9c64384deb0c2bf06d991a8d708c77eb545e3d5": {
+    "assetId": "eip155:56/bep20:0xe9c64384deb0c2bf06d991a8d708c77eb545e3d5",
+    "chainId": "eip155:56",
+    "name": "Ridotto on BNB Smart Chain",
+    "precision": 18,
+    "color": "#2C54BC",
+    "icon": "https://assets.coingecko.com/coins/images/18671/thumb/200x200_%2832%29.png?1696518141",
+    "symbol": "RDT",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xe9c803f48dffe50180bd5b01dc04da939e3445fc": {
+    "assetId": "eip155:56/bep20:0xe9c803f48dffe50180bd5b01dc04da939e3445fc",
+    "chainId": "eip155:56",
+    "name": "Velas on BNB Smart Chain",
+    "precision": 18,
+    "color": "#0434C4",
+    "icon": "https://assets.coingecko.com/coins/images/9651/thumb/logo_blue.png?1696509720",
+    "symbol": "VLX",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xe9d6d6d7cde5c7d45927f8c37460d932e612c902": {
+    "assetId": "eip155:56/bep20:0xe9d6d6d7cde5c7d45927f8c37460d932e612c902",
+    "chainId": "eip155:56",
+    "name": "Stella Fantasy Token",
+    "precision": 18,
+    "color": "#34342C",
+    "icon": "https://assets.coingecko.com/coins/images/29717/thumb/Token_Logo_SFTY.png?1696528648",
+    "symbol": "SFTY",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xe9d7023f2132d55cbd4ee1f78273cb7a3e74f10a": {
+    "assetId": "eip155:56/bep20:0xe9d7023f2132d55cbd4ee1f78273cb7a3e74f10a",
+    "chainId": "eip155:56",
+    "name": "Dark Energy Crystals on BNB Smart Chain",
+    "precision": 3,
+    "color": "#290545",
+    "icon": "https://assets.coingecko.com/coins/images/12923/thumb/DEC_token.png?1696512711",
+    "symbol": "DEC",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xe9d78bf51ae04c7e1263a76ed89a65537b9ca903": {
+    "assetId": "eip155:56/bep20:0xe9d78bf51ae04c7e1263a76ed89a65537b9ca903",
+    "chainId": "eip155:56",
+    "name": "Game Coin",
+    "precision": 9,
+    "color": "#C3A24D",
+    "icon": "https://assets.coingecko.com/coins/images/19893/thumb/gmex.png?1696519314",
+    "symbol": "GMEX",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xe9da86435265477bcde46c7e9aa7ace5aa7e2d18": {
+    "assetId": "eip155:56/bep20:0xe9da86435265477bcde46c7e9aa7ace5aa7e2d18",
+    "chainId": "eip155:56",
+    "name": "BlocX",
+    "precision": 18,
+    "color": "#040507",
+    "icon": "https://assets.coingecko.com/coins/images/31571/thumb/BLOCX.jpg?1696530383",
+    "symbol": "BLX",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xe9e7cea3dedca5984780bafc599bd69add087d56": {
+    "assetId": "eip155:56/bep20:0xe9e7cea3dedca5984780bafc599bd69add087d56",
+    "chainId": "eip155:56",
+    "name": "Binance Peg BUSD on BNB Smart Chain",
+    "precision": 18,
+    "color": "#F4BC0C",
+    "icon": "https://assets.coingecko.com/coins/images/31273/thumb/new_binance-peg-busd.png?1696530096",
+    "symbol": "BUSD",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xe9ed9f1dde9c831937969f18ab047393a53b07da": {
+    "assetId": "eip155:56/bep20:0xe9ed9f1dde9c831937969f18ab047393a53b07da",
+    "chainId": "eip155:56",
+    "name": "Onlinebase",
+    "precision": 18,
+    "color": "#A7A99F",
+    "icon": "https://assets.coingecko.com/coins/images/30953/thumb/image.jpg?1696529791",
+    "symbol": "ONLINE",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xea136fc555e695ba96d22e10b7e2151c4c6b2a20": {
+    "assetId": "eip155:56/bep20:0xea136fc555e695ba96d22e10b7e2151c4c6b2a20",
+    "chainId": "eip155:56",
+    "name": "ReSource Protocol on BNB Smart Chain",
+    "precision": 18,
+    "color": "#F1E4FC",
+    "icon": "https://assets.coingecko.com/coins/images/20740/thumb/source.png?1696520138",
+    "symbol": "SOURCE",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xea1f0de488c560d3e0a96cfbce178dc1c27706d2": {
+    "assetId": "eip155:56/bep20:0xea1f0de488c560d3e0a96cfbce178dc1c27706d2",
+    "chainId": "eip155:56",
+    "name": "FlokiSanta",
+    "precision": 9,
+    "color": "#9C3E38",
+    "icon": "https://assets.coingecko.com/coins/images/31954/thumb/logotrans200x200.png?1696530760",
+    "symbol": "FLOKIS",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xea395dfafed39924988b475f2ca7f4c72655203a": {
+    "assetId": "eip155:56/bep20:0xea395dfafed39924988b475f2ca7f4c72655203a",
+    "chainId": "eip155:56",
+    "name": "Cryptopolis",
+    "precision": 18,
+    "color": "#244541",
+    "icon": "https://assets.coingecko.com/coins/images/19163/thumb/PgnW_SGk_400x400.jpg?1696518613",
+    "symbol": "CPO",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xea51801b8f5b88543ddad3d1727400c15b209d8f": {
+    "assetId": "eip155:56/bep20:0xea51801b8f5b88543ddad3d1727400c15b209d8f",
+    "chainId": "eip155:56",
+    "name": "Inuko Finance",
+    "precision": 18,
+    "color": "#CA9B87",
+    "icon": "https://assets.coingecko.com/coins/images/27821/thumb/inuko-logo-200x200.png?1696526840",
+    "symbol": "INUKO",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xea89199344a492853502a7a699cc4230854451b8": {
+    "assetId": "eip155:56/bep20:0xea89199344a492853502a7a699cc4230854451b8",
+    "chainId": "eip155:56",
+    "name": "ONINO",
+    "precision": 18,
+    "color": "#E4EEEE",
+    "icon": "https://assets.coingecko.com/coins/images/9405/thumb/Oni_Round.png?1696509502",
+    "symbol": "ONI",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xea917ec08ab64c030e67a80559ad569f48aa360a": {
+    "assetId": "eip155:56/bep20:0xea917ec08ab64c030e67a80559ad569f48aa360a",
+    "chainId": "eip155:56",
+    "name": "Perpetual Wallet",
+    "precision": 18,
+    "color": "#14B6D6",
+    "icon": "https://assets.coingecko.com/coins/images/29648/thumb/logo.png?1696528584",
+    "symbol": "PWT",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xeac639f6336e263dde3ed571e00d1c128634ebb0": {
+    "assetId": "eip155:56/bep20:0xeac639f6336e263dde3ed571e00d1c128634ebb0",
+    "chainId": "eip155:56",
+    "name": "Land Of Heroes",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/32637/thumb/logo_LOH.png?1698917138",
+    "symbol": "LOH",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xeac9873291ddaca754ea5642114151f3035c67a2": {
+    "assetId": "eip155:56/bep20:0xeac9873291ddaca754ea5642114151f3035c67a2",
+    "chainId": "eip155:56",
+    "name": "Decubate",
+    "precision": 18,
+    "color": "#930664",
+    "icon": "https://assets.coingecko.com/coins/images/16909/thumb/Logo-Decubate_200x200.png?1696516480",
+    "symbol": "DCB",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xeb05ac86959725f9e7284cf67b052ba82aeb446e": {
+    "assetId": "eip155:56/bep20:0xeb05ac86959725f9e7284cf67b052ba82aeb446e",
+    "chainId": "eip155:56",
+    "name": "All In GPT",
+    "precision": 18,
+    "color": "#F5D8AC",
+    "icon": "https://assets.coingecko.com/coins/images/29679/thumb/Logo.png?1696528613",
+    "symbol": "AIGPT",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xeb33cbbe6f1e699574f10606ed9a495a196476df": {
+    "assetId": "eip155:56/bep20:0xeb33cbbe6f1e699574f10606ed9a495a196476df",
+    "chainId": "eip155:56",
+    "name": "DeFi Coin",
+    "precision": 9,
+    "color": "#1353DE",
+    "icon": "https://assets.coingecko.com/coins/images/17020/thumb/deficoin.png?1696516584",
+    "symbol": "DEFC",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xeb34de0c4b2955ce0ff1526cdf735c9e6d249d09": {
+    "assetId": "eip155:56/bep20:0xeb34de0c4b2955ce0ff1526cdf735c9e6d249d09",
+    "chainId": "eip155:56",
+    "name": "Obyte on BNB Smart Chain",
+    "precision": 18,
+    "color": "#2C3C4C",
+    "icon": "https://assets.coingecko.com/coins/images/561/thumb/byteball.png?1696501768",
+    "symbol": "GBYTE",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xeb52620b04e8eacfd795353f2827673887f292e0": {
+    "assetId": "eip155:56/bep20:0xeb52620b04e8eacfd795353f2827673887f292e0",
+    "chainId": "eip155:56",
+    "name": "GOLCOIN on BNB Smart Chain",
+    "precision": 18,
+    "color": "#D00696",
+    "icon": "https://assets.coingecko.com/coins/images/27341/thumb/logo_in_the_middle_.png?1696526388",
+    "symbol": "GOLC",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xeb953eda0dc65e3246f43dc8fa13f35623bdd5ed": {
+    "assetId": "eip155:56/bep20:0xeb953eda0dc65e3246f43dc8fa13f35623bdd5ed",
+    "chainId": "eip155:56",
+    "name": "Raini on BNB Smart Chain",
+    "precision": 18,
+    "color": "#9879E6",
+    "icon": "https://assets.coingecko.com/coins/images/14491/thumb/logo-200x200.png?1696514176",
+    "symbol": "RAINI",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xeb986da994e4a118d5956b02d8b7c3c7ce373674": {
+    "assetId": "eip155:56/bep20:0xeb986da994e4a118d5956b02d8b7c3c7ce373674",
+    "chainId": "eip155:56",
+    "name": "Gather on BNB Smart Chain",
+    "precision": 18,
+    "color": "#3C54E4",
+    "icon": "https://assets.coingecko.com/coins/images/12458/thumb/Gather-Logo-Working-File.png?1696512278",
+    "symbol": "GTH",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xeba457b55fb145ff4451bc50fb6c373e5caa493f": {
+    "assetId": "eip155:56/bep20:0xeba457b55fb145ff4451bc50fb6c373e5caa493f",
+    "chainId": "eip155:56",
+    "name": "SoliMax on BNB Smart Chain",
+    "precision": 18,
+    "color": "#DBA6E6",
+    "icon": "https://assets.coingecko.com/coins/images/29440/thumb/slmlogo.png?1696528388",
+    "symbol": "SLM",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xeba6a22ba57994b6600671ec9ec8389272cbe71d": {
+    "assetId": "eip155:56/bep20:0xeba6a22ba57994b6600671ec9ec8389272cbe71d",
+    "chainId": "eip155:56",
+    "name": "SmileAI",
+    "precision": 18,
+    "color": "#D1B752",
+    "icon": "https://assets.coingecko.com/coins/images/32244/thumb/Smile-Ai-200x200.png?1696953169",
+    "symbol": "SMILE",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xebaffc2d2ea7c66fb848c48124b753f93a0a90ec": {
+    "assetId": "eip155:56/bep20:0xebaffc2d2ea7c66fb848c48124b753f93a0a90ec",
+    "chainId": "eip155:56",
+    "name": "Asia Coin on BNB Smart Chain",
+    "precision": 18,
+    "color": "#14249A",
+    "icon": "https://assets.coingecko.com/coins/images/18589/thumb/Ou7mp_R1TQ5B9vsBiZ8oQnSv36M6hiA2hESxV_7YSw0.png?1696518065",
+    "symbol": "ASIA",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xebbaeff6217d22e7744394061d874015709b8141": {
+    "assetId": "eip155:56/bep20:0xebbaeff6217d22e7744394061d874015709b8141",
+    "chainId": "eip155:56",
+    "name": "Wam",
+    "precision": 18,
+    "color": "#F1DCE6",
+    "icon": "https://assets.coingecko.com/coins/images/21576/thumb/KrJueEpI_400x400.jpg?1696520936",
+    "symbol": "WAM",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xebc148d40313be9c9f214d3beb9f2ddebec0ec52": {
+    "assetId": "eip155:56/bep20:0xebc148d40313be9c9f214d3beb9f2ddebec0ec52",
+    "chainId": "eip155:56",
+    "name": "StereoAI",
+    "precision": 18,
+    "color": "#06DD7D",
+    "icon": "https://assets.coingecko.com/coins/images/29187/thumb/icon-200x200.png?1696528145",
+    "symbol": "STAI",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xebd949aacfc681787d3d091fa2929e4413e0e4e1": {
+    "assetId": "eip155:56/bep20:0xebd949aacfc681787d3d091fa2929e4413e0e4e1",
+    "chainId": "eip155:56",
+    "name": "Arable Protocol on BNB Smart Chain",
+    "precision": 18,
+    "color": "#BFC8C0",
+    "icon": "https://assets.coingecko.com/coins/images/23659/thumb/acre_token-02.png?1696522862",
+    "symbol": "ACRE",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xec126e20e7cb114dd3ba356100eaca2cc2921322": {
+    "assetId": "eip155:56/bep20:0xec126e20e7cb114dd3ba356100eaca2cc2921322",
+    "chainId": "eip155:56",
+    "name": "Solar Energy",
+    "precision": 18,
+    "color": "#7C4C2C",
+    "icon": "https://assets.coingecko.com/coins/images/20935/thumb/seg.png?1696520324",
+    "symbol": "SEG",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xec1270d291c6c0448660bde2f74a674a5c303e3b": {
+    "assetId": "eip155:56/bep20:0xec1270d291c6c0448660bde2f74a674a5c303e3b",
+    "chainId": "eip155:56",
+    "name": "Noahswap",
+    "precision": 8,
+    "color": "#66DE46",
+    "icon": "https://assets.coingecko.com/coins/images/32043/thumb/Noahswap_Token.png?1696530840",
+    "symbol": "NOAH",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xec15a508a187e8ddfe572a5423faa82bbdd65120": {
+    "assetId": "eip155:56/bep20:0xec15a508a187e8ddfe572a5423faa82bbdd65120",
+    "chainId": "eip155:56",
+    "name": "Babylons",
+    "precision": 18,
+    "color": "#B2988D",
+    "icon": "https://assets.coingecko.com/coins/images/17838/thumb/CW32Ubsk_400x400.jpg?1696517359",
+    "symbol": "BABI",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xec3422ef92b2fb59e84c8b02ba73f1fe84ed8d71": {
+    "assetId": "eip155:56/bep20:0xec3422ef92b2fb59e84c8b02ba73f1fe84ed8d71",
+    "chainId": "eip155:56",
+    "name": "Venus DOGE",
+    "precision": 8,
+    "color": "#C4A434",
+    "icon": "https://assets.coingecko.com/coins/images/15058/thumb/doge.f7fbdf1d.png?1696514717",
+    "symbol": "VDOGE",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xec43d3153c1f08946fa71cdd3a14af64fd58f27e": {
+    "assetId": "eip155:56/bep20:0xec43d3153c1f08946fa71cdd3a14af64fd58f27e",
+    "chainId": "eip155:56",
+    "name": "Pawn My NFT",
+    "precision": 9,
+    "color": "#181818",
+    "icon": "https://assets.coingecko.com/coins/images/19998/thumb/FcVyUcDq_400x400.jpg?1696519420",
+    "symbol": "PNFT",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xec583f25a049cc145da9a256cdbe9b6201a705ff": {
+    "assetId": "eip155:56/bep20:0xec583f25a049cc145da9a256cdbe9b6201a705ff",
+    "chainId": "eip155:56",
+    "name": "Drep on BNB Smart Chain",
+    "precision": 18,
+    "color": "#E1ECF1",
+    "icon": "https://assets.coingecko.com/coins/images/14578/thumb/KotgsCgS_400x400.jpg?1696514258",
+    "symbol": "DREP",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xeca41281c24451168a37211f0bc2b8645af45092": {
+    "assetId": "eip155:56/bep20:0xeca41281c24451168a37211f0bc2b8645af45092",
+    "chainId": "eip155:56",
+    "name": "TokenPocket Token on BNB Smart Chain",
+    "precision": 4,
+    "color": "#F4F8F6",
+    "icon": "https://assets.coingecko.com/coins/images/7603/thumb/pocket.jpg?1696507861",
+    "symbol": "TPT",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xeca88125a5adbe82614ffc12d0db554e2e2867c8": {
+    "assetId": "eip155:56/bep20:0xeca88125a5adbe82614ffc12d0db554e2e2867c8",
+    "chainId": "eip155:56",
+    "name": "Venus USDC",
+    "precision": 8,
+    "color": "#DCDBD6",
+    "icon": "https://assets.coingecko.com/coins/images/13906/thumb/usdc.png?1696513648",
+    "symbol": "VUSDC",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xece1688ccde78c6d511c57c30a05d05f014b0234": {
+    "assetId": "eip155:56/bep20:0xece1688ccde78c6d511c57c30a05d05f014b0234",
+    "chainId": "eip155:56",
+    "name": "Zetos",
+    "precision": 18,
+    "color": "#E4F1F2",
+    "icon": "https://assets.coingecko.com/coins/images/30700/thumb/8hWUfQNF_400x400.jpg?1696529570",
+    "symbol": "ZES",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xeceb785a646f2c5ac759aa30d0fc85841ba004f3": {
+    "assetId": "eip155:56/bep20:0xeceb785a646f2c5ac759aa30d0fc85841ba004f3",
+    "chainId": "eip155:56",
+    "name": "BABYLONG",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/33039/thumb/babylong_coingecko.png?1700405351",
+    "symbol": "BABYLONG",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xeceb87cf00dcbf2d4e2880223743ff087a995ad9": {
+    "assetId": "eip155:56/bep20:0xeceb87cf00dcbf2d4e2880223743ff087a995ad9",
+    "chainId": "eip155:56",
+    "name": "Numbers Protocol on BNB Smart Chain",
+    "precision": 18,
+    "color": "#CDCDF8",
+    "icon": "https://assets.coingecko.com/coins/images/20495/thumb/NP_Social_media_profile_pic.png?1696519902",
+    "symbol": "NUM",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xed00fc7d48b57b81fe65d1ce71c0985e4cf442cb": {
+    "assetId": "eip155:56/bep20:0xed00fc7d48b57b81fe65d1ce71c0985e4cf442cb",
+    "chainId": "eip155:56",
+    "name": "Chirpley",
+    "precision": 18,
+    "color": "#F44C44",
+    "icon": "https://assets.coingecko.com/coins/images/27243/thumb/Chirpley-Logo_200x200.png?1696526293",
+    "symbol": "CHRP",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xed0353560c43f3e0336d197e4081c81e1015dd51": {
+    "assetId": "eip155:56/bep20:0xed0353560c43f3e0336d197e4081c81e1015dd51",
+    "chainId": "eip155:56",
+    "name": "FLOKI SHIBA PEPE CEO",
+    "precision": 18,
+    "color": "#84E8E9",
+    "icon": "https://assets.coingecko.com/coins/images/29599/thumb/24108.png?1696528537",
+    "symbol": "3CEO",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xed0c1c9c64ff7c7cc37c3af0dfcf5b02efe0bb5f": {
+    "assetId": "eip155:56/bep20:0xed0c1c9c64ff7c7cc37c3af0dfcf5b02efe0bb5f",
+    "chainId": "eip155:56",
+    "name": "BitOrbit",
+    "precision": 18,
+    "color": "#D9E3F6",
+    "icon": "https://assets.coingecko.com/coins/images/19850/thumb/bitorbit.PNG?1696519273",
+    "symbol": "BITORB",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xed1a89fa419e3d1042d4ea2e938fb62a216594c6": {
+    "assetId": "eip155:56/bep20:0xed1a89fa419e3d1042d4ea2e938fb62a216594c6",
+    "chainId": "eip155:56",
+    "name": "Baby Doge CEO",
+    "precision": 9,
+    "color": "#91BAF4",
+    "icon": "https://assets.coingecko.com/coins/images/29406/thumb/200x200.png?1696528356",
+    "symbol": "BABYCEO",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xed236c32f695c83efde232c288701d6f9c23e60e": {
+    "assetId": "eip155:56/bep20:0xed236c32f695c83efde232c288701d6f9c23e60e",
+    "chainId": "eip155:56",
+    "name": "Vertek",
+    "precision": 18,
+    "color": "#5856BE",
+    "icon": "https://assets.coingecko.com/coins/images/28958/thumb/vertek-mark-color-round%282%29.png?1696527931",
+    "symbol": "VRTK",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xed28a457a5a76596ac48d87c0f577020f6ea1c4c": {
+    "assetId": "eip155:56/bep20:0xed28a457a5a76596ac48d87c0f577020f6ea1c4c",
+    "chainId": "eip155:56",
+    "name": "pTokens BTC  OLD  on BNB Smart Chain",
+    "precision": 18,
+    "color": "#F17062",
+    "icon": "https://assets.coingecko.com/coins/images/10805/thumb/J51iIea.png?1696510764",
+    "symbol": "PBTC",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xed3d88d3321f82e5c25ca9ac6d5b427ec93f567e": {
+    "assetId": "eip155:56/bep20:0xed3d88d3321f82e5c25ca9ac6d5b427ec93f567e",
+    "chainId": "eip155:56",
+    "name": "APEmove",
+    "precision": 18,
+    "color": "#A5A5A5",
+    "icon": "https://assets.coingecko.com/coins/images/26594/thumb/Group_48096531.png?1696525669",
+    "symbol": "APE",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xed4bb33f20f32e989af975196e86019773a7cff0": {
+    "assetId": "eip155:56/bep20:0xed4bb33f20f32e989af975196e86019773a7cff0",
+    "chainId": "eip155:56",
+    "name": "UTU Coin on BNB Smart Chain",
+    "precision": 18,
+    "color": "#E4CC3C",
+    "icon": "https://assets.coingecko.com/coins/images/12831/thumb/Aa5nmbkJ_400x400.png?1696512622",
+    "symbol": "UTU",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xed66ec1acb7dbd0c01cccff33e3ff1f423057c21": {
+    "assetId": "eip155:56/bep20:0xed66ec1acb7dbd0c01cccff33e3ff1f423057c21",
+    "chainId": "eip155:56",
+    "name": "Virtual Tourist",
+    "precision": 18,
+    "color": "#317CB9",
+    "icon": "https://assets.coingecko.com/coins/images/25186/thumb/200x.png?1696524330",
+    "symbol": "VT",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xed8c8aa8299c10f067496bb66f8cc7fb338a3405": {
+    "assetId": "eip155:56/bep20:0xed8c8aa8299c10f067496bb66f8cc7fb338a3405",
+    "chainId": "eip155:56",
+    "name": "Prosper on BNB Smart Chain",
+    "precision": 18,
+    "color": "#5D12E7",
+    "icon": "https://assets.coingecko.com/coins/images/13668/thumb/heD6cg22l3sF5VgPh4G1xC6lnKEWXJif-jbaqUpv8CDP6jbWaqn9UjBdkXWNrw1CewaQOxb8zXRdNeNJWWiUDjfsEl_d7E3bPLg4cFoilQF5TGKHfWyJlnpm3UYc9ytvRvOjxOevMuiu8-lusnNoOcwgsJpMkYWHqe322GAxLt0_30kFMVAcjEDUrOlkK6hUYi0m9P433mvNlOm.jpg?1696513418",
+    "symbol": "PROS",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xedd52d44de950ccc3b2e6abdf0da8e99bb0ec480": {
+    "assetId": "eip155:56/bep20:0xedd52d44de950ccc3b2e6abdf0da8e99bb0ec480",
+    "chainId": "eip155:56",
+    "name": "Crazy Tiger",
+    "precision": 9,
+    "color": "#343856",
+    "icon": "https://assets.coingecko.com/coins/images/29820/thumb/output-onlinepngtools_%281%29.png?1696528748",
+    "symbol": "CRAZYTIGER",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xede1f9cdb98b4ca6a804de268b0aca18dce192e8": {
+    "assetId": "eip155:56/bep20:0xede1f9cdb98b4ca6a804de268b0aca18dce192e8",
+    "chainId": "eip155:56",
+    "name": "HeroPark",
+    "precision": 18,
+    "color": "#F0EEFC",
+    "icon": "https://assets.coingecko.com/coins/images/21951/thumb/FA_Hero_Park_Logo_Blue.png?1696521300",
+    "symbol": "HP",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xede2f059545e8cde832d8da3985caacf795b8765": {
+    "assetId": "eip155:56/bep20:0xede2f059545e8cde832d8da3985caacf795b8765",
+    "chainId": "eip155:56",
+    "name": "Ormeus Ecosystem on BNB Smart Chain",
+    "precision": 18,
+    "color": "#044C44",
+    "icon": "https://assets.coingecko.com/coins/images/8923/thumb/logo_eco_low.png?1696509072",
+    "symbol": "ECO",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xede5020492be8e265db6141cb0a1d2df9dbae9bb": {
+    "assetId": "eip155:56/bep20:0xede5020492be8e265db6141cb0a1d2df9dbae9bb",
+    "chainId": "eip155:56",
+    "name": "Dough",
+    "precision": 18,
+    "color": "#D49C4C",
+    "icon": "https://assets.coingecko.com/coins/images/18800/thumb/dough.png?1696518262",
+    "symbol": "DOUGH",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xedf3ce4dd6725650a8e9398e5c6398d061fa7955": {
+    "assetId": "eip155:56/bep20:0xedf3ce4dd6725650a8e9398e5c6398d061fa7955",
+    "chainId": "eip155:56",
+    "name": "VEMP on BNB Smart Chain",
+    "precision": 18,
+    "color": "#64CC8C",
+    "icon": "https://assets.coingecko.com/coins/images/18074/thumb/VEMP_Token_200x200.png?1696517581",
+    "symbol": "VEMP",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xee0736c93e98b2e9fbf11f47db19e7b68db71e94": {
+    "assetId": "eip155:56/bep20:0xee0736c93e98b2e9fbf11f47db19e7b68db71e94",
+    "chainId": "eip155:56",
+    "name": "FarmerDoge",
+    "precision": 18,
+    "color": "#AD861F",
+    "icon": "https://assets.coingecko.com/coins/images/19910/thumb/farmer.jpeg?1696519330",
+    "symbol": "CROP",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xee11db54b66e4dbb99d497573106615bb6ac03ab": {
+    "assetId": "eip155:56/bep20:0xee11db54b66e4dbb99d497573106615bb6ac03ab",
+    "chainId": "eip155:56",
+    "name": "Crypto Puffs on BNB Smart Chain",
+    "precision": 18,
+    "color": "#63B0EB",
+    "icon": "https://assets.coingecko.com/coins/images/17672/thumb/puff.PNG?1696517202",
+    "symbol": "PUFFS",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xee5b03b769ca6c690d140cafb52fc8de3f38fc28": {
+    "assetId": "eip155:56/bep20:0xee5b03b769ca6c690d140cafb52fc8de3f38fc28",
+    "chainId": "eip155:56",
+    "name": "HyperChainX",
+    "precision": 7,
+    "color": "#80C415",
+    "icon": "https://assets.coingecko.com/coins/images/27847/thumb/IMG_20221015_231037_796.png?1696526866",
+    "symbol": "HYPER",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xee7e8c85956d32c64bafdcded3f43b3c39b1ce2f": {
+    "assetId": "eip155:56/bep20:0xee7e8c85956d32c64bafdcded3f43b3c39b1ce2f",
+    "chainId": "eip155:56",
+    "name": "WEB4 AI",
+    "precision": 9,
+    "color": "#D8D4D0",
+    "icon": "https://assets.coingecko.com/coins/images/29165/thumb/photo_2023-02-21_16.29.27.png?1696528123",
+    "symbol": "WEB4",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xee7f7c9459d8e910209849ed010c96f2dfe39d3b": {
+    "assetId": "eip155:56/bep20:0xee7f7c9459d8e910209849ed010c96f2dfe39d3b",
+    "chainId": "eip155:56",
+    "name": "Almira Wallet",
+    "precision": 18,
+    "color": "#7D39FC",
+    "icon": "https://assets.coingecko.com/coins/images/29562/thumb/Untitled_design_%282%29.png?1696528502",
+    "symbol": "ALMR",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xee9801669c6138e84bd50deb500827b776777d28": {
+    "assetId": "eip155:56/bep20:0xee9801669c6138e84bd50deb500827b776777d28",
+    "chainId": "eip155:56",
+    "name": "O3 Swap on BNB Smart Chain",
+    "precision": 18,
+    "color": "#D7F0E8",
+    "icon": "https://assets.coingecko.com/coins/images/15460/thumb/o3.png?1696515107",
+    "symbol": "O3",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xeeeeeb57642040be42185f49c52f7e9b38f8eeee": {
+    "assetId": "eip155:56/bep20:0xeeeeeb57642040be42185f49c52f7e9b38f8eeee",
+    "chainId": "eip155:56",
+    "name": "Elk Finance on BNB Smart Chain",
+    "precision": 18,
+    "color": "#CDCFCD",
+    "icon": "https://assets.coingecko.com/coins/images/17813/thumb/elk.png?1696517333",
+    "symbol": "ELK",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xef00278d7eadf3b2c05267a2f185e468ad7eab7d": {
+    "assetId": "eip155:56/bep20:0xef00278d7eadf3b2c05267a2f185e468ad7eab7d",
+    "chainId": "eip155:56",
+    "name": "PepePAD on BNB Smart Chain",
+    "precision": 18,
+    "color": "#597D3F",
+    "icon": "https://assets.coingecko.com/coins/images/30321/thumb/logo200.png?1696529222",
+    "symbol": "PEPE",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xef032f652fce3a0effce3796a68eb978b465a336": {
+    "assetId": "eip155:56/bep20:0xef032f652fce3a0effce3796a68eb978b465a336",
+    "chainId": "eip155:56",
+    "name": "Moochii",
+    "precision": 9,
+    "color": "#F5DDCF",
+    "icon": "https://assets.coingecko.com/coins/images/15444/thumb/QUVbHkC.png?1696515088",
+    "symbol": "MOOCHII",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xef33fd3d46c3efa1804b513e3ddb7fdff215def1": {
+    "assetId": "eip155:56/bep20:0xef33fd3d46c3efa1804b513e3ddb7fdff215def1",
+    "chainId": "eip155:56",
+    "name": "Myra Token",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/32685/thumb/myra_logo_200.png?1698938413",
+    "symbol": "MYR",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xef7d50069406a2f5a53806f7250a6c0f17ad9dcd": {
+    "assetId": "eip155:56/bep20:0xef7d50069406a2f5a53806f7250a6c0f17ad9dcd",
+    "chainId": "eip155:56",
+    "name": "beFITTER",
+    "precision": 18,
+    "color": "#F6EEE0",
+    "icon": "https://assets.coingecko.com/coins/images/25995/thumb/FIU_Token.jpg?1696525073",
+    "symbol": "FIU",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xef843fb4c112e618b262f6897f479474e4586f05": {
+    "assetId": "eip155:56/bep20:0xef843fb4c112e618b262f6897f479474e4586f05",
+    "chainId": "eip155:56",
+    "name": "Monaco Planet",
+    "precision": 18,
+    "color": "#456E9B",
+    "icon": "https://assets.coingecko.com/coins/images/21742/thumb/mona.PNG?1696521096",
+    "symbol": "MONA",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xef869b840ab248c2c90f9d8a7c7a6c9298cab888": {
+    "assetId": "eip155:56/bep20:0xef869b840ab248c2c90f9d8a7c7a6c9298cab888",
+    "chainId": "eip155:56",
+    "name": "Rottolabs",
+    "precision": 9,
+    "color": "#680596",
+    "icon": "https://assets.coingecko.com/coins/images/29201/thumb/ROTTO.png?1696528160",
+    "symbol": "ROTTO",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xef9481115ff33e94d3e28a52d3a8f642bf3521e5": {
+    "assetId": "eip155:56/bep20:0xef9481115ff33e94d3e28a52d3a8f642bf3521e5",
+    "chainId": "eip155:56",
+    "name": "CasperPad",
+    "precision": 18,
+    "color": "#643CF4",
+    "icon": "https://assets.coingecko.com/coins/images/21469/thumb/CasperPad_New_Logo.png?1696520830",
+    "symbol": "CSPD",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xefd1c4bc2d22639ea86b70e249eec0ccabf54f06": {
+    "assetId": "eip155:56/bep20:0xefd1c4bc2d22639ea86b70e249eec0ccabf54f06",
+    "chainId": "eip155:56",
+    "name": "Plug Power AI",
+    "precision": 9,
+    "color": "#D3E8D2",
+    "icon": "https://assets.coingecko.com/coins/images/30420/thumb/Logo-plug-power-AI-crypto-project-bsc-bnb-200x200-0xeFd1C4bC2D22639Ea86B70e249EEc0ccabf54f06.png?1696529308",
+    "symbol": "PPAI",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xefdb93e14cd63b08561e86d3a30aae0f3aabad9a": {
+    "assetId": "eip155:56/bep20:0xefdb93e14cd63b08561e86d3a30aae0f3aabad9a",
+    "chainId": "eip155:56",
+    "name": "Nexuspad",
+    "precision": 18,
+    "color": "#060A32",
+    "icon": "https://assets.coingecko.com/coins/images/28345/thumb/NEXUS.png?1696527350",
+    "symbol": "NEXUS",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xf0068a3657526bc7f824b55575714ebffe9ca67e": {
+    "assetId": "eip155:56/bep20:0xf0068a3657526bc7f824b55575714ebffe9ca67e",
+    "chainId": "eip155:56",
+    "name": "PandaGrown on BNB Smart Chain",
+    "precision": 18,
+    "color": "#DAEEE2",
+    "icon": "https://assets.coingecko.com/coins/images/31836/thumb/PGA.png?1696530650",
+    "symbol": "PGA",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xf0186490b18cb74619816cfc7feb51cdbe4ae7b9": {
+    "assetId": "eip155:56/bep20:0xf0186490b18cb74619816cfc7feb51cdbe4ae7b9",
+    "chainId": "eip155:56",
+    "name": "Zasset zUSD",
+    "precision": 18,
+    "color": "#1B3643",
+    "icon": "https://assets.coingecko.com/coins/images/17664/thumb/zUSD_200x200.png?1699583794",
+    "symbol": "ZUSD",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xf018aea0a08a5d88674f0837bdac27ab89824dee": {
+    "assetId": "eip155:56/bep20:0xf018aea0a08a5d88674f0837bdac27ab89824dee",
+    "chainId": "eip155:56",
+    "name": "Mad Monkey Guild",
+    "precision": 18,
+    "color": "#504A46",
+    "icon": "https://assets.coingecko.com/coins/images/27226/thumb/LogoAnimate.png?1696526277",
+    "symbol": "MMG",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xf027e525d491ef6ffcc478555fbb3cfabb3406a6": {
+    "assetId": "eip155:56/bep20:0xf027e525d491ef6ffcc478555fbb3cfabb3406a6",
+    "chainId": "eip155:56",
+    "name": "StaFi Staked BNB",
+    "precision": 18,
+    "color": "#04C2C7",
+    "icon": "https://assets.coingecko.com/coins/images/29613/thumb/rBNB.png?1696528549",
+    "symbol": "RBNB",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xf03a2dc374d494fbe894563fe22ee544d826aa50": {
+    "assetId": "eip155:56/bep20:0xf03a2dc374d494fbe894563fe22ee544d826aa50",
+    "chainId": "eip155:56",
+    "name": "Radar on BNB Smart Chain",
+    "precision": 18,
+    "color": "#0A0507",
+    "icon": "https://assets.coingecko.com/coins/images/13909/thumb/RADAR.png?1696513651",
+    "symbol": "RADAR",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xf0902eb0049a4003793bab33f3566a22d2834442": {
+    "assetId": "eip155:56/bep20:0xf0902eb0049a4003793bab33f3566a22d2834442",
+    "chainId": "eip155:56",
+    "name": "Glitch Protocol on BNB Smart Chain",
+    "precision": 18,
+    "color": "#EAF6FA",
+    "icon": "https://assets.coingecko.com/coins/images/13712/thumb/glitch_logo.jpeg?1696513457",
+    "symbol": "GLCH",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xf0997486d784c0ec4ad2ee5b413bd318813dd518": {
+    "assetId": "eip155:56/bep20:0xf0997486d784c0ec4ad2ee5b413bd318813dd518",
+    "chainId": "eip155:56",
+    "name": "Big Crypto Game",
+    "precision": 18,
+    "color": "#14365B",
+    "icon": "https://assets.coingecko.com/coins/images/28306/thumb/bcg-token-symbol-500px-1.png?1696527310",
+    "symbol": "CRYPTO",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xf0aaa03cd21c989c98074aded9c942ff938b2ab0": {
+    "assetId": "eip155:56/bep20:0xf0aaa03cd21c989c98074aded9c942ff938b2ab0",
+    "chainId": "eip155:56",
+    "name": "Play Kingdom",
+    "precision": 18,
+    "color": "#763C94",
+    "icon": "https://assets.coingecko.com/coins/images/30023/thumb/logo_color_p.png?1696528947",
+    "symbol": "PKT",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xf0dcf7ac48f8c745f2920d03dff83f879b80d438": {
+    "assetId": "eip155:56/bep20:0xf0dcf7ac48f8c745f2920d03dff83f879b80d438",
+    "chainId": "eip155:56",
+    "name": "Gami",
+    "precision": 18,
+    "color": "#230611",
+    "icon": "https://assets.coingecko.com/coins/images/24482/thumb/IMG_20220319_170534_629.jpg?1696523660",
+    "symbol": "GAMI",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xf0eb3c9088718a533c8fd64dbcaa5927faed6d18": {
+    "assetId": "eip155:56/bep20:0xf0eb3c9088718a533c8fd64dbcaa5927faed6d18",
+    "chainId": "eip155:56",
+    "name": "Neonomad",
+    "precision": 18,
+    "color": "#E8E8EB",
+    "icon": "https://assets.coingecko.com/coins/images/25068/thumb/SeSkZxx7_400x400.jpeg?1696524216",
+    "symbol": "NNI",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xf106f153bd77be6d5191a07159c99c4219a1cec4": {
+    "assetId": "eip155:56/bep20:0xf106f153bd77be6d5191a07159c99c4219a1cec4",
+    "chainId": "eip155:56",
+    "name": "DCNTRL Network",
+    "precision": 18,
+    "color": "#2072B9",
+    "icon": "https://assets.coingecko.com/coins/images/31558/thumb/dcntrl-logo.png?1696530370",
+    "symbol": "DCNX",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xf124ed9ec309907808b1fbc6bedb2a76927b3665": {
+    "assetId": "eip155:56/bep20:0xf124ed9ec309907808b1fbc6bedb2a76927b3665",
+    "chainId": "eip155:56",
+    "name": "Empire Network on BNB Smart Chain",
+    "precision": 18,
+    "color": "#2F4555",
+    "icon": "https://assets.coingecko.com/coins/images/29240/thumb/empire.jpeg?1696528197",
+    "symbol": "EMPIRE",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xf14d3692b0055db9ca4c04065165d59b87e763f1": {
+    "assetId": "eip155:56/bep20:0xf14d3692b0055db9ca4c04065165d59b87e763f1",
+    "chainId": "eip155:56",
+    "name": "MetaBUSDCoin",
+    "precision": 18,
+    "color": "#D56CC6",
+    "icon": "https://assets.coingecko.com/coins/images/22156/thumb/P3gIa5oH_400x400.jpg?1696521501",
+    "symbol": "MBC",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xf16e81dce15b08f326220742020379b855b87df9": {
+    "assetId": "eip155:56/bep20:0xf16e81dce15b08f326220742020379b855b87df9",
+    "chainId": "eip155:56",
+    "name": "Popsicle Finance on BNB Smart Chain",
+    "precision": 18,
+    "color": "#68E1F9",
+    "icon": "https://assets.coingecko.com/coins/images/14586/thumb/ice.png?1696514266",
+    "symbol": "ICE",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xf1b602fc211e3e2976ef44e4017b764a778197e0": {
+    "assetId": "eip155:56/bep20:0xf1b602fc211e3e2976ef44e4017b764a778197e0",
+    "chainId": "eip155:56",
+    "name": "MTG Token",
+    "precision": 18,
+    "color": "#201C13",
+    "icon": "https://assets.coingecko.com/coins/images/28167/thumb/MTG.png?1696527171",
+    "symbol": "MTG",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xf1b6460e7fa76e7afddfe20740c260b0ec6807a8": {
+    "assetId": "eip155:56/bep20:0xf1b6460e7fa76e7afddfe20740c260b0ec6807a8",
+    "chainId": "eip155:56",
+    "name": "Speciex",
+    "precision": 18,
+    "color": "#E9E1DA",
+    "icon": "https://assets.coingecko.com/coins/images/29079/thumb/SPECIEX-LOGO.png?1696528045",
+    "symbol": "SPEX",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xf1baa6f40267a14f66af9ec0b467fb7f22b09518": {
+    "assetId": "eip155:56/bep20:0xf1baa6f40267a14f66af9ec0b467fb7f22b09518",
+    "chainId": "eip155:56",
+    "name": "Snipe Finance",
+    "precision": 18,
+    "color": "#048004",
+    "icon": "https://assets.coingecko.com/coins/images/31307/thumb/Snipe_Finance.png?1698245722",
+    "symbol": "SNIPE",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xf1c3e69494e27bf067c4076a6f244a46446719d6": {
+    "assetId": "eip155:56/bep20:0xf1c3e69494e27bf067c4076a6f244a46446719d6",
+    "chainId": "eip155:56",
+    "name": "Gains on BNB Smart Chain",
+    "precision": 18,
+    "color": "#527AEF",
+    "icon": "https://assets.coingecko.com/coins/images/14681/thumb/200x200.png?1696514354",
+    "symbol": "GAINS",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xf1ca73caa1c7ad66af11147ba7d5636243af0493": {
+    "assetId": "eip155:56/bep20:0xf1ca73caa1c7ad66af11147ba7d5636243af0493",
+    "chainId": "eip155:56",
+    "name": "RegularPresale",
+    "precision": 18,
+    "color": "#FCB43C",
+    "icon": "https://assets.coingecko.com/coins/images/20797/thumb/W1byu.png?1696520191",
+    "symbol": "REGU",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xf20f2ad6a36e9a4f585755aceb0da750de80ed4e": {
+    "assetId": "eip155:56/bep20:0xf20f2ad6a36e9a4f585755aceb0da750de80ed4e",
+    "chainId": "eip155:56",
+    "name": "Babyrabbit",
+    "precision": 18,
+    "color": "#F1EFAE",
+    "icon": "https://assets.coingecko.com/coins/images/28537/thumb/Babyrabbit.jpeg?1696527530",
+    "symbol": "BABYRABBIT",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xf21768ccbc73ea5b6fd3c687208a7c2def2d966e": {
+    "assetId": "eip155:56/bep20:0xf21768ccbc73ea5b6fd3c687208a7c2def2d966e",
+    "chainId": "eip155:56",
+    "name": "Reef on BNB Smart Chain",
+    "precision": 18,
+    "color": "#A036D8",
+    "icon": "https://assets.coingecko.com/coins/images/13504/thumb/Group_10572.png?1696513266",
+    "symbol": "REEF",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xf218184af829cf2b0019f8e6f0b2423498a36983": {
+    "assetId": "eip155:56/bep20:0xf218184af829cf2b0019f8e6f0b2423498a36983",
+    "chainId": "eip155:56",
+    "name": "MATH on BNB Smart Chain",
+    "precision": 18,
+    "color": "#BEBEBE",
+    "icon": "https://assets.coingecko.com/coins/images/11335/thumb/2020-05-19-token-200.png?1696511257",
+    "symbol": "MATH",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xf224ade71c20f9823e34e0792f72437596b4e28c": {
+    "assetId": "eip155:56/bep20:0xf224ade71c20f9823e34e0792f72437596b4e28c",
+    "chainId": "eip155:56",
+    "name": "ShibonkBSC",
+    "precision": 9,
+    "color": "#CF2C16",
+    "icon": "https://assets.coingecko.com/coins/images/22215/thumb/shibonk-MAINLOGO-CG.png?1696521557",
+    "symbol": "SHIBO",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xf24d63e8b354736c97148b8fc2ffb4f7789fe453": {
+    "assetId": "eip155:56/bep20:0xf24d63e8b354736c97148b8fc2ffb4f7789fe453",
+    "chainId": "eip155:56",
+    "name": "CakeSwap",
+    "precision": 9,
+    "color": "#E0B8CD",
+    "icon": "https://assets.coingecko.com/coins/images/21953/thumb/BRZnDZMh.png?1696521302",
+    "symbol": "CAKESWAP",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xf275e1ac303a4c9d987a2c48b8e555a77fec3f1c": {
+    "assetId": "eip155:56/bep20:0xf275e1ac303a4c9d987a2c48b8e555a77fec3f1c",
+    "chainId": "eip155:56",
+    "name": "DEEPSPACE on BNB Smart Chain",
+    "precision": 9,
+    "color": "#0C060C",
+    "icon": "https://assets.coingecko.com/coins/images/17953/thumb/f1LFu897_400x400.jpg?1696517473",
+    "symbol": "DPS",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xf28db5d3ddaa505937cfe27ee52d91da73b1d740": {
+    "assetId": "eip155:56/bep20:0xf28db5d3ddaa505937cfe27ee52d91da73b1d740",
+    "chainId": "eip155:56",
+    "name": "OreoFi",
+    "precision": 9,
+    "color": "#4071DC",
+    "icon": "https://assets.coingecko.com/coins/images/30113/thumb/photo_2022-12-24_17-22-46.jpg?1696529035",
+    "symbol": "OREO",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xf29480344d8e21efeab7fde39f8d8299056a7fea": {
+    "assetId": "eip155:56/bep20:0xf29480344d8e21efeab7fde39f8d8299056a7fea",
+    "chainId": "eip155:56",
+    "name": "TBCC",
+    "precision": 18,
+    "color": "#D3F0F7",
+    "icon": "https://assets.coingecko.com/coins/images/13353/thumb/200-200.png?1696513119",
+    "symbol": "TBCC",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xf29cccc3460506e8f9bc038d4716c05b76b0441e": {
+    "assetId": "eip155:56/bep20:0xf29cccc3460506e8f9bc038d4716c05b76b0441e",
+    "chainId": "eip155:56",
+    "name": "ReadFi",
+    "precision": 18,
+    "color": "#1CC4BC",
+    "icon": "https://assets.coingecko.com/coins/images/26780/thumb/readfi.png?1696525843",
+    "symbol": "RDF",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xf2ba89a6f9670459ed5aeefbd8db52be912228b8": {
+    "assetId": "eip155:56/bep20:0xf2ba89a6f9670459ed5aeefbd8db52be912228b8",
+    "chainId": "eip155:56",
+    "name": "Minter Network on BNB Smart Chain",
+    "precision": 18,
+    "color": "#CC5B2C",
+    "icon": "https://assets.coingecko.com/coins/images/9982/thumb/Nvoj_6Mu_400x400.jpg?1696510020",
+    "symbol": "BIP",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xf2c96e402c9199682d5ded26d3771c6b192c01af": {
+    "assetId": "eip155:56/bep20:0xf2c96e402c9199682d5ded26d3771c6b192c01af",
+    "chainId": "eip155:56",
+    "name": "Scallop",
+    "precision": 18,
+    "color": "#DCF0FA",
+    "icon": "https://assets.coingecko.com/coins/images/19059/thumb/scallop.PNG?1696518509",
+    "symbol": "SCLP",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xf2c9c8e016a511eb0bf4823e340c3567d6de1390": {
+    "assetId": "eip155:56/bep20:0xf2c9c8e016a511eb0bf4823e340c3567d6de1390",
+    "chainId": "eip155:56",
+    "name": "LaikaVerse",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/32857/thumb/Laika-Logo_WHITE.png?1699665509",
+    "symbol": "LAIKA",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xf2caabf67f99d3ac5d0a4529722cfb874c9b35bf": {
+    "assetId": "eip155:56/bep20:0xf2caabf67f99d3ac5d0a4529722cfb874c9b35bf",
+    "chainId": "eip155:56",
+    "name": "DollarBack",
+    "precision": 9,
+    "color": "#EF1104",
+    "icon": "https://assets.coingecko.com/coins/images/26973/thumb/logoring200x200.png?1696526027",
+    "symbol": "BACK",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xf2e00684457de1a3c87361bc4bfe2de92342306c": {
+    "assetId": "eip155:56/bep20:0xf2e00684457de1a3c87361bc4bfe2de92342306c",
+    "chainId": "eip155:56",
+    "name": "Shield Network",
+    "precision": 18,
+    "color": "#7A5126",
+    "icon": "https://assets.coingecko.com/coins/images/14909/thumb/ShieldNet.png?1696514571",
+    "symbol": "SHIELDNET",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xf300e4f1a193dd047b0c6747ad4e16dedf886297": {
+    "assetId": "eip155:56/bep20:0xf300e4f1a193dd047b0c6747ad4e16dedf886297",
+    "chainId": "eip155:56",
+    "name": "Gaming Stars",
+    "precision": 18,
+    "color": "#E42C44",
+    "icon": "https://assets.coingecko.com/coins/images/1729/thumb/logo-yt_1_1_1_200x200.png?1696502744",
+    "symbol": "GAMES",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xf307910a4c7bbc79691fd374889b36d8531b08e3": {
+    "assetId": "eip155:56/bep20:0xf307910a4c7bbc79691fd374889b36d8531b08e3",
+    "chainId": "eip155:56",
+    "name": "Ankr Network on BNB Smart Chain",
+    "precision": 18,
+    "color": "#245CE4",
+    "icon": "https://assets.coingecko.com/coins/images/4324/thumb/U85xTl2.png?1696504928",
+    "symbol": "ANKR",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xf3147987a00d35eecc10c731269003ca093740ca": {
+    "assetId": "eip155:56/bep20:0xf3147987a00d35eecc10c731269003ca093740ca",
+    "chainId": "eip155:56",
+    "name": "My Master War",
+    "precision": 18,
+    "color": "#583B26",
+    "icon": "https://assets.coingecko.com/coins/images/18772/thumb/JiuEEvte_400x400.jpg?1696518236",
+    "symbol": "MAT",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xf31da2bbd0cc88cf204f76b21425a865ad9acc31": {
+    "assetId": "eip155:56/bep20:0xf31da2bbd0cc88cf204f76b21425a865ad9acc31",
+    "chainId": "eip155:56",
+    "name": "Laro Classic",
+    "precision": 18,
+    "color": "#E5DDF8",
+    "icon": "https://assets.coingecko.com/coins/images/31411/thumb/IMG_20230811_185110_562.png?1696530226",
+    "symbol": "LRO",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xf33893de6eb6ae9a67442e066ae9abd228f5290c": {
+    "assetId": "eip155:56/bep20:0xf33893de6eb6ae9a67442e066ae9abd228f5290c",
+    "chainId": "eip155:56",
+    "name": "GroveCoin on BNB Smart Chain",
+    "precision": 8,
+    "color": "#148F3D",
+    "icon": "https://assets.coingecko.com/coins/images/25549/thumb/200x200.png?1696524682",
+    "symbol": "GRV",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xf35262a9d427f96d2437379ef090db986eae5d42": {
+    "assetId": "eip155:56/bep20:0xf35262a9d427f96d2437379ef090db986eae5d42",
+    "chainId": "eip155:56",
+    "name": "OPEN Governance on BNB Smart Chain",
+    "precision": 18,
+    "color": "#24249C",
+    "icon": "https://assets.coingecko.com/coins/images/13233/thumb/opendao_logo.png?1696513011",
+    "symbol": "OPEN",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xf376807dcdbaa0d7fa86e7c9eacc58d11ad710e4": {
+    "assetId": "eip155:56/bep20:0xf376807dcdbaa0d7fa86e7c9eacc58d11ad710e4",
+    "chainId": "eip155:56",
+    "name": "Blitz Labs",
+    "precision": 18,
+    "color": "#252525",
+    "icon": "https://assets.coingecko.com/coins/images/25554/thumb/cmc2.png?1696524686",
+    "symbol": "BLITZ",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xf378acd7f4f04d96de4ebd492fa31d3d2f394567": {
+    "assetId": "eip155:56/bep20:0xf378acd7f4f04d96de4ebd492fa31d3d2f394567",
+    "chainId": "eip155:56",
+    "name": "Bull Game ToKens",
+    "precision": 18,
+    "color": "#824242",
+    "icon": "https://assets.coingecko.com/coins/images/28324/thumb/20221122_112541.png?1696527331",
+    "symbol": "BGT",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xf397680d99a92e4b60637e9f5c71a4def1f6c7b5": {
+    "assetId": "eip155:56/bep20:0xf397680d99a92e4b60637e9f5c71a4def1f6c7b5",
+    "chainId": "eip155:56",
+    "name": "FlightClupcoin",
+    "precision": 4,
+    "color": "#0464F4",
+    "icon": "https://assets.coingecko.com/coins/images/28647/thumb/IO74iBmD_200x200-4.png?1696527632",
+    "symbol": "FLIGHT",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xf3b185ab60128e4c08008fd90c3f1f01f4b78d50": {
+    "assetId": "eip155:56/bep20:0xf3b185ab60128e4c08008fd90c3f1f01f4b78d50",
+    "chainId": "eip155:56",
+    "name": "MetaDoge BSC",
+    "precision": 18,
+    "color": "#262319",
+    "icon": "https://assets.coingecko.com/coins/images/28815/thumb/Dogemeta.jpeg?1696527792",
+    "symbol": "METADOGE",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xf3b392773b45cea7b8b0a047676d42613a285e87": {
+    "assetId": "eip155:56/bep20:0xf3b392773b45cea7b8b0a047676d42613a285e87",
+    "chainId": "eip155:56",
+    "name": "Cooper",
+    "precision": 9,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/32626/thumb/IMG_20231030_004003_405.jpg?1698822703",
+    "symbol": "COOPER",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xf3be1a4a47576208c1592cc027087ce154b00672": {
+    "assetId": "eip155:56/bep20:0xf3be1a4a47576208c1592cc027087ce154b00672",
+    "chainId": "eip155:56",
+    "name": "Xillion",
+    "precision": 18,
+    "color": "#6718CB",
+    "icon": "https://assets.coingecko.com/coins/images/18247/thumb/projectx.PNG?1696517743",
+    "symbol": "XIL",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xf3bebb4f2d348e44cc4547cba2f96c214fe5a25a": {
+    "assetId": "eip155:56/bep20:0xf3bebb4f2d348e44cc4547cba2f96c214fe5a25a",
+    "chainId": "eip155:56",
+    "name": "Shilly Bar",
+    "precision": 18,
+    "color": "#E6D6E4",
+    "icon": "https://assets.coingecko.com/coins/images/20982/thumb/photo_2021-11-29_13.40.47.jpeg?1696520368",
+    "symbol": "SHBAR",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xf3dbdf718667874e19ef368721a10409345fc218": {
+    "assetId": "eip155:56/bep20:0xf3dbdf718667874e19ef368721a10409345fc218",
+    "chainId": "eip155:56",
+    "name": "MoveCash",
+    "precision": 18,
+    "color": "#C1C1C1",
+    "icon": "https://assets.coingecko.com/coins/images/25610/thumb/qnmFw6Qw_400x400.jpeg?1652845231",
+    "symbol": "MCA",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xf3e07812ebc8604fddb0aa35ff79a03f48f48948": {
+    "assetId": "eip155:56/bep20:0xf3e07812ebc8604fddb0aa35ff79a03f48f48948",
+    "chainId": "eip155:56",
+    "name": "JournArt on BNB Smart Chain",
+    "precision": 4,
+    "color": "#3A333F",
+    "icon": "https://assets.coingecko.com/coins/images/29412/thumb/JournArt%28200%29.png?1696528361",
+    "symbol": "JART",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xf3ed4770e6efe9168c3f2f50a6d9d0f97a550df1": {
+    "assetId": "eip155:56/bep20:0xf3ed4770e6efe9168c3f2f50a6d9d0f97a550df1",
+    "chainId": "eip155:56",
+    "name": "DKEY Bank",
+    "precision": 18,
+    "color": "#3C64FB",
+    "icon": "https://assets.coingecko.com/coins/images/20212/thumb/dkey.PNG?1696519622",
+    "symbol": "DKEY",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xf3f3d7f713df0447e9595d9b830a5f00297070e4": {
+    "assetId": "eip155:56/bep20:0xf3f3d7f713df0447e9595d9b830a5f00297070e4",
+    "chainId": "eip155:56",
+    "name": "Mother Earth",
+    "precision": 9,
+    "color": "#F0F0E5",
+    "icon": "https://assets.coingecko.com/coins/images/22205/thumb/5NKM1gkZ_400x400.jpg?1696521548",
+    "symbol": "MOT",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xf40cb2efc2e015c55da85d23fde18975edbdf99a": {
+    "assetId": "eip155:56/bep20:0xf40cb2efc2e015c55da85d23fde18975edbdf99a",
+    "chainId": "eip155:56",
+    "name": "Bayesian",
+    "precision": 18,
+    "color": "#21DF26",
+    "icon": "https://assets.coingecko.com/coins/images/32015/thumb/baye.png?1696530813",
+    "symbol": "BAYE",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xf4341fa52669cea0c1836095529a7e9b04b8b88d": {
+    "assetId": "eip155:56/bep20:0xf4341fa52669cea0c1836095529a7e9b04b8b88d",
+    "chainId": "eip155:56",
+    "name": "Satozhi on BNB Smart Chain",
+    "precision": 8,
+    "color": "#756337",
+    "icon": "https://assets.coingecko.com/coins/images/14786/thumb/0GeSrIaQ_400x400.jpg?1696514455",
+    "symbol": "SATOZ",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xf44fb887334fa17d2c5c0f970b5d320ab53ed557": {
+    "assetId": "eip155:56/bep20:0xf44fb887334fa17d2c5c0f970b5d320ab53ed557",
+    "chainId": "eip155:56",
+    "name": "Aluna on BNB Smart Chain",
+    "precision": 18,
+    "color": "#C7AEE2",
+    "icon": "https://assets.coingecko.com/coins/images/14379/thumb/uaLoLU8c_400x400_%281%29.png?1696514071",
+    "symbol": "ALN",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xf483af09917ba63f1e274056978036d266eb56e6": {
+    "assetId": "eip155:56/bep20:0xf483af09917ba63f1e274056978036d266eb56e6",
+    "chainId": "eip155:56",
+    "name": "Bull Coin",
+    "precision": 18,
+    "color": "#AC7554",
+    "icon": "https://assets.coingecko.com/coins/images/15975/thumb/bull_ms.94cd70ff.png?1696515589",
+    "symbol": "BULL",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xf486ad071f3bee968384d2e39e2d8af0fcf6fd46": {
+    "assetId": "eip155:56/bep20:0xf486ad071f3bee968384d2e39e2d8af0fcf6fd46",
+    "chainId": "eip155:56",
+    "name": "Velo",
+    "precision": 18,
+    "color": "#FAEAF0",
+    "icon": "https://assets.coingecko.com/coins/images/12538/thumb/Logo_200x_200.png?1696512350",
+    "symbol": "VELO",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xf48f91df403976060cc05dbbf8a0901b09fdefd4": {
+    "assetId": "eip155:56/bep20:0xf48f91df403976060cc05dbbf8a0901b09fdefd4",
+    "chainId": "eip155:56",
+    "name": "Minu",
+    "precision": 18,
+    "color": "#ED910C",
+    "icon": "https://assets.coingecko.com/coins/images/29151/thumb/Minu_Logo.jpg?1696528111",
+    "symbol": "MINU",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xf4914e6d97a75f014acfcf4072f11be5cffc4ca6": {
+    "assetId": "eip155:56/bep20:0xf4914e6d97a75f014acfcf4072f11be5cffc4ca6",
+    "chainId": "eip155:56",
+    "name": "dexSHARE",
+    "precision": 18,
+    "color": "#1B2C47",
+    "icon": "https://assets.coingecko.com/coins/images/25749/thumb/dexSHARE_200x200.png?1696524835",
+    "symbol": "DEXSHARE",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xf4b5470523ccd314c6b9da041076e7d79e0df267": {
+    "assetId": "eip155:56/bep20:0xf4b5470523ccd314c6b9da041076e7d79e0df267",
+    "chainId": "eip155:56",
+    "name": "blockbank on BNB Smart Chain",
+    "precision": 18,
+    "color": "#EAE9F6",
+    "icon": "https://assets.coingecko.com/coins/images/15081/thumb/blockbank.jpg.png?1696514740",
+    "symbol": "BBANK",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xf4c8e32eadec4bfe97e0f595add0f4450a863a11": {
+    "assetId": "eip155:56/bep20:0xf4c8e32eadec4bfe97e0f595add0f4450a863a11",
+    "chainId": "eip155:56",
+    "name": "Thena",
+    "precision": 18,
+    "color": "#F4C0F4",
+    "icon": "https://assets.coingecko.com/coins/images/28864/thumb/IMG_20230129_155910_852.png?1696527838",
+    "symbol": "THE",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xf4ed363144981d3a65f42e7d0dc54ff9eef559a1": {
+    "assetId": "eip155:56/bep20:0xf4ed363144981d3a65f42e7d0dc54ff9eef559a1",
+    "chainId": "eip155:56",
+    "name": "FaraLand",
+    "precision": 18,
+    "color": "#CAA6CD",
+    "icon": "https://assets.coingecko.com/coins/images/16273/thumb/FARA.png?1696515871",
+    "symbol": "FARA",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xf508fcd89b8bd15579dc79a6827cb4686a3592c8": {
+    "assetId": "eip155:56/bep20:0xf508fcd89b8bd15579dc79a6827cb4686a3592c8",
+    "chainId": "eip155:56",
+    "name": "Venus ETH",
+    "precision": 8,
+    "color": "#EFE4CC",
+    "icon": "https://assets.coingecko.com/coins/images/13900/thumb/venus_eth.png?1696513643",
+    "symbol": "VETH",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xf5355ddc7ffbf7ca119bf3222cb0ecac2fbb4502": {
+    "assetId": "eip155:56/bep20:0xf5355ddc7ffbf7ca119bf3222cb0ecac2fbb4502",
+    "chainId": "eip155:56",
+    "name": "Utility Cjournal",
+    "precision": 18,
+    "color": "#4389EC",
+    "icon": "https://assets.coingecko.com/coins/images/31523/thumb/UCJL_-cg_%E6%8B%B7%E8%B4%9D.png?1696530333",
+    "symbol": "UCJL",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xf538030ba4b39e35a3576bd6698cfcc6ac34a81f": {
+    "assetId": "eip155:56/bep20:0xf538030ba4b39e35a3576bd6698cfcc6ac34a81f",
+    "chainId": "eip155:56",
+    "name": "NEMO on BNB Smart Chain",
+    "precision": 18,
+    "color": "#765DD7",
+    "icon": "https://assets.coingecko.com/coins/images/27473/thumb/NEMO_logo.png?1696526512",
+    "symbol": "NEMO",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xf5469e4ecc5afb3ac13da5737f88dc4563ce8454": {
+    "assetId": "eip155:56/bep20:0xf5469e4ecc5afb3ac13da5737f88dc4563ce8454",
+    "chainId": "eip155:56",
+    "name": "LAN Network",
+    "precision": 18,
+    "color": "#ABD8DE",
+    "icon": "https://assets.coingecko.com/coins/images/32091/thumb/cba9b063-19c2-4f64-a11e-5456bae433e5.jpeg?1696530889",
+    "symbol": "LAN",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xf55a93b613d172b86c2ba3981a849dae2aecde2f": {
+    "assetId": "eip155:56/bep20:0xf55a93b613d172b86c2ba3981a849dae2aecde2f",
+    "chainId": "eip155:56",
+    "name": "Your Futures Exchange on BNB Smart Chain",
+    "precision": 18,
+    "color": "#232020",
+    "icon": "https://assets.coingecko.com/coins/images/15654/thumb/yfx.PNG?1696515285",
+    "symbol": "YFX",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xf5bde7eb378661f04c841b22ba057326b0370153": {
+    "assetId": "eip155:56/bep20:0xf5bde7eb378661f04c841b22ba057326b0370153",
+    "chainId": "eip155:56",
+    "name": "Pink BNB",
+    "precision": 18,
+    "color": "#F43D6E",
+    "icon": "https://assets.coingecko.com/coins/images/29479/thumb/200px.png?1696528423",
+    "symbol": "PNB",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xf5c924b00fa2712b685bbe800d268046f06eb549": {
+    "assetId": "eip155:56/bep20:0xf5c924b00fa2712b685bbe800d268046f06eb549",
+    "chainId": "eip155:56",
+    "name": "X Dog Finance",
+    "precision": 9,
+    "color": "#0A0C13",
+    "icon": "https://assets.coingecko.com/coins/images/31691/thumb/X-DOGGG_2_200x200.jpg?1696530509",
+    "symbol": "XDOG",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xf5d8015d625be6f59b8073c8189bd51ba28792e1": {
+    "assetId": "eip155:56/bep20:0xf5d8015d625be6f59b8073c8189bd51ba28792e1",
+    "chainId": "eip155:56",
+    "name": "JulSwap",
+    "precision": 18,
+    "color": "#7CD2B7",
+    "icon": "https://assets.coingecko.com/coins/images/13839/thumb/Logo-D-Unicorn.png?1696513581",
+    "symbol": "JULD",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xf5d8a096cccb31b9d7bce5afe812be23e3d4690d": {
+    "assetId": "eip155:56/bep20:0xf5d8a096cccb31b9d7bce5afe812be23e3d4690d",
+    "chainId": "eip155:56",
+    "name": "HappyFans on BNB Smart Chain",
+    "precision": 18,
+    "color": "#EAEAED",
+    "icon": "https://assets.coingecko.com/coins/images/19027/thumb/O1pUoR8G_400x400.jpeg?1696518478",
+    "symbol": "HAPPY",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xf606bd19b1e61574ed625d9ea96c841d4e247a32": {
+    "assetId": "eip155:56/bep20:0xf606bd19b1e61574ed625d9ea96c841d4e247a32",
+    "chainId": "eip155:56",
+    "name": "Guardian GUARD on BNB Smart Chain",
+    "precision": 18,
+    "color": "#456198",
+    "icon": "https://assets.coingecko.com/coins/images/17995/thumb/LS_wolfDen_logo.0025_Light_200x200.png?1696517512",
+    "symbol": "GUARD",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xf6256d6b129d4157bab2cd2b34c065db5b61db05": {
+    "assetId": "eip155:56/bep20:0xf6256d6b129d4157bab2cd2b34c065db5b61db05",
+    "chainId": "eip155:56",
+    "name": "Yielding Protocol",
+    "precision": 18,
+    "color": "#BCBCBC",
+    "icon": "https://assets.coingecko.com/coins/images/31555/thumb/Yielding_Protocol.jpg?1696530367",
+    "symbol": "YIELD",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xf63143e7899616479f7ba52c0b9fc255b3a51cbf": {
+    "assetId": "eip155:56/bep20:0xf63143e7899616479f7ba52c0b9fc255b3a51cbf",
+    "chainId": "eip155:56",
+    "name": "Doge Floki Coin",
+    "precision": 9,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/32807/thumb/59l2-hri_400x400.jpg?1699474591",
+    "symbol": "DOFI",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xf64ed9ad397a1ae657f31131d4b189220a7f1cc7": {
+    "assetId": "eip155:56/bep20:0xf64ed9ad397a1ae657f31131d4b189220a7f1cc7",
+    "chainId": "eip155:56",
+    "name": "DeFiato on BNB Smart Chain",
+    "precision": 18,
+    "color": "#043DFC",
+    "icon": "https://assets.coingecko.com/coins/images/13386/thumb/Defiato.png?1696513149",
+    "symbol": "DFIAT",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xf6565a97dc832d93dc83b75ee9aa5c7e8ecb0f9d": {
+    "assetId": "eip155:56/bep20:0xf6565a97dc832d93dc83b75ee9aa5c7e8ecb0f9d",
+    "chainId": "eip155:56",
+    "name": "Hyve on BNB Smart Chain",
+    "precision": 18,
+    "color": "#ADADAD",
+    "icon": "https://assets.coingecko.com/coins/images/13072/thumb/bAe1G-lD_400x400.png?1696512861",
+    "symbol": "HYVE",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xf68c9df95a18b2a5a5fa1124d79eeeffbad0b6fa": {
+    "assetId": "eip155:56/bep20:0xf68c9df95a18b2a5a5fa1124d79eeeffbad0b6fa",
+    "chainId": "eip155:56",
+    "name": "Anyswap on BNB Smart Chain",
+    "precision": 18,
+    "color": "#5975E7",
+    "icon": "https://assets.coingecko.com/coins/images/12242/thumb/anyswap.jpg?1696512074",
+    "symbol": "ANY",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xf68d4d917592f3a62417ace42592f15296cc33a0": {
+    "assetId": "eip155:56/bep20:0xf68d4d917592f3a62417ace42592f15296cc33a0",
+    "chainId": "eip155:56",
+    "name": "COINHUB on BNB Smart Chain",
+    "precision": 8,
+    "color": "#CA9E7A",
+    "icon": "https://assets.coingecko.com/coins/images/26818/thumb/a08jRqRh_400x400.jpg?1696525877",
+    "symbol": "CHB",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xf69aed1ed51224d798547ca4735d981bd8515a28": {
+    "assetId": "eip155:56/bep20:0xf69aed1ed51224d798547ca4735d981bd8515a28",
+    "chainId": "eip155:56",
+    "name": "COCKROACH COIN",
+    "precision": 18,
+    "color": "#DBB832",
+    "icon": "https://assets.coingecko.com/coins/images/31781/thumb/msg1737739402-153648.png?1696530599",
+    "symbol": "ROACHCOIN",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xf6b52a29671e74e6b3a7592ef79039abb64e2885": {
+    "assetId": "eip155:56/bep20:0xf6b52a29671e74e6b3a7592ef79039abb64e2885",
+    "chainId": "eip155:56",
+    "name": "Humanoid AI",
+    "precision": 18,
+    "color": "#04060D",
+    "icon": "https://assets.coingecko.com/coins/images/29365/thumb/Humaniod_Ai_copy.png?1696528313",
+    "symbol": "HUMAI",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xf6b53b4c982b9b7e87af9dc5c66c85117a5df303": {
+    "assetId": "eip155:56/bep20:0xf6b53b4c982b9b7e87af9dc5c66c85117a5df303",
+    "chainId": "eip155:56",
+    "name": "Denarius",
+    "precision": 8,
+    "color": "#A7A7A7",
+    "icon": "https://assets.coingecko.com/coins/images/760/thumb/denarius.png?1696501913",
+    "symbol": "D",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xf6c2d8d863a325846ac4f37d2c4432f6683ae442": {
+    "assetId": "eip155:56/bep20:0xf6c2d8d863a325846ac4f37d2c4432f6683ae442",
+    "chainId": "eip155:56",
+    "name": "Fastswap  BSC ",
+    "precision": 18,
+    "color": "#215535",
+    "icon": "https://assets.coingecko.com/coins/images/30134/thumb/FAST.jpg?1696529055",
+    "symbol": "FAST",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xf6cb4ad242bab681effc5de40f7c8ff921a12d63": {
+    "assetId": "eip155:56/bep20:0xf6cb4ad242bab681effc5de40f7c8ff921a12d63",
+    "chainId": "eip155:56",
+    "name": "Centric Swap",
+    "precision": 8,
+    "color": "#27BD36",
+    "icon": "https://assets.coingecko.com/coins/images/11864/thumb/CNS.png?1696511734",
+    "symbol": "CNS",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xf6d2657ebb5602bf823901412c5e41e030f3ece2": {
+    "assetId": "eip155:56/bep20:0xf6d2657ebb5602bf823901412c5e41e030f3ece2",
+    "chainId": "eip155:56",
+    "name": "Chitaverse",
+    "precision": 18,
+    "color": "#75421C",
+    "icon": "https://assets.coingecko.com/coins/images/29769/thumb/baby-chita-head-logo.png?1696528700",
+    "symbol": "BCT",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xf700d4c708c2be1463e355f337603183d20e0808": {
+    "assetId": "eip155:56/bep20:0xf700d4c708c2be1463e355f337603183d20e0808",
+    "chainId": "eip155:56",
+    "name": "Galactic Quadrant",
+    "precision": 18,
+    "color": "#8095B5",
+    "icon": "https://assets.coingecko.com/coins/images/24059/thumb/logo_gg.png?1696523249",
+    "symbol": "GQ",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xf709e948daed701a6a018e6f6090ca1930055966": {
+    "assetId": "eip155:56/bep20:0xf709e948daed701a6a018e6f6090ca1930055966",
+    "chainId": "eip155:56",
+    "name": "AI DogeMini",
+    "precision": 18,
+    "color": "#F7F4EF",
+    "icon": "https://assets.coingecko.com/coins/images/28995/thumb/Logo_200px_x_200px.jpg?1696527967",
+    "symbol": "AIDOGEMINI",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xf70b6d6acd652612f24f7dd2ca2f1727eb20793a": {
+    "assetId": "eip155:56/bep20:0xf70b6d6acd652612f24f7dd2ca2f1727eb20793a",
+    "chainId": "eip155:56",
+    "name": "LIF3 LSHARE  OLD  on BNB Smart Chain",
+    "precision": 18,
+    "color": "#B28E67",
+    "icon": "https://assets.coingecko.com/coins/images/26038/thumb/LSHARE.png?1696525119",
+    "symbol": "LSHARE",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xf720e38f678b29b243f7d53b56acbf5de98f2385": {
+    "assetId": "eip155:56/bep20:0xf720e38f678b29b243f7d53b56acbf5de98f2385",
+    "chainId": "eip155:56",
+    "name": "Upfire on BNB Smart Chain",
+    "precision": 18,
+    "color": "#08C2EA",
+    "icon": "https://assets.coingecko.com/coins/images/20562/thumb/UPR256.png?1696519971",
+    "symbol": "UPR",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xf729f4d13a9c9556875d20bacf9ebd0bf891464c": {
+    "assetId": "eip155:56/bep20:0xf729f4d13a9c9556875d20bacf9ebd0bf891464c",
+    "chainId": "eip155:56",
+    "name": "BUSDX",
+    "precision": 18,
+    "color": "#FCD05C",
+    "icon": "https://assets.coingecko.com/coins/images/20980/thumb/FgHuTG1.png?1696520366",
+    "symbol": "BUSDX",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xf73d8276c15ce56b2f4aee5920e62f767a7f3aea": {
+    "assetId": "eip155:56/bep20:0xf73d8276c15ce56b2f4aee5920e62f767a7f3aea",
+    "chainId": "eip155:56",
+    "name": "TCGCoin 2 0",
+    "precision": 9,
+    "color": "#EAF5F1",
+    "icon": "https://assets.coingecko.com/coins/images/18035/thumb/TCG2.jpg?1696517551",
+    "symbol": "TCG2",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xf750a26eb0acf95556e8529e72ed530f3b60f348": {
+    "assetId": "eip155:56/bep20:0xf750a26eb0acf95556e8529e72ed530f3b60f348",
+    "chainId": "eip155:56",
+    "name": "GreenTrust",
+    "precision": 18,
+    "color": "#DFF0EC",
+    "icon": "https://assets.coingecko.com/coins/images/15171/thumb/U4tF68c.png?1696514826",
+    "symbol": "GNT",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xf7686f43591302cd9b4b9c4fe1291473fae7d9c9": {
+    "assetId": "eip155:56/bep20:0xf7686f43591302cd9b4b9c4fe1291473fae7d9c9",
+    "chainId": "eip155:56",
+    "name": "Lossless on BNB Smart Chain",
+    "precision": 18,
+    "color": "#1E1E1E",
+    "icon": "https://assets.coingecko.com/coins/images/15917/thumb/Group_57.png?1696515531",
+    "symbol": "LSS",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xf7722aa0714096f1fb5ef83e6041cebb4d58a08e": {
+    "assetId": "eip155:56/bep20:0xf7722aa0714096f1fb5ef83e6041cebb4d58a08e",
+    "chainId": "eip155:56",
+    "name": "Ruby Play Network",
+    "precision": 12,
+    "color": "#EFE8E8",
+    "icon": "https://assets.coingecko.com/coins/images/24301/thumb/v7j5bIgX_400x400.jpg?1696523483",
+    "symbol": "RUBY",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xf77351d8f4ee853135961a936bb8d2e4ffa75f9d": {
+    "assetId": "eip155:56/bep20:0xf77351d8f4ee853135961a936bb8d2e4ffa75f9d",
+    "chainId": "eip155:56",
+    "name": "Roobee on BNB Smart Chain",
+    "precision": 18,
+    "color": "#94D424",
+    "icon": "https://assets.coingecko.com/coins/images/8791/thumb/Group_11.png?1696508946",
+    "symbol": "ROOBEE",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xf77f55995dfac3786dc341ec1d6342a803441613": {
+    "assetId": "eip155:56/bep20:0xf77f55995dfac3786dc341ec1d6342a803441613",
+    "chainId": "eip155:56",
+    "name": "Capone",
+    "precision": 18,
+    "color": "#978047",
+    "icon": "https://assets.coingecko.com/coins/images/30500/thumb/CAPONE_200.png?1696529386",
+    "symbol": "CAPONE",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xf7844cb890f4c339c497aeab599abdc3c874b67a": {
+    "assetId": "eip155:56/bep20:0xf7844cb890f4c339c497aeab599abdc3c874b67a",
+    "chainId": "eip155:56",
+    "name": "NFT Art Finance",
+    "precision": 9,
+    "color": "#A0146F",
+    "icon": "https://assets.coingecko.com/coins/images/15027/thumb/nft-art-coingecko-logo.png?1696514688",
+    "symbol": "NFTART",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xf78a2e1824638d09571172368bbe1d8d399893ab": {
+    "assetId": "eip155:56/bep20:0xf78a2e1824638d09571172368bbe1d8d399893ab",
+    "chainId": "eip155:56",
+    "name": "BotopiaFinance",
+    "precision": 18,
+    "color": "#5A5775",
+    "icon": "https://assets.coingecko.com/coins/images/22129/thumb/GqSruKVo_400x400.jpg?1696521476",
+    "symbol": "BTOP",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xf78d2e7936f5fe18308a3b2951a93b6c4a41f5e2": {
+    "assetId": "eip155:56/bep20:0xf78d2e7936f5fe18308a3b2951a93b6c4a41f5e2",
+    "chainId": "eip155:56",
+    "name": "MANTRA on BNB Smart Chain",
+    "precision": 18,
+    "color": "#FB94D3",
+    "icon": "https://assets.coingecko.com/coins/images/12151/thumb/OM_Token.png?1696511991",
+    "symbol": "OM",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xf7a086bff67ded4aa785e8a0a81d4345d9bb4740": {
+    "assetId": "eip155:56/bep20:0xf7a086bff67ded4aa785e8a0a81d4345d9bb4740",
+    "chainId": "eip155:56",
+    "name": "MetaSafeMoon",
+    "precision": 9,
+    "color": "#04E3F0",
+    "icon": "https://assets.coingecko.com/coins/images/21257/thumb/logo-200x200.png?1696520629",
+    "symbol": "METASFM",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xf7b5fb4607abfe0ecf332c23cbdcc9e425b443a8": {
+    "assetId": "eip155:56/bep20:0xf7b5fb4607abfe0ecf332c23cbdcc9e425b443a8",
+    "chainId": "eip155:56",
+    "name": "AcknoLedger",
+    "precision": 18,
+    "color": "#C98446",
+    "icon": "https://assets.coingecko.com/coins/images/19110/thumb/179336914_101598385424354_5729429129362932203_n.jpeg?1696518562",
+    "symbol": "ACK",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xf7b6d7e3434cb9441982f9534e6998c43eef144a": {
+    "assetId": "eip155:56/bep20:0xf7b6d7e3434cb9441982f9534e6998c43eef144a",
+    "chainId": "eip155:56",
+    "name": "Asva Labs",
+    "precision": 18,
+    "color": "#FC0474",
+    "icon": "https://assets.coingecko.com/coins/images/22134/thumb/1_YAFDez1BKcVUHzwDoYcgPQ.png?1696521480",
+    "symbol": "ASVA",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xf7bcac494fd9530c183dae30db48d45144ff2c77": {
+    "assetId": "eip155:56/bep20:0xf7bcac494fd9530c183dae30db48d45144ff2c77",
+    "chainId": "eip155:56",
+    "name": "Crypto Classic",
+    "precision": 9,
+    "color": "#1B1D6C",
+    "icon": "https://assets.coingecko.com/coins/images/19813/thumb/5cd5E8xZ_400x400.jpg?1696519233",
+    "symbol": "CRC",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xf7de7e8a6bd59ed41a4b5fe50278b3b7f31384df": {
+    "assetId": "eip155:56/bep20:0xf7de7e8a6bd59ed41a4b5fe50278b3b7f31384df",
+    "chainId": "eip155:56",
+    "name": "Radiant Capital on BNB Smart Chain",
+    "precision": 18,
+    "color": "#512CEC",
+    "icon": "https://assets.coingecko.com/coins/images/26536/thumb/Radiant-Logo-200x200.png?1696525610",
+    "symbol": "RDNT",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xf7f0dc9fd88e436847580d883319137ec2aa6b94": {
+    "assetId": "eip155:56/bep20:0xf7f0dc9fd88e436847580d883319137ec2aa6b94",
+    "chainId": "eip155:56",
+    "name": "Parma Calcio 1913 Fan Token",
+    "precision": 18,
+    "color": "#EBC921",
+    "icon": "https://assets.coingecko.com/coins/images/29258/thumb/parma-token%28200x200%29.png?1696528212",
+    "symbol": "PARMA",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xf7f73f6697bab84d9d3818fd14720b3b116be873": {
+    "assetId": "eip155:56/bep20:0xf7f73f6697bab84d9d3818fd14720b3b116be873",
+    "chainId": "eip155:56",
+    "name": "YoCash",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/32800/thumb/IMG_4180.jpeg?1699448839",
+    "symbol": "YCH",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xf7ff4c36f68d55cec9f57eb89fb3d41663dbef77": {
+    "assetId": "eip155:56/bep20:0xf7ff4c36f68d55cec9f57eb89fb3d41663dbef77",
+    "chainId": "eip155:56",
+    "name": "Planeteer Social",
+    "precision": 18,
+    "color": "#FB8E22",
+    "icon": "https://assets.coingecko.com/coins/images/31797/thumb/planeteer-200x200.png?1696530613",
+    "symbol": "PLANETEER",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xf8028b65005b0b45f76988d2a77910186e7af4ef": {
+    "assetId": "eip155:56/bep20:0xf8028b65005b0b45f76988d2a77910186e7af4ef",
+    "chainId": "eip155:56",
+    "name": "NDB",
+    "precision": 12,
+    "color": "#23C565",
+    "icon": "https://assets.coingecko.com/coins/images/26545/thumb/ba98gdMa_400x400.jpeg?1696525618",
+    "symbol": "NDB",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xf81f7e2c578d7e09e355e6af8b981c0bc23dc1ec": {
+    "assetId": "eip155:56/bep20:0xf81f7e2c578d7e09e355e6af8b981c0bc23dc1ec",
+    "chainId": "eip155:56",
+    "name": "PaisaPad",
+    "precision": 18,
+    "color": "#BE9E4E",
+    "icon": "https://assets.coingecko.com/coins/images/32051/thumb/200x200.png?1696530848",
+    "symbol": "PPD",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xf82aa46120314904cd8119dac84f6bcc7d90ed2e": {
+    "assetId": "eip155:56/bep20:0xf82aa46120314904cd8119dac84f6bcc7d90ed2e",
+    "chainId": "eip155:56",
+    "name": "Lucrosus Capital",
+    "precision": 18,
+    "color": "#F0F0F8",
+    "icon": "https://assets.coingecko.com/coins/images/22445/thumb/luca.png?1696521771",
+    "symbol": "LUCA",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xf83c0f6d3a5665bd7cfdd5831a856d85942bc060": {
+    "assetId": "eip155:56/bep20:0xf83c0f6d3a5665bd7cfdd5831a856d85942bc060",
+    "chainId": "eip155:56",
+    "name": "KIRO on BNB Smart Chain",
+    "precision": 18,
+    "color": "#44B0E0",
+    "icon": "https://assets.coingecko.com/coins/images/12688/thumb/logo_kirobo-04.png?1696512491",
+    "symbol": "KIRO",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xf84fd783e7c38a3c99030535919fb89350387502": {
+    "assetId": "eip155:56/bep20:0xf84fd783e7c38a3c99030535919fb89350387502",
+    "chainId": "eip155:56",
+    "name": "Upfront Protocol",
+    "precision": 18,
+    "color": "#7E62BD",
+    "icon": "https://assets.coingecko.com/coins/images/30559/thumb/IMG_20230524_134842_946.jpg?1696529430",
+    "symbol": "UP",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xf859bf77cbe8699013d6dbc7c2b926aaf307f830": {
+    "assetId": "eip155:56/bep20:0xf859bf77cbe8699013d6dbc7c2b926aaf307f830",
+    "chainId": "eip155:56",
+    "name": "Berry Data",
+    "precision": 18,
+    "color": "#F7F8F7",
+    "icon": "https://assets.coingecko.com/coins/images/13987/thumb/berry.jpg?1696513719",
+    "symbol": "BRY",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xf85be0902a16fb87d447021d6e4517b38a15087d": {
+    "assetId": "eip155:56/bep20:0xf85be0902a16fb87d447021d6e4517b38a15087d",
+    "chainId": "eip155:56",
+    "name": "PalmPay",
+    "precision": 18,
+    "color": "#4C6724",
+    "icon": "https://assets.coingecko.com/coins/images/28216/thumb/logoGreen_%282%29.png?1696527218",
+    "symbol": "PALM",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xf8759de7f2c8d3f32fd8f8e4c0c02d436a05ddeb": {
+    "assetId": "eip155:56/bep20:0xf8759de7f2c8d3f32fd8f8e4c0c02d436a05ddeb",
+    "chainId": "eip155:56",
+    "name": "Urubit",
+    "precision": 8,
+    "color": "#D9F5F4",
+    "icon": "https://assets.coingecko.com/coins/images/19902/thumb/54UYxwFE_400x400.jpg?1696519322",
+    "symbol": "URUB",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xf87940f78f2f4d99a0c5c22e3fcc21795cd53245": {
+    "assetId": "eip155:56/bep20:0xf87940f78f2f4d99a0c5c22e3fcc21795cd53245",
+    "chainId": "eip155:56",
+    "name": "Kamaleont",
+    "precision": 9,
+    "color": "#273674",
+    "icon": "https://assets.coingecko.com/coins/images/26386/thumb/Dise%C3%B1o_sin_t%C3%ADtulo_%288%29.png?1696525463",
+    "symbol": "KLT",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xf899e83e6c6df1a0d4887cf0209193aa97236322": {
+    "assetId": "eip155:56/bep20:0xf899e83e6c6df1a0d4887cf0209193aa97236322",
+    "chainId": "eip155:56",
+    "name": "MBD Financials",
+    "precision": 18,
+    "color": "#B18CE4",
+    "icon": "https://assets.coingecko.com/coins/images/25617/thumb/mbd-transparent_%281%29.png?1696524751",
+    "symbol": "MBD",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xf8a0bf9cf54bb92f17374d9e9a321e6a111a51bd": {
+    "assetId": "eip155:56/bep20:0xf8a0bf9cf54bb92f17374d9e9a321e6a111a51bd",
+    "chainId": "eip155:56",
+    "name": "Chainlink on BNB Smart Chain",
+    "precision": 18,
+    "color": "#2C5CDC",
+    "icon": "https://assets.coingecko.com/coins/images/877/thumb/chainlink-new-logo.png?1696502009",
+    "symbol": "LINK",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xf8acf86194443dcde55fc5b9e448e183c290d8cb": {
+    "assetId": "eip155:56/bep20:0xf8acf86194443dcde55fc5b9e448e183c290d8cb",
+    "chainId": "eip155:56",
+    "name": "ColossusXT",
+    "precision": 8,
+    "color": "#649E6C",
+    "icon": "https://assets.coingecko.com/coins/images/966/thumb/colossusxt.png?1696502082",
+    "symbol": "COLX",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xf8dfc70a422ccf0ab206adf7b043fdfb410caab5": {
+    "assetId": "eip155:56/bep20:0xf8dfc70a422ccf0ab206adf7b043fdfb410caab5",
+    "chainId": "eip155:56",
+    "name": "Elysium Token",
+    "precision": 18,
+    "color": "#05040D",
+    "icon": "https://assets.coingecko.com/coins/images/30176/thumb/our_logo_in_png.png?1696529095",
+    "symbol": "ELYS",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xf8f95f20cd1fb6f1fa6f7776c359214220f49aa6": {
+    "assetId": "eip155:56/bep20:0xf8f95f20cd1fb6f1fa6f7776c359214220f49aa6",
+    "chainId": "eip155:56",
+    "name": "Gangs Rabbit",
+    "precision": 9,
+    "color": "#C2B07A",
+    "icon": "https://assets.coingecko.com/coins/images/29705/thumb/200x200.jpg?1696528637",
+    "symbol": "RABBIT",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xf9114498b7f38f3337d6295a3a0f3edf8da71326": {
+    "assetId": "eip155:56/bep20:0xf9114498b7f38f3337d6295a3a0f3edf8da71326",
+    "chainId": "eip155:56",
+    "name": "DEXO",
+    "precision": 18,
+    "color": "#3554D3",
+    "icon": "https://assets.coingecko.com/coins/images/28506/thumb/DEXO.png?1696527499",
+    "symbol": "DEXO",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xf915fdda4c882731c0456a4214548cd13a822886": {
+    "assetId": "eip155:56/bep20:0xf915fdda4c882731c0456a4214548cd13a822886",
+    "chainId": "eip155:56",
+    "name": "Unvest on BNB Smart Chain",
+    "precision": 18,
+    "color": "#D1D4C5",
+    "icon": "https://assets.coingecko.com/coins/images/18119/thumb/UNV.jpg?1696517622",
+    "symbol": "UNV",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xf91d58b5ae142dacc749f58a49fcbac340cb0343": {
+    "assetId": "eip155:56/bep20:0xf91d58b5ae142dacc749f58a49fcbac340cb0343",
+    "chainId": "eip155:56",
+    "name": "Venus FIL",
+    "precision": 8,
+    "color": "#F8F5F0",
+    "icon": "https://assets.coingecko.com/coins/images/13925/thumb/vfil_final.png?1696513665",
+    "symbol": "VFIL",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xf93f6b686f4a6557151455189a9173735d668154": {
+    "assetId": "eip155:56/bep20:0xf93f6b686f4a6557151455189a9173735d668154",
+    "chainId": "eip155:56",
+    "name": "Gamerse on BNB Smart Chain",
+    "precision": 18,
+    "color": "#3A3A34",
+    "icon": "https://assets.coingecko.com/coins/images/19582/thumb/gamerse.PNG?1696519013",
+    "symbol": "LFG",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xf952fc3ca7325cc27d15885d37117676d25bfda6": {
+    "assetId": "eip155:56/bep20:0xf952fc3ca7325cc27d15885d37117676d25bfda6",
+    "chainId": "eip155:56",
+    "name": "Goose Finance",
+    "precision": 18,
+    "color": "#B3872F",
+    "icon": "https://assets.coingecko.com/coins/images/13951/thumb/JNnBWAE4XEJD9Ty7x8A1RlJ8dvA7hcOe7C1LkQSWwuSlD6HcCz3V8fN44B6du2k4owhlLJZU3r6M6HcK0dkpMe53kkqYsESpfx9w8vU8t_PnykuyaGnLKXLJeZqEAP1C9Wi3G3sqfbTeHi32_msxtMMyUmIRgzBbDdp-adg6mIbst_8a7JknMgmdkORNydmX4Ptk8YUtZhoWewY.png?1696513688",
+    "symbol": "EGG",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xf95a5532d67c944dfa7eddd2f8c358fe0dc7fac2": {
+    "assetId": "eip155:56/bep20:0xf95a5532d67c944dfa7eddd2f8c358fe0dc7fac2",
+    "chainId": "eip155:56",
+    "name": "Marblex",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/24423/thumb/AgYzKzLt_400x400.jpg?1696523604",
+    "symbol": "MBX",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xf9752a6e8a5e5f5e6eb3ab4e7d8492460fb319f0": {
+    "assetId": "eip155:56/bep20:0xf9752a6e8a5e5f5e6eb3ab4e7d8492460fb319f0",
+    "chainId": "eip155:56",
+    "name": "Ares Protocol on BNB Smart Chain",
+    "precision": 18,
+    "color": "#C8F4FC",
+    "icon": "https://assets.coingecko.com/coins/images/15153/thumb/Ares-logo.png?1696514809",
+    "symbol": "ARES",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xf97c30f0b31aee9b1ab087f8ccf5b14bf354d29f": {
+    "assetId": "eip155:56/bep20:0xf97c30f0b31aee9b1ab087f8ccf5b14bf354d29f",
+    "chainId": "eip155:56",
+    "name": "Real Estate Token",
+    "precision": 18,
+    "color": "#6C1818",
+    "icon": "https://assets.coingecko.com/coins/images/29569/thumb/R3T.png?1696528509",
+    "symbol": "R3T",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xf98b660adf2ed7d9d9d9daacc2fb0cace4f21835": {
+    "assetId": "eip155:56/bep20:0xf98b660adf2ed7d9d9d9daacc2fb0cace4f21835",
+    "chainId": "eip155:56",
+    "name": "Symbiosis on BNB Smart Chain",
+    "precision": 18,
+    "color": "#070B06",
+    "icon": "https://assets.coingecko.com/coins/images/20805/thumb/SymbiosisFinance_logo-150x150.jpeg?1696520198",
+    "symbol": "SIS",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xf9cec8d50f6c8ad3fb6dccec577e05aa32b224fe": {
+    "assetId": "eip155:56/bep20:0xf9cec8d50f6c8ad3fb6dccec577e05aa32b224fe",
+    "chainId": "eip155:56",
+    "name": "Chromia on BNB Smart Chain",
+    "precision": 6,
+    "color": "#1E1D25",
+    "icon": "https://assets.coingecko.com/coins/images/5000/thumb/Chromia.png?1696505533",
+    "symbol": "CHR",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xf9d6ddf44016953dbf7ab135a0f64d7a41870ede": {
+    "assetId": "eip155:56/bep20:0xf9d6ddf44016953dbf7ab135a0f64d7a41870ede",
+    "chainId": "eip155:56",
+    "name": "Doge Floki Coin  OLD ",
+    "precision": 9,
+    "color": "#F59C25",
+    "icon": "https://assets.coingecko.com/coins/images/19563/thumb/59l2-hri_400x400.jpg?1699460498",
+    "symbol": "DOFI",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xf9d906a8dd25c4a4966bc075cdc946702219e62c": {
+    "assetId": "eip155:56/bep20:0xf9d906a8dd25c4a4966bc075cdc946702219e62c",
+    "chainId": "eip155:56",
+    "name": "Yield Protocol on BNB Smart Chain",
+    "precision": 18,
+    "color": "#7EC292",
+    "icon": "https://assets.coingecko.com/coins/images/14220/thumb/yield.png?1696513935",
+    "symbol": "YIELD",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xf9db7dbad683dc7868be8b03ff0f4aa25f5cc6f6": {
+    "assetId": "eip155:56/bep20:0xf9db7dbad683dc7868be8b03ff0f4aa25f5cc6f6",
+    "chainId": "eip155:56",
+    "name": "Floki Santa",
+    "precision": 9,
+    "color": "#C0B6B2",
+    "icon": "https://assets.coingecko.com/coins/images/28535/thumb/XHR83fw.png?1696527528",
+    "symbol": "FLOKISANTA",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xfa134985a4d9d10dbf2d7dcf811055aa25d0807c": {
+    "assetId": "eip155:56/bep20:0xfa134985a4d9d10dbf2d7dcf811055aa25d0807c",
+    "chainId": "eip155:56",
+    "name": "CMC Coin",
+    "precision": 18,
+    "color": "#251E18",
+    "icon": "https://assets.coingecko.com/coins/images/21494/thumb/cmc.png?1696520854",
+    "symbol": "CMCC",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xfa139cc2f5c5b8c72309be8e63c3024d03b7e63c": {
+    "assetId": "eip155:56/bep20:0xfa139cc2f5c5b8c72309be8e63c3024d03b7e63c",
+    "chainId": "eip155:56",
+    "name": "Genie Protocol",
+    "precision": 18,
+    "color": "#6166AE",
+    "icon": "https://assets.coingecko.com/coins/images/18753/thumb/colori.png?1696518218",
+    "symbol": "GNP",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xfa17b330bcc4e7f3e2456996d89a5a54ab044831": {
+    "assetId": "eip155:56/bep20:0xfa17b330bcc4e7f3e2456996d89a5a54ab044831",
+    "chainId": "eip155:56",
+    "name": "Cardence",
+    "precision": 18,
+    "color": "#60A5B6",
+    "icon": "https://assets.coingecko.com/coins/images/17744/thumb/logo_-_2021-08-17T084037.897.png?1696517271",
+    "symbol": "CRDN",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xfa1ba18067ac6884fb26e329e60273488a247fc3": {
+    "assetId": "eip155:56/bep20:0xfa1ba18067ac6884fb26e329e60273488a247fc3",
+    "chainId": "eip155:56",
+    "name": "Scrooge  OLD ",
+    "precision": 18,
+    "color": "#C3AE6E",
+    "icon": "https://assets.coingecko.com/coins/images/21510/thumb/top-hat-200x200.png?1696520869",
+    "symbol": "SCROOGE",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xfa262f303aa244f9cc66f312f0755d89c3793192": {
+    "assetId": "eip155:56/bep20:0xfa262f303aa244f9cc66f312f0755d89c3793192",
+    "chainId": "eip155:56",
+    "name": "Rigel Protocol on BNB Smart Chain",
+    "precision": 18,
+    "color": "#2E94C0",
+    "icon": "https://assets.coingecko.com/coins/images/15837/thumb/A_qRYvB2_400x400.png?1696515455",
+    "symbol": "RGP",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xfa37e513e6cd506c4694b992825a8b614c035581": {
+    "assetId": "eip155:56/bep20:0xfa37e513e6cd506c4694b992825a8b614c035581",
+    "chainId": "eip155:56",
+    "name": "Nexum on BNB Smart Chain",
+    "precision": 8,
+    "color": "#04D2D4",
+    "icon": "https://assets.coingecko.com/coins/images/23472/thumb/200_-_200_coinmarketcap.png?1696522683",
+    "symbol": "NEXM",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xfa40d8fc324bcdd6bbae0e086de886c571c225d4": {
+    "assetId": "eip155:56/bep20:0xfa40d8fc324bcdd6bbae0e086de886c571c225d4",
+    "chainId": "eip155:56",
+    "name": "Wizardia",
+    "precision": 18,
+    "color": "#30F2CB",
+    "icon": "https://assets.coingecko.com/coins/images/24434/thumb/Icon_%281%29.jpg?1696523615",
+    "symbol": "WZRD",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xfa4a5c4ce029fd6872400545df44675219c2e037": {
+    "assetId": "eip155:56/bep20:0xfa4a5c4ce029fd6872400545df44675219c2e037",
+    "chainId": "eip155:56",
+    "name": "Kephi Gallery",
+    "precision": 18,
+    "color": "#F9F5E6",
+    "icon": "https://assets.coingecko.com/coins/images/17696/thumb/XJb3jROS_400x400.jpg?1696517224",
+    "symbol": "KPHI",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xfa4ba88cf97e282c505bea095297786c16070129": {
+    "assetId": "eip155:56/bep20:0xfa4ba88cf97e282c505bea095297786c16070129",
+    "chainId": "eip155:56",
+    "name": "Coin98 Dollar on BNB Smart Chain",
+    "precision": 18,
+    "color": "#F4D464",
+    "icon": "https://assets.coingecko.com/coins/images/26588/thumb/CUSD-01.png?1696525663",
+    "symbol": "CUSD",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xfa4fa764f15d0f6e20aaec8e0d696870e5b77c6e": {
+    "assetId": "eip155:56/bep20:0xfa4fa764f15d0f6e20aaec8e0d696870e5b77c6e",
+    "chainId": "eip155:56",
+    "name": "FUSION on BNB Smart Chain",
+    "precision": 18,
+    "color": "#263C62",
+    "icon": "https://assets.coingecko.com/coins/images/2515/thumb/Fusion_200x200.png?1696503329",
+    "symbol": "FSN",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xfa53a4778431712af31a11621edee4d0926df1ac": {
+    "assetId": "eip155:56/bep20:0xfa53a4778431712af31a11621edee4d0926df1ac",
+    "chainId": "eip155:56",
+    "name": "Petals",
+    "precision": 18,
+    "color": "#F7F2F7",
+    "icon": "https://assets.coingecko.com/coins/images/26154/thumb/pts.png?1696525242",
+    "symbol": "PTS",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xfaa0fc7b803919b091dbe5ff709b2dabb61b93d9": {
+    "assetId": "eip155:56/bep20:0xfaa0fc7b803919b091dbe5ff709b2dabb61b93d9",
+    "chainId": "eip155:56",
+    "name": "Notable",
+    "precision": 18,
+    "color": "#DC84FC",
+    "icon": "https://assets.coingecko.com/coins/images/21613/thumb/Progetto_senza_titolo_%284%29.png?1696520973",
+    "symbol": "NBL",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xfaaa87943bfca6d97434be3d26c589647fea4375": {
+    "assetId": "eip155:56/bep20:0xfaaa87943bfca6d97434be3d26c589647fea4375",
+    "chainId": "eip155:56",
+    "name": "ACEToken",
+    "precision": 18,
+    "color": "#9D0505",
+    "icon": "https://assets.coingecko.com/coins/images/23990/thumb/ace.png?1696523185",
+    "symbol": "ACE",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xfab178ec82e29761f79565f260c1b1e8fead566e": {
+    "assetId": "eip155:56/bep20:0xfab178ec82e29761f79565f260c1b1e8fead566e",
+    "chainId": "eip155:56",
+    "name": "Sword and Magic World",
+    "precision": 18,
+    "color": "#DC247C",
+    "icon": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAIAAAACACAMAAAD04JH5AAADAFBMVEUtN0jYJn7///8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABCmBkhAAABAHRSTlP/////AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAf6K/dgAAQItJREFUeNoBgEB/vwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgICAgICAgICAgICAgICAQEBAQEBAQEBAQEBAQECAgICAgICAAAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgEBAQEBAQEBAQEBAQEBAgICAgICAgICAgICAgICAgICAgICAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQEBAQEBAQEBAgICAgICAgICAgICAgICAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQEBAQEBAQEBAgICAgICAgICAgICAgICAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQEBAQEBAQEBAgICAgICAgICAgICAgICAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQEBAQEBAQEBAgICAgICAgICAgICAgICAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQEBAQEBAQEBAgICAgICAgICAgICAgICAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQEBAQEBAQEBAgICAgICAgICAgICAgICAgICAgICAwAAAAAAAAAAAAAAAAAAAAACAgICAgICAQMDAwMDAwMDAwMDAwMDAwMDAwMDAgICAgICAgEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAQMDAwMDAwMDAwMDAwMDAwMDAwMDAgICAgICAgAAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAQMDAwMDAwMBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAAAAwMDAwMDAgICAgICAgICAgICAgICAgICAgICAQEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAAAAAAAAAEBAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAAAAAAAAAEBAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAAAAAAAAAEBAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAAAAAAAAAEBAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAAAAAAAAAEBAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAAAAAAAAAEBAgICAgICAgICAgICAgICAgICAgICAwEBAQEBAQEBAQEBAQECAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAAAAAAAAAEBAQMDAwMDAwMDAwMDAwMDAwMDAwMDAgICAgICAgEBAQEBAQECAgICAgICAwAAAAAAAAICAgICAgIAAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAICAgICAgIDAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAICAgICAgIDAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAICAgICAgIDAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAICAgICAgIDAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgMBAQEBAQECAgICAgICAwAAAAAAAAICAgICAgIDAAAAAAEBAgICAgICAgMBAQEBAQECAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAACAgICAgICAwAAAAAAAAICAgICAgIDAAAAAAAAAgICAgICAgMAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAQEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAACAgICAgICAwAAAAAAAAICAgICAgIDAAAAAAAAAgICAgICAgMAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAACAgICAgICAwAAAAAAAAICAgICAgIDAAAAAAAAAgICAgICAgMAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAACAgICAgICAwAAAAAAAAICAgICAgIDAAAAAAAAAgICAgICAgMAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAACAgICAgICAwAAAAAAAAICAgICAgIDAAAAAAAAAgICAgICAgMAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAACAgICAgICAwAAAAAAAAICAgICAgIDAAAAAAAAAgICAgICAgMAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAACAgICAgICAwAAAAAAAAICAgICAgIDAAAAAAAAAgICAgICAgMAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAACAgICAgICAwAAAAAAAAICAgICAgIDAAAAAAAAAgICAgICAgMAAAAAAAACAgICAgICAwEBAQEBAQEBAQEBAQEBAQEBAQAAAgICAgICAgMAAAAAAAAAAAAAAwMDAwMDAgICAgICAgICAgICAgICAgICAgICAAMDAwMDAwMAAAAAAAAAAwMDAwMDAgICAgICAgADAwMDAwMCAgICAgICAAMDAwMDAwMAAAAAAAAAAwMDAwMDAgICAgICAgICAgICAgICAgICAgICAAMDAwMDAwMAAAAAAAAAAAAAAAAAAAEBAgICAgICAgICAgICAgICAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAgICAgICAgMAAAAAAAACAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgICAgICAgICAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgICAgICAgICAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAgICAgICAgMAAAAAAAACAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgICAgICAgICAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgICAgICAgICAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAgICAgICAgMAAAAAAAACAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgICAgICAgICAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgICAgICAgICAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAgICAgICAgMAAAAAAAACAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgICAgICAgICAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgICAgICAgICAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAgICAgICAgMAAAAAAAACAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgICAgICAgICAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgICAgICAgICAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAgICAgICAgMAAAAAAAACAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAEBAgICAgICAgICAgICAgICAgICAgICAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQMDAwMDAwMDAwMDAwMDAwMDAwMDAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAMDAwMDAwMAAAAAAAAAAwMDAwMDAwAAAAAAAAAAAAAAAAAAAAAAAAEBAQMDAwMDAwMDAwMDAwMDAwMDAwMDAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALWYL208Fc1AAAAAAElFTkSuQmCC",
+    "symbol": "SWO",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xface67c5ce2bb48c29779b0dede5360cc9ef5fd5": {
+    "assetId": "eip155:56/bep20:0xface67c5ce2bb48c29779b0dede5360cc9ef5fd5",
+    "chainId": "eip155:56",
+    "name": "Affinity",
+    "precision": 9,
+    "color": "#1C1917",
+    "icon": "https://assets.coingecko.com/coins/images/27345/thumb/YPtUpB2I_400x400.jpeg?1696526392",
+    "symbol": "AFNTY",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xface6eab71210ff09771a27bd6bf327088a07c07": {
+    "assetId": "eip155:56/bep20:0xface6eab71210ff09771a27bd6bf327088a07c07",
+    "chainId": "eip155:56",
+    "name": "Babypepe",
+    "precision": 18,
+    "color": "#59914C",
+    "icon": "https://assets.coingecko.com/coins/images/32087/thumb/logo_%281%29.png?1696530885",
+    "symbol": "BABYPEPE",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xfafbc48f6aa3587984ea50e472304802b39c2604": {
+    "assetId": "eip155:56/bep20:0xfafbc48f6aa3587984ea50e472304802b39c2604",
+    "chainId": "eip155:56",
+    "name": "DogyRace",
+    "precision": 18,
+    "color": "#5337C5",
+    "icon": "https://assets.coingecko.com/coins/images/21514/thumb/DogyRaceLogo.png?1696520873",
+    "symbol": "DOR",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xfafd4cb703b25cb22f43d017e7e0d75febc26743": {
+    "assetId": "eip155:56/bep20:0xfafd4cb703b25cb22f43d017e7e0d75febc26743",
+    "chainId": "eip155:56",
+    "name": "WEYU",
+    "precision": 18,
+    "color": "#DBDEF4",
+    "icon": "https://assets.coingecko.com/coins/images/18112/thumb/weyu.PNG?1696517616",
+    "symbol": "WEYU",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xfb17d29f93719707bcb76257f5487a2810f7d4cb": {
+    "assetId": "eip155:56/bep20:0xfb17d29f93719707bcb76257f5487a2810f7d4cb",
+    "chainId": "eip155:56",
+    "name": "Chaseto",
+    "precision": 18,
+    "color": "#1F9BC1",
+    "icon": "https://assets.coingecko.com/coins/images/32132/thumb/CCN.jpg?1696588505",
+    "symbol": "CCN",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xfb288d60d3b66f9c3e231a9a39ed3f158a4269aa": {
+    "assetId": "eip155:56/bep20:0xfb288d60d3b66f9c3e231a9a39ed3f158a4269aa",
+    "chainId": "eip155:56",
+    "name": "Plasma Finance on BNB Smart Chain",
+    "precision": 18,
+    "color": "#C73A9A",
+    "icon": "https://assets.coingecko.com/coins/images/13340/thumb/Hi9sEGAD.png?1696513107",
+    "symbol": "PPAY",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xfb2c085a8b266b264ff0a38b9687ae14ef8a67fb": {
+    "assetId": "eip155:56/bep20:0xfb2c085a8b266b264ff0a38b9687ae14ef8a67fb",
+    "chainId": "eip155:56",
+    "name": "HalisWorld",
+    "precision": 18,
+    "color": "#DBE4EF",
+    "icon": "https://assets.coingecko.com/coins/images/29338/thumb/logo.png?1696528288",
+    "symbol": "HLS",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xfb4b7ee058828b5fbf2e475da88f1903f453334e": {
+    "assetId": "eip155:56/bep20:0xfb4b7ee058828b5fbf2e475da88f1903f453334e",
+    "chainId": "eip155:56",
+    "name": "OleCoin",
+    "precision": 9,
+    "color": "#EFE029",
+    "icon": "https://assets.coingecko.com/coins/images/17791/thumb/icon-olecoin-200x200-1.png?1696517314",
+    "symbol": "OLE",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xfb52370e0fcac5bfca44b4e6c09a97be1875605f": {
+    "assetId": "eip155:56/bep20:0xfb52370e0fcac5bfca44b4e6c09a97be1875605f",
+    "chainId": "eip155:56",
+    "name": "MetaBot",
+    "precision": 18,
+    "color": "#1D0E2E",
+    "icon": "https://assets.coingecko.com/coins/images/32356/thumb/MetaBot.jpg?1697475889",
+    "symbol": "METABOT",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xfb526228ff1c019e4604c7e7988c097d96bd5b70": {
+    "assetId": "eip155:56/bep20:0xfb526228ff1c019e4604c7e7988c097d96bd5b70",
+    "chainId": "eip155:56",
+    "name": "Virgo",
+    "precision": 8,
+    "color": "#D0C5DD",
+    "icon": "https://assets.coingecko.com/coins/images/19209/thumb/vgoLogo200.png?1696518656",
+    "symbol": "VGO",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xfb5b838b6cfeedc2873ab27866079ac55363d37e": {
+    "assetId": "eip155:56/bep20:0xfb5b838b6cfeedc2873ab27866079ac55363d37e",
+    "chainId": "eip155:56",
+    "name": "FLOKI on BNB Smart Chain",
+    "precision": 9,
+    "color": "#E5A851",
+    "icon": "https://assets.coingecko.com/coins/images/16746/thumb/PNG_image.png?1696516318",
+    "symbol": "FLOKI",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xfb60584f305b3fcf869d4ae48e082b2381fabde8": {
+    "assetId": "eip155:56/bep20:0xfb60584f305b3fcf869d4ae48e082b2381fabde8",
+    "chainId": "eip155:56",
+    "name": "FreeBnk",
+    "precision": 8,
+    "color": "#0F0E0C",
+    "icon": "https://assets.coingecko.com/coins/images/30681/thumb/Diagram_-_FreeBnk___Brand___Marketing_3.jpg?1696529550",
+    "symbol": "FRBK",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xfb6115445bff7b52feb98650c87f44907e58f802": {
+    "assetId": "eip155:56/bep20:0xfb6115445bff7b52feb98650c87f44907e58f802",
+    "chainId": "eip155:56",
+    "name": "Aave on BNB Smart Chain",
+    "precision": 18,
+    "color": "#7188B4",
+    "icon": "https://assets.coingecko.com/coins/images/12645/thumb/AAVE.png?1696512452",
+    "symbol": "AAVE",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xfb62ae373aca027177d1c18ee0862817f9080d08": {
+    "assetId": "eip155:56/bep20:0xfb62ae373aca027177d1c18ee0862817f9080d08",
+    "chainId": "eip155:56",
+    "name": "My DeFi Pet on BNB Smart Chain",
+    "precision": 18,
+    "color": "#E8DCD7",
+    "icon": "https://assets.coingecko.com/coins/images/15321/thumb/mydefi.PNG?1696514970",
+    "symbol": "DPET",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xfb6ca216c08178f218c0b3983f81e066cb946199": {
+    "assetId": "eip155:56/bep20:0xfb6ca216c08178f218c0b3983f81e066cb946199",
+    "chainId": "eip155:56",
+    "name": "FANTACOIN",
+    "precision": 18,
+    "color": "#4C4C4C",
+    "icon": "https://assets.coingecko.com/coins/images/32471/thumb/fanta.jpg?1698260047",
+    "symbol": "FTC",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xfb7400707df3d76084fbeae0109f41b178f71c02": {
+    "assetId": "eip155:56/bep20:0xfb7400707df3d76084fbeae0109f41b178f71c02",
+    "chainId": "eip155:56",
+    "name": "Shadows on BNB Smart Chain",
+    "precision": 18,
+    "color": "#E4E4E4",
+    "icon": "https://assets.coingecko.com/coins/images/14160/thumb/C3E49eZx_400x400.jpg?1696513878",
+    "symbol": "DOWS",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xfb9c339b4bace4fe63ccc1dd9a3c3c531441d5fe": {
+    "assetId": "eip155:56/bep20:0xfb9c339b4bace4fe63ccc1dd9a3c3c531441d5fe",
+    "chainId": "eip155:56",
+    "name": "SHILL Token",
+    "precision": 18,
+    "color": "#45D0A2",
+    "icon": "https://assets.coingecko.com/coins/images/18176/thumb/SHILL_Logo.png?1696517676",
+    "symbol": "SHILL",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xfbb4f2f342c6daab63ab85b0226716c4d1e26f36": {
+    "assetId": "eip155:56/bep20:0xfbb4f2f342c6daab63ab85b0226716c4d1e26f36",
+    "chainId": "eip155:56",
+    "name": "Coinracer",
+    "precision": 18,
+    "color": "#D2A348",
+    "icon": "https://assets.coingecko.com/coins/images/19529/thumb/13376.png?1696518963",
+    "symbol": "CRACE",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xfbc4f3f645c4003a2e4f4e9b51077d2daa9a9341": {
+    "assetId": "eip155:56/bep20:0xfbc4f3f645c4003a2e4f4e9b51077d2daa9a9341",
+    "chainId": "eip155:56",
+    "name": "Zedxion on BNB Smart Chain",
+    "precision": 18,
+    "color": "#90969A",
+    "icon": "https://assets.coingecko.com/coins/images/18841/thumb/ZEDXION.png?1696518302",
+    "symbol": "ZEDXION",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xfbcf80ed90856af0d6d9655f746331763efdb22c": {
+    "assetId": "eip155:56/bep20:0xfbcf80ed90856af0d6d9655f746331763efdb22c",
+    "chainId": "eip155:56",
+    "name": "NEXTYPE Finance",
+    "precision": 18,
+    "color": "#ED49BD",
+    "icon": "https://assets.coingecko.com/coins/images/17415/thumb/nextype.PNG?1696516963",
+    "symbol": "NT",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xfc111b40ad299572f74f1c119c036508c621bb19": {
+    "assetId": "eip155:56/bep20:0xfc111b40ad299572f74f1c119c036508c621bb19",
+    "chainId": "eip155:56",
+    "name": "Rocket Raccoon",
+    "precision": 18,
+    "color": "#DDD5C9",
+    "icon": "https://assets.coingecko.com/coins/images/19623/thumb/racoon.PNG?1696519052",
+    "symbol": "ROC",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xfc12242996ed64382286d765572f19e9b843f196": {
+    "assetId": "eip155:56/bep20:0xfc12242996ed64382286d765572f19e9b843f196",
+    "chainId": "eip155:56",
+    "name": "Wallet Defi",
+    "precision": 18,
+    "color": "#060708",
+    "icon": "https://assets.coingecko.com/coins/images/28430/thumb/WDF_200x200.png?1696527427",
+    "symbol": "WDF",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xfc279e6ff1fb1c7f5848d31561cab27d34a2856b": {
+    "assetId": "eip155:56/bep20:0xfc279e6ff1fb1c7f5848d31561cab27d34a2856b",
+    "chainId": "eip155:56",
+    "name": "Revoland",
+    "precision": 18,
+    "color": "#38394A",
+    "icon": "https://assets.coingecko.com/coins/images/25892/thumb/revo.jpg?1696524974",
+    "symbol": "REVO",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xfc3514474306e2d4aa8350fd8fa9c46c165fe8cd": {
+    "assetId": "eip155:56/bep20:0xfc3514474306e2d4aa8350fd8fa9c46c165fe8cd",
+    "chainId": "eip155:56",
+    "name": "Cloudname",
+    "precision": 18,
+    "color": "#101B2B",
+    "icon": "https://assets.coingecko.com/coins/images/23868/thumb/_NsbVq86_400x400.jpg?1696523069",
+    "symbol": "CNAME",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xfc4f5a4d1452b8dc6c3cb745db15b29c00812b19": {
+    "assetId": "eip155:56/bep20:0xfc4f5a4d1452b8dc6c3cb745db15b29c00812b19",
+    "chainId": "eip155:56",
+    "name": "Operon Origins",
+    "precision": 18,
+    "color": "#C27A0C",
+    "icon": "https://assets.coingecko.com/coins/images/20965/thumb/oro.png?1696520352",
+    "symbol": "ORO",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xfc646d0b564bf191b3d3adf2b620a792e485e6da": {
+    "assetId": "eip155:56/bep20:0xfc646d0b564bf191b3d3adf2b620a792e485e6da",
+    "chainId": "eip155:56",
+    "name": "Half Pizza",
+    "precision": 18,
+    "color": "#F1DDD6",
+    "icon": "https://assets.coingecko.com/coins/images/17785/thumb/piza.PNG?1696517309",
+    "symbol": "PIZA",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xfc7104975fde57040fce04ccee6a9e97d559dc12": {
+    "assetId": "eip155:56/bep20:0xfc7104975fde57040fce04ccee6a9e97d559dc12",
+    "chainId": "eip155:56",
+    "name": "DevOps",
+    "precision": 9,
+    "color": "#BA56C5",
+    "icon": "https://assets.coingecko.com/coins/images/30013/thumb/devops_200.png?1696528937",
+    "symbol": "DEV",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xfc8774321ee4586af183baca95a8793530056353": {
+    "assetId": "eip155:56/bep20:0xfc8774321ee4586af183baca95a8793530056353",
+    "chainId": "eip155:56",
+    "name": "LONG",
+    "precision": 18,
+    "color": "#8FD0D2",
+    "icon": "https://assets.coingecko.com/coins/images/32169/thumb/IMG_20231005_122433_189.jpg?1696741750",
+    "symbol": "LONG",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xfc914ecb4e4cbeea1fcf5315129c6cdb398cd465": {
+    "assetId": "eip155:56/bep20:0xfc914ecb4e4cbeea1fcf5315129c6cdb398cd465",
+    "chainId": "eip155:56",
+    "name": "PawStars",
+    "precision": 18,
+    "color": "#FFFFFF",
+    "icon": "https://assets.coingecko.com/coins/images/32700/thumb/Pawstars_logo_png.png?1698985030",
+    "symbol": "PAWS",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xfc9f81b107f51f2383fce56650fedb59c5fd59bd": {
+    "assetId": "eip155:56/bep20:0xfc9f81b107f51f2383fce56650fedb59c5fd59bd",
+    "chainId": "eip155:56",
+    "name": "Bikerush",
+    "precision": 18,
+    "color": "#7182CE",
+    "icon": "https://assets.coingecko.com/coins/images/25677/thumb/X0ZVax0H_400x400.jpg?1696524805",
+    "symbol": "BRT",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xfcadd830ff2d6cf3ad1681e1e8fc5ddce9d59e74": {
+    "assetId": "eip155:56/bep20:0xfcadd830ff2d6cf3ad1681e1e8fc5ddce9d59e74",
+    "chainId": "eip155:56",
+    "name": "Zada",
+    "precision": 18,
+    "color": "#1D1C1C",
+    "icon": "https://assets.coingecko.com/coins/images/20602/thumb/Screenshot-2021-11-18-at-22-55-25.png?1696520008",
+    "symbol": "ZADA",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xfcb520b47f5601031e0eb316f553a3641ff4b13c": {
+    "assetId": "eip155:56/bep20:0xfcb520b47f5601031e0eb316f553a3641ff4b13c",
+    "chainId": "eip155:56",
+    "name": "LizardToken Finance",
+    "precision": 8,
+    "color": "#15B4C8",
+    "icon": "https://assets.coingecko.com/coins/images/23570/thumb/download_%2847%29.png?1696522779",
+    "symbol": "LIZ",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xfcb8a4b1a0b645e08064e05b98e9cc6f48d2aa57": {
+    "assetId": "eip155:56/bep20:0xfcb8a4b1a0b645e08064e05b98e9cc6f48d2aa57",
+    "chainId": "eip155:56",
+    "name": "ZMINE",
+    "precision": 18,
+    "color": "#9E9F9F",
+    "icon": "https://assets.coingecko.com/coins/images/2103/thumb/zmn.png?1696503070",
+    "symbol": "ZMN",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xfce146bf3146100cfe5db4129cf6c82b0ef4ad8c": {
+    "assetId": "eip155:56/bep20:0xfce146bf3146100cfe5db4129cf6c82b0ef4ad8c",
+    "chainId": "eip155:56",
+    "name": "renBTC on BNB Smart Chain",
+    "precision": 8,
+    "color": "#E8932A",
+    "icon": "https://assets.coingecko.com/coins/images/11370/thumb/Bitcoin.jpg?1696511287",
+    "symbol": "RENBTC",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xfd0fd32a20532ad690731c2685d77c351015ebba": {
+    "assetId": "eip155:56/bep20:0xfd0fd32a20532ad690731c2685d77c351015ebba",
+    "chainId": "eip155:56",
+    "name": "Quarashi on BNB Smart Chain",
+    "precision": 18,
+    "color": "#8C2C8C",
+    "icon": "https://assets.coingecko.com/coins/images/25589/thumb/Lk2A7ta.png?1696524723",
+    "symbol": "QUA",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xfd2700c51812753215754de9ec51cdd42bf725b9": {
+    "assetId": "eip155:56/bep20:0xfd2700c51812753215754de9ec51cdd42bf725b9",
+    "chainId": "eip155:56",
+    "name": "Router Protocol on BNB Smart Chain",
+    "precision": 18,
+    "color": "#363555",
+    "icon": "https://assets.coingecko.com/coins/images/13709/thumb/route_token_200x200-19.png?1696513454",
+    "symbol": "ROUTE",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xfd42728b76772a82ccad527e298dd15a55f4ddd6": {
+    "assetId": "eip155:56/bep20:0xfd42728b76772a82ccad527e298dd15a55f4ddd6",
+    "chainId": "eip155:56",
+    "name": "KarenCoin",
+    "precision": 9,
+    "color": "#EAB8B2",
+    "icon": "https://assets.coingecko.com/coins/images/16191/thumb/karen.PNG?1696515792",
+    "symbol": "KAREN",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xfd5840cd36d94d7229439859c0112a4185bc0255": {
+    "assetId": "eip155:56/bep20:0xfd5840cd36d94d7229439859c0112a4185bc0255",
+    "chainId": "eip155:56",
+    "name": "Venus USDT",
+    "precision": 8,
+    "color": "#EBE8E1",
+    "icon": "https://assets.coingecko.com/coins/images/13901/thumb/venus_usdt.png?1696513643",
+    "symbol": "VUSDT",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xfd5af95c12446b60d23e16a4ea95690ce942e5dc": {
+    "assetId": "eip155:56/bep20:0xfd5af95c12446b60d23e16a4ea95690ce942e5dc",
+    "chainId": "eip155:56",
+    "name": "Freela on BNB Smart Chain",
+    "precision": 18,
+    "color": "#EC9879",
+    "icon": "https://assets.coingecko.com/coins/images/15856/thumb/freela.PNG?1696515472",
+    "symbol": "FREL",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xfd7b3a77848f1c2d67e05e54d78d174a0c850335": {
+    "assetId": "eip155:56/bep20:0xfd7b3a77848f1c2d67e05e54d78d174a0c850335",
+    "chainId": "eip155:56",
+    "name": "Binance Peg Ontology",
+    "precision": 18,
+    "color": "#4CA4FC",
+    "icon": "https://assets.coingecko.com/coins/images/18559/thumb/ont.png?1696518037",
+    "symbol": "ONT",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xfdad8edc724277e975f4955d288c6eb5b20a3146": {
+    "assetId": "eip155:56/bep20:0xfdad8edc724277e975f4955d288c6eb5b20a3146",
+    "chainId": "eip155:56",
+    "name": "Nulswap on BNB Smart Chain",
+    "precision": 8,
+    "color": "#C6F8E1",
+    "icon": "https://assets.coingecko.com/coins/images/30099/thumb/nswap-circ_%283%29.png?1696529023",
+    "symbol": "NSWAP",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xfdc66a08b0d0dc44c17bbd471b88f49f50cdd20f": {
+    "assetId": "eip155:56/bep20:0xfdc66a08b0d0dc44c17bbd471b88f49f50cdd20f",
+    "chainId": "eip155:56",
+    "name": "SmarDex on BNB Smart Chain",
+    "precision": 18,
+    "color": "#04F7AF",
+    "icon": "https://assets.coingecko.com/coins/images/29470/thumb/SDEX_logo_transparent_outside_240x240.png?1696930070",
+    "symbol": "SDEX",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xfdfc1ab8bf1e2d6920caf405aa488987a077fc4b": {
+    "assetId": "eip155:56/bep20:0xfdfc1ab8bf1e2d6920caf405aa488987a077fc4b",
+    "chainId": "eip155:56",
+    "name": "CBYTE Network",
+    "precision": 18,
+    "color": "#2A2A2A",
+    "icon": "https://assets.coingecko.com/coins/images/29248/thumb/photo_2023-02-06_02-15-30.jpg?1696528204",
+    "symbol": "CBYTE",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xfdfd27ae39cebefdbaac8615f18aa68ddd0f15f5": {
+    "assetId": "eip155:56/bep20:0xfdfd27ae39cebefdbaac8615f18aa68ddd0f15f5",
+    "chainId": "eip155:56",
+    "name": "Giftedhands on BNB Smart Chain",
+    "precision": 18,
+    "color": "#289978",
+    "icon": "https://assets.coingecko.com/coins/images/12540/thumb/K-8uHktJ.png?1696512351",
+    "symbol": "GHD",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xfdff7a8eda6a3739132867f989be4bf84e803c15": {
+    "assetId": "eip155:56/bep20:0xfdff7a8eda6a3739132867f989be4bf84e803c15",
+    "chainId": "eip155:56",
+    "name": "New Year",
+    "precision": 18,
+    "color": "#DDDADA",
+    "icon": "https://assets.coingecko.com/coins/images/21839/thumb/nyt_200.png?1696521194",
+    "symbol": "NYT",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xfe19f0b51438fd612f6fd59c1dbb3ea319f433ba": {
+    "assetId": "eip155:56/bep20:0xfe19f0b51438fd612f6fd59c1dbb3ea319f433ba",
+    "chainId": "eip155:56",
+    "name": "Magic Internet Money on BNB Smart Chain",
+    "precision": 18,
+    "color": "#5958FC",
+    "icon": "https://assets.coingecko.com/coins/images/16786/thumb/mimlogopng.png?1696516358",
+    "symbol": "MIM",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xfe1d7f7a8f0bda6e415593a2e4f82c64b446d404": {
+    "assetId": "eip155:56/bep20:0xfe1d7f7a8f0bda6e415593a2e4f82c64b446d404",
+    "chainId": "eip155:56",
+    "name": "BullPerks",
+    "precision": 18,
+    "color": "#1E8980",
+    "icon": "https://assets.coingecko.com/coins/images/16471/thumb/horizontal-standard-black.png?1696516066",
+    "symbol": "BLP",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xfe2f3580856376377c14e2287fa15bcb703e5fb5": {
+    "assetId": "eip155:56/bep20:0xfe2f3580856376377c14e2287fa15bcb703e5fb5",
+    "chainId": "eip155:56",
+    "name": "Alphabet",
+    "precision": 9,
+    "color": "#0C121F",
+    "icon": "https://assets.coingecko.com/coins/images/29810/thumb/logo.png?1696528739",
+    "symbol": "ALT",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xfe56d5892bdffc7bf58f2e84be1b2c32d21c308b": {
+    "assetId": "eip155:56/bep20:0xfe56d5892bdffc7bf58f2e84be1b2c32d21c308b",
+    "chainId": "eip155:56",
+    "name": "Kyber Network Crystal on BNB Smart Chain",
+    "precision": 18,
+    "color": "#CFF1EF",
+    "icon": "https://assets.coingecko.com/coins/images/14899/thumb/RwdVsGcw_400x400.jpg?1696514562",
+    "symbol": "KNC",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xfe8bf5b8f5e4eb5f9bc2be16303f7dab8cf56aa8": {
+    "assetId": "eip155:56/bep20:0xfe8bf5b8f5e4eb5f9bc2be16303f7dab8cf56aa8",
+    "chainId": "eip155:56",
+    "name": "BIBI",
+    "precision": 18,
+    "color": "#6C3F34",
+    "icon": "https://assets.coingecko.com/coins/images/30242/thumb/bibilogo.jpg?1696529151",
+    "symbol": "BIBI",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xfe8e0e9a7a5ae744aaebeac38e3b9b1da7b17af3": {
+    "assetId": "eip155:56/bep20:0xfe8e0e9a7a5ae744aaebeac38e3b9b1da7b17af3",
+    "chainId": "eip155:56",
+    "name": "WatchDO",
+    "precision": 18,
+    "color": "#171718",
+    "icon": "https://assets.coingecko.com/coins/images/22279/thumb/4409.jpg?1696521626",
+    "symbol": "WDO",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xfea292e5ea4510881bdb840e3cec63abd43f936f": {
+    "assetId": "eip155:56/bep20:0xfea292e5ea4510881bdb840e3cec63abd43f936f",
+    "chainId": "eip155:56",
+    "name": "Cornucopias on BNB Smart Chain",
+    "precision": 18,
+    "color": "#251F1B",
+    "icon": "https://assets.coingecko.com/coins/images/21452/thumb/g56WwJDA_400x400.jpg?1696520814",
+    "symbol": "COPI",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xfeb4e9b932ef708c498cc997abe51d0ee39300cf": {
+    "assetId": "eip155:56/bep20:0xfeb4e9b932ef708c498cc997abe51d0ee39300cf",
+    "chainId": "eip155:56",
+    "name": "GetKicks",
+    "precision": 18,
+    "color": "#E34648",
+    "icon": "https://assets.coingecko.com/coins/images/27873/thumb/GetKicks.jpg?1696526891",
+    "symbol": "KICKS",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xfebe8c1ed424dbf688551d4e2267e7a53698f0aa": {
+    "assetId": "eip155:56/bep20:0xfebe8c1ed424dbf688551d4e2267e7a53698f0aa",
+    "chainId": "eip155:56",
+    "name": "Vita Inu on BNB Smart Chain",
+    "precision": 18,
+    "color": "#D6BFD8",
+    "icon": "https://assets.coingecko.com/coins/images/20594/thumb/vita-inu-head-wallet-icon-transparent.png?1696520000",
+    "symbol": "VINU",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xfecca80ff6deb2b492e93df3b67f0c523cfd3a48": {
+    "assetId": "eip155:56/bep20:0xfecca80ff6deb2b492e93df3b67f0c523cfd3a48",
+    "chainId": "eip155:56",
+    "name": "AlgoBlocks",
+    "precision": 18,
+    "color": "#F4F4F4",
+    "icon": "https://assets.coingecko.com/coins/images/25120/thumb/tncthV9K_400x400.jpg?1696524270",
+    "symbol": "ALGOBLK",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xff12afb3841b737289d1b02dfedbe4c85a8ec6e6": {
+    "assetId": "eip155:56/bep20:0xff12afb3841b737289d1b02dfedbe4c85a8ec6e6",
+    "chainId": "eip155:56",
+    "name": "Saba Finance",
+    "precision": 18,
+    "color": "#52504C",
+    "icon": "https://assets.coingecko.com/coins/images/30107/thumb/saba.png?1696529029",
+    "symbol": "SABA",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xff2f5e8e796b6739ac9d73b8fe916568abb871b5": {
+    "assetId": "eip155:56/bep20:0xff2f5e8e796b6739ac9d73b8fe916568abb871b5",
+    "chainId": "eip155:56",
+    "name": "OxAI com on BNB Smart Chain",
+    "precision": 18,
+    "color": "#0E7C8C",
+    "icon": "https://assets.coingecko.com/coins/images/28992/thumb/oxai-logo-200.png?1696527964",
+    "symbol": "OXAI",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xff71e87a2e7b818eee86f3f1c2e94a06cac85866": {
+    "assetId": "eip155:56/bep20:0xff71e87a2e7b818eee86f3f1c2e94a06cac85866",
+    "chainId": "eip155:56",
+    "name": "Catcoin BSC",
+    "precision": 9,
+    "color": "#CA472B",
+    "icon": "https://assets.coingecko.com/coins/images/29426/thumb/Cat.jpeg?1696528375",
+    "symbol": "CAT",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xff8bbc599ea030aa69d0298035dfe263740a95bc": {
+    "assetId": "eip155:56/bep20:0xff8bbc599ea030aa69d0298035dfe263740a95bc",
+    "chainId": "eip155:56",
+    "name": "Dohrnii on BNB Smart Chain",
+    "precision": 18,
+    "color": "#7A8FEA",
+    "icon": "https://assets.coingecko.com/coins/images/24966/thumb/dhn.png?1696524119",
+    "symbol": "DHN",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xffa188493c15dfaf2c206c97d8633377847b6a52": {
+    "assetId": "eip155:56/bep20:0xffa188493c15dfaf2c206c97d8633377847b6a52",
+    "chainId": "eip155:56",
+    "name": "Wefi Finance on BNB Smart Chain",
+    "precision": 18,
+    "color": "#1C3CF4",
+    "icon": "https://assets.coingecko.com/coins/images/30540/thumb/wefi.png?1696529412",
+    "symbol": "WEFI",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xffad7f9f704a5fdc6265e24b436b4b35ed52def2": {
+    "assetId": "eip155:56/bep20:0xffad7f9f704a5fdc6265e24b436b4b35ed52def2",
+    "chainId": "eip155:56",
+    "name": "CloudTx",
+    "precision": 9,
+    "color": "#483ED2",
+    "icon": "https://assets.coingecko.com/coins/images/27634/thumb/Untitled_Artwork_%281%29.png?1696526664",
+    "symbol": "CLOUD",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xffba7529ac181c2ee1844548e6d7061c9a597df4": {
+    "assetId": "eip155:56/bep20:0xffba7529ac181c2ee1844548e6d7061c9a597df4",
+    "chainId": "eip155:56",
+    "name": "Ternoa on BNB Smart Chain",
+    "precision": 18,
+    "color": "#040404",
+    "icon": "https://assets.coingecko.com/coins/images/15921/thumb/e55393fa-7b4d-40f5-9f36-9a8a6bdcb570.png?1696515534",
+    "symbol": "CAPS",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xffe2a166a3ea6dd7bb11b2c48f08f1e4202d4e78": {
+    "assetId": "eip155:56/bep20:0xffe2a166a3ea6dd7bb11b2c48f08f1e4202d4e78",
+    "chainId": "eip155:56",
+    "name": "Xave Coin on BNB Smart Chain",
+    "precision": 18,
+    "color": "#111420",
+    "icon": "https://assets.coingecko.com/coins/images/24084/thumb/k8qjP9t9_400x400.jpg?1696523277",
+    "symbol": "XVC",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/bep20:0xffeecbf8d7267757c2dc3d13d730e97e15bfdf7f": {
+    "assetId": "eip155:56/bep20:0xffeecbf8d7267757c2dc3d13d730e97e15bfdf7f",
+    "chainId": "eip155:56",
+    "name": "BoringDAO on BNB Smart Chain",
+    "precision": 18,
+    "color": "#2267BD",
+    "icon": "https://assets.coingecko.com/coins/images/16429/thumb/Tjq3pXEH_400x400.jpg?1696516025",
+    "symbol": "BORING",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  },
+  "eip155:56/slip44:60": {
+    "assetId": "eip155:56/slip44:60",
+    "chainId": "eip155:56",
+    "name": "BNB on BNB Smart Chain",
+    "networkName": "BNB Smart Chain",
+    "symbol": "BNB",
+    "precision": 18,
+    "color": "#F0B90B",
+    "icon": "https://assets.coingecko.com/coins/images/825/large/bnb-icon2_2x.png?1644979850",
+    "explorer": "https://bscscan.com",
+    "explorerAddressLink": "https://bscscan.com/address/",
+    "explorerTxLink": "https://bscscan.com/tx/"
+  }
+}
\ No newline at end of file
diff --git a/src/lib/utils.ts b/src/lib/utils.ts
index 9dbd72c..977b292 100644
--- a/src/lib/utils.ts
+++ b/src/lib/utils.ts
@@ -1,4 +1,15 @@
+import type { AssetId } from '@shapeshiftoss/caip'
 export const getFeatureFlag = (flagName: string): boolean => {
   const envVarName = `VITE_FEATURE_${flagName.toUpperCase()}`
   return import.meta.env[envVarName] === 'true'
 }
+export const middleEllipsis = (value: string): string =>
+  value.length >= 12 ? `${value.slice(0, 4)}...${value.slice(-4)}` : value
+export const isEthAddress = (address: string): boolean => /^0x[0-9A-Fa-f]{40}$/.test(address)
+export const isNft = (assetId: AssetId): boolean => {
+  const slashIdx = assetId.indexOf('/')
+  const assetParts = assetId.substring(slashIdx + 1)
+  const idx = assetParts.indexOf(':')
+  const assetNamespace = assetParts.substring(0, idx)
+  return ['erc721', 'erc1155', 'bep721', 'bep1155'].includes(assetNamespace)
+}
diff --git a/src/theme/components/Modal.tsx b/src/theme/components/Modal.tsx
new file mode 100644
index 0000000..f095c73
--- /dev/null
+++ b/src/theme/components/Modal.tsx
@@ -0,0 +1,70 @@
+import { mode } from '@chakra-ui/theme-tools'
+export const ModalStyle = {
+  parts: ['dialog', 'footer', 'closeButton', 'header', 'overlay'],
+  // Styles for the base style
+  baseStyle: () => ({
+    overlay: {
+      bgColor: 'blanket',
+    },
+    dialog: {
+      bg: 'background.surface.overlay.base',
+      borderRadius: '2xl',
+      borderColor: 'border.base',
+      borderWidth: 1,
+    },
+    header: {
+      borderTopRadius: '2xl',
+    },
+    closeButton: {
+      borderRadius: '100%',
+    },
+  }),
+  // Styles for the size variations
+  sizes: {
+    full: {
+      closeButton: {
+        top: 'calc(0.5rem + env(safe-area-inset-top))',
+      },
+      header: {
+        paddingTop: 'calc(1rem + env(safe-area-inset-top))',
+      },
+      footer: {
+        paddingBottom: 'calc(1rem + env(safe-area-inset-bottom))',
+      },
+    },
+  },
+  // Styles for the visual style variations
+  variants: {
+    fluid: {
+      dialog: {
+        maxWidth: '100%',
+        width: 'auto',
+      },
+    },
+    'header-nav': () => ({
+      dialog: {
+        maxWidth: '100%',
+        width: 'auto',
+      },
+      header: {
+        borderBottom: '1px solid',
+        bg: 'background.surface.raised.accent',
+        borderColor: 'border.base',
+        borderTopRadius: '2xl',
+        fontSize: 'md',
+      },
+    }),
+    'fluid-footer': (props: Record<string, any>) => ({
+      dialog: {
+        maxWidth: '100%',
+        width: 'auto',
+      },
+      footer: {
+        borderTopWidth: 1,
+        borderColor: mode('gray.100', 'gray.750')(props),
+      },
+    }),
+  },
+  // The default `size` or `variant` values
+  defaultProps: {},
+}
diff --git a/src/theme/theme.tsx b/src/theme/theme.tsx
index e56c7c8..b8aa61d 100644
--- a/src/theme/theme.tsx
+++ b/src/theme/theme.tsx
@@ -6,6 +6,7 @@ import { colors } from './colors'
 import { ButtonStyle as Button } from './components/Button'
 import { CardStyle as Card } from './components/Card'
 import { InputStyle as Input } from './components/Input'
+import { ModalStyle as Modal } from './components/Modal'
 import { stepperTheme as Stepper } from './components/Stepper'
 import { semanticTokens } from './semanticTokens'
 
@@ -97,6 +98,7 @@ export const theme = extendTheme({
   components: {
     Button,
     Card,
+    Modal,
     Input,
     Stepper,
   },
diff --git a/src/types/Asset.ts b/src/types/Asset.ts
new file mode 100644
index 0000000..4a0f6c8
--- /dev/null
+++ b/src/types/Asset.ts
@@ -0,0 +1,21 @@
+import type { AssetId, ChainId } from '@shapeshiftoss/caip'
+
+export type Asset = {
+  assetId: AssetId
+  chainId: ChainId
+  description?: string
+  isTrustedDescription?: boolean
+  symbol: string
+  name: string
+  id?: string
+  networkName?: string
+  precision: number
+  color: string
+  networkColor?: string
+  icon: string
+  icons?: string[]
+  networkIcon?: string
+  explorer: string
+  explorerTxLink: string
+  explorerAddressLink: string
+}
diff --git a/yarn.lock b/yarn.lock
index 2252863..0080fdf 100644
--- a/yarn.lock
+++ b/yarn.lock
@@ -2383,6 +2383,16 @@
   resolved "https://registry.yarnpkg.com/@rushstack/eslint-patch/-/eslint-patch-1.6.1.tgz#9ab8f811930d7af3e3d549183a50884f9eb83f36"
   integrity sha512-UY+FGM/2jjMkzQLn8pxcHGMaVLh9aEitG3zY2CiY7XHdLiz3bZOwa6oDxNqEMv7zZkV+cj5DOdz0cQ1BP5Hjgw==
 
+"@shapeshiftoss/caip@^8.15.0":
+  version "8.15.0"
+  resolved "https://registry.yarnpkg.com/@shapeshiftoss/caip/-/caip-8.15.0.tgz#ab3d530973a80d29e3d2409bdd9956a7c4376dbc"
+  integrity sha512-G5SNuqabE+zj2XYwg5Z/8WlfDPRsaqcnh4KUIKhJl22mygnFNWb2XNKkgtrNzB969QHZ7xMxCtSR7m067GywrQ==
+
+"@shapeshiftoss/types@^8.6.0":
+  version "8.6.0"
+  resolved "https://registry.yarnpkg.com/@shapeshiftoss/types/-/types-8.6.0.tgz#4bf0a2083838d859fe8ac067ab168b5a382b7b4d"
+  integrity sha512-cbeZhEvWT5tWxBQt1yUXbPnGVWATYTqKWR+jHO8iEAzIrJVG2LIqXX2Jnp+17HOFWoEL0qwjbpHLXR8EO/poxw==
+
 "@sinclair/typebox@^0.27.8":
   version "0.27.8"
   resolved "https://registry.yarnpkg.com/@sinclair/typebox/-/typebox-0.27.8.tgz#6667fac16c436b5434a387a34dedb013198f6e6e"
@@ -2978,6 +2988,11 @@ asynciterator.prototype@^1.0.0:
   dependencies:
     has-symbols "^1.0.3"
 
+asynckit@^0.4.0:
+  version "0.4.0"
+  resolved "https://registry.yarnpkg.com/asynckit/-/asynckit-0.4.0.tgz#c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79"
+  integrity sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==
+
 available-typed-arrays@^1.0.5:
   version "1.0.5"
   resolved "https://registry.yarnpkg.com/available-typed-arrays/-/available-typed-arrays-1.0.5.tgz#92f95616501069d07d10edb2fc37d3e1c65123b7"
@@ -2988,6 +3003,15 @@ axe-core@=4.7.0:
   resolved "https://registry.yarnpkg.com/axe-core/-/axe-core-4.7.0.tgz#34ba5a48a8b564f67e103f0aa5768d76e15bbbbf"
   integrity sha512-M0JtH+hlOL5pLQwHOLNYZaXuhqmvS8oExsqB1SBYgA4Dk7u/xx+YdGHXaK5pyUfed5mYXdlYiphWq3G8cRi5JQ==
 
+axios@^1.6.5:
+  version "1.6.5"
+  resolved "https://registry.yarnpkg.com/axios/-/axios-1.6.5.tgz#2c090da14aeeab3770ad30c3a1461bc970fb0cd8"
+  integrity sha512-Ii012v05KEVuUoFWmMW/UQv9aRIc3ZwkWDcM+h5Il8izZCtRVpDUfwpoFf7eOtajT3QiGR4yDUx7lPqHJULgbg==
+  dependencies:
+    follow-redirects "^1.15.4"
+    form-data "^4.0.0"
+    proxy-from-env "^1.1.0"
+
 axobject-query@^3.2.1:
   version "3.2.1"
   resolved "https://registry.yarnpkg.com/axobject-query/-/axobject-query-3.2.1.tgz#39c378a6e3b06ca679f29138151e45b2b32da62a"
@@ -3236,6 +3260,13 @@ color2k@^2.0.2:
   resolved "https://registry.yarnpkg.com/color2k/-/color2k-2.0.3.tgz#a771244f6b6285541c82aa65ff0a0c624046e533"
   integrity sha512-zW190nQTIoXcGCaU08DvVNFTmQhUpnJfVuAKfWqUQkflXKpaDdpaYoM0iluLS9lgJNHyBF58KKA2FBEwkD7wog==
 
+combined-stream@^1.0.8:
+  version "1.0.8"
+  resolved "https://registry.yarnpkg.com/combined-stream/-/combined-stream-1.0.8.tgz#c3d45a8b34fd730631a110a8a2520682b31d5a7f"
+  integrity sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==
+  dependencies:
+    delayed-stream "~1.0.0"
+
 compute-scroll-into-view@3.0.3:
   version "3.0.3"
   resolved "https://registry.yarnpkg.com/compute-scroll-into-view/-/compute-scroll-into-view-3.0.3.tgz#c418900a5c56e2b04b885b54995df164535962b1"
@@ -3368,6 +3399,11 @@ define-properties@^1.1.3, define-properties@^1.2.0, define-properties@^1.2.1:
     has-property-descriptors "^1.0.0"
     object-keys "^1.1.1"
 
+delayed-stream@~1.0.0:
+  version "1.0.0"
+  resolved "https://registry.yarnpkg.com/delayed-stream/-/delayed-stream-1.0.0.tgz#df3ae199acadfb7d440aaae0b29e2272b24ec619"
+  integrity sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==
+
 dequal@^2.0.3:
   version "2.0.3"
   resolved "https://registry.yarnpkg.com/dequal/-/dequal-2.0.3.tgz#2644214f1997d39ed0ee0ece72335490a7ac67be"
@@ -3961,6 +3997,11 @@ focus-lock@^1.0.0:
   dependencies:
     tslib "^2.0.3"
 
+follow-redirects@^1.15.4:
+  version "1.15.4"
+  resolved "https://registry.yarnpkg.com/follow-redirects/-/follow-redirects-1.15.4.tgz#cdc7d308bf6493126b17ea2191ea0ccf3e535adf"
+  integrity sha512-Cr4D/5wlrb0z9dgERpUL3LrmPKVDsETIJhaCMeDfuFYcqa5bldGV6wBsAN6X/vxlXQtFBMrXdXxdL8CbDTGniw==
+
 for-each@^0.3.3:
   version "0.3.3"
   resolved "https://registry.yarnpkg.com/for-each/-/for-each-0.3.3.tgz#69b447e88a0a5d32c3e7084f3f1710034b21376e"
@@ -3968,6 +4009,15 @@ for-each@^0.3.3:
   dependencies:
     is-callable "^1.1.3"
 
+form-data@^4.0.0:
+  version "4.0.0"
+  resolved "https://registry.yarnpkg.com/form-data/-/form-data-4.0.0.tgz#93919daeaf361ee529584b9b31664dc12c9fa452"
+  integrity sha512-ETEklSGi5t0QMZuiXoA/Q6vcnxcLQP5vdugSpuAyi6SVGi2clPPp+xgEhuMaHC+zGgn31Kd235W35f7Hykkaww==
+  dependencies:
+    asynckit "^0.4.0"
+    combined-stream "^1.0.8"
+    mime-types "^2.1.12"
+
 framer-motion@^10.17.9:
   version "10.17.9"
   resolved "https://registry.yarnpkg.com/framer-motion/-/framer-motion-10.17.9.tgz#d3bb15039e8bd6ba5d044a3fa181332a09cd2692"
@@ -4677,6 +4727,14 @@ magic-string@^0.30.5:
   dependencies:
     "@jridgewell/sourcemap-codec" "^1.4.15"
 
+match-sorter@^6.3.1:
+  version "6.3.1"
+  resolved "https://registry.yarnpkg.com/match-sorter/-/match-sorter-6.3.1.tgz#98cc37fda756093424ddf3cbc62bfe9c75b92bda"
+  integrity sha512-mxybbo3pPNuA+ZuCUhm5bwNkXrJTbsk5VWbR5wiwz/GC6LIiegBGn2w3O08UG/jdbYLinw51fSQ5xNU1U3MgBw==
+  dependencies:
+    "@babel/runtime" "^7.12.5"
+    remove-accents "0.4.2"
+
 merge-stream@^2.0.0:
   version "2.0.0"
   resolved "https://registry.yarnpkg.com/merge-stream/-/merge-stream-2.0.0.tgz#52823629a14dd00c9770fb6ad47dc6310f2c1f60"
@@ -4695,6 +4753,18 @@ micromatch@^4.0.4:
     braces "^3.0.2"
     picomatch "^2.3.1"
 
+mime-db@1.52.0:
+  version "1.52.0"
+  resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.52.0.tgz#bbabcdc02859f4987301c856e3387ce5ec43bf70"
+  integrity sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==
+
+mime-types@^2.1.12:
+  version "2.1.35"
+  resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.35.tgz#381a871b62a734450660ae3deee44813f70d959a"
+  integrity sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==
+  dependencies:
+    mime-db "1.52.0"
+
 mimic-fn@^2.1.0:
   version "2.1.0"
   resolved "https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-2.1.0.tgz#7ed2c2ccccaf84d3ffcb7a69b57711fc2083401b"
@@ -5045,6 +5115,11 @@ prop-types@^15.6.2, prop-types@^15.8.1:
     object-assign "^4.1.1"
     react-is "^16.13.1"
 
+proxy-from-env@^1.1.0:
+  version "1.1.0"
+  resolved "https://registry.yarnpkg.com/proxy-from-env/-/proxy-from-env-1.1.0.tgz#e102f16ca355424865755d2c9e8ea4f24d58c3e2"
+  integrity sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg==
+
 punycode@^2.1.0:
   version "2.3.1"
   resolved "https://registry.yarnpkg.com/punycode/-/punycode-2.3.1.tgz#027422e2faec0b25e1549c3e1bd8309b9133b6e5"
@@ -5145,6 +5220,11 @@ react-style-singleton@^2.2.1:
     invariant "^2.2.4"
     tslib "^2.0.0"
 
+react-virtuoso@^4.6.2:
+  version "4.6.2"
+  resolved "https://registry.yarnpkg.com/react-virtuoso/-/react-virtuoso-4.6.2.tgz#74b59ebe3260e1f73e92340ffec84a6853285a12"
+  integrity sha512-vvlqvzPif+MvBrJ09+hJJrVY0xJK9yran+A+/1iwY78k0YCVKsyoNPqoLxOxzYPggspNBNXqUXEcvckN29OxyQ==
+
 react@^18.2.0:
   version "18.2.0"
   resolved "https://registry.yarnpkg.com/react/-/react-18.2.0.tgz#555bd98592883255fa00de14f1151a917b5d77d5"
@@ -5225,6 +5305,11 @@ regjsparser@^0.9.1:
   dependencies:
     jsesc "~0.5.0"
 
+remove-accents@0.4.2:
+  version "0.4.2"
+  resolved "https://registry.yarnpkg.com/remove-accents/-/remove-accents-0.4.2.tgz#0a43d3aaae1e80db919e07ae254b285d9e1c7bb5"
+  integrity sha512-7pXIJqJOq5tFgG1A2Zxti3Ht8jJF337m4sowbuHsW30ZnkQFnDzy9qBNhgzX8ZLW4+UBcXiiR7SwR6pokHsxiA==
+
 resolve-from@^4.0.0:
   version "4.0.0"
   resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-4.0.0.tgz#4abcd852ad32dd7baabfe9b40e00a36db5f392e6"

From ae4e713241742885e5be9e9170c1d57daa09b8f0 Mon Sep 17 00:00:00 2001
From: reallybeard <89934888+reallybeard@users.noreply.github.com>
Date: Tue, 9 Jan 2024 14:59:14 -0600
Subject: [PATCH 2/6] fix rendering

---
 .../AssetSelectModal/AssetSelectModal.tsx     | 30 ++++++++++----
 .../AssetSelectModal/ChainButton.tsx          |  2 +-
 src/components/AssetSelectModal/types.ts      |  4 ++
 src/components/AssetSelection.tsx             | 17 ++++----
 src/components/SelectPair.tsx                 | 40 +++++++++++--------
 5 files changed, 58 insertions(+), 35 deletions(-)
 create mode 100644 src/components/AssetSelectModal/types.ts

diff --git a/src/components/AssetSelectModal/AssetSelectModal.tsx b/src/components/AssetSelectModal/AssetSelectModal.tsx
index c4fdb80..d935f83 100644
--- a/src/components/AssetSelectModal/AssetSelectModal.tsx
+++ b/src/components/AssetSelectModal/AssetSelectModal.tsx
@@ -12,7 +12,7 @@ import {
 } from '@chakra-ui/react'
 import type { ChainId } from '@shapeshiftoss/caip'
 import type { ChangeEvent } from 'react'
-import { useCallback, useEffect, useMemo, useState } from 'react'
+import { useCallback, useEffect, useMemo, useRef, useState } from 'react'
 import AssetData from 'lib/generatedAssetData.json'
 import { isNft } from 'lib/utils'
 import type { Asset } from 'types/Asset'
@@ -25,13 +25,15 @@ import { filterAssetsBySearchTerm } from './helpers/filterAssetsBySearchTerm'
 type AssetSelectModalProps = {
   isOpen: boolean
   onClose: () => void
+  onClick: (asset: Asset) => void
 }
 
-export const AssetSelectModal: React.FC<AssetSelectModalProps> = ({ isOpen, onClose }) => {
+export const AssetSelectModal: React.FC<AssetSelectModalProps> = ({ isOpen, onClose, onClick }) => {
   const [searchQuery, setSearchQuery] = useState('')
   const assets = Object.values(AssetData)
   const [activeChain, setActiveChain] = useState<ChainId | 'All'>('All')
   const [searchTermAssets, setSearchTermAssets] = useState<Asset[]>([])
+  const iniitalRef = useRef(null)
 
   const filteredAssets = useMemo(
     () =>
@@ -43,10 +45,6 @@ export const AssetSelectModal: React.FC<AssetSelectModalProps> = ({ isOpen, onCl
 
   const searching = useMemo(() => searchQuery.length > 0, [searchQuery])
 
-  const handleClick = useCallback((asset: Asset) => {
-    console.info(asset.assetId)
-  }, [])
-
   const handleSearchQuery = useCallback((value: ChangeEvent<HTMLInputElement>) => {
     setSearchQuery(value.target.value)
   }, [])
@@ -59,8 +57,23 @@ export const AssetSelectModal: React.FC<AssetSelectModalProps> = ({ isOpen, onCl
     setActiveChain('All')
   }, [])
 
+  const handleClose = useCallback(() => {
+    // Reset state on close
+    setActiveChain('All')
+    setSearchQuery('')
+    onClose()
+  }, [onClose])
+
+  const handleClick = useCallback(
+    (asset: Asset) => {
+      onClick(asset)
+      handleClose()
+    },
+    [handleClose, onClick],
+  )
+
   useEffect(() => {
-    if (filteredAssets) {
+    if (filteredAssets && searching) {
       setSearchTermAssets(
         searching ? filterAssetsBySearchTerm(searchQuery, filteredAssets) : filteredAssets,
       )
@@ -101,7 +114,7 @@ export const AssetSelectModal: React.FC<AssetSelectModalProps> = ({ isOpen, onCl
   }, [activeChain, handleChainClick, uniqueChainIds])
 
   return (
-    <Modal isOpen={isOpen} onClose={onClose} isCentered>
+    <Modal isOpen={isOpen} onClose={handleClose} isCentered initialFocusRef={iniitalRef}>
       <ModalOverlay />
       <ModalContent>
         <ModalHeader
@@ -120,6 +133,7 @@ export const AssetSelectModal: React.FC<AssetSelectModalProps> = ({ isOpen, onCl
           <Input
             size='lg'
             placeholder='Search name or paste address'
+            ref={iniitalRef}
             onChange={handleSearchQuery}
           />
           <Flex mt={4} flexWrap='wrap' gap={2} justifyContent='space-between'>
diff --git a/src/components/AssetSelectModal/ChainButton.tsx b/src/components/AssetSelectModal/ChainButton.tsx
index e559ecb..98df8b7 100644
--- a/src/components/AssetSelectModal/ChainButton.tsx
+++ b/src/components/AssetSelectModal/ChainButton.tsx
@@ -20,7 +20,7 @@ export const ChainButton: React.FC<ChainButtonProps> = ({
   isActive,
 }) => {
   const chainIcon = useMemo(() => {
-    return <Avatar size='sm' src={icon} />
+    return <Avatar size='xs' src={icon} />
   }, [icon])
 
   const handleClick = useCallback(() => {
diff --git a/src/components/AssetSelectModal/types.ts b/src/components/AssetSelectModal/types.ts
new file mode 100644
index 0000000..5ce21c1
--- /dev/null
+++ b/src/components/AssetSelectModal/types.ts
@@ -0,0 +1,4 @@
+export enum AssetType {
+  BUY = 'buy',
+  SELL = 'sell',
+}
diff --git a/src/components/AssetSelection.tsx b/src/components/AssetSelection.tsx
index e702171..414bb83 100644
--- a/src/components/AssetSelection.tsx
+++ b/src/components/AssetSelection.tsx
@@ -1,23 +1,20 @@
 import { Avatar, Button, Text } from '@chakra-ui/react'
+import type { Asset } from 'types/Asset'
 
 type AssetSelectionProps = {
   onClick: () => void
   label: string
-  assetIcon: string
-  assetName: string
+  asset?: Asset
 }
 
-export const AssetSelection: React.FC<AssetSelectionProps> = ({
-  label,
-  onClick,
-  assetIcon,
-  assetName,
-}) => {
+export const AssetSelection: React.FC<AssetSelectionProps> = ({ label, onClick, asset }) => {
   return (
     <Button flexDir='column' height='auto' py={4} gap={4} flex={1} onClick={onClick}>
       <Text color='text.subtle'>{label}</Text>
-      <Avatar src={assetIcon} />
-      <Text>{assetName}</Text>
+      <Avatar src={asset ? asset.icon : ''} />
+      <Text textOverflow='ellipsis' overflow='hidden' width='full'>
+        {asset ? asset.name : 'Select Asset'}
+      </Text>
     </Button>
   )
 }
diff --git a/src/components/SelectPair.tsx b/src/components/SelectPair.tsx
index 59d10b9..0f9d040 100644
--- a/src/components/SelectPair.tsx
+++ b/src/components/SelectPair.tsx
@@ -1,15 +1,19 @@
 import { Button, Card, CardBody, Flex, Heading, IconButton, useDisclosure } from '@chakra-ui/react'
-import { useCallback, useMemo } from 'react'
+import { useCallback, useMemo, useState } from 'react'
 import { FaArrowRightArrowLeft } from 'react-icons/fa6'
 import { useNavigate } from 'react-router-dom'
-import { BTCImage, ETHImage } from 'lib/const'
 import { mixpanel, MixPanelEvent } from 'lib/mixpanel'
+import type { Asset } from 'types/Asset'
 
 import { AssetSelection } from './AssetSelection'
 import { AssetSelectModal } from './AssetSelectModal/AssetSelectModal'
+import { AssetType } from './AssetSelectModal/types'
 
 export const SelectPair = () => {
   const { isOpen, onClose, onOpen } = useDisclosure()
+  const [sellAsset, setSellAsset] = useState<Asset>()
+  const [buyAsset, setBuyAsset] = useState<Asset>()
+  const [assetSelectType, setAssetSelectType] = useState<AssetType>(AssetType.BUY)
   const navigate = useNavigate()
   const switchIcon = useMemo(() => <FaArrowRightArrowLeft />, [])
   const handleSubmit = useCallback(() => {
@@ -21,13 +25,27 @@ export const SelectPair = () => {
   }, [navigate])
 
   const handleFromAssetClick = useCallback(() => {
+    setAssetSelectType(AssetType.SELL)
     onOpen()
-    console.info('asset click')
   }, [onOpen])
+
   const handleToAssetClick = useCallback(() => {
+    setAssetSelectType(AssetType.BUY)
     onOpen()
   }, [onOpen])
 
+  const handleAssetSelect = useCallback(
+    (asset: Asset) => {
+      if (assetSelectType === AssetType.BUY) {
+        setBuyAsset(asset)
+      }
+      if (assetSelectType === AssetType.SELL) {
+        setSellAsset(asset)
+      }
+    },
+    [assetSelectType],
+  )
+
   return (
     <Card width='full' maxWidth='450px'>
       <CardBody display='flex' flexDir='column' gap={8}>
@@ -35,25 +53,15 @@ export const SelectPair = () => {
           Choose which assets to trade
         </Heading>
         <Flex alignItems='center' gap={4} color='text.subtle' width='full'>
-          <AssetSelection
-            label='Deposit'
-            onClick={handleFromAssetClick}
-            assetIcon={BTCImage}
-            assetName='Bitcoin'
-          />
+          <AssetSelection label='Deposit' onClick={handleFromAssetClick} asset={sellAsset} />
           <IconButton variant='ghost' icon={switchIcon} aria-label='Switch assets' />
-          <AssetSelection
-            label='Receive'
-            onClick={handleToAssetClick}
-            assetIcon={ETHImage}
-            assetName='Ethereum'
-          />
+          <AssetSelection label='Receive' onClick={handleToAssetClick} asset={buyAsset} />
         </Flex>
         <Button size='lg' colorScheme='blue' onClick={handleSubmit}>
           Continue
         </Button>
       </CardBody>
-      <AssetSelectModal isOpen={isOpen} onClose={onClose} />
+      <AssetSelectModal isOpen={isOpen} onClose={onClose} onClick={handleAssetSelect} />
     </Card>
   )
 }

From 0a68bc7a7fc4f5451d4fc98aa6240661f3252c8a Mon Sep 17 00:00:00 2001
From: reallybeard <89934888+reallybeard@users.noreply.github.com>
Date: Tue, 9 Jan 2024 15:00:04 -0600
Subject: [PATCH 3/6] Update AssetSelectModal.tsx

---
 src/components/AssetSelectModal/AssetSelectModal.tsx | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/components/AssetSelectModal/AssetSelectModal.tsx b/src/components/AssetSelectModal/AssetSelectModal.tsx
index d935f83..5453848 100644
--- a/src/components/AssetSelectModal/AssetSelectModal.tsx
+++ b/src/components/AssetSelectModal/AssetSelectModal.tsx
@@ -90,7 +90,7 @@ export const AssetSelectModal: React.FC<AssetSelectModalProps> = ({ isOpen, onCl
     if (!existingEntry) {
       accumulator.push({
         chainId: currentAsset.chainId,
-        icon: currentAsset.icon,
+        icon: currentAsset.networkIcon ?? currentAsset.icon,
         name: currentAsset.networkName ?? currentAsset.name,
       })
     }

From 86b3bd1a97c53962c5bf2aa7b69ad3fcdfa41877 Mon Sep 17 00:00:00 2001
From: reallybeard <89934888+reallybeard@users.noreply.github.com>
Date: Tue, 9 Jan 2024 15:57:59 -0600
Subject: [PATCH 4/6] comments

---
 src/components/AssetSelectModal/AssetRow.tsx         | 4 ++--
 src/components/AssetSelectModal/AssetSelectModal.tsx | 4 ++--
 src/components/Chatwoot.tsx                          | 6 +++++-
 3 files changed, 9 insertions(+), 5 deletions(-)

diff --git a/src/components/AssetSelectModal/AssetRow.tsx b/src/components/AssetSelectModal/AssetRow.tsx
index 99544d6..bc6de53 100644
--- a/src/components/AssetSelectModal/AssetRow.tsx
+++ b/src/components/AssetSelectModal/AssetRow.tsx
@@ -19,7 +19,7 @@ export const AssetRow: FC<AssetRowProps> = memo(({ onClick, ...asset }) => {
     onClick(asset)
   }, [asset, onClick])
 
-  const handleImgLoad = useCallback(() => {
+  const handleImageLoad = useCallback(() => {
     setImgLoaded(true)
   }, [])
 
@@ -37,7 +37,7 @@ export const AssetRow: FC<AssetRowProps> = memo(({ onClick, ...asset }) => {
     >
       <Flex gap={4} alignItems='center'>
         <SkeletonCircle isLoaded={imgLoaded}>
-          <Avatar src={icon} size='sm' onLoad={handleImgLoad} />
+          <Avatar src={icon} size='sm' onLoad={handleImageLoad} />
         </SkeletonCircle>
         <Box textAlign='left'>
           <Text
diff --git a/src/components/AssetSelectModal/AssetSelectModal.tsx b/src/components/AssetSelectModal/AssetSelectModal.tsx
index 5453848..8dbcab9 100644
--- a/src/components/AssetSelectModal/AssetSelectModal.tsx
+++ b/src/components/AssetSelectModal/AssetSelectModal.tsx
@@ -53,7 +53,7 @@ export const AssetSelectModal: React.FC<AssetSelectModalProps> = ({ isOpen, onCl
     setActiveChain(chainId)
   }, [])
 
-  const handleAllChain = useCallback(() => {
+  const handleAllClick = useCallback(() => {
     setActiveChain('All')
   }, [])
 
@@ -143,7 +143,7 @@ export const AssetSelectModal: React.FC<AssetSelectModalProps> = ({ isOpen, onCl
               variant='outline'
               fontSize='sm'
               px={2}
-              onClick={handleAllChain}
+              onClick={handleAllClick}
             >
               All
             </Button>
diff --git a/src/components/Chatwoot.tsx b/src/components/Chatwoot.tsx
index 95fc158..1b0fe0c 100644
--- a/src/components/Chatwoot.tsx
+++ b/src/components/Chatwoot.tsx
@@ -35,5 +35,9 @@ export const ChatwootButton: React.FC = () => {
     if (window.$chatwoot) window.$chatwoot.toggle()
   }, [])
 
-  return chatWootEnabled ? <Button onClick={handleChatWoot}>Get support</Button> : null
+  return chatWootEnabled ? (
+    <Button position='absolute' right='1rem' bottom='1rem' onClick={handleChatWoot}>
+      Get support
+    </Button>
+  ) : null
 }

From a280a4556022cf51f8a17b4d0c485ec7c65b52a6 Mon Sep 17 00:00:00 2001
From: reallybeard <89934888+reallybeard@users.noreply.github.com>
Date: Tue, 9 Jan 2024 15:59:31 -0600
Subject: [PATCH 5/6] use memo

---
 src/components/AssetSelectModal/AssetRow.tsx         | 4 ++--
 src/components/AssetSelectModal/AssetSelectModal.tsx | 2 +-
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/src/components/AssetSelectModal/AssetRow.tsx b/src/components/AssetSelectModal/AssetRow.tsx
index bc6de53..e4948fe 100644
--- a/src/components/AssetSelectModal/AssetRow.tsx
+++ b/src/components/AssetSelectModal/AssetRow.tsx
@@ -15,7 +15,7 @@ type AssetRowProps = {
 export const AssetRow: FC<AssetRowProps> = memo(({ onClick, ...asset }) => {
   const [imgLoaded, setImgLoaded] = useState(false)
   const { name, icon, symbol, id } = asset
-  const handleOnClick = useCallback(() => {
+  const handleClick = useCallback(() => {
     onClick(asset)
   }, [asset, onClick])
 
@@ -29,7 +29,7 @@ export const AssetRow: FC<AssetRowProps> = memo(({ onClick, ...asset }) => {
     <Button
       width='full'
       variant='ghost'
-      onClick={handleOnClick}
+      onClick={handleClick}
       justifyContent='space-between'
       _focus={focus}
       height='auto'
diff --git a/src/components/AssetSelectModal/AssetSelectModal.tsx b/src/components/AssetSelectModal/AssetSelectModal.tsx
index 8dbcab9..4b0b8b9 100644
--- a/src/components/AssetSelectModal/AssetSelectModal.tsx
+++ b/src/components/AssetSelectModal/AssetSelectModal.tsx
@@ -30,7 +30,7 @@ type AssetSelectModalProps = {
 
 export const AssetSelectModal: React.FC<AssetSelectModalProps> = ({ isOpen, onClose, onClick }) => {
   const [searchQuery, setSearchQuery] = useState('')
-  const assets = Object.values(AssetData)
+  const assets = useMemo(() => Object.values(AssetData), [])
   const [activeChain, setActiveChain] = useState<ChainId | 'All'>('All')
   const [searchTermAssets, setSearchTermAssets] = useState<Asset[]>([])
   const iniitalRef = useRef(null)

From 8ef712e927ee8bcf46e43b21d9c3ede8b54157bf Mon Sep 17 00:00:00 2001
From: reallybeard <89934888+reallybeard@users.noreply.github.com>
Date: Tue, 9 Jan 2024 16:05:06 -0600
Subject: [PATCH 6/6] use viem

---
 package.json     |  3 +-
 src/lib/utils.ts |  3 +-
 yarn.lock        | 73 ++++++++++++++++++++++++++++++++++++++++++++++++
 3 files changed, 77 insertions(+), 2 deletions(-)

diff --git a/package.json b/package.json
index 968b846..9ba8fb8 100644
--- a/package.json
+++ b/package.json
@@ -26,7 +26,8 @@
     "react-dom": "^18.2.0",
     "react-icons": "^4.12.0",
     "react-router-dom": "^6.21.1",
-    "react-virtuoso": "^4.6.2"
+    "react-virtuoso": "^4.6.2",
+    "viem": "^2.0.3"
   },
   "devDependencies": {
     "@types/inquirer": "^9.0.7",
diff --git a/src/lib/utils.ts b/src/lib/utils.ts
index 977b292..ebb821d 100644
--- a/src/lib/utils.ts
+++ b/src/lib/utils.ts
@@ -1,11 +1,12 @@
 import type { AssetId } from '@shapeshiftoss/caip'
+import { isAddress } from 'viem'
 export const getFeatureFlag = (flagName: string): boolean => {
   const envVarName = `VITE_FEATURE_${flagName.toUpperCase()}`
   return import.meta.env[envVarName] === 'true'
 }
 export const middleEllipsis = (value: string): string =>
   value.length >= 12 ? `${value.slice(0, 4)}...${value.slice(-4)}` : value
-export const isEthAddress = (address: string): boolean => /^0x[0-9A-Fa-f]{40}$/.test(address)
+export const isEthAddress = (address: string): boolean => isAddress(address)
 export const isNft = (assetId: AssetId): boolean => {
   const slashIdx = assetId.indexOf('/')
   const assetParts = assetId.substring(slashIdx + 1)
diff --git a/yarn.lock b/yarn.lock
index 0080fdf..d8cd3f9 100644
--- a/yarn.lock
+++ b/yarn.lock
@@ -7,6 +7,11 @@
   resolved "https://registry.yarnpkg.com/@aashutoshrathi/word-wrap/-/word-wrap-1.2.6.tgz#bd9154aec9983f77b3a034ecaa015c2e4201f6cf"
   integrity sha512-1Yjs2SvM8TflER/OD3cOjhWWOZb58A2t7wpE2S9XfBYTiIl+XFhQG2bjy4Pu1I+EAlCNUzRDYDdFwFYUKvXcIA==
 
+"@adraffy/ens-normalize@1.10.0":
+  version "1.10.0"
+  resolved "https://registry.yarnpkg.com/@adraffy/ens-normalize/-/ens-normalize-1.10.0.tgz#d2a39395c587e092d77cbbc80acf956a54f38bf7"
+  integrity sha512-nA9XHtlAkYfJxY7bce8DcN7eKxWWCWkU+1GR9d+U6MbNpfwQp8TI7vqOsBsMcHoT4mBu2kypKoSKnghEzOOq5Q==
+
 "@ampproject/remapping@^2.2.0":
   version "2.2.1"
   resolved "https://registry.yarnpkg.com/@ampproject/remapping/-/remapping-2.2.1.tgz#99e8e11851128b8702cd57c33684f1d0f260b630"
@@ -2277,6 +2282,23 @@
   dependencies:
     eslint-scope "5.1.1"
 
+"@noble/curves@1.2.0", "@noble/curves@~1.2.0":
+  version "1.2.0"
+  resolved "https://registry.yarnpkg.com/@noble/curves/-/curves-1.2.0.tgz#92d7e12e4e49b23105a2555c6984d41733d65c35"
+  integrity sha512-oYclrNgRaM9SsBUBVbb8M6DTV7ZHRTKugureoYEncY5c65HOmRzvSiTE3y5CYaPYJA/GVkrhXEoF0M3Ya9PMnw==
+  dependencies:
+    "@noble/hashes" "1.3.2"
+
+"@noble/hashes@1.3.2":
+  version "1.3.2"
+  resolved "https://registry.yarnpkg.com/@noble/hashes/-/hashes-1.3.2.tgz#6f26dbc8fbc7205873ce3cee2f690eba0d421b39"
+  integrity sha512-MVC8EAQp7MvEcm30KWENFjgR+Mkmf+D189XJTkFIlwohU5hcBbn1ZkKq7KVTi2Hme3PMGF390DaL52beVrIihQ==
+
+"@noble/hashes@~1.3.0", "@noble/hashes@~1.3.2":
+  version "1.3.3"
+  resolved "https://registry.yarnpkg.com/@noble/hashes/-/hashes-1.3.3.tgz#39908da56a4adc270147bb07968bf3b16cfe1699"
+  integrity sha512-V7/fPHgl+jsVPXqqeOzT8egNj2iBIVt+ECeMMG8TdcnTikP3oaBtUVqpT/gYCR68aEBJSF+XbYUxStjbFMqIIA==
+
 "@nodelib/fs.scandir@2.1.5":
   version "2.1.5"
   resolved "https://registry.yarnpkg.com/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz#7619c2eb21b25483f6d167548b4cfd5a7488c3d5"
@@ -2383,6 +2405,28 @@
   resolved "https://registry.yarnpkg.com/@rushstack/eslint-patch/-/eslint-patch-1.6.1.tgz#9ab8f811930d7af3e3d549183a50884f9eb83f36"
   integrity sha512-UY+FGM/2jjMkzQLn8pxcHGMaVLh9aEitG3zY2CiY7XHdLiz3bZOwa6oDxNqEMv7zZkV+cj5DOdz0cQ1BP5Hjgw==
 
+"@scure/base@~1.1.0", "@scure/base@~1.1.2":
+  version "1.1.5"
+  resolved "https://registry.yarnpkg.com/@scure/base/-/base-1.1.5.tgz#1d85d17269fe97694b9c592552dd9e5e33552157"
+  integrity sha512-Brj9FiG2W1MRQSTB212YVPRrcbjkv48FoZi/u4l/zds/ieRrqsh7aUf6CLwkAq61oKXr/ZlTzlY66gLIj3TFTQ==
+
+"@scure/bip32@1.3.2":
+  version "1.3.2"
+  resolved "https://registry.yarnpkg.com/@scure/bip32/-/bip32-1.3.2.tgz#90e78c027d5e30f0b22c1f8d50ff12f3fb7559f8"
+  integrity sha512-N1ZhksgwD3OBlwTv3R6KFEcPojl/W4ElJOeCZdi+vuI5QmTFwLq3OFf2zd2ROpKvxFdgZ6hUpb0dx9bVNEwYCA==
+  dependencies:
+    "@noble/curves" "~1.2.0"
+    "@noble/hashes" "~1.3.2"
+    "@scure/base" "~1.1.2"
+
+"@scure/bip39@1.2.1":
+  version "1.2.1"
+  resolved "https://registry.yarnpkg.com/@scure/bip39/-/bip39-1.2.1.tgz#5cee8978656b272a917b7871c981e0541ad6ac2a"
+  integrity sha512-Z3/Fsz1yr904dduJD0NpiyRHhRYHdcnyh73FZWiV+/qhWi83wNJ3NWolYqCEN+ZWsUz2TWwajJggcRE9r1zUYg==
+  dependencies:
+    "@noble/hashes" "~1.3.0"
+    "@scure/base" "~1.1.0"
+
 "@shapeshiftoss/caip@^8.15.0":
   version "8.15.0"
   resolved "https://registry.yarnpkg.com/@shapeshiftoss/caip/-/caip-8.15.0.tgz#ab3d530973a80d29e3d2409bdd9956a7c4376dbc"
@@ -2817,6 +2861,11 @@
   dependencies:
     "@zag-js/dom-query" "0.16.0"
 
+abitype@0.10.0:
+  version "0.10.0"
+  resolved "https://registry.yarnpkg.com/abitype/-/abitype-0.10.0.tgz#d3504747cc81df2acaa6c460250ef7bc9219a77c"
+  integrity sha512-QvMHEUzgI9nPj9TWtUGnS2scas80/qaL5PBxGdwWhhvzqXfOph+IEiiiWrzuisu3U3JgDQVruW9oLbJoQ3oZ3A==
+
 acorn-jsx@^5.3.2:
   version "5.3.2"
   resolved "https://registry.yarnpkg.com/acorn-jsx/-/acorn-jsx-5.3.2.tgz#7ed5bb55908b3b2f1bc55c6af1653bada7f07937"
@@ -4537,6 +4586,11 @@ isexe@^2.0.0:
   resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10"
   integrity sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==
 
+isows@1.0.3:
+  version "1.0.3"
+  resolved "https://registry.yarnpkg.com/isows/-/isows-1.0.3.tgz#93c1cf0575daf56e7120bab5c8c448b0809d0d74"
+  integrity sha512-2cKei4vlmg2cxEjm3wVSqn8pcoRF/LX/wpifuuNquFO4SQmPwarClT+SUCA2lt+l581tTeZIPIZuIDo2jWN1fg==
+
 iterator.prototype@^1.1.2:
   version "1.1.2"
   resolved "https://registry.yarnpkg.com/iterator.prototype/-/iterator.prototype-1.1.2.tgz#5e29c8924f01916cb9335f1ff80619dcff22b0c0"
@@ -5890,6 +5944,20 @@ util-deprecate@^1.0.1:
   resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf"
   integrity sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==
 
+viem@^2.0.3:
+  version "2.0.3"
+  resolved "https://registry.yarnpkg.com/viem/-/viem-2.0.3.tgz#c913048b95fb392d596e187bc3dfb2edd4446c77"
+  integrity sha512-9r+CMEA0zf8QCvCobTUX4vhP9x0t7wRjHbadfHDHw8ULjnzwoQc1Yc1pK99GtqK4hv5hKacDe78dibg80p/a+A==
+  dependencies:
+    "@adraffy/ens-normalize" "1.10.0"
+    "@noble/curves" "1.2.0"
+    "@noble/hashes" "1.3.2"
+    "@scure/bip32" "1.3.2"
+    "@scure/bip39" "1.2.1"
+    abitype "0.10.0"
+    isows "1.0.3"
+    ws "8.13.0"
+
 vite-node@1.1.3:
   version "1.1.3"
   resolved "https://registry.yarnpkg.com/vite-node/-/vite-node-1.1.3.tgz#196de20a7c2e0467a07da0dd1fe67994f5b79695"
@@ -6051,6 +6119,11 @@ wrappy@1:
   resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f"
   integrity sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==
 
+ws@8.13.0:
+  version "8.13.0"
+  resolved "https://registry.yarnpkg.com/ws/-/ws-8.13.0.tgz#9a9fb92f93cf41512a0735c8f4dd09b8a1211cd0"
+  integrity sha512-x9vcZYTrFPC7aSIbj7sRCYo7L/Xb8Iy+pW0ng0wt2vCJv7M9HOMy0UoN3rr+IFC7hb7vXoqS+P9ktyLLLhO+LA==
+
 yallist@^3.0.2:
   version "3.1.1"
   resolved "https://registry.yarnpkg.com/yallist/-/yallist-3.1.1.tgz#dbb7daf9bfd8bac9ab45ebf602b8cbad0d5d08fd"