PAID network address returning from the api is old contract address

Hi,

I am trying to integrate Moralis api. I am using Moralis SDK to get the ERC20 balances using Moralis.web3.getAllERC20Balances(). for all other tokens its returning correct values but for PAID network its returning tokenAddress as 0x8c8687fc965593dfb2f0b4eaefd55e9d8df348df. New contract address is 0x1614f18fc94f47967a3fbe5ffcd46d4e7da3d787. Please update the same.

https://etherscan.io/address/0x8c8687fc965593dfb2f0b4eaefd55e9d8df348df

Hi,
It looks like I get proper output for old and new contract address:

an address that has recently received funds on old network:

curl -X 'GET' \
  'https://deep-index.moralis.io/api/v2/0x29cc1bf6f1cc0bc0424d7ce0cca30629f7e18e8f/erc20?chain=eth' \
  -H 'accept: application/json' \
  -H 'X-API-Key: api_key'

=>

  {
    "token_address": "0x8c8687fc965593dfb2f0b4eaefd55e9d8df348df",
    "name": "PAID Network",
    "symbol": "PAID",
    "logo": null,
    "thumbnail": null,
    "decimals": "18",
    "balance": "288947709000000000000"
  },

an address that has recently received funds on the new network:

curl -X 'GET' \
  'https://deep-index.moralis.io/api/v2/0x3193ec207c7323a13f1b89dc9d0dddadac30071a/erc20?chain=eth' \
  -H 'accept: application/json' \
  -H 'X-API-Key: API_KEY'

=>

  {
    "token_address": "0x1614f18fc94f47967a3fbe5ffcd46d4e7da3d787",
    "name": "PAID Network",
    "symbol": "PAID",
    "logo": "https://cdn.moralis.io/eth/0x1614f18fc94f47967a3fbe5ffcd46d4e7da3d787.png",
    "thumbnail": "https://cdn.moralis.io/eth/0x1614f18fc94f47967a3fbe5ffcd46d4e7da3d787_thumb.png",
    "decimals": "18",
    "balance": "2291403300000000000000"
  },